temp             1398 Zend/zend_virtual_cwd.c 	char *temp;
temp             1417 Zend/zend_virtual_cwd.c 	temp = (char *) do_alloca(length+1, use_heap);
temp             1418 Zend/zend_virtual_cwd.c 	memcpy(temp, path, length);
temp             1419 Zend/zend_virtual_cwd.c 	temp[length] = 0;
temp             1421 Zend/zend_virtual_cwd.c 	fprintf (stderr, "Changing directory to %s\n", temp);
temp             1423 Zend/zend_virtual_cwd.c 	retval = p_chdir(temp TSRMLS_CC);
temp             1424 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 TSRMLS_CC);
temp               62 ext/bcmath/libbcmath/src/divmod.c   bc_divide (num1, num2, &temp, scale TSRMLS_CC);
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 TSRMLS_CC);
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 TSRMLS_CC);
temp              112 ext/bcmath/libbcmath/src/raise.c        bc_divide (BCG(_one_), temp, result, rscale TSRMLS_CC);
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 TSRMLS_CC);
temp               84 ext/bcmath/libbcmath/src/raisemod.c 	  (void) bc_modulo (temp, mod, &temp, scale TSRMLS_CC);
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 	long int 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 	long int 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 	long int 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               67 ext/gd/libgd/gd_webp.c 	unsigned char   *read, *temp;
temp               75 ext/gd/libgd/gd_webp.c 		temp = gdRealloc(filedata, size+GD_WEBP_ALLOC_STEP);
temp               76 ext/gd/libgd/gd_webp.c 		if (temp) {
temp               77 ext/gd/libgd/gd_webp.c 			filedata = temp;
temp               78 ext/gd/libgd/gd_webp.c 			read = temp + size;
temp              277 ext/gmp/gmp.c  #define FREE_GMP_TEMP(temp)  \
temp              278 ext/gmp/gmp.c  	if (temp.is_used) {      \
temp              279 ext/gmp/gmp.c  		mpz_clear(temp.num); \
temp              282 ext/gmp/gmp.c  #define FETCH_GMP_ZVAL_DEP_DEP(gmpnumber, zval, temp, dep1, dep2) \
temp              285 ext/gmp/gmp.c  	temp.is_used = 0;                                             \
temp              287 ext/gmp/gmp.c  	mpz_init(temp.num);                                           \
temp              288 ext/gmp/gmp.c  	if (convert_to_gmp(temp.num, zval, 0 TSRMLS_CC) == FAILURE) { \
temp              289 ext/gmp/gmp.c  		mpz_clear(temp.num);                                      \
temp              294 ext/gmp/gmp.c  	temp.is_used = 1;                                             \
temp              295 ext/gmp/gmp.c  	gmpnumber = temp.num;                                         \
temp              298 ext/gmp/gmp.c  #define FETCH_GMP_ZVAL_DEP(gmpnumber, zval, temp, dep)            \
temp              301 ext/gmp/gmp.c  	temp.is_used = 0;                                             \
temp              303 ext/gmp/gmp.c  	mpz_init(temp.num);                                           \
temp              304 ext/gmp/gmp.c  	if (convert_to_gmp(temp.num, zval, 0 TSRMLS_CC) == FAILURE) { \
temp              305 ext/gmp/gmp.c  		mpz_clear(temp.num);                                      \
temp              309 ext/gmp/gmp.c  	temp.is_used = 1;                                             \
temp              310 ext/gmp/gmp.c  	gmpnumber = temp.num;                                         \
temp              313 ext/gmp/gmp.c  #define FETCH_GMP_ZVAL(gmpnumber, zval, temp)                     \
temp              316 ext/gmp/gmp.c  	temp.is_used = 0;                                             \
temp              318 ext/gmp/gmp.c  	mpz_init(temp.num);                                           \
temp              319 ext/gmp/gmp.c  	if (convert_to_gmp(temp.num, zval, 0 TSRMLS_CC) == FAILURE) { \
temp              320 ext/gmp/gmp.c  		mpz_clear(temp.num);                                      \
temp              323 ext/gmp/gmp.c  	temp.is_used = 1;                                             \
temp              324 ext/gmp/gmp.c  	gmpnumber = temp.num;                                         \
temp              513 ext/gmp/gmp.c  		gmp_temp_t temp;
temp              515 ext/gmp/gmp.c  		FETCH_GMP_ZVAL(gmpnum_op, op1, temp);
temp              518 ext/gmp/gmp.c  		FREE_GMP_TEMP(temp);
temp              618 ext/hash/hash.c 	unsigned char *computed_salt, *digest, *temp, *result, *K1, *K2;
temp              656 ext/hash/hash.c 	temp = emalloc(ops->digest_size);
temp              696 ext/hash/hash.c 		memcpy(temp, digest, ops->digest_size);
temp              708 ext/hash/hash.c 			php_hash_string_xor(temp, temp, digest, ops->digest_size);
temp              711 ext/hash/hash.c 		memcpy(result + ((i - 1) * ops->digest_size), temp, ops->digest_size);
temp              722 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              690 ext/intl/converter/converter.c 	UChar		*temp;
temp              704 ext/intl/converter/converter.c 	temp = safe_emalloc(sizeof(UChar), temp_len, sizeof(UChar));
temp              708 ext/intl/converter/converter.c 	temp_len = ucnv_toUChars(src_cnv, temp, temp_len, src, src_len, &error);
temp              711 ext/intl/converter/converter.c 		efree(temp);
temp              714 ext/intl/converter/converter.c 	temp[temp_len] = 0;
temp              717 ext/intl/converter/converter.c 	dest_len = 1 + ucnv_fromUChars(dest_cnv, NULL, 0, temp, temp_len, &error);
temp              720 ext/intl/converter/converter.c 		efree(temp);
temp              727 ext/intl/converter/converter.c 	dest_len = ucnv_fromUChars(dest_cnv, dest, dest_len, temp, temp_len, &error);
temp              728 ext/intl/converter/converter.c 	efree(temp);
temp             1796 ext/mbstring/mbstring.c 	char *list, *temp;
temp             1846 ext/mbstring/mbstring.c 						temp = list;
temp             1847 ext/mbstring/mbstring.c 						spprintf(&list, 0, "%s,%s", temp, (*entry)->name);
temp             1848 ext/mbstring/mbstring.c 						efree(temp);
temp             1036 ext/mssql/php_mssql.c 						DBDATETIME temp;
temp             1038 ext/mssql/php_mssql.c 						dbconvert(NULL, SQLDATETIM4, dbdata(mssql_ptr->link,offset), -1, SQLDATETIME, (LPBYTE) &temp, -1);
temp             1039 ext/mssql/php_mssql.c 						dbdatecrack(mssql_ptr->link, &dateinfo, &temp);
temp             1116 ext/mssql/php_mssql.c 				DBDATETIME temp;
temp             1118 ext/mssql/php_mssql.c 				dbconvert(NULL, SQLDATETIM4, dbdata(mssql_ptr->link,offset), -1, SQLDATETIME, (LPBYTE) &temp, -1);
temp             1119 ext/mssql/php_mssql.c 				dbdatecrack(mssql_ptr->link, &dateinfo, &temp);
temp              222 ext/opcache/zend_accelerator_blacklist.c 		zend_regexp_list *temp, *it = blacklist->regexp_list;
temp              225 ext/opcache/zend_accelerator_blacklist.c 			temp = it;
temp              227 ext/opcache/zend_accelerator_blacklist.c 			free(temp);
temp             9508 ext/pcre/pcrelib/pcre_compile.c   pcre_uchar *temp = (pcre_uchar *)codestart;
temp             9509 ext/pcre/pcrelib/pcre_compile.c   auto_possessify(temp, utf, cd);
temp              364 ext/pdo/pdo_stmt.c 			char *temp = emalloc(++param->namelen + 1);
temp              365 ext/pdo/pdo_stmt.c 			temp[0] = ':';
temp              366 ext/pdo/pdo_stmt.c 			memmove(temp+1, param->name, param->namelen);
temp              367 ext/pdo/pdo_stmt.c 			param->name = temp;
temp             1602 ext/phar/phar.c 				php_stream *temp;
temp             1617 ext/phar/phar.c 				if (!(temp = php_stream_fopen_tmpfile())) {
temp             1631 ext/phar/phar.c 						php_stream_close(temp);
temp             1638 ext/phar/phar.c 				php_stream_filter_append(&temp->writefilters, filter);
temp             1640 ext/phar/phar.c 				if (SUCCESS != php_stream_copy_to_stream_ex(fp, temp, PHP_STREAM_COPY_ALL, NULL)) {
temp             1642 ext/phar/phar.c 						php_stream_close(temp);
temp             1645 ext/phar/phar.c 					php_stream_close(temp);
temp             1652 ext/phar/phar.c 				fp = temp;
temp             1661 ext/phar/phar.c 				php_stream *temp;
temp             1668 ext/phar/phar.c 				if (!(temp = php_stream_fopen_tmpfile())) {
temp             1676 ext/phar/phar.c 					php_stream_close(temp);
temp             1680 ext/phar/phar.c 				php_stream_filter_append(&temp->writefilters, filter);
temp             1682 ext/phar/phar.c 				if (SUCCESS != php_stream_copy_to_stream_ex(fp, temp, PHP_STREAM_COPY_ALL, NULL)) {
temp             1683 ext/phar/phar.c 					php_stream_close(temp);
temp             1690 ext/phar/phar.c 				fp = temp;
temp               66 ext/phar/phar_object.c 	zval *temp;
temp               83 ext/phar/phar_object.c 			MAKE_STD_ZVAL(temp);
temp               84 ext/phar/phar_object.c 			ZVAL_STRINGL(temp, path_info, code, 0);
temp               86 ext/phar/phar_object.c 			zend_hash_update(_SERVER, "PHAR_PATH_INFO", sizeof("PHAR_PATH_INFO"), &temp, sizeof(zval **), NULL);
temp               95 ext/phar/phar_object.c 		MAKE_STD_ZVAL(temp);
temp               96 ext/phar/phar_object.c 		ZVAL_STRINGL(temp, path_info, code, 0);
temp               98 ext/phar/phar_object.c 		zend_hash_update(_SERVER, "PHAR_PATH_TRANSLATED", sizeof("PHAR_PATH_TRANSLATED"), (void *) &temp, sizeof(zval **), NULL);
temp              113 ext/phar/phar_object.c 				MAKE_STD_ZVAL(temp);
temp              114 ext/phar/phar_object.c 				ZVAL_STRINGL(temp, path_info, code, 0);
temp              116 ext/phar/phar_object.c 				zend_hash_update(_SERVER, "PHAR_REQUEST_URI", sizeof("PHAR_REQUEST_URI"), (void *) &temp, sizeof(zval **), NULL);
temp              129 ext/phar/phar_object.c 				MAKE_STD_ZVAL(temp);
temp              130 ext/phar/phar_object.c 				ZVAL_STRINGL(temp, path_info, code, 0);
temp              132 ext/phar/phar_object.c 				zend_hash_update(_SERVER, "PHAR_PHP_SELF", sizeof("PHAR_PHP_SELF"), (void *) &temp, sizeof(zval **), NULL);
temp              143 ext/phar/phar_object.c 			MAKE_STD_ZVAL(temp);
temp              144 ext/phar/phar_object.c 			ZVAL_STRINGL(temp, path_info, code, 0);
temp              146 ext/phar/phar_object.c 			zend_hash_update(_SERVER, "PHAR_SCRIPT_NAME", sizeof("PHAR_SCRIPT_NAME"), (void *) &temp, sizeof(zval **), NULL);
temp              156 ext/phar/phar_object.c 			MAKE_STD_ZVAL(temp);
temp              157 ext/phar/phar_object.c 			ZVAL_STRINGL(temp, path_info, code, 0);
temp              159 ext/phar/phar_object.c 			zend_hash_update(_SERVER, "PHAR_SCRIPT_FILENAME", sizeof("PHAR_SCRIPT_FILENAME"), (void *) &temp, sizeof(zval **), NULL);
temp             1427 ext/phar/phar_object.c 	char *fname, *error = NULL, *base = p_obj->b, *opened, *save = NULL, *temp = NULL;
temp             1543 ext/phar/phar_object.c 		temp = expand_filepath(base, NULL TSRMLS_CC);
temp             1544 ext/phar/phar_object.c 		if (!temp) {
temp             1552 ext/phar/phar_object.c 		base = temp;
temp             1561 ext/phar/phar_object.c 					efree(temp);
temp             1578 ext/phar/phar_object.c 				efree(temp);
temp             1616 ext/phar/phar_object.c 		if (temp) {
temp             1617 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             1648 ext/phar/phar_object.c 		if (temp) {
temp             1649 ext/phar/phar_object.c 			efree(temp);
temp             1661 ext/phar/phar_object.c 		if (temp) {
temp             1662 ext/phar/phar_object.c 			efree(temp);
temp             1688 ext/phar/phar_object.c 		if (temp) {
temp             1689 ext/phar/phar_object.c 			efree(temp);
temp             1726 ext/phar/phar_object.c 	if (temp) {
temp             1727 ext/phar/phar_object.c 		efree(temp);
temp             3441 ext/phar/phar_object.c 	phar_entry_info *oldentry, newentry = {0}, *temp;
temp             3476 ext/phar/phar_object.c 		if (SUCCESS == zend_hash_find(&phar_obj->arc.archive->manifest, newfile, (uint) newfile_len, (void**)&temp) || !temp->is_deleted) {
temp              395 ext/phar/stream.c 	off_t temp;
temp              405 ext/phar/stream.c 			temp = data->zero + entry->uncompressed_filesize + offset;
temp              408 ext/phar/stream.c 			temp = data->zero + data->position + offset;
temp              411 ext/phar/stream.c 			temp = data->zero + offset;
temp              414 ext/phar/stream.c 			temp = 0;
temp              416 ext/phar/stream.c 	if (temp > data->zero + (off_t) entry->uncompressed_filesize) {
temp              420 ext/phar/stream.c 	if (temp < data->zero) {
temp              424 ext/phar/stream.c 	res = php_stream_seek(data->fp, temp, SEEK_SET);
temp              123 ext/phar/util.c 	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 + (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             1423 ext/sqlite3/sqlite3.c 			char *temp = emalloc(++param->name_len + 1);
temp             1424 ext/sqlite3/sqlite3.c 			temp[0] = ':';
temp             1425 ext/sqlite3/sqlite3.c 			memmove(temp+1, param->name, param->name_len);
temp             1426 ext/sqlite3/sqlite3.c 			param->name = temp;
temp             1745 ext/standard/array.c 	Bucket **elems, *temp;
temp             1759 ext/standard/array.c 	for (j = 0, temp = hash->pListHead; temp; temp = temp->pListNext)
temp             1760 ext/standard/array.c 		elems[j++] = temp;
temp             1765 ext/standard/array.c 			temp = elems[n_left];
temp             1767 ext/standard/array.c 			elems[rnd_idx] = temp;
temp             1784 ext/standard/array.c 	temp = hash->pListHead;
temp             3663 ext/standard/array.c 	zval temp;
temp             3669 ext/standard/array.c 		ARRAYG(compare_func)(&temp, *((zval **)ab[r]->pData), *((zval **)bb[r]->pData) TSRMLS_CC);
temp             3670 ext/standard/array.c 		result = ARRAYG(multisort_flags)[MULTISORT_ORDER][r] * Z_LVAL(temp);
temp              388 ext/standard/file.c 	char *name = NULL, *value = NULL, *temp = NULL;
temp              424 ext/standard/file.c 					temp = name = estrndup(md.token_data, md.token_len);
temp              426 ext/standard/file.c 					while (temp && *temp) {
temp              427 ext/standard/file.c 						if (strchr(PHP_META_UNSAFE, *temp)) {
temp              428 ext/standard/file.c 							*temp = '_';
temp              430 ext/standard/file.c 						temp++;
temp              458 ext/standard/file.c 				temp = name = estrndup(md.token_data, md.token_len);
temp              460 ext/standard/file.c 				while (temp && *temp) {
temp              461 ext/standard/file.c 					if (strchr(PHP_META_UNSAFE, *temp)) {
temp              462 ext/standard/file.c 						*temp = '_';
temp              464 ext/standard/file.c 					temp++;
temp             2047 ext/standard/file.c 	char *temp, *tptr, *bptr, *line_end, *limit;
temp             2066 ext/standard/file.c 	temp = emalloc(temp_len + line_end_len + 1);
temp             2077 ext/standard/file.c 		tptr = temp;
temp             2149 ext/standard/file.c 								new_temp = erealloc(temp, temp_len);
temp             2150 ext/standard/file.c 								tptr = new_temp + (size_t)(tptr - temp);
temp             2151 ext/standard/file.c 								temp = new_temp;
temp             2284 ext/standard/file.c 			comp_end = (char *)php_fgetcsv_lookup_trailing_spaces(temp, tptr - temp, delimiter TSRMLS_CC);
temp             2292 ext/standard/file.c 		add_next_index_stringl(return_value, temp, comp_end - temp, 1);
temp             2296 ext/standard/file.c 	efree(temp);
temp             1309 ext/standard/image.c 	char *temp;
temp             1382 ext/standard/image.c 		spprintf(&temp, 0, "width=\"%d\" height=\"%d\"", result->width, result->height);
temp             1383 ext/standard/image.c 		add_index_string(return_value, 3, temp, 0);
temp             1045 ext/standard/math.c 	zval **number, temp;
temp             1063 ext/standard/math.c 	if(_php_math_basetozval(*number, frombase, &temp) == FAILURE) {
temp             1066 ext/standard/math.c 	result = _php_math_zvaltobase(&temp, tobase TSRMLS_CC);
temp             2670 ext/standard/string.c 	char temp[2];
temp             2680 ext/standard/string.c 	temp[0] = (char)c;
temp             2681 ext/standard/string.c 	temp[1] = '\0';
temp             2683 ext/standard/string.c 	RETURN_STRINGL(temp, 1, 1);
temp             5367 ext/standard/string.c 	char temp;
temp             5382 ext/standard/string.c 			temp = str[n_left];
temp             5384 ext/standard/string.c 			str[rnd_idx] = temp;
temp              819 ext/tidy/tidy.c 	zval *temp;
temp              828 ext/tidy/tidy.c 		MAKE_STD_ZVAL(temp);
temp              829 ext/tidy/tidy.c 		ZVAL_STRINGL(temp, (char*)output.bp, output.size-1, TRUE);
temp              830 ext/tidy/tidy.c 		zend_hash_update(obj->std.properties, "value", sizeof("value"), (void *)&temp, sizeof(zval *), NULL);
temp              839 ext/tidy/tidy.c 		MAKE_STD_ZVAL(temp);
temp              840 ext/tidy/tidy.c 		ZVAL_STRINGL(temp, (char*)obj->ptdoc->errbuf->bp, obj->ptdoc->errbuf->size-1, TRUE);
temp              841 ext/tidy/tidy.c 		zend_hash_update(obj->std.properties, "errorBuffer", sizeof("errorBuffer"), (void *)&temp, sizeof(zval *), NULL);
temp              851 ext/tidy/tidy.c 	zval *attribute, *children, *temp;
temp              907 ext/tidy/tidy.c 					MAKE_STD_ZVAL(temp);
temp              908 ext/tidy/tidy.c 					tidy_instanciate(tidy_ce_node, temp TSRMLS_CC);
temp              909 ext/tidy/tidy.c 					newobj = (PHPTidyObj *) zend_object_store_get_object(temp TSRMLS_CC);
temp              916 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               74 ext/zip/lib/zip_close.c     char *temp;
temp              149 ext/zip/lib/zip_close.c     if ((temp=_zip_create_temp_output(za, &out)) == NULL) {
temp              249 ext/zip/lib/zip_close.c 	(void)remove(temp);
temp              250 ext/zip/lib/zip_close.c 	free(temp);
temp              256 ext/zip/lib/zip_close.c 	(void)remove(temp);
temp              257 ext/zip/lib/zip_close.c 	free(temp);
temp              266 ext/zip/lib/zip_close.c     if (_zip_rename(temp, za->zn) != 0) {
temp              268 ext/zip/lib/zip_close.c 	(void)remove(temp);
temp              269 ext/zip/lib/zip_close.c 	free(temp);
temp              283 ext/zip/lib/zip_close.c     free(temp);
temp              594 ext/zip/lib/zip_close.c     char *temp;
temp              599 ext/zip/lib/zip_close.c         if ((temp=(char *)malloc(strlen(za->tempdir)+13)) == NULL) {
temp              603 ext/zip/lib/zip_close.c         sprintf(temp, "%s/.zip.XXXXXX", za->tempdir);
temp              606 ext/zip/lib/zip_close.c         if ((temp=(char *)malloc(strlen(za->zn)+8)) == NULL) {
temp              610 ext/zip/lib/zip_close.c         sprintf(temp, "%s.XXXXXX", za->zn);
temp              613 ext/zip/lib/zip_close.c     if ((tfd=mkstemp(temp)) == -1) {
temp              615 ext/zip/lib/zip_close.c 	free(temp);
temp              622 ext/zip/lib/zip_close.c 	(void)remove(temp);
temp              623 ext/zip/lib/zip_close.c 	free(temp);
temp              636 ext/zip/lib/zip_close.c     return temp;
temp              314 ext/zip/lib/zip_open.c     struct zip_dirent temp;
temp              345 ext/zip/lib/zip_open.c 	if (_zip_dirent_read(&temp, fp, NULL, NULL, 1, error) == -1)
temp              348 ext/zip/lib/zip_open.c 	if (_zip_headercomp(cd->entry[i].orig, &temp) != 0) {
temp              350 ext/zip/lib/zip_open.c 	    _zip_dirent_finalize(&temp);
temp              354 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              356 ext/zip/lib/zip_open.c 	temp.extra_fields = NULL;
temp              358 ext/zip/lib/zip_open.c 	_zip_dirent_finalize(&temp);
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              792 sapi/cli/php_cli_server.c 		char *temp;
temp              793 sapi/cli/php_cli_server.c 		spprintf(&temp, 0, "%s/%s", client->server->document_root, client->server->router);
temp              794 sapi/cli/php_cli_server.c 		sapi_cli_server_register_variable(track_vars_array, "SCRIPT_FILENAME", temp TSRMLS_CC);
temp              795 sapi/cli/php_cli_server.c 		efree(temp);