Home
last modified time | relevance | path

Searched refs:j (Results 176 – 200 of 249) sorted by path

12345678910

/PHP-5.5/ext/standard/
H A Dcrypt_freesec.c233 for (j = 0; j < 64; j++) { in _crypt_extended_init()
234 b = (j & 0x20) | ((j & 1) << 4) | ((j >> 1) & 0xf); in _crypt_extended_init()
244 for (j = 0; j < 64; j++) in _crypt_extended_init()
285 for (j = 0; j < 8; j++) { in _crypt_extended_init()
286 inbit = 8 * k + j; in _crypt_extended_init()
302 for (j = 0; j < 7; j++) { in _crypt_extended_init()
303 inbit = 8 * k + j; in _crypt_extended_init()
315 for (j = 0; j < 7; j++) { in _crypt_extended_init()
316 inbit = 7 * k + j; in _crypt_extended_init()
339 for (j = 0; j < 8; j++) { in _crypt_extended_init()
[all …]
H A Dfilters.c874 unsigned int j, lb_cnt2; in php_conv_qprint_encode_convert() local
880 for (j = icnt - 1; j > 0; j--, ps2++) { in php_conv_qprint_encode_convert()
H A Dhtml.c1633 unsigned i, j, k, in PHP_FUNCTION() local
1645 for (j = 0; j < max_j; j++) { in PHP_FUNCTION()
1646 if (ms_table[i][j] == empty_stage3_table) in PHP_FUNCTION()
1649 const entity_stage3_row *r = &ms_table[i][j][k]; in PHP_FUNCTION()
1655 code = ENT_CODE_POINT_FROM_STAGES(i, j, k); in PHP_FUNCTION()
1686 unsigned j, in PHP_FUNCTION() local
1690 for (j = 0; j < numelems; j++) { in PHP_FUNCTION()
1691 const entity_stage3_row *r = &entity_table.table[j]; in PHP_FUNCTION()
1695 if (((j == '\'' && !(flags & ENT_HTML_QUOTE_SINGLE)) || in PHP_FUNCTION()
1696 (j == '"' && !(flags & ENT_HTML_QUOTE_DOUBLE)))) in PHP_FUNCTION()
[all …]
H A Dhtml_tables.h1095 #define ENT_CODE_POINT_FROM_STAGES(i,j,k) (((i) << 12) | ((j) << 6) | (k)) argument
H A Dmail.c83 int j, str_len; in PHP_FUNCTION() local
89 for (j = 0; j < str_len; j++) { in PHP_FUNCTION()
90 h = (h + (h << 5)) ^ (unsigned long) (unsigned char) tolower(str[j]); in PHP_FUNCTION()
H A Dquot_print.c206 int arg1_len, i = 0, j = 0, k; in PHP_FUNCTION() local
226 str_out[j++] = (php_hex2int((int) str_in[i + 1]) << 4) in PHP_FUNCTION()
248 str_out[j++] = str_in[i++]; in PHP_FUNCTION()
253 str_out[j++] = str_in[i++]; in PHP_FUNCTION()
256 str_out[j] = '\0'; in PHP_FUNCTION()
258 RETVAL_STRINGL(str_out, j, 0); in PHP_FUNCTION()
H A Dsha1.c377 unsigned int i, j; local
379 for (i = 0, j = 0; j < len; i++, j += 4) {
380 output[j] = (unsigned char) ((input[i] >> 24) & 0xff);
381 output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff);
382 output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff);
383 output[j + 3] = (unsigned char) (input[i] & 0xff);
397 unsigned int i, j; local
399 for (i = 0, j = 0; j < len; i++, j += 4)
400 output[i] = ((php_uint32) input[j + 3]) | (((php_uint32) input[j + 2]) << 8) |
401 (((php_uint32) input[j + 1]) << 16) | (((php_uint32) input[j]) << 24);
H A Dstring.c138 size_t i, j; in php_bin2hex() local
145 for (i = j = 0; i < oldlen; i++) { in php_bin2hex()
146 result[j++] = hexconvtab[old[i] >> 4]; in php_bin2hex()
147 result[j++] = hexconvtab[old[i] & 15]; in php_bin2hex()
149 result[j] = '\0'; in php_bin2hex()
164 size_t i, j; in php_hex2bin() local
165 for (i = j = 0; i < target_length; i++) { in php_hex2bin()
166 char c = old[j++]; in php_hex2bin()
177 c = old[j++]; in php_hex2bin()
2873 STRLEN j, local
[all …]
/PHP-5.5/ext/standard/html_tables/
H A Dhtml_table_gen.php200 for ($j = 0; $j < 64; $j++) { variable
201 $cp = $i << 6 | $j;
202 $mstable[$i][$j] = isset($mappy[$cp]) ? $mappy[$cp] : NULL;
220 for ($j = 0; $j < 64; $j++) { variable
221 if ($j == 0) echo "\t";
222 elseif ($j % 6 == 0) echo "\n\t";
224 if ($mstable[$i][$j] !== NULL)
225 echo sprintf("0x%04X,", $mstable[$i][$j]);
/PHP-5.5/ext/standard/tests/array/
H A Darray_combine.phpt18 $j = array_combine($array3, $array2);
H A Darray_sum.phpt17 $j = 0;
18 while ($j++ < 100000) {
19 $c[] = $j;
20 $d[] = (string) $j;
H A Dbug24220.phpt36 string(1) "j"
H A Dextract_variation8.phpt8 $var["j"] = 2;
H A Drange.phpt174 string(1) "j"
244 string(1) "j"
H A Drange_errors.phpt29 var_dump( range("a", "j", "z") );
H A Drange_variation.phpt13 for( $j = 0; $j < count($high_arr); $j++) {
14 echo @"\n-- creating an array with low = '$low_arr[$i]' and high = '$high_arr[$j]' --\n";
15 var_dump( range( $low_arr[$i], $high_arr[$j] ) );
/PHP-5.5/ext/standard/tests/file/
H A Dfile_get_contents_variation7-win32.phpt57 $j = $i+1;
59 echo "\n-- Iteration $j --\n";
H A Dfile_get_contents_variation7.phpt49 $j = $i+1;
51 echo "\n-- Iteration $j --\n";
H A Dfile_put_contents_variation7-win32.phpt59 $j = $i+1;
61 echo "\n-- Iteration $j --\n";
H A Dfile_put_contents_variation7.phpt51 $j = $i+1;
53 echo "\n-- Iteration $j --\n";
H A Dfile_variation8-win32.phpt57 $j = $i+1;
59 echo "\n-- Iteration $j --\n";
H A Dfile_variation8.phpt49 $j = $i+1;
51 echo "\n-- Iteration $j --\n";
H A Dflock_variation.phpt53 $j = 0;
55 echo "-- Inner iteration $j in $i --\n";
57 $j++;
H A Dfnmatch_variation.phpt80 for( $j = 0; $j<count($string); $j++ ) {
81 var_dump( fnmatch($pattern[$i], $string[$j]) );
H A Dparse_ini_file_variation6-win32.phpt58 $j = $i+1;
60 echo "\n-- Iteration $j --\n";

Completed in 103 milliseconds

12345678910