Home
last modified time | relevance | path

Searched refs:j (Results 151 – 175 of 249) sorted by last modified time

12345678910

/PHP-5.5/ext/intl/collator/
H A Dcollator_sort.c375 uint32_t j = 0; in PHP_FUNCTION() local
500 for( j = 0; j < sortKeyCount; j++ ) in PHP_FUNCTION()
501 sortKeyIndxBuf[j].key = sortKeyBuf + (ptrdiff_t)sortKeyIndxBuf[j].key; in PHP_FUNCTION()
510 for( j = 0; j < sortKeyCount; j++ ) in PHP_FUNCTION()
512 zval_add_ref( sortKeyIndxBuf[j].zstr ); in PHP_FUNCTION()
513 zend_hash_next_index_insert( sortedHash, sortKeyIndxBuf[j].zstr, sizeof(zval **), NULL ); in PHP_FUNCTION()
/PHP-5.5/ext/interbase/tests/
H A D007.phpt34 for ($j = 1; $j <= 10; ++$j) {
36 $v_multi[$i][$j][$k] = $i * $j * $k;
/PHP-5.5/ext/interbase/
H A Dinterbase.c584 unsigned short i = 0, j; in _php_ibase_commit_link() local
609 for (j = 0; j < p->trans->link_cnt; ++j) { in _php_ibase_commit_link()
610 if (p->trans->db_link[j] == link) { in _php_ibase_commit_link()
611 p->trans->db_link[j] = NULL; in _php_ibase_commit_link()
/PHP-5.5/ext/iconv/
H A Diconv.c1002 unsigned int i, j, lim; in _php_iconv_strpos() local
1005 j = GENERIC_SUPERSET_NBYTES; in _php_iconv_strpos()
1008 while (j < lim) { in _php_iconv_strpos()
1013 j -= i; in _php_iconv_strpos()
1016 j += GENERIC_SUPERSET_NBYTES; in _php_iconv_strpos()
1045 unsigned int i, j, lim; in _php_iconv_strpos() local
1048 j = GENERIC_SUPERSET_NBYTES; in _php_iconv_strpos()
1051 while (j < lim) { in _php_iconv_strpos()
1052 if (_php_iconv_memequal(&ndl_buf[j], &ndl_buf[i], in _php_iconv_strpos()
1056 j -= i; in _php_iconv_strpos()
[all …]
/PHP-5.5/ext/hash/
H A Dbench.php78 for ($j = 0; $j < 10; $j++) { variable
H A Dhash.c619 long loops, i, j, iterations, length = 0, digest_length; in PHP_FUNCTION() local
702 for (j = 1; j < iterations; j++) { in PHP_FUNCTION()
927 int i = 0, j = 0; in PHP_FUNCTION() local
941 for (j=0;j<i;j++) { in PHP_FUNCTION()
H A Dhash_gost.c229 int i, j; in GostTransform() local
232 for (i = 0, j = 0; i < 8; ++i, j += 4) { in GostTransform()
233 data[i] = ((php_hash_uint32) input[j]) | (((php_hash_uint32) input[j + 1]) << 8) | in GostTransform()
234 (((php_hash_uint32) input[j + 2]) << 16) | (((php_hash_uint32) input[j + 3]) << 24); in GostTransform()
284 php_hash_uint32 i, j, l[8] = {0}; in PHP_GOSTFinal() local
295 for (i = 0, j = 0; j < 32; i++, j += 4) { in PHP_GOSTFinal()
296 digest[j] = (unsigned char) (context->state[i] & 0xff); in PHP_GOSTFinal()
297 digest[j + 1] = (unsigned char) ((context->state[i] >> 8) & 0xff); in PHP_GOSTFinal()
298 digest[j + 2] = (unsigned char) ((context->state[i] >> 16) & 0xff); in PHP_GOSTFinal()
299 digest[j + 3] = (unsigned char) ((context->state[i] >> 24) & 0xff); in PHP_GOSTFinal()
H A Dhash_haval.c103 unsigned int i, j; in Encode() local
105 for (i = 0, j = 0; j < len; i++, j += 4) { in Encode()
106 output[j] = (unsigned char) (input[i] & 0xff); in Encode()
107 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff); in Encode()
108 output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff); in Encode()
109 output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff); in Encode()
120 unsigned int i, j; in Decode() local
122 for (i = 0, j = 0; j < len; i++, j += 4) { in Decode()
123 output[i] = ((php_hash_uint32) input[j]) | (((php_hash_uint32) input[j + 1]) << 8) | in Decode()
124 (((php_hash_uint32) input[j + 2]) << 16) | (((php_hash_uint32) input[j + 3]) << 24); in Decode()
H A Dhash_md.c69 unsigned int i, j; in Encode() local
71 for (i = 0, j = 0; j < len; i++, j += 4) { in Encode()
72 output[j] = (unsigned char) (input[i] & 0xff); in Encode()
73 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff); in Encode()
86 unsigned int i, j; in Decode() local
88 for (i = 0, j = 0; j < len; i++, j += 4) in Decode()
89 output[i] = ((php_hash_uint32) input[j]) | (((php_hash_uint32) input[j + 1]) << 8) | in Decode()
90 (((php_hash_uint32) input[j + 2]) << 16) | (((php_hash_uint32) input[j + 3]) << 24); in Decode()
636 unsigned char i,j,t = 0; in MD2_Transform() local
644 for(j = 0; j < 48; j++) { in MD2_Transform()
[all …]
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_sha.c43 unsigned int i, j; in SHAEncode32() local
45 for (i = 0, j = 0; j < len; i++, j += 4) { in SHAEncode32()
61 unsigned int i, j; in SHADecode32() local
63 for (i = 0, j = 0; j < len; i++, j += 4) in SHADecode32()
64 output[i] = ((php_hash_uint32) input[j + 3]) | (((php_hash_uint32) input[j + 2]) << 8) | in SHADecode32()
65 (((php_hash_uint32) input[j + 1]) << 16) | (((php_hash_uint32) input[j]) << 24); in SHADecode32()
734 unsigned int i, j; in SHAEncode64() local
736 for (i = 0, j = 0; j < len; i++, j += 8) { in SHAEncode64()
756 unsigned int i, j; in SHADecode64() local
758 for (i = 0, j = 0; j < len; i++, j += 8) in SHADecode64()
[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/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/ext/gd/libgd/
H A Dgd_interpolation.c1157 for (j=0; j<new_width; j++) { in gdImageScaleNearestNeighbour()
1168 for (j=0; j<new_width; j++) { in gdImageScaleNearestNeighbour()
1261 long j; in gdImageScaleBilinearPalette() local
1268 for (j=0; j < _width; j++) { in gdImageScaleBilinearPalette()
1352 long j; in gdImageScaleBilinearTC() local
1354 for (j=0; j < dst_w; j++) { in gdImageScaleBilinearTC()
1463 for (j=0; j < new_width; j++) { in gdImageScaleBicubicFixed()
1721 for (j = 0; j < new_width; j++) { in gdImageRotateNearestNeighbour()
1778 for (j = 0; j < new_width; j++) { in gdImageRotateGeneric()
1832 for (j=0; j < new_width; j++) { in gdImageRotateBilinear()
[all …]
H A Dgd_jpeg.c168 int i, j, jidx; in gdImageJpegCtx() local
229 for (jidx = 0, j = 0; j < im->sx; j++) { in gdImageJpegCtx()
230 int val = im->tpixels[i][j]; in gdImageJpegCtx()
244 for (jidx = 0, j = 0; j < im->sx; j++) { in gdImageJpegCtx()
245 int idx = im->pixels[i][j]; in gdImageJpegCtx()
329 unsigned int i, j; in gdImageCreateFromJpegCtxEx() local
454 for (j = 0; j < cinfo.output_width; j++, currow += 4, tpix++) { in gdImageCreateFromJpegCtxEx()
467 for (j = 0; j < cinfo.output_width; j++, currow += 3, tpix++) { in gdImageCreateFromJpegCtxEx()
H A Dgdxpm.c22 int i, j, k, number; in gdImageCreateFromXpm() local
127 for (j = 0; j < image.width; j++) { in gdImageCreateFromXpm()
129 gdImageSetPixel(im, j, i, colors[k]); in gdImageCreateFromXpm()
H A Dwebpimg.c144 const int j = ((i - 16) * 76283 + RGB_HALF) >> RGB_FRAC; in InitTables() local
145 kClip[i - RGB_RANGE_MIN] = (j < 0) ? 0 : (j > 255) ? 255 : j; in InitTables()
H A Dgd_png.c133 int i, j, *open = NULL; in gdImageCreateFromPngCtx() local
601 int j; in gdImagePngCtxEx() local
623 j = 0; in gdImagePngCtxEx()
631 mapping[i] = j++; in gdImagePngCtxEx()
692 for (j = 0; j < height; ++j) { in gdImagePngCtxEx()
723 for (j = 0; j < height; ++j) { in gdImagePngCtxEx()
724 gdFree(row_pointers[j]); in gdImagePngCtxEx()
732 for (j = 0; j < height; ++j) { in gdImagePngCtxEx()
735 row_pointers[j][i] = mapping[im->pixels[j][i]]; in gdImagePngCtxEx()
742 for (j = 0; j < height; ++j) { in gdImagePngCtxEx()
[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 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 Dgd_gif_in.c374 int i, j, ret; in GetCode_() local
407 for (i = scd->curbit, j = 0; j < code_size; ++i, ++j) { in GetCode_()
408 ret |= ((scd->buf[i / 8] & (1 << (i % 8))) != 0) << j; in GetCode_()
/PHP-5.5/ext/gd/
H A Dgd.c4115 int i, j; in PHP_FUNCTION() local
4228 for (j = 0; j < h_lines; j++) { in PHP_FUNCTION()
4229 switch (str_img->bits[j * v_lines + i]) { in PHP_FUNCTION()
4233 c_ind = aa[str_img->bits[j * v_lines + i] - 1]; in PHP_FUNCTION()
4234 …SetPixel(bg_img, x + str_img->metrics.leftSideBearing + i, y - str_img->metrics.ascent + j, c_ind); in PHP_FUNCTION()
4857 int nelem, i, j, res; in PHP_FUNCTION() local
4879 for (j=0; j<3; j++) { in PHP_FUNCTION()
4880 if (zend_hash_index_find(Z_ARRVAL_PP(var), (j), (void **) &var2) == SUCCESS) { in PHP_FUNCTION()
4886 matrix[i][j] = (float)Z_DVAL(dval); in PHP_FUNCTION()
4888 matrix[i][j] = (float)Z_DVAL_PP(var2); in PHP_FUNCTION()
/PHP-5.5/ext/filter/tests/
H A D043.phpt120 string(1) "j"
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic2043 # JAR archiver (.j), this is the successor to ARJ, not Java's JAR (which is essentially ZIP)
10701 # From Dr. Jesus <j@hug.gs>
13723 # From: Dr. Jesus <j@hug.gs>
/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];

Completed in 114 milliseconds

12345678910