Home
last modified time | relevance | path

Searched refs:k (Results 201 – 225 of 303) sorted by path

12345678910>>...13

/PHP-5.4/ext/spl/tests/
H A Dspl_recursive_iterator_iterator_key_case.phpt11 foreach($it as $k=>$v)
13 echo "$k=>$v\n";
14 var_dump($k);
/PHP-5.4/ext/sqlite3/libsqlite/
H A Dsqlite3.c24033 for(k=i; sqlite3Isxdigit(z[k]); k++){
72887 for(k=0; k<n; k++) if( aPermute[k]>mx ) mx = aPermute[k];
81443 for(k=0; k<pUsing->nId; k++){
89368 for(k=sqliteHashFirst(&pSchema->tblHash); k; k=sqliteHashNext(k)){
93966 for(k=0; k<pIdx->nKeyCol; k++){
104636 for(k=1; k<=pTab->nCol && pPk->aiColumn[k-1]!=i; k++){}
108112 for(k=nName-1; k>1 && sqlite3Isdigit(zName[k]); k--){}
110694 for(k=0; k<pEList->nExpr; k++){
110720 for(k=0; k<pEList->nExpr; k++){
120006 for(k=1; k<=nNotReady; k++){
[all …]
/PHP-5.4/ext/standard/
H A Darray.c2014 k++; in _phpi_pop()
3768 for (k = 0; k < MULTISORT_LAST; k++) \
3789 int i, k; in PHP_FUNCTION() local
3820 for (k = 0; k < MULTISORT_LAST; k++) { in PHP_FUNCTION()
3882 for (k = 0; k < MULTISORT_LAST; k++) { in PHP_FUNCTION()
3899 k = 0; in PHP_FUNCTION()
3904 for (k = 0; k < array_size; k++) { in PHP_FUNCTION()
3919 for (k = 0; k < array_size; k++) { in PHP_FUNCTION()
3929 k = 0; in PHP_FUNCTION()
3945 for (k = 0; k < MULTISORT_LAST; k++) { in PHP_FUNCTION()
[all …]
H A Dbase64.c146 int ch, i = 0, j = 0, k; in php_base64_decode_ex() local
197 k = j; in php_base64_decode_ex()
205 k++; in php_base64_decode_ex()
207 result[k] = 0; in php_base64_decode_ex()
H A Dcrypt_blowfish.c866 const char *k = "\xff\xa3" "34" "\xff\xff\xff\xa3" "345"; in php_crypt_blowfish_rn() local
868 BF_set_key(k, ae, ai, 2); /* $2a$ */ in php_crypt_blowfish_rn()
869 BF_set_key(k, ye, yi, 4); /* $2y$ */ in php_crypt_blowfish_rn()
H A Dcrypt_freesec.c217 int i, j, b, k, inbit, obit; in _crypt_extended_init() local
279 for (k = 0; k < 8; k++) { in _crypt_extended_init()
281 *(il = &ip_maskl[k][i]) = 0; in _crypt_extended_init()
282 *(ir = &ip_maskr[k][i]) = 0; in _crypt_extended_init()
283 *(fl = &fp_maskl[k][i]) = 0; in _crypt_extended_init()
284 *(fr = &fp_maskr[k][i]) = 0; in _crypt_extended_init()
286 inbit = 8 * k + j; in _crypt_extended_init()
303 inbit = 8 * k + j; in _crypt_extended_init()
313 *(il = &comp_maskl[k][i]) = 0; in _crypt_extended_init()
314 *(ir = &comp_maskr[k][i]) = 0; in _crypt_extended_init()
[all …]
H A Dexec.c386 int k = 0, n = y - 1; in php_escape_shell_arg() local
387 for (; n >= 0 && '\\' == cmd[n]; n--, k++); in php_escape_shell_arg()
388 if (k % 2) { in php_escape_shell_arg()
H A Dftok.c36 key_t k; in PHP_FUNCTION() local
56 k = ftok(pathname, proj[0]); in PHP_FUNCTION()
57 if (k == -1) { in PHP_FUNCTION()
61 RETURN_LONG(k); in PHP_FUNCTION()
H A Dhtml.c465 if (k < 0x80) { in php_utf32_utf8()
466 buf[0] = k; in php_utf32_utf8()
497 buf[0] = k; in php_mb2_int_to_char()
500 buf[0] = k >> 8; in php_mb2_int_to_char()
515 buf[0] = k; in php_mb3_int_to_char()
518 buf[0] = k >> 8; in php_mb3_int_to_char()
522 buf[0] = k >> 16; in php_mb3_int_to_char()
1133 unsigned int k, in find_entity_for_char() argument
1196 unsigned int k, in find_entity_for_char_basic() argument
1201 if (k >= 64U) { in find_entity_for_char_basic()
[all …]
H A Dhtml_tables.h95 #define ENT_ENC_TO_UNI_STAGE1(k) ((k & 0xC0) >> 6) argument
97 #define ENT_ENC_TO_UNI_STAGE2(k) ((k) & 0x3F) argument
1092 #define ENT_STAGE1_INDEX(k) (((k) & 0xFFF000) >> 12) /* > 1D, we have no mapping */ argument
1093 #define ENT_STAGE2_INDEX(k) (((k) & 0xFC0) >> 6) argument
1094 #define ENT_STAGE3_INDEX(k) ((k) & 0x3F) argument
1095 #define ENT_CODE_POINT_FROM_STAGES(i,j,k) (((i) << 12) | ((j) << 6) | (k)) argument
H A Dquot_print.c206 int arg1_len, i = 0, j = 0, k; in PHP_FUNCTION() local
230 k = 1; in PHP_FUNCTION()
231 while (str_in[i + k] && ((str_in[i + k] == 32) || (str_in[i + k] == 9))) { in PHP_FUNCTION()
233 k++; in PHP_FUNCTION()
235 if (!str_in[i + k]) { in PHP_FUNCTION()
237 i += k; in PHP_FUNCTION()
239 else if ((str_in[i + k] == 13) && (str_in[i + k + 1] == 10)) { in PHP_FUNCTION()
241 i += k + 2; in PHP_FUNCTION()
243 else if ((str_in[i + k] == 13) || (str_in[i + k] == 10)) { in PHP_FUNCTION()
245 i += k + 1; in PHP_FUNCTION()
/PHP-5.4/ext/standard/html_tables/
H A Dhtml_table_gen.php258 foreach ($a as $k => $v) {
344 foreach ($mappy as $k => $v) {
469 foreach ($multicp_rows as $k => $v) {
535 for ($k = 0; $k < 64; $k++) { variable
539 if (isset($mstable[$i][$k][$l])) {
605 for ($k = 0; $k < 64; $k++) { variable
606 if (isset($mstable[$i][$k]))
612 for ($k = 0; $k < 64; $k++) { variable
613 if ($k == 0) echo "\t";
614 elseif ($k % 4 == 0) echo "\n\t";
[all …]
/PHP-5.4/ext/standard/tests/array/
H A Darray_combine.phpt19 $k = array_combine($array3, $array3);
H A Darray_diff_key.phpt15 foreach ($a_f as $k=> &$a_f_el) { $a_f_el =$k*2;}
16 foreach ($b_f as $k=> &$b_f_el) { $b_f_el =$k*2;}
17 foreach ($c_f as $k=> &$c_f_el) { $c_f_el =$k*2;}
18 foreach ($d_f as $k=> &$d_f_el) { $d_f_el =$k*2;}
H A Darray_intersect_key.phpt16 foreach ($a_f as $k=> &$a_f_el) { $a_f_el =$k*2;}
17 foreach ($b_f as $k=> &$b_f_el) { $b_f_el =$k*2;}
18 foreach ($c_f as $k=> &$c_f_el) { $c_f_el =$k*2;}
19 foreach ($d_f as $k=> &$d_f_el) { $d_f_el =$k*2;}
H A Darray_search_variation2.phpt20 "-.051" =>"k",
H A Darray_walk_closure.phpt88 var_dump(array_walk($ar, function($v, $k) { if ($v == 2) throw new Exception; } ));
244 ["$k"]=>
H A Dbug12776.phpt14 $arr=array('k'=>'v');
23 val: v; key: k
24 First value: k
H A Dbug21918.phpt9 foreach($a as $k => $v) {
10 var_dump($k);
18 foreach($b as $k => $v) {
19 var_dump($k);
26 foreach($c as $k => $v) {
27 var_dump($k);
H A Dbug24220.phpt38 string(1) "k"
H A Dbug24766.phpt11 $k = array_keys($a);
13 debug_zval_dump($k, $l);
14 $i=$k[0];
H A Dextract_variation8.phpt9 $var["k"] = 3;
H A Din_array_variation2.phpt20 "-.051" =>"k",
H A Drange.phpt176 string(1) "k"
242 string(1) "k"
444 string(1) "k"
/PHP-5.4/ext/standard/tests/general_functions/
H A Dbug47859.phpt12 var_dump(parse_ini_string('k*e*y = "v*a*lue"'));
40 ["k*e*y"]=>

Completed in 388 milliseconds

12345678910>>...13