Home
last modified time | relevance | path

Searched refs:temp (Results 26 – 50 of 241) sorted by last modified time

12345678910

/php-src/ext/spl/tests/
H A Dgh13685.phpt47 Cannot read from file php://temp
52 Cannot read from file php://temp
/php-src/ext/standard/
H A Dmath.c1033 zval temp; in PHP_FUNCTION() local
1053 _php_math_basetozval(number, (int)frombase, &temp); in PHP_FUNCTION()
1054 result = _php_math_zvaltobase(&temp, (int)tobase); in PHP_FUNCTION()
H A Dstring.c5962 char temp; local
5980 temp = str[n_left];
5982 str[rnd_idx] = temp;
H A Dfile.c294 while (temp && *temp) { in PHP_FUNCTION()
296 *temp = '_'; in PHP_FUNCTION()
298 temp++; in PHP_FUNCTION()
328 while (temp && *temp) { in PHP_FUNCTION()
330 *temp = '_'; in PHP_FUNCTION()
332 temp++; in PHP_FUNCTION()
1960 char *tptr = temp; in php_fgetcsv()
2045 temp = new_temp; in php_fgetcsv()
2173 comp_end = (char *)php_fgetcsv_lookup_trailing_spaces(temp, tptr - temp); in php_fgetcsv()
2183 ZVAL_STRINGL(&z_tmp, temp, comp_end - temp); in php_fgetcsv()
[all …]
/php-src/ext/pdo/
H A Dpdo_stmt.c319 zend_string *temp = zend_string_alloc(ZSTR_LEN(param->name) + 1, 0); in really_register_bound_param() local
320 ZSTR_VAL(temp)[0] = ':'; in really_register_bound_param() local
321 memmove(ZSTR_VAL(temp) + 1, ZSTR_VAL(param->name), ZSTR_LEN(param->name) + 1); in really_register_bound_param()
322 param->name = temp; in really_register_bound_param()
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c1112 PCRE2_SPTR temp = ptr - 1; in internal_dfa_match() local
1113 if (temp < mb->start_used_ptr) mb->start_used_ptr = temp; in internal_dfa_match()
1115 if (utf) { BACKCHAR(temp); } in internal_dfa_match()
1117 GETCHARTEST(d, temp); in internal_dfa_match()
1137 PCRE2_SPTR temp = ptr + 1; in internal_dfa_match() local
1139 if (utf) { FORWARDCHARTEST(temp, mb->end_subject); } in internal_dfa_match()
1141 mb->last_used_ptr = temp; in internal_dfa_match()
H A Dpcre2_compile.c10794 PCRE2_UCHAR *temp = (PCRE2_UCHAR *)codestart; in pcre2_compile() local
10795 if (PRIV(auto_possessify)(temp, &cb) != 0) errorcode = ERR80; in pcre2_compile()
H A Dpcre2_substitute.c241 PCRE2_UCHAR temp[6]; in pcre2_substitute() local
803 if (utf) chlen = PRIV(ord2utf)(ch, temp); else in pcre2_substitute()
806 temp[0] = ch; in pcre2_substitute()
809 CHECKMEMCPY(temp, chlen); in pcre2_substitute()
905 if (utf) chlen = PRIV(ord2utf)(ch, temp); else in pcre2_substitute()
908 temp[0] = ch; in pcre2_substitute()
911 CHECKMEMCPY(temp, chlen); in pcre2_substitute()
966 temp[0] = 0; in pcre2_substitute()
967 CHECKMEMCPY(temp, 1); in pcre2_substitute()
/php-src/.github/scripts/windows/
H A Dtest_task.bat136 …q --offline --show-diff --show-slow 1000 --set-timeout 120 --temp-source c:\tests_tmp --temp-targe…
/php-src/ext/curl/tests/
H A Dcurl_error_basic.phpt22 * Documentation: http://wiki.php.net/qa/temp/ext/curl
/php-src/ext/gd/tests/
H A Dbug43073.phpt55 $temp = $cos_t * $x + $sin_t * $y;
57 $x = $temp;
/php-src/ext/opcache/jit/ir/dynasm/
H A Dminilua.c2555 TValue temp;
2556 if(luaV_tonumber(p1,&temp)==NULL)
3475 {int temp=e->f;e->f=e->t;e->t=temp;}
3532 int temp;
3533 temp=o1;o1=o2;o2=temp;
4758 TValue temp;
4778 setobj(L,&temp,tm);
4779 t=&temp;
4821 int temp=strcoll(l,r);
4822 if(temp!=0)return temp;
/php-src/ext/intl/converter/
H A Dconverter.c626 UChar *temp; in php_converter_do_convert() local
640 temp = safe_emalloc(sizeof(UChar), temp_len, sizeof(UChar)); in php_converter_do_convert()
644 temp_len = ucnv_toUChars(src_cnv, temp, temp_len, src, src_len, &error); in php_converter_do_convert()
647 efree(temp); in php_converter_do_convert()
650 temp[temp_len] = 0; in php_converter_do_convert()
653 ret_len = ucnv_fromUChars(dest_cnv, NULL, 0, temp, temp_len, &error); in php_converter_do_convert()
656 efree(temp); in php_converter_do_convert()
664 ZSTR_LEN(ret) = ucnv_fromUChars(dest_cnv, ZSTR_VAL(ret), ret_len+1, temp, temp_len, &error); in php_converter_do_convert()
665 efree(temp); in php_converter_do_convert()
/php-src/ext/hash/
H A Dhash_sha3.c114 uint64_t temp; in permute() local
117 temp = readLane(x, y); in permute()
119 current = temp; in permute()
126 uint64_t temp[5]; in permute() local
128 temp[x] = readLane(x, y); in permute()
131 writeLane(x, y, temp[x] ^((~temp[(x+1)%5]) & temp[(x+2)%5])); in permute()
/php-src/Zend/
H A Dzend_virtual_cwd.c1216 char *temp; in virtual_chdir_file() local
1235 temp = (char *) do_alloca(length+1, use_heap); in virtual_chdir_file()
1236 memcpy(temp, path, length); in virtual_chdir_file()
1237 temp[length] = 0; in virtual_chdir_file()
1239 fprintf (stderr, "Changing directory to %s\n", temp); in virtual_chdir_file()
1241 retval = p_chdir(temp); in virtual_chdir_file()
1242 free_alloca(temp, use_heap); in virtual_chdir_file()
/php-src/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.c409 uint32_t temp[12]; in mb_illegal_output() local
424 size_t len = mb_illegal_marker(bad_cp, temp, err_mode, repl_char); in mb_illegal_output()
433 fn(temp, len, buf, false); in mb_illegal_output()
/php-src/ext/standard/tests/file/
H A Dis_readable_basic.phpt32 // delete the temp file
H A Dtouch_variation5-win32.phpt142 $temp = stat($path);
143 return $temp['atime'];
H A Dbug52820.phpt31 echo "temp stream (close after):\n";
32 fclose(do_stuff("php://temp"));
38 zend_leak_variable(do_stuff("php://temp"));
46 temp stream \(close after\):
56 temp stream \(leak\):
H A Dlstat_stat_variation18.phpt11 /* create temp file and directory */
12 mkdir("$file_path/lstat_stat_variation18/"); // temp dir
13 $fp = fopen("$file_path/lstat_stat_variation18.tmp", "w"); // temp file
/php-src/ext/pdo_pgsql/tests/
H A Dbug69362.phpt50 // Create temp user with leading single quote
H A Dbug62479.phpt50 // Create temp user with space in password
/php-src/ext/dom/tests/
H A Dcanonicalization_special_nodes.phpt14 <temp xmlns=""/>
30 <temp></temp>
35 <temp></temp>
/php-src/ext/gd/libgd/
H A Dgd_webp.c49 unsigned char *read, *temp; in gdImageCreateFromWebpCtx() local
51 temp = gdRealloc(filedata, size+GD_WEBP_ALLOC_STEP); in gdImageCreateFromWebpCtx()
52 if (temp) { in gdImageCreateFromWebpCtx()
53 filedata = temp; in gdImageCreateFromWebpCtx()
54 read = temp + size; in gdImageCreateFromWebpCtx()
/php-src/ext/mysqli/tests/
H A Dbug35517.phpt15 $mysql->query("CREATE TABLE temp (id INT UNSIGNED NOT NULL)");
16 … $mysql->query("INSERT INTO temp (id) VALUES (3000000897),(3800001532),(3900002281),(3100059612)");
17 $stmt = $mysql->prepare("SELECT id FROM temp");
34 $mysql->query("DROP TABLE temp");
44 if (!mysqli_query($link, "DROP TABLE IF EXISTS temp"))

Completed in 116 milliseconds

12345678910