/PHP-5.5/ext/standard/tests/file/ |
H A D | tempnam_variation4.phpt | 69 created in temp dir 71 created in temp dir 73 created in temp dir 75 created in temp dir 77 created in temp dir 79 created in temp dir 81 created in temp dir 83 created in temp dir 85 created in temp dir 87 created in temp dir [all …]
|
H A D | unlink_variation1-win32.phpt | 22 // temp dir name used here 24 // temp filename used here 28 // create temp dir 30 // create temp file inside $dirname 47 // create the temp dir 50 // create the temp file 57 // now try deleting temp file inside $dirname 60 // reassign write permission to temp file 62 // delete temp file 65 // remove temp dir
|
H A D | symlink_link_linkinfo_is_link_variation8.phpt | 28 // temp file used 31 // temp link name used 35 // create temp file 44 // delete temp file 46 // delete temp dir 51 // temp link name used 55 // create temp file 64 // delete temp file 66 // delete temp dir
|
H A D | tempnam_variation7-win32.phpt | 52 echo "temp dir\n"; 70 File created in => temp dir 74 File created in => temp dir 78 File created in => temp dir 82 File created in => temp dir 86 File created in => temp dir 90 File created in => temp dir 106 File created in => temp dir 110 File created in => temp dir
|
H A D | tempnam_variation7.phpt | 54 echo "temp dir\n"; 75 File created in => temp dir 79 File created in => temp dir 83 File created in => temp dir 87 File created in => temp dir 91 File created in => temp dir 95 File created in => temp dir 111 File created in => temp dir 115 File created in => temp dir
|
H A D | bug39551.phpt | 6 $bucket = stream_bucket_new(fopen('php://temp', 'w+'), ''); 11 $bucket = stream_bucket_new(fopen('php://temp', 'w+'), ''); 18 stream_filter_append($s = fopen('php://temp', 'r+'), 'bucketfault');
|
H A D | unlink_variation1.phpt | 32 // temp dir name used here 34 // temp filename used here 38 // create temp dir 40 // create temp file inside $dirname 57 // create the temp dir 59 // create the temp file 65 // now try deleting temp file inside $dirname 69 // remove temp dir
|
/PHP-5.5/ext/bcmath/libbcmath/src/ |
H A D | init.c | 51 bc_num temp; local 57 temp = _bc_Free_list; 58 _bc_Free_list = temp->n_next; 61 if (temp == NULL) bc_out_of_memory (); 64 temp->n_sign = PLUS; 65 temp->n_len = length; 66 temp->n_scale = scale; 67 temp->n_refs = 1; 71 temp->n_value = temp->n_ptr; 72 memset (temp->n_ptr, 0, length+scale); [all …]
|
H A D | divmod.c | 51 bc_num temp; in bc_divmod() local 59 bc_init_num(&temp TSRMLS_CC); in bc_divmod() 62 bc_divide (num1, num2, &temp, scale TSRMLS_CC); in bc_divmod() 64 quotient = bc_copy_num (temp); in bc_divmod() 65 bc_multiply (temp, num2, &temp, rscale TSRMLS_CC); in bc_divmod() 66 bc_sub (num1, temp, rem, rscale); in bc_divmod() 67 bc_free_num (&temp); in bc_divmod()
|
H A D | raisemod.c | 48 bc_num power, exponent, parity, temp; in bc_raisemod() local 58 temp = bc_copy_num (BCG(_one_)); in bc_raisemod() 83 bc_multiply (temp, power, &temp, rscale TSRMLS_CC); in bc_raisemod() 84 (void) bc_modulo (temp, mod, &temp, scale TSRMLS_CC); in bc_raisemod() 96 *result = temp; in bc_raisemod()
|
H A D | raise.c | 49 bc_num temp, power; in bc_raise() local 93 temp = bc_copy_num (power); in bc_raise() 104 bc_multiply (temp, power, &temp, calcscale TSRMLS_CC); in bc_raise() 112 bc_divide (BCG(_one_), temp, result, rscale TSRMLS_CC); in bc_raise() 113 bc_free_num (&temp); in bc_raise() 118 *result = temp; in bc_raise()
|
H A D | output.c | 97 stk_rec *digits, *temp; in bc_out_num() local 155 temp = (stk_rec *) emalloc (sizeof(stk_rec)); in bc_out_num() 156 if (temp == NULL) bc_out_of_memory(); in bc_out_num() 157 temp->digit = bc_num2long (cur_dig); in bc_out_num() 158 temp->next = digits; in bc_out_num() 159 digits = temp; in bc_out_num() 169 temp = digits; in bc_out_num() 172 (*out_char) (ref_str[ (int) temp->digit]); in bc_out_num() 174 bc_out_long (temp->digit, max_o_digit->n_len, 1, out_char); in bc_out_num() 175 efree (temp); in bc_out_num()
|
H A D | recmul.c | 58 bc_num temp; local 62 temp = _bc_Free_list; 63 _bc_Free_list = temp->n_next; 68 if (temp == NULL) bc_out_of_memory (); 71 temp->n_sign = PLUS; 72 temp->n_len = length; 73 temp->n_scale = scale; 74 temp->n_refs = 1; 75 temp->n_ptr = NULL; 76 temp->n_value = value; [all …]
|
/PHP-5.5/ext/phar/ |
H A D | shortarc.php | 63 chdir(Extract_Phar::$temp); 105 static $temp; variable in Extract_Phar 152 $temp = self::tmpdir(); 154 if (!$temp || !is_writable($temp)) { 161 $temp = $sessionpath; 165 self::$temp = $temp; 167 @mkdir($temp, 0777, true); 168 $temp = realpath($temp); 189 chdir($temp); 280 chdir($temp); [all …]
|
/PHP-5.5/ext/calendar/ |
H A D | gregor.c | 147 long int temp; in SdnToGregorian() local 154 temp = (sdn + GREGOR_SDN_OFFSET) * 4 - 1; in SdnToGregorian() 157 century = temp / DAYS_PER_400_YEARS; in SdnToGregorian() 160 temp = ((temp % DAYS_PER_400_YEARS) / 4) * 4 + 3; in SdnToGregorian() 161 year = (century * 100) + (temp / DAYS_PER_4_YEARS); in SdnToGregorian() 162 dayOfYear = (temp % DAYS_PER_4_YEARS) / 4 + 1; in SdnToGregorian() 165 temp = dayOfYear * 5 - 3; in SdnToGregorian() 166 month = temp / DAYS_PER_5_MONTHS; in SdnToGregorian() 167 day = (temp % DAYS_PER_5_MONTHS) / 5 + 1; in SdnToGregorian()
|
H A D | julian.c | 164 long int temp; in SdnToJulian() local 174 temp = sdn * 4 + (JULIAN_SDN_OFFSET * 4 - 1); in SdnToJulian() 178 long yearl = temp / DAYS_PER_4_YEARS; in SdnToJulian() 184 dayOfYear = (temp % DAYS_PER_4_YEARS) / 4 + 1; in SdnToJulian() 187 temp = dayOfYear * 5 - 3; in SdnToJulian() 188 month = temp / DAYS_PER_5_MONTHS; in SdnToJulian() 189 day = (temp % DAYS_PER_5_MONTHS) / 5 + 1; in SdnToJulian()
|
H A D | french.c | 101 long int temp; in SdnToFrench() local 110 temp = (sdn - FRENCH_SDN_OFFSET) * 4 - 1; in SdnToFrench() 111 *pYear = temp / DAYS_PER_4_YEARS; in SdnToFrench() 112 dayOfYear = (temp % DAYS_PER_4_YEARS) / 4; in SdnToFrench()
|
/PHP-5.5/ext/phar/tests/ |
H A D | phar_createdefaultstub.phpt | 190 if (!$temp || !is_writable($temp)) { 201 self::$temp = $temp; 204 $temp = realpath($temp); 238 if (is_dir('/temp') || mkdir('/temp')) { 484 if (!$temp || !is_writable($temp)) { 495 self::$temp = $temp; 498 $temp = realpath($temp); 532 if (is_dir('/temp') || mkdir('/temp')) { 786 if (!$temp || !is_writable($temp)) { 797 self::$temp = $temp; [all …]
|
H A D | phar_setdefaultstub.phpt | 210 if (!$temp || !is_writable($temp)) { 221 self::$temp = $temp; 224 $temp = realpath($temp); 258 if (is_dir('/temp') || mkdir('/temp')) { 505 if (!$temp || !is_writable($temp)) { 516 self::$temp = $temp; 519 $temp = realpath($temp); 553 if (is_dir('/temp') || mkdir('/temp')) { 800 if (!$temp || !is_writable($temp)) { 811 self::$temp = $temp; [all …]
|
/PHP-5.5/ext/phar/tests/files/ |
H A D | nophar.phar | 63 chdir(Extract_Phar::$temp); 105 static $temp; 152 $temp = self::tmpdir(); 154 if (!$temp || !is_writable($temp)) { 161 $temp = $sessionpath; 165 self::$temp = $temp; 168 $temp = realpath($temp); 189 chdir($temp); 202 if (is_dir('/temp') || mkdir('/temp')) { 274 chdir($temp); [all …]
|
H A D | include_path2.phar | 63 chdir(Extract_Phar::$temp); 105 static $temp; 152 $temp = self::tmpdir(); 154 if (!$temp || !is_writable($temp)) { 161 $temp = $sessionpath; 165 self::$temp = $temp; 168 $temp = realpath($temp); 189 chdir($temp); 202 if (is_dir('/temp') || mkdir('/temp')) { 274 chdir($temp); [all …]
|
H A D | openssl.phar | 63 chdir(Extract_Phar::$temp); 105 static $temp; 152 $temp = self::tmpdir(); 154 if (!$temp || !is_writable($temp)) { 161 $temp = $sessionpath; 165 self::$temp = $temp; 168 $temp = realpath($temp); 189 chdir($temp); 202 if (is_dir('/temp') || mkdir('/temp')) { 274 chdir($temp); [all …]
|
/PHP-5.5/ext/phar/tests/cache_list/files/ |
H A D | nophar.phar | 63 chdir(Extract_Phar::$temp); 105 static $temp; 152 $temp = self::tmpdir(); 154 if (!$temp || !is_writable($temp)) { 161 $temp = $sessionpath; 165 self::$temp = $temp; 168 $temp = realpath($temp); 189 chdir($temp); 202 if (is_dir('/temp') || mkdir('/temp')) { 274 chdir($temp); [all …]
|
H A D | openssl.phar | 63 chdir(Extract_Phar::$temp); 105 static $temp; 152 $temp = self::tmpdir(); 154 if (!$temp || !is_writable($temp)) { 161 $temp = $sessionpath; 165 self::$temp = $temp; 168 $temp = realpath($temp); 189 chdir($temp); 202 if (is_dir('/temp') || mkdir('/temp')) { 274 chdir($temp); [all …]
|
/PHP-5.5/ext/standard/tests/streams/ |
H A D | bug44818.phpt | 14 test("php://temp","r"); 15 test("php://temp","w"); 28 php://temp, r 33 php://temp, w
|