Home
last modified time | relevance | path

Searched refs:j (Results 1 – 25 of 249) sorted by relevance

12345678910

/PHP-5.5/ext/hash/
H A Dhash_ripemd.c212 for(j = 0; j < 16; j++) { in RIPEMD128Transform()
219 for(j = 16; j < 32; j++) { in RIPEMD128Transform()
226 for(j = 32; j < 48; j++) { in RIPEMD128Transform()
233 for(j = 48; j < 64; j++) { in RIPEMD128Transform()
303 for(j = 0; j < 16; j++) { in RIPEMD256Transform()
311 for(j = 16; j < 32; j++) { in RIPEMD256Transform()
319 for(j = 32; j < 48; j++) { in RIPEMD256Transform()
327 for(j = 48; j < 64; j++) { in RIPEMD256Transform()
401 for(j = 0; j < 16; j++) { in RIPEMD160Transform()
408 for(j = 16; j < 32; j++) { in RIPEMD160Transform()
[all …]
H A Dhash_snefru.c125 int i, j; in SnefruTransform() local
127 for (i = 0, j = 0; i < 32; i += 4, ++j) { in SnefruTransform()
128 context->state[8+j] = ((input[i] & 0xff) << 24) | ((input[i+1] & 0xff) << 16) | in SnefruTransform()
176 php_hash_uint32 i, j; in PHP_SNEFRUFinal() local
186 for (i = 0, j = 0; j < 32; i++, j += 4) { in PHP_SNEFRUFinal()
187 digest[j] = (unsigned char) ((context->state[i] >> 24) & 0xff); in PHP_SNEFRUFinal()
188 digest[j + 1] = (unsigned char) ((context->state[i] >> 16) & 0xff); in PHP_SNEFRUFinal()
189 digest[j + 2] = (unsigned char) ((context->state[i] >> 8) & 0xff); in PHP_SNEFRUFinal()
190 digest[j + 3] = (unsigned char) (context->state[i] & 0xff); in PHP_SNEFRUFinal()
/PHP-5.5/ext/opcache/Optimizer/
H A Dnop_removal.c9 int j; in nop_removal() local
95 for (j = 0; j < op_array->last_brk_cont; j++) { in nop_removal()
96 op_array->brk_cont_array[j].brk -= shiftlist[op_array->brk_cont_array[j].brk]; in nop_removal()
97 op_array->brk_cont_array[j].cont -= shiftlist[op_array->brk_cont_array[j].cont]; in nop_removal()
98 op_array->brk_cont_array[j].start -= shiftlist[op_array->brk_cont_array[j].start]; in nop_removal()
102 for (j = 0; j < op_array->last_try_catch; j++) { in nop_removal()
103 op_array->try_catch_array[j].try_op -= shiftlist[op_array->try_catch_array[j].try_op]; in nop_removal()
104 op_array->try_catch_array[j].catch_op -= shiftlist[op_array->try_catch_array[j].catch_op]; in nop_removal()
106 if (op_array->try_catch_array[j].finally_op) { in nop_removal()
107 op_array->try_catch_array[j].finally_op -= shiftlist[op_array->try_catch_array[j].finally_op]; in nop_removal()
[all …]
/PHP-5.5/tests/lang/
H A D024.phpt29 $j = 3;
112 $i=$j=0;
116 $j++;
149 $j = $i*2+$j*($i++);
172 $j += ++$i; /* ++$i --> $i==2, $j += 2 --> $j==2 */
183 $j *= $i; /* $j *= 2 --> $j == 4 */
219 $j=20;
244 ${"test$i$j"}[$k] = $i+$j+$k;
328 echo " \$j=$j\n";
354 echo " \$j=$j\n";
[all …]
H A D023.phpt198 $j=3<br>
201 $j=4<br>
205 $j=0<br>
206 $j=1<br>
207 $j=2<br>
214 $j=3<br>
217 $j=4<br>
221 $j=0<br>
222 $j=1<br>
223 $j=2<br>
[all …]
/PHP-5.5/ext/skeleton/
H A Dcreate_stubs12 function convert(i, j, t)
14 type = argtypes[i,j]
15 name = argnames[i,j]
16 opt = optionals[i,j]
204 for (j = 0; j < maxargs[i]; j++) {
214 if (j > minargs[i]-1) {
221 argnames[i,j] \
226 argnames[i,j] \
230 if (j > 0) proto = proto ", "
231 proto = proto argtypes[i,j] " " argnames[i,j]
[all …]
/PHP-5.5/ext/mbstring/ucgendat/
H A Ducgendat.c308 for (j = rlp->used; j > i; j -= 2) { in add_range()
437 for (j = rlp->used; j > i; j -= 2) { in ordered_range_insert()
496 for (j = *pdecomps_used; j > i; j--) in add_decomp()
560 for (j = title_used; j > i; j--) in add_title()
607 for (j = upper_used; j > i; j--) in add_upper()
654 for (j = lower_used; j > i; j--) in add_lower()
725 for (j = ccl_used; j > i; j -= 3) { in ordered_ccl_insert()
804 for (j = ncodes_used; j > i; j--) { in add_number()
1391 for (j=0; j<proptbl[i].used; j++) { in write_cdata()
1616 for (j=0; j<decomps[i].used; j++) { in write_cdata()
[all …]
/PHP-5.5/ext/gd/libgd/
H A Dgd_filter.c232 int x, y, i, j, new_a; in gdImageConvolution() local
262 for (j=0; j<3; j++) { in gdImageConvolution()
293 int x, y, i, j; in gdImageSelectiveBlur() local
323 for (j=0; j<3; j++) { in gdImageSelectiveBlur()
339 flt_r[j][i] = 1.0f; in gdImageSelectiveBlur()
350 flt_g[j][i] = 1.0f; in gdImageSelectiveBlur()
361 flt_b[j][i] = 1.0f; in gdImageSelectiveBlur()
365 flt_r_sum += flt_r[j][i]; in gdImageSelectiveBlur()
366 flt_g_sum += flt_g[j][i]; in gdImageSelectiveBlur()
371 for (j=0; j<3; j++) { in gdImageSelectiveBlur()
[all …]
H A Dgdkanji.c386 int p1, p2, i, j; in do_convert()
390 j = 0; in do_convert()
420 to[j++] = SS2; in do_convert()
424 to[j++] = from[i]; in do_convert()
434 to[j++] = p1; in do_convert()
438 to[j++] = p1; in do_convert()
455 if (j >= BUFSIZ) in do_convert()
461 to[j] = '\0'; in do_convert()
469 int p1, p2, i, j; in do_check_and_conv() local
520 j = 0; in do_check_and_conv()
[all …]
H A Dwebpng.c139 int j; in main() local
144 for (j = 0; (j < gdImageColorsTotal (im)); j++) in main()
148 j, in main()
149 gdImageRed (im, j), in main()
150 gdImageGreen (im, j), in main()
151 gdImageBlue (im, j), in main()
152 gdImageAlpha (im, j)); in main()
/PHP-5.5/ext/standard/
H A Dbase64.c146 int ch, i = 0, j = 0, k; in php_base64_decode_ex() local
180 result[j] = ch << 2; in php_base64_decode_ex()
183 result[j++] |= ch >> 4; in php_base64_decode_ex()
184 result[j] = (ch & 0x0f) << 4; in php_base64_decode_ex()
187 result[j++] |= ch >>2; in php_base64_decode_ex()
188 result[j] = (ch & 0x03) << 6; in php_base64_decode_ex()
191 result[j++] |= ch; in php_base64_decode_ex()
197 k = j; in php_base64_decode_ex()
211 *ret_length = j; in php_base64_decode_ex()
213 result[j] = '\0'; in php_base64_decode_ex()
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 Dbrowscap.c87 int i, j=0; in convert_browscap_pattern() local
94 t[j++] = '~'; in convert_browscap_pattern()
95 t[j++] = '^'; in convert_browscap_pattern()
100 t[j] = '.'; in convert_browscap_pattern()
104 t[j] = '*'; in convert_browscap_pattern()
108 t[j] = '.'; in convert_browscap_pattern()
116 t[j] = '('; in convert_browscap_pattern()
120 t[j] = ')'; in convert_browscap_pattern()
132 t[j++] = '$'; in convert_browscap_pattern()
133 t[j++] = '~'; in convert_browscap_pattern()
[all …]
/PHP-5.5/ext/date/tests/
H A Ddate_diff.phpt23 for ( $j = 0; $j < COUNT * 12; $j++)
25 $diff = date_diff( $dates[$i], $dates[$j] );
29 $dates[$j]->format( 'Y-m-d' ),
37 if ( $current > $dates[$j] )
45 if ( $current != $dates[$j] )
51 $dates[$j]->format( 'Y-m-d' ), ")\n";
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_ord2utf8.c72 register int i, j; in PRIV() local
77 for (j = i; j > 0; j--) in PRIV()
/PHP-5.5/ext/zip/lib/
H A Dzip_close.c74 int i, j, error; in zip_close() local
148 for (i=j=0; i<za->nentry; i++) { in zip_close()
152 filelist[j].idx = i; in zip_close()
154 j++; in zip_close()
164 for (j=0; j<survivors; j++) { in zip_close()
165 i = filelist[j].idx; in zip_close()
176 memcpy(cd->entry+j, &de, sizeof(cd->entry[j])); in zip_close()
183 cd->entry[j].filename = "-"; in zip_close()
206 memcpy(cd->entry+j, za->cdir->entry+i, sizeof(cd->entry[j])); in zip_close()
250 cd->entry[j].offset = ftello(out); in zip_close()
[all …]
/PHP-5.5/ext/standard/tests/array/
H A Darray_sum.phpt17 $j = 0;
18 while ($j++ < 100000) {
19 $c[] = $j;
20 $d[] = (string) $j;
/PHP-5.5/ext/gd/tests/
H A Dbug51263.phpt20 for ($j=0; $j<30; $j++) {
22 $c = imagecolorat($img, $i, $j);
24 echo "KO: ($i, $j)\n";
/PHP-5.5/Zend/
H A Dbench.php234 $j = $l << 1;
235 while ($j <= $ir) {
236 if (($j < $ir) && ($ra[$j] < $ra[$j+1])) {
237 $j++;
239 if ($rra < $ra[$j]) {
240 $ra[$i] = $ra[$j];
241 $j += ($i = $j);
243 $j = $ir + 1;
271 for ($j=0; $j<$cols; $j++) {
281 for ($j=0; $j<$cols; $j++) {
[all …]
/PHP-5.5/win32/build/
H A Dconfutils.js183 for (j = 0; j < a.length - i; j++) {
186 for (j = i; j < b.length; j++) {
342 for (j = 0; j < configure_args.length; j++) {
408 for (j = 0; j < n; j++) {
450 for (j = 0; j < core_module_list.length; j++) {
686 for (j = 0; j < subdirs.length; j++) {
1547 for (j=0; j < l; j++) {
1575 for (j=0; j < k; j++) {
1581 for (j=0; j < l; j++) {
1595 for (j=0; j < l; j++) {
[all …]
/PHP-5.5/ext/fileinfo/
H A Dcreate_data_file.php6 $j = 0; variable
11 if ($j % 16 == 15) {
14 $j++;
/PHP-5.5/TSRM/
H A DTSRM.c174 int j; in tsrm_shutdown() local
177 for (j=0; j<p->count; j++) { in tsrm_shutdown()
178 if (p->storage[j]) { in tsrm_shutdown()
180 resource_types_table[j].dtor(p->storage[j], &p->storage); in tsrm_shutdown()
182 free(p->storage[j]); in tsrm_shutdown()
249 int j; in ts_allocate_id() local
252 for (j=p->count; j<id_count; j++) { in ts_allocate_id()
253 p->storage[j] = (void *) malloc(resource_types_table[j].size); in ts_allocate_id()
255 resource_types_table[j].ctor(p->storage[j], &p->storage); in ts_allocate_id()
544 if (p->count > j && p->storage[j]) { in ts_free_id()
[all …]
/PHP-5.5/ext/fileinfo/libmagic/
H A Dreadcdf.c96 size_t j, k = 1; local
101 for (j = 0; j < sizeof(vbuf) && len--;
102 j++, s += k) {
106 vbuf[j] = *s;
108 if (j == sizeof(vbuf))
109 --j;
110 vbuf[j] = '\0';
297 size_t j, k; local
298 for (j = 0; j < dir.dir_len; j++) {
299 d = &dir.dir_tab[j];
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_language.c93 int i, j; in mbfl_name2language() local
117 j = 0; in mbfl_name2language()
118 while ((*language->aliases)[j] != NULL) { in mbfl_name2language()
119 if (strcasecmp((*language->aliases)[j], name) == 0) { in mbfl_name2language()
122 j++; in mbfl_name2language()
/PHP-5.5/ext/mbstring/oniguruma/enc/
H A Dunicode.c11019 int i, j, k, r; local
11026 for (j = 0; j < p11->to.n; j++) {
11067 for (j = 0; j < p11->to.n; j++) {
11072 code = p11->to.code[j];
11094 for (j = 0; j < CaseUnfold_12[i].to.n; j++) {
11100 if (k == j) continue;
11115 for (j = 0; j < CaseUnfold_12_Locale[i].to.n; j++) {
11136 for (j = 0; j < CaseUnfold_13[i].to.n; j++) {
11160 int n, i, j, k, len; local
11241 for (j = 0; j < ncs[1]; j++) {
[all …]

Completed in 117 milliseconds

12345678910