temp             1391 Zend/zend_virtual_cwd.c 	char *temp;
temp             1410 Zend/zend_virtual_cwd.c 	temp = (char *) do_alloca(length+1, use_heap);
temp             1411 Zend/zend_virtual_cwd.c 	memcpy(temp, path, length);
temp             1412 Zend/zend_virtual_cwd.c 	temp[length] = 0;
temp             1414 Zend/zend_virtual_cwd.c 	fprintf (stderr, "Changing directory to %s\n", temp);
temp             1416 Zend/zend_virtual_cwd.c 	retval = p_chdir(temp);
temp             1417 Zend/zend_virtual_cwd.c 	free_alloca(temp, use_heap);
temp               51 ext/bcmath/libbcmath/src/divmod.c   bc_num temp;
temp               59 ext/bcmath/libbcmath/src/divmod.c   bc_init_num(&temp);
temp               62 ext/bcmath/libbcmath/src/divmod.c   bc_divide (num1, num2, &temp, scale);
temp               64 ext/bcmath/libbcmath/src/divmod.c     quotient = bc_copy_num (temp);
temp               65 ext/bcmath/libbcmath/src/divmod.c   bc_multiply (temp, num2, &temp, rscale);
temp               66 ext/bcmath/libbcmath/src/divmod.c   bc_sub (num1, temp, rem, rscale);
temp               67 ext/bcmath/libbcmath/src/divmod.c   bc_free_num (&temp);
temp               51 ext/bcmath/libbcmath/src/init.c   bc_num temp;
temp               54 ext/bcmath/libbcmath/src/init.c   temp = (bc_num) safe_pemalloc (1, sizeof(bc_struct)+length, scale, persistent);
temp               57 ext/bcmath/libbcmath/src/init.c     temp = _bc_Free_list;
temp               58 ext/bcmath/libbcmath/src/init.c     _bc_Free_list = temp->n_next;
temp               60 ext/bcmath/libbcmath/src/init.c     temp = (bc_num) pemalloc (sizeof(bc_struct), persistent);
temp               61 ext/bcmath/libbcmath/src/init.c     if (temp == NULL) bc_out_of_memory ();
temp               64 ext/bcmath/libbcmath/src/init.c   temp->n_sign = PLUS;
temp               65 ext/bcmath/libbcmath/src/init.c   temp->n_len = length;
temp               66 ext/bcmath/libbcmath/src/init.c   temp->n_scale = scale;
temp               67 ext/bcmath/libbcmath/src/init.c   temp->n_refs = 1;
temp               69 ext/bcmath/libbcmath/src/init.c   temp->n_ptr = (char *) safe_pemalloc (1, length, scale, persistent);
temp               70 ext/bcmath/libbcmath/src/init.c   if (temp->n_ptr == NULL) bc_out_of_memory();
temp               71 ext/bcmath/libbcmath/src/init.c   temp->n_value = temp->n_ptr;
temp               72 ext/bcmath/libbcmath/src/init.c   memset (temp->n_ptr, 0, length+scale);
temp               73 ext/bcmath/libbcmath/src/init.c   return temp;
temp               97 ext/bcmath/libbcmath/src/output.c   stk_rec *digits, *temp;
temp              155 ext/bcmath/libbcmath/src/output.c 	    temp = (stk_rec *) emalloc (sizeof(stk_rec));
temp              156 ext/bcmath/libbcmath/src/output.c 	    if (temp == NULL) bc_out_of_memory();
temp              157 ext/bcmath/libbcmath/src/output.c 	    temp->digit = bc_num2long (cur_dig);
temp              158 ext/bcmath/libbcmath/src/output.c 	    temp->next = digits;
temp              159 ext/bcmath/libbcmath/src/output.c 	    digits = temp;
temp              169 ext/bcmath/libbcmath/src/output.c 		temp = digits;
temp              172 ext/bcmath/libbcmath/src/output.c 		  (*out_char) (ref_str[ (int) temp->digit]);
temp              174 ext/bcmath/libbcmath/src/output.c 		  bc_out_long (temp->digit, max_o_digit->n_len, 1, out_char);
temp              175 ext/bcmath/libbcmath/src/output.c 		efree (temp);
temp               49 ext/bcmath/libbcmath/src/raise.c    bc_num temp, power;
temp               93 ext/bcmath/libbcmath/src/raise.c    temp = bc_copy_num (power);
temp              104 ext/bcmath/libbcmath/src/raise.c 	 bc_multiply (temp, power, &temp, calcscale);
temp              112 ext/bcmath/libbcmath/src/raise.c        bc_divide (BCG(_one_), temp, result, rscale);
temp              113 ext/bcmath/libbcmath/src/raise.c        bc_free_num (&temp);
temp              118 ext/bcmath/libbcmath/src/raise.c        *result = temp;
temp               48 ext/bcmath/libbcmath/src/raisemod.c   bc_num power, exponent, parity, temp;
temp               58 ext/bcmath/libbcmath/src/raisemod.c   temp = bc_copy_num (BCG(_one_));
temp               83 ext/bcmath/libbcmath/src/raisemod.c 	  bc_multiply (temp, power, &temp, rscale);
temp               84 ext/bcmath/libbcmath/src/raisemod.c 	  (void) bc_modulo (temp, mod, &temp, scale);
temp               96 ext/bcmath/libbcmath/src/raisemod.c   *result = temp;
temp               58 ext/bcmath/libbcmath/src/recmul.c   bc_num temp;
temp               62 ext/bcmath/libbcmath/src/recmul.c     temp = _bc_Free_list;
temp               63 ext/bcmath/libbcmath/src/recmul.c     _bc_Free_list = temp->n_next;
temp               66 ext/bcmath/libbcmath/src/recmul.c     temp = (bc_num) emalloc (sizeof(bc_struct));
temp               68 ext/bcmath/libbcmath/src/recmul.c     if (temp == NULL) bc_out_of_memory ();
temp               71 ext/bcmath/libbcmath/src/recmul.c   temp->n_sign = PLUS;
temp               72 ext/bcmath/libbcmath/src/recmul.c   temp->n_len = length;
temp               73 ext/bcmath/libbcmath/src/recmul.c   temp->n_scale = scale;
temp               74 ext/bcmath/libbcmath/src/recmul.c   temp->n_refs = 1;
temp               75 ext/bcmath/libbcmath/src/recmul.c   temp->n_ptr = NULL;
temp               76 ext/bcmath/libbcmath/src/recmul.c   temp->n_value = value;
temp               77 ext/bcmath/libbcmath/src/recmul.c   return temp;
temp              101 ext/calendar/french.c 	zend_long temp;
temp              110 ext/calendar/french.c 	temp = (sdn - FRENCH_SDN_OFFSET) * 4 - 1;
temp              111 ext/calendar/french.c 	*pYear = temp / DAYS_PER_4_YEARS;
temp              112 ext/calendar/french.c 	dayOfYear = (temp % DAYS_PER_4_YEARS) / 4;
temp              147 ext/calendar/gregor.c 	zend_long temp;
temp              154 ext/calendar/gregor.c 	temp = (sdn + GREGOR_SDN_OFFSET) * 4 - 1;
temp              157 ext/calendar/gregor.c 	century = temp / DAYS_PER_400_YEARS;
temp              160 ext/calendar/gregor.c 	temp = ((temp % DAYS_PER_400_YEARS) / 4) * 4 + 3;
temp              161 ext/calendar/gregor.c 	year = (century * 100) + (temp / DAYS_PER_4_YEARS);
temp              162 ext/calendar/gregor.c 	dayOfYear = (temp % DAYS_PER_4_YEARS) / 4 + 1;
temp              165 ext/calendar/gregor.c 	temp = dayOfYear * 5 - 3;
temp              166 ext/calendar/gregor.c 	month = temp / DAYS_PER_5_MONTHS;
temp              167 ext/calendar/gregor.c 	day = (temp % DAYS_PER_5_MONTHS) / 5 + 1;
temp              164 ext/calendar/julian.c 	zend_long temp;
temp              174 ext/calendar/julian.c 	temp = sdn * 4 + (JULIAN_SDN_OFFSET * 4 - 1);
temp              178 ext/calendar/julian.c 		long yearl = temp / DAYS_PER_4_YEARS;
temp              184 ext/calendar/julian.c 	dayOfYear = (temp % DAYS_PER_4_YEARS) / 4 + 1;
temp              187 ext/calendar/julian.c 	temp = dayOfYear * 5 - 3;
temp              188 ext/calendar/julian.c 	month = temp / DAYS_PER_5_MONTHS;
temp              189 ext/calendar/julian.c 	day = (temp % DAYS_PER_5_MONTHS) / 5 + 1;
temp               48 ext/gd/libgd/gd_webp.c 		unsigned char *read, *temp;
temp               50 ext/gd/libgd/gd_webp.c 		temp = gdRealloc(filedata, size+GD_WEBP_ALLOC_STEP);
temp               51 ext/gd/libgd/gd_webp.c 		if (temp) {
temp               52 ext/gd/libgd/gd_webp.c 			filedata = temp;
temp               53 ext/gd/libgd/gd_webp.c 			read = temp + size;
temp              281 ext/gmp/gmp.c  #define FREE_GMP_TEMP(temp)  \
temp              282 ext/gmp/gmp.c  	if (temp.is_used) {      \
temp              283 ext/gmp/gmp.c  		mpz_clear(temp.num); \
temp              286 ext/gmp/gmp.c  #define FETCH_GMP_ZVAL_DEP_DEP(gmpnumber, zval, temp, dep1, dep2) \
temp              289 ext/gmp/gmp.c  	temp.is_used = 0;                                             \
temp              291 ext/gmp/gmp.c  	mpz_init(temp.num);                                           \
temp              292 ext/gmp/gmp.c  	if (convert_to_gmp(temp.num, zval, 0) == FAILURE) { \
temp              293 ext/gmp/gmp.c  		mpz_clear(temp.num);                                      \
temp              298 ext/gmp/gmp.c  	temp.is_used = 1;                                             \
temp              299 ext/gmp/gmp.c  	gmpnumber = temp.num;                                         \
temp              302 ext/gmp/gmp.c  #define FETCH_GMP_ZVAL_DEP(gmpnumber, zval, temp, dep)            \
temp              305 ext/gmp/gmp.c  	temp.is_used = 0;                                             \
temp              307 ext/gmp/gmp.c  	mpz_init(temp.num);                                           \
temp              308 ext/gmp/gmp.c  	if (convert_to_gmp(temp.num, zval, 0) == FAILURE) { \
temp              309 ext/gmp/gmp.c  		mpz_clear(temp.num);                                      \
temp              313 ext/gmp/gmp.c  	temp.is_used = 1;                                             \
temp              314 ext/gmp/gmp.c  	gmpnumber = temp.num;                                         \
temp              317 ext/gmp/gmp.c  #define FETCH_GMP_ZVAL(gmpnumber, zval, temp)                     \
temp              320 ext/gmp/gmp.c  	temp.is_used = 0;                                             \
temp              322 ext/gmp/gmp.c  	mpz_init(temp.num);                                           \
temp              323 ext/gmp/gmp.c  	if (convert_to_gmp(temp.num, zval, 0) == FAILURE) { \
temp              324 ext/gmp/gmp.c  		mpz_clear(temp.num);                                      \
temp              327 ext/gmp/gmp.c  	temp.is_used = 1;                                             \
temp              328 ext/gmp/gmp.c  	gmpnumber = temp.num;                                         \
temp              469 ext/gmp/gmp.c  		gmp_temp_t temp;
temp              471 ext/gmp/gmp.c  		FETCH_GMP_ZVAL(gmpnum_op, op1, temp);
temp              474 ext/gmp/gmp.c  		FREE_GMP_TEMP(temp);
temp              613 ext/hash/hash.c 	unsigned char *computed_salt, *digest, *temp, *result, *K1, *K2 = NULL;
temp              651 ext/hash/hash.c 	temp = emalloc(ops->digest_size);
temp              691 ext/hash/hash.c 		memcpy(temp, digest, ops->digest_size);
temp              703 ext/hash/hash.c 			php_hash_string_xor(temp, temp, digest, ops->digest_size);
temp              706 ext/hash/hash.c 		memcpy(result + ((i - 1) * ops->digest_size), temp, ops->digest_size);
temp              717 ext/hash/hash.c 	efree(temp);
temp              230 ext/hash/hash_gost.c 	php_hash_uint32 data[8], temp = 0, save = 0;
temp              236 ext/hash/hash_gost.c 		context->state[i + 8] += data[i] + temp;
temp              237 ext/hash/hash_gost.c 		temp = ((context->state[i + 8] < data[i]) || (context->state[i + 8] < save)) ? 1 : 0;
temp              662 ext/intl/converter/converter.c 	UChar		*temp;
temp              676 ext/intl/converter/converter.c 	temp = safe_emalloc(sizeof(UChar), temp_len, sizeof(UChar));
temp              680 ext/intl/converter/converter.c 	temp_len = ucnv_toUChars(src_cnv, temp, temp_len, src, src_len, &error);
temp              683 ext/intl/converter/converter.c 		efree(temp);
temp              686 ext/intl/converter/converter.c 	temp[temp_len] = 0;
temp              689 ext/intl/converter/converter.c 	ret_len = ucnv_fromUChars(dest_cnv, NULL, 0, temp, temp_len, &error);
temp              692 ext/intl/converter/converter.c 		efree(temp);
temp              700 ext/intl/converter/converter.c 	ZSTR_LEN(ret) = ucnv_fromUChars(dest_cnv, ZSTR_VAL(ret), ret_len+1, temp, temp_len, &error);
temp              701 ext/intl/converter/converter.c 	efree(temp);
temp             1802 ext/mbstring/mbstring.c 	char *list, *temp;
temp             1852 ext/mbstring/mbstring.c 						temp = list;
temp             1853 ext/mbstring/mbstring.c 						spprintf(&list, 0, "%s,%s", temp, (*entry)->name);
temp             1854 ext/mbstring/mbstring.c 						efree(temp);
temp              206 ext/opcache/zend_accelerator_blacklist.c 		zend_regexp_list *temp, *it = blacklist->regexp_list;
temp              209 ext/opcache/zend_accelerator_blacklist.c 			temp = it;
temp              211 ext/opcache/zend_accelerator_blacklist.c 			free(temp);
temp             9506 ext/pcre/pcrelib/pcre_compile.c   pcre_uchar *temp = (pcre_uchar *)codestart;
temp             9507 ext/pcre/pcrelib/pcre_compile.c   auto_possessify(temp, utf, cd);
temp              367 ext/pdo/pdo_stmt.c 			zend_string *temp = zend_string_alloc(ZSTR_LEN(param->name) + 1, 0);
temp              368 ext/pdo/pdo_stmt.c 			ZSTR_VAL(temp)[0] = ':';
temp              369 ext/pdo/pdo_stmt.c 			memmove(ZSTR_VAL(temp) + 1, ZSTR_VAL(param->name), ZSTR_LEN(param->name) + 1);
temp              370 ext/pdo/pdo_stmt.c 			param->name = temp;
temp             1605 ext/phar/phar.c 				php_stream *temp;
temp             1620 ext/phar/phar.c 				if (!(temp = php_stream_fopen_tmpfile())) {
temp             1634 ext/phar/phar.c 						php_stream_close(temp);
temp             1641 ext/phar/phar.c 				php_stream_filter_append(&temp->writefilters, filter);
temp             1643 ext/phar/phar.c 				if (SUCCESS != php_stream_copy_to_stream_ex(fp, temp, PHP_STREAM_COPY_ALL, NULL)) {
temp             1645 ext/phar/phar.c 						php_stream_close(temp);
temp             1648 ext/phar/phar.c 					php_stream_close(temp);
temp             1655 ext/phar/phar.c 				fp = temp;
temp             1664 ext/phar/phar.c 				php_stream *temp;
temp             1671 ext/phar/phar.c 				if (!(temp = php_stream_fopen_tmpfile())) {
temp             1679 ext/phar/phar.c 					php_stream_close(temp);
temp             1683 ext/phar/phar.c 				php_stream_filter_append(&temp->writefilters, filter);
temp             1685 ext/phar/phar.c 				if (SUCCESS != php_stream_copy_to_stream_ex(fp, temp, PHP_STREAM_COPY_ALL, NULL)) {
temp             1686 ext/phar/phar.c 					php_stream_close(temp);
temp             1693 ext/phar/phar.c 				fp = temp;
temp               66 ext/phar/phar_object.c 	zval temp;
temp               80 ext/phar/phar_object.c 			ZVAL_STR(&temp, Z_STR_P(stuff));
temp               82 ext/phar/phar_object.c 			zend_hash_str_update(_SERVER, "PHAR_PATH_INFO", sizeof("PHAR_PATH_INFO")-1, &temp);
temp               89 ext/phar/phar_object.c 		ZVAL_STR(&temp, Z_STR_P(stuff));
temp               92 ext/phar/phar_object.c 		zend_hash_str_update(_SERVER, "PHAR_PATH_TRANSLATED", sizeof("PHAR_PATH_TRANSLATED")-1, &temp);
temp              104 ext/phar/phar_object.c 				ZVAL_STR(&temp, Z_STR_P(stuff));
temp              106 ext/phar/phar_object.c 				zend_hash_str_update(_SERVER, "PHAR_REQUEST_URI", sizeof("PHAR_REQUEST_URI")-1, &temp);
temp              117 ext/phar/phar_object.c 				ZVAL_STR(&temp, Z_STR_P(stuff));
temp              119 ext/phar/phar_object.c 				zend_hash_str_update(_SERVER, "PHAR_PHP_SELF", sizeof("PHAR_PHP_SELF")-1, &temp);
temp              126 ext/phar/phar_object.c 			ZVAL_STR(&temp, Z_STR_P(stuff));
temp              128 ext/phar/phar_object.c 			zend_hash_str_update(_SERVER, "PHAR_SCRIPT_NAME", sizeof("PHAR_SCRIPT_NAME")-1, &temp);
temp              136 ext/phar/phar_object.c 			ZVAL_STR(&temp, Z_STR_P(stuff));
temp              139 ext/phar/phar_object.c 			zend_hash_str_update(_SERVER, "PHAR_SCRIPT_FILENAME", sizeof("PHAR_SCRIPT_FILENAME")-1, &temp);
temp             1410 ext/phar/phar_object.c 	char *fname, *error = NULL, *base = p_obj->b, *save = NULL, *temp = NULL;
temp             1526 ext/phar/phar_object.c 		temp = expand_filepath(base, NULL);
temp             1527 ext/phar/phar_object.c 		if (!temp) {
temp             1535 ext/phar/phar_object.c 		base = temp;
temp             1544 ext/phar/phar_object.c 					efree(temp);
temp             1561 ext/phar/phar_object.c 				efree(temp);
temp             1599 ext/phar/phar_object.c 		if (temp) {
temp             1600 ext/phar/phar_object.c 			efree(temp);
temp             1614 ext/phar/phar_object.c 		if (temp) {
temp             1615 ext/phar/phar_object.c 			efree(temp);
temp             1631 ext/phar/phar_object.c 		if (temp) {
temp             1632 ext/phar/phar_object.c 			efree(temp);
temp             1644 ext/phar/phar_object.c 		if (temp) {
temp             1645 ext/phar/phar_object.c 			efree(temp);
temp             1671 ext/phar/phar_object.c 		if (temp) {
temp             1672 ext/phar/phar_object.c 			efree(temp);
temp             1709 ext/phar/phar_object.c 	if (temp) {
temp             1710 ext/phar/phar_object.c 		efree(temp);
temp             3398 ext/phar/phar_object.c 	phar_entry_info *oldentry, newentry = {0}, *temp;
temp             3434 ext/phar/phar_object.c 		if (NULL != (temp = zend_hash_str_find_ptr(&phar_obj->archive->manifest, newfile, (uint) newfile_len)) || !temp->is_deleted) {
temp              398 ext/phar/stream.c 	zend_off_t temp;
temp              408 ext/phar/stream.c 			temp = data->zero + entry->uncompressed_filesize + offset;
temp              411 ext/phar/stream.c 			temp = data->zero + data->position + offset;
temp              414 ext/phar/stream.c 			temp = data->zero + offset;
temp              417 ext/phar/stream.c 			temp = 0;
temp              419 ext/phar/stream.c 	if (temp > data->zero + (zend_off_t) entry->uncompressed_filesize) {
temp              423 ext/phar/stream.c 	if (temp < data->zero) {
temp              427 ext/phar/stream.c 	res = php_stream_seek(data->fp, temp, SEEK_SET);
temp              123 ext/phar/util.c 	zend_off_t temp, eoffset;
temp              145 ext/phar/util.c 			temp = eoffset + entry->uncompressed_filesize + offset;
temp              148 ext/phar/util.c 			temp = eoffset + position + offset;
temp              151 ext/phar/util.c 			temp = eoffset + offset;
temp              154 ext/phar/util.c 			temp = 0;
temp              157 ext/phar/util.c 	if (temp > eoffset + (zend_off_t) entry->uncompressed_filesize) {
temp              161 ext/phar/util.c 	if (temp < eoffset) {
temp              165 ext/phar/util.c 	return php_stream_seek(fp, temp, SEEK_SET);
temp             23123 ext/sqlite3/libsqlite/sqlite3.c     u8 temp;
temp             23133 ext/sqlite3/libsqlite/sqlite3.c       temp = *zIn;
temp             23136 ext/sqlite3/libsqlite/sqlite3.c       *zIn++ = temp;
temp             54223 ext/sqlite3/libsqlite/sqlite3.c   unsigned char *temp;       /* Temp area for cell content */
temp             54234 ext/sqlite3/libsqlite/sqlite3.c   temp = 0;
temp             54274 ext/sqlite3/libsqlite/sqlite3.c     if( temp==0 ){
temp             54277 ext/sqlite3/libsqlite/sqlite3.c       temp = sqlite3PagerTempSpace(pPage->pBt->pPager);
temp             54279 ext/sqlite3/libsqlite/sqlite3.c       memcpy(&temp[x], &data[x], (cbrk+size) - x);
temp             54280 ext/sqlite3/libsqlite/sqlite3.c       src = temp;
temp             1379 ext/sqlite3/sqlite3.c 			zend_string *temp = zend_string_alloc(ZSTR_LEN(param->name) + 1, 0);
temp             1380 ext/sqlite3/sqlite3.c 			ZSTR_VAL(temp)[0] = ':';
temp             1381 ext/sqlite3/sqlite3.c 			memmove(ZSTR_VAL(temp) + 1, ZSTR_VAL(param->name), ZSTR_LEN(param->name) + 1);
temp             1382 ext/sqlite3/sqlite3.c 			param->name = temp;
temp             2297 ext/standard/array.c 	Bucket *p, temp;
temp             2326 ext/standard/array.c 				temp = hash->arData[n_left];
temp             2328 ext/standard/array.c 				hash->arData[rnd_idx] = temp;
temp             2352 ext/standard/array.c 				temp = hash->arData[n_left];
temp             2354 ext/standard/array.c 				hash->arData[rnd_idx] = temp;
temp              380 ext/standard/file.c 	char *name = NULL, *value = NULL, *temp = NULL;
temp              416 ext/standard/file.c 					temp = name = estrndup(md.token_data, md.token_len);
temp              418 ext/standard/file.c 					while (temp && *temp) {
temp              419 ext/standard/file.c 						if (strchr(PHP_META_UNSAFE, *temp)) {
temp              420 ext/standard/file.c 							*temp = '_';
temp              422 ext/standard/file.c 						temp++;
temp              450 ext/standard/file.c 				temp = name = estrndup(md.token_data, md.token_len);
temp              452 ext/standard/file.c 				while (temp && *temp) {
temp              453 ext/standard/file.c 					if (strchr(PHP_META_UNSAFE, *temp)) {
temp              454 ext/standard/file.c 						*temp = '_';
temp              456 ext/standard/file.c 					temp++;
temp             2083 ext/standard/file.c 	char *temp, *tptr, *bptr, *line_end, *limit;
temp             2102 ext/standard/file.c 	temp = emalloc(temp_len + line_end_len + 1);
temp             2113 ext/standard/file.c 		tptr = temp;
temp             2185 ext/standard/file.c 								new_temp = erealloc(temp, temp_len);
temp             2186 ext/standard/file.c 								tptr = new_temp + (size_t)(tptr - temp);
temp             2187 ext/standard/file.c 								temp = new_temp;
temp             2320 ext/standard/file.c 			comp_end = (char *)php_fgetcsv_lookup_trailing_spaces(temp, tptr - temp, delimiter);
temp             2328 ext/standard/file.c 		add_next_index_stringl(return_value, temp, comp_end - temp);
temp             2332 ext/standard/file.c 	efree(temp);
temp             1382 ext/standard/image.c 		char temp[MAX_LENGTH_OF_LONG * 2 + sizeof("width=\"\" height=\"\"")];
temp             1387 ext/standard/image.c 		snprintf(temp, sizeof(temp), "width=\"%d\" height=\"%d\"", result->width, result->height);
temp             1388 ext/standard/image.c 		add_index_string(return_value, 3, temp);
temp             1254 ext/standard/math.c 	zval *number, temp;
temp             1272 ext/standard/math.c 	if(_php_math_basetozval(number, (int)frombase, &temp) == FAILURE) {
temp             1275 ext/standard/math.c 	result = _php_math_zvaltobase(&temp, (int)tobase);
temp             5460 ext/standard/string.c 	char temp;
temp             5475 ext/standard/string.c 			temp = str[n_left];
temp             5477 ext/standard/string.c 			str[rnd_idx] = temp;
temp              812 ext/tidy/tidy.c 	zval temp;
temp              821 ext/tidy/tidy.c 		ZVAL_STRINGL(&temp, (char*)output.bp, output.size-1);
temp              822 ext/tidy/tidy.c 		zend_hash_str_update(obj->std.properties, "value", sizeof("value") - 1, &temp);
temp              831 ext/tidy/tidy.c 		ZVAL_STRINGL(&temp, (char*)obj->ptdoc->errbuf->bp, obj->ptdoc->errbuf->size-1);
temp              832 ext/tidy/tidy.c 		zend_hash_str_update(obj->std.properties, "errorBuffer", sizeof("errorBuffer") - 1, &temp);
temp              842 ext/tidy/tidy.c 	zval attribute, children, temp;
temp              896 ext/tidy/tidy.c 					tidy_instanciate(tidy_ce_node, &temp);
temp              897 ext/tidy/tidy.c 					newobj = Z_TIDY_P(&temp);
temp              904 ext/tidy/tidy.c 					add_next_index_zval(&children, &temp);
temp              719 ext/xmlrpc/libxmlrpc/queue.c    void    *key, *temp;
temp              737 ext/xmlrpc/libxmlrpc/queue.c             temp = list[i];
temp              739 ext/xmlrpc/libxmlrpc/queue.c             list[j] = temp;
temp              744 ext/xmlrpc/libxmlrpc/queue.c       temp = list[low];
temp              746 ext/xmlrpc/libxmlrpc/queue.c       list[j] = temp;
temp              433 ext/zip/lib/zip_open.c     struct zip_dirent temp;
temp              435 ext/zip/lib/zip_open.c     _zip_dirent_init(&temp);
temp              465 ext/zip/lib/zip_open.c 	if (_zip_dirent_read(&temp, za->src, NULL, true, error) == -1) {
temp              466 ext/zip/lib/zip_open.c 	    _zip_dirent_finalize(&temp);
temp              470 ext/zip/lib/zip_open.c 	if (_zip_headercomp(cd->entry[i].orig, &temp) != 0) {
temp              472 ext/zip/lib/zip_open.c 	    _zip_dirent_finalize(&temp);
temp              476 ext/zip/lib/zip_open.c 	cd->entry[i].orig->extra_fields = _zip_ef_merge(cd->entry[i].orig->extra_fields, temp.extra_fields);
temp              478 ext/zip/lib/zip_open.c 	temp.extra_fields = NULL;
temp              480 ext/zip/lib/zip_open.c 	_zip_dirent_finalize(&temp);
temp              178 ext/zip/lib/zip_source_filep.c     char *temp;
temp              183 ext/zip/lib/zip_source_filep.c     if ((temp=(char *)malloc(strlen(ctx->fname)+8)) == NULL) {
temp              187 ext/zip/lib/zip_source_filep.c     sprintf(temp, "%s.XXXXXX", ctx->fname);
temp              190 ext/zip/lib/zip_source_filep.c     if ((tfd=mkstemp(temp)) == -1) {
temp              193 ext/zip/lib/zip_source_filep.c         free(temp);
temp              201 ext/zip/lib/zip_source_filep.c         (void)remove(temp);
temp              202 ext/zip/lib/zip_source_filep.c         free(temp);
temp              215 ext/zip/lib/zip_source_filep.c     ctx->tmpname = temp;
temp               42 ext/zip/lib/zip_source_win32a.c static HANDLE _win32_create_temp_a(_zip_source_win32_read_file_t *ctx, void **temp, zip_uint32_t value, PSECURITY_ATTRIBUTES sa);
temp               91 ext/zip/lib/zip_source_win32a.c _win32_create_temp_a(_zip_source_win32_read_file_t *ctx, void **temp, zip_uint32_t value, PSECURITY_ATTRIBUTES sa)
temp               96 ext/zip/lib/zip_source_win32a.c     if (*temp == NULL) {
temp               97 ext/zip/lib/zip_source_win32a.c 	if ((*temp = malloc(sizeof(char) * len)) == NULL) {
temp              102 ext/zip/lib/zip_source_win32a.c     if (sprintf((char *)*temp, "%s.%08x", (const char *)ctx->fname, value) != len - 1) {
temp              106 ext/zip/lib/zip_source_win32a.c     return CreateFileA((const char *)*temp, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, sa, CREATE_NEW, FILE_ATTRIBUTE_NORMAL | FILE_ATTRIBUTE_TEMPORARY, NULL);
temp              419 ext/zip/lib/zip_source_win32handle.c     void *temp = NULL;
temp              453 ext/zip/lib/zip_source_win32handle.c 	th = ctx->ops->op_create_temp(ctx, &temp, value + i, psa);
temp              459 ext/zip/lib/zip_source_win32handle.c 	free(temp);
temp              467 ext/zip/lib/zip_source_win32handle.c     ctx->tmpname = temp;
temp              595 ext/zip/lib/zip_source_win32handle.c     time_t temp;
temp              601 ext/zip/lib/zip_source_win32handle.c     temp = (time_t)secs;
temp              602 ext/zip/lib/zip_source_win32handle.c     if (secs != (zip_int64_t)temp)
temp              605 ext/zip/lib/zip_source_win32handle.c     *t = temp;
temp               42 ext/zip/lib/zip_source_win32w.c static HANDLE _win32_create_temp_w(_zip_source_win32_read_file_t *ctx, void **temp, zip_uint32_t value, PSECURITY_ATTRIBUTES sa);
temp               91 ext/zip/lib/zip_source_win32w.c _win32_create_temp_w(_zip_source_win32_read_file_t *ctx, void **temp, zip_uint32_t value, PSECURITY_ATTRIBUTES sa)
temp               96 ext/zip/lib/zip_source_win32w.c     if (*temp == NULL) {
temp               97 ext/zip/lib/zip_source_win32w.c 	if ((*temp = malloc(sizeof(wchar_t) * len)) == NULL) {
temp              102 ext/zip/lib/zip_source_win32w.c     if (_snwprintf((wchar_t *)*temp, len, L"%s.%08x", (const wchar_t *)ctx->fname, value) != len - 1) {
temp              106 ext/zip/lib/zip_source_win32w.c     return CreateFileW((const wchar_t *)*temp, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, sa, CREATE_NEW, FILE_ATTRIBUTE_NORMAL | FILE_ATTRIBUTE_TEMPORARY, NULL);
temp              445 main/snprintf.c 		char temp[EXPONENT_LENGTH];		/* for exponent conversion */
temp              452 main/snprintf.c 			p = ap_php_conv_10((wide_int) decimal_point, FALSE, &exponent_is_negative, &temp[EXPONENT_LENGTH], &t_len);
temp              663 sapi/cli/php_cli_server.c 		char *temp;
temp              664 sapi/cli/php_cli_server.c 		spprintf(&temp, 0, "%s/%s", client->server->document_root, client->server->router);
temp              665 sapi/cli/php_cli_server.c 		sapi_cli_server_register_variable(track_vars_array, "SCRIPT_FILENAME", temp);
temp              666 sapi/cli/php_cli_server.c 		efree(temp);