Home
last modified time | relevance | path

Searched refs:q (Results 26 – 50 of 232) sorted by relevance

12345678910

/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_arm.lua790 local function parse_vload(q)
809 if match(q, "^[<>=%-]") or match(q, "^extern%s+") then
836 local q = params[n]
844 op = op + parse_gpr(q); n = n + 1
852 local imm = match(q, "^#(.*)$")
856 op = op + parse_gpr(q)
864 op = op + parse_vload(q)
869 if match(q, "^([%w_]+):(r1?[0-9])$") or match(q, "^r(1?[0-9])$") then
870 op = op + parse_gpr(q)
894 local imm = match(q, "^#(.*)$")
[all …]
H A Ddasm_arm64.lua917 local q = params[n]
919 op = op + parse_reg(q, 0); n = n + 1
921 op = op + parse_reg(q, 5); n = n + 1
968 op = op + parse_imm12(q); n = n + 1
970 op = op + parse_imm13(q); n = n + 1
974 op = op + parse_imm6(q); n = n + 1
984 op = op + parse_fpimm(q); n = n + 1
986 if q ~= "#0" and q ~= "#0.0" then werror("expected zero immediate") end
990 op = op + parse_shift(q); n = n + 1
992 op = op + parse_extend(q); n = n + 1
[all …]
/php-src/ext/spl/tests/
H A Dbug44615.phpt10 $array = array(array('z',$a),array('q','s'));
27 string(1) "q"
31 string(1) "q"
H A DarrayObject_ksort_basic1.phpt12 $ao2 = new ArrayObject(array('b'=>4,'a'=>2,'q'=>3, 99=>'x'));
46 ["q"]=>
62 ["q"]=>
/php-src/tests/lang/
H A D023.phpt199 $q=3<br>
200 $q=4<br>
202 $q=3<br>
203 $q=4<br>
215 $q=3<br>
216 $q=4<br>
218 $q=3<br>
219 $q=4<br>
231 $q=3<br>
232 $q=4<br>
[all …]
/php-src/ext/pgsql/tests/
H A D01createdb.phpt17 if (!($q = @pg_query($db, "SELECT * FROM ".$table_name)) || !@pg_num_rows($q))
26 …mpare($v['server'], '9.2', '>=') && (!($q = @pg_query($db, "SELECT * FROM ".$table_name_92)) || !@…
H A D80_bug24499.phpt35 $q = pg_query($dbh, "SELECT id FROM {$table_name}");
36 print_r(pg_fetch_array($q));
37 print_r(pg_fetch_array($q));
38 $id = pg_fetch_object($q);
/php-src/ext/pdo_mysql/tests/
H A Dpdomysql_003.phpt20 $assertWarnings = function ($db, $q, $count) {
21 $db->query($q);
22 printf("Query %s produced %d warnings\n", $q, $db->getWarningCount());
/php-src/ext/standard/tests/array/
H A Darray_chunk_variation25.phpt5 $array = array ("p" => "A", "q" => "B", "r" => "C", "s" => "D", "u" => "E", "v" => "F");
19 ["q"]=>
71 ["q"]=>
157 ["q"]=>
225 ["q"]=>
287 ["q"]=>
349 ["q"]=>
408 ["q"]=>
/php-src/ext/standard/tests/strings/
H A Dstr_replace_variation3.phpt17 array("q", "q"),
23 array("q", "q"),
69 array("q", "q", "c"),
76 array("q", "q", "c"),
84 str_replace("a", array("q", "q", "c"), array("aaa"), $count);
/php-src/ext/random/
H A Dengine_combinedlcg.c36 #define MODMULT(a, b, c, m, s) q = s / a; s = b * (s - a * q) - c * q; if (s < 0) s += m
47 int32_t q, z; in generate() local
/php-src/ext/standard/tests/array/range/
H A Drange_inputs_string_basic.phpt15 var_dump( range("q", "q") );
59 string(1) "q"
101 string(1) "q"
139 string(1) "q"
/php-src/ext/mbstring/tests/
H A Dbug31911.phpt7 echo mb_decode_mimeheader("Works: =?iso-8859-1?q?=3F=3F=3F?=");
9 echo mb_decode_mimeheader("Fails: =?iso-8859-1?q?=3f=3f=3f?=")
/php-src/ext/sodium/tests/
H A Dcrypto_scalarmult.phpt9 $q = sodium_crypto_scalarmult($n, $p);
11 var_dump(sodium_bin2hex($q));
/php-src/win32/build/
H A DMakefile165 -rd /s /q $(BUILD_DIR)\php-$(PHP_VERSION_STRING)
169 -rd /s /q $(BUILD_DIR)\pecl
179 -rd /s /q $(BUILD_DIR)\php-$(PHP_VERSION_STRING)
182 -del /f /q $(BUILD_DIR)\$(DIST_ZIP_SNAP)
183 -del /f /q $(BUILD_DIR)\$(DIST_ZIP_DEBUG_PACK)
184 -del /f /q $(BUILD_DIR)\$(DIST_ZIP_PECL)
185 -del /f /q $(BUILD_DIR)\$(DIST_ZIP_TEST_PACK)
209 -rd /s /q $(BUILD_DIR)\php-$(PHP_VERSION_STRING)
211 -del /f /q $(BUILD_DIR)\$(DIST_ZIP_SNAP)
212 -del /f /q $(BUILD_DIR)\$(DIST_ZIP_DEBUG_PACK)
[all …]
/php-src/sapi/phpdbg/
H A Dphpdbg_help.c43 char *new, *q; in pretty_print() local
88 for (p = text, q = new; *p; p++) { in pretty_print()
90 last_new_blank = q; in pretty_print()
92 *q++ = ' '; in pretty_print()
95 *q++ = *p; in pretty_print()
101 q = zend_mempcpy(q, in_bold ? bold_on_escape : bold_off_escape, bold_escape_len); in pretty_print()
106 q = zend_mempcpy(q, prompt_escape, prompt_escape_len); in pretty_print()
111 *q++ = *p; in pretty_print()
114 *q++ = *p; in pretty_print()
125 *q++ = '\0'; in pretty_print()
[all …]
/php-src/ext/standard/tests/general_functions/
H A Dbug44394.phpt9 $string = "<a href='a?q=1'>asd</a>";
21 <a href='a?q=1&a=b'>asd</a>
/php-src/ext/simplexml/tests/
H A Dbug42369.phpt8 $x = simplexml_load_string($xml . "<q><x>foo</x></q>");
/php-src/ext/iconv/tests/
H A Diconv002.phpt25 $q = iconv("UCS-4BE", "ascii", $s);
26 print $q; print "\n";
/php-src/Zend/tests/
H A Dbug67633.phpt18 $v .= 'q';
23 $v .= 'q';
/php-src/ext/date/tests/
H A D009.phpt15 var_dump(strftime("%%q %%a", $t));
20 var_dump(gmstrftime("%%q %%a", $t));
34 string(5) "%q %a"
47 string(5) "%q %a"
H A D009_win32.phpt21 var_dump(strftime("%%q %%a", $t));
29 var_dump(gmstrftime("%%q %%a", $t));
45 string(5) "%q %a"
57 string(5) "%q %a"
/php-src/ext/openssl/tests/
H A Dopenssl_pkey_new_basic.phpt44 'q' => hex2bin($qhex),
56 openssl_pkey_test_cmp($qhex, $rsa_details['q']);
79 'q' => hex2bin($qhex),
86 openssl_pkey_test_cmp($qhex, $dsa_details['q']);
/php-src/ext/fileinfo/libmagic/
H A Dder.c238 der_data(char *buf, size_t blen, uint32_t tag, const void *q, uint32_t len) in der_data() argument
241 const uint8_t *d = CAST(const uint8_t *, q); in der_data()
246 return snprintf(buf, blen, "%.*s", len, RCAST(const char *, q)); in der_data()
388 printtag(uint32_t tag, const void *q, uint32_t len) in printtag() argument
390 const uint8_t *d = q; in printtag()
396 printf("%.*s\n", len, (const char *)q); in printtag()
415 const uint8_t *q; in printdata() local
430 q = p + x; in printdata()
433 printtag(tag, q, len); in printdata()
/php-src/ext/sysvshm/tests/
H A D003.phpt13 $key = ftok(__DIR__."/003.phpt", 'q');
35 $key = ftok(__DIR__."/003.phpt", 'q');

Completed in 46 milliseconds

12345678910