Home
last modified time | relevance | path

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

12345678910

/PHP-5.3/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_salsa.c123 php_hash_uint32 i, j, a[16]; in SalsaTransform() local
129 for (i = 0, j = 0; j < 64; i++, j += 4) { in SalsaTransform()
130 a[i] = ((php_hash_uint32) input[j + 3]) | (((php_hash_uint32) input[j + 2]) << 8) | in SalsaTransform()
131 (((php_hash_uint32) input[j + 1]) << 16) | (((php_hash_uint32) input[j]) << 24); in SalsaTransform()
181 php_hash_uint32 i, j; in PHP_SALSAFinal() local
187 for (i = 0, j = 0; j < 64; i++, j += 4) { in PHP_SALSAFinal()
188 digest[j] = (unsigned char) ((context->state[i] >> 24) & 0xff); in PHP_SALSAFinal()
189 digest[j + 1] = (unsigned char) ((context->state[i] >> 16) & 0xff); in PHP_SALSAFinal()
190 digest[j + 2] = (unsigned char) ((context->state[i] >> 8) & 0xff); in PHP_SALSAFinal()
191 digest[j + 3] = (unsigned char) (context->state[i] & 0xff); in PHP_SALSAFinal()
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dencode.c124 int i, j, e, m; in sqlite_encode_binary() local
151 j = 1; in sqlite_encode_binary()
155 out[j++] = 1; in sqlite_encode_binary()
158 out[j++] = x; in sqlite_encode_binary()
160 out[j] = 0; in sqlite_encode_binary()
162 return j; in sqlite_encode_binary()
210 for(j=k=0; j<n; j++){ in main()
212 in[j] = k; in main()
216 for(j=0; j<n; j++) in[j] = rand() & 0xff; in main()
235 for(j=0; out[j]; j++){ in main()
[all …]
H A Drandom.c45 unsigned char i, j; /* State variables */ in randomByte() member
61 prng.j = 0; in randomByte()
68 prng.j += prng.s[i] + k[i]; in randomByte()
69 t = prng.s[prng.j]; in randomByte()
70 prng.s[prng.j] = prng.s[i]; in randomByte()
80 prng.j += t; in randomByte()
81 prng.s[prng.i] = prng.s[prng.j]; in randomByte()
82 prng.s[prng.j] = t; in randomByte()
H A Dwhere.c220 int i, j; in findSortingIndex() local
257 if( j<nExpr && pOrderBy->a[j].pExpr->iColumn==pIdx->aiColumn[i] ){ j++; } in findSortingIndex()
483 int j; in sqliteWhereBegin() local
503 for(j=0; j<nExpr; j++){ in sqliteWhereBegin()
565 for(j=0; j<nExpr; j++){ in sqliteWhereBegin()
721 int j, k; in sqliteWhereBegin() local
784 for(j=0; j<nColumn; j++){ in sqliteWhereBegin()
956 for(j=0; j<nEqColumn; j++){ in sqliteWhereBegin()
984 for(j=0; j<nEqColumn; j++){ in sqliteWhereBegin()
1140 for(j=0; j<nExpr; j++){ in sqliteWhereBegin()
[all …]
H A Ddate.c746 int n, i, j; in strftimeFunc() local
798 case 'd': sprintf(&z[j],"%02d",x.D); j+=2; break; in strftimeFunc()
803 j += strlen(&z[j]); in strftimeFunc()
806 case 'H': sprintf(&z[j],"%02d",x.h); j+=2; break; in strftimeFunc()
820 j += 2; in strftimeFunc()
827 case 'J': sprintf(&z[j],"%.16g",x.rJD); j+=strlen(&z[j]); break; in strftimeFunc()
828 case 'm': sprintf(&z[j],"%02d",x.M); j+=2; break; in strftimeFunc()
829 case 'M': sprintf(&z[j],"%02d",x.m); j+=2; break; in strftimeFunc()
832 j += strlen(&z[j]); in strftimeFunc()
837 case 'Y': sprintf(&z[j],"%04d",x.Y); j+=strlen(&z[j]); break; in strftimeFunc()
[all …]
H A Dupdate.c123 for(j=0; j<pTab->nCol; j++){ in sqliteUpdate()
129 aXRef[j] = i; in sqliteUpdate()
133 if( j>=pTab->nCol ){ in sqliteUpdate()
150 aXRef[j] = -1; in sqliteUpdate()
176 for(nIdx=j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){ in sqliteUpdate()
186 aIdxUsed[j] = 1; in sqliteUpdate()
188 aIdxUsed[j] = 0; in sqliteUpdate()
289 j = aXRef[i]; in sqliteUpdate()
290 if( j<0 ){ in sqliteUpdate()
367 j = aXRef[i]; in sqliteUpdate()
[all …]
/PHP-5.3/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.3/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.3/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.3/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.3/ext/standard/
H A Dhtml.c924 int j, k; in php_unescape_html_entities() local
938 for (j = 0; entity_map[j].charset != cs_terminator; j++) { in php_unescape_html_entities()
997 for (j = 0; basic_entities[j].charcode != 0; j++) { in php_unescape_html_entities()
1166 for (j = 0; entity_map[j].charset != cs_terminator; j++) { in php_escape_html_entities_ex()
1240 for (j = 0; basic_entities[j].charcode != 0; j++) { in php_escape_html_entities_ex()
1347 j++; in PHP_FUNCTION()
1352 i = j + 1; in PHP_FUNCTION()
1357 for (j = 0; j < i; j++) { in PHP_FUNCTION()
1422 int j; in PHP_FUNCTION() local
1440 for (j = 0; entity_map[j].charset != cs_terminator; j++) { in PHP_FUNCTION()
[all …]
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 …]
/PHP-5.3/ext/sqlite/
H A Dsqlite.php26 for ($j = 0; $j < sqlite_num_fields($r); $j++) { variable
27 echo "Field $j is " . sqlite_field_name($r, $j) . "\n";
/PHP-5.3/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.3/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.3/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.3/win32/build/
H A Dconfutils.js179 for (j = 0; j < a.length - i; j++) {
182 for (j = i; j < b.length; j++) {
338 for (j = 0; j < configure_args.length; j++) {
404 for (j = 0; j < n; j++) {
445 for (j = 0; j < core_module_list.length; j++) {
681 for (j = 0; j < subdirs.length; j++) {
1457 for (j=0; j < l; j++) {
1485 for (j=0; j < k; j++) {
1491 for (j=0; j < l; j++) {
1505 for (j=0; j < l; j++) {
[all …]
/PHP-5.3/ext/standard/tests/array/
H A Darray_sum.phpt17 $j = 0;
18 while ($j++ < 100000) {
19 $c[] = $j;
20 $d[] = (string) $j;
/PHP-5.3/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.3/Zend/
H A Dbench.php235 $j = $l << 1;
236 while ($j <= $ir) {
237 if (($j < $ir) && ($ra[$j] < $ra[$j+1])) {
238 $j++;
240 if ($rra < $ra[$j]) {
241 $ra[$i] = $ra[$j];
242 $j += ($i = $j);
244 $j = $ir + 1;
272 for ($j=0; $j<$cols; $j++) {
282 for ($j=0; $j<$cols; $j++) {
[all …]

Completed in 117 milliseconds

12345678910