Home
last modified time | relevance | path

Searched refs:c2 (Results 76 – 100 of 107) sorted by relevance

12345

/php-src/ext/xsl/tests/
H A Dxslt005.phpt27 a2 c2 <br/>
H A Dxslt004.phpt26 a2 c2 <br/>
H A Dxslt002.phpt26 a2 c2 <br>
H A Dxslt012.phpt49 a2 c2 <br/>
/php-src/ext/standard/
H A Diptc.c121 int c1, c2; in php_iptc_skip_variable() local
125 if ((c2 = php_iptc_get1(fp, spool, spoolbuf)) == EOF) return M_EOI; in php_iptc_skip_variable()
127 length = (((unsigned char) c1) << 8) + ((unsigned char) c2); in php_iptc_skip_variable()
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf16.c497 unsigned char c2 = *p++; in mb_utf16_to_wchar() local
498 uint16_t n = (c1 << 8) | c2; in mb_utf16_to_wchar()
527 unsigned char c2 = *p++; in mb_utf16be_to_wchar_default() local
528 uint16_t n = (c1 << 8) | c2; in mb_utf16be_to_wchar_default()
605 unsigned char c2 = *p++; in mb_utf16le_to_wchar_default() local
606 uint16_t n = (c2 << 8) | c1; in mb_utf16le_to_wchar_default()
733 unsigned char c2 = *p++; in mb_utf16be_to_wchar_avx2() local
745 uint16_t n = (c1 << 8) | c2; in mb_utf16be_to_wchar_avx2()
919 unsigned char c2 = *p++; in mb_utf16le_to_wchar_avx2() local
921 if (c2 & 0x4 || len < 4) { in mb_utf16le_to_wchar_avx2()
[all …]
/php-src/ext/mysqli/tests/bind_fetch/
H A Didentical_fetch_row.phpt19 c1 tinyint, c2 smallint,
/php-src/ext/gd/libgd/
H A Dgdkanji.c231 register unsigned char c2 = *p2; in SJIStoJIS() local
232 register int adjust = c2 < 159; in SJIStoJIS()
234 register int cellOffset = adjust ? (31 + (c2 > 127)) : 126; in SJIStoJIS()
H A Dgd_crop.c123 int c2 = gdImageGetPixel(im, x, y); in gdImageCropAuto() local
124 match = (color == c2); in gdImageCropAuto()
H A Dgd_interpolation.c694 …const int c2 = im->trueColor == 1 ? getPixelOverflowTC(im, sx - 1, sy, bgColor) : getPixelOver… in getPixelInterpolateWeight() local
704 …r = (int)(m1*gdTrueColorGetRed(c1) + m2*gdTrueColorGetRed(c2) + m3*gdTrueColorGetRed(c3) + m… in getPixelInterpolateWeight()
705 …g = (int)(m1*gdTrueColorGetGreen(c1) + m2*gdTrueColorGetGreen(c2) + m3*gdTrueColorGetGreen(c3) + m… in getPixelInterpolateWeight()
706 …b = (int)(m1*gdTrueColorGetBlue(c1) + m2*gdTrueColorGetBlue(c2) + m3*gdTrueColorGetBlue(c3) + m… in getPixelInterpolateWeight()
707 …a = (int)(m1*gdTrueColorGetAlpha(c1) + m2*gdTrueColorGetAlpha(c2) + m3*gdTrueColorGetAlpha(c3) + m… in getPixelInterpolateWeight()
709 r = (int)(m1*im->red[(c1)] + m2*im->red[(c2)] + m3*im->red[(c3)] + m4*im->red[(c4)]); in getPixelInterpolateWeight()
710 g = (int)(m1*im->green[(c1)] + m2*im->green[(c2)] + m3*im->green[(c3)] + m4*im->green[(c4)]); in getPixelInterpolateWeight()
711 b = (int)(m1*im->blue[(c1)] + m2*im->blue[(c2)] + m3*im->blue[(c3)] + m4*im->blue[(c4)]); in getPixelInterpolateWeight()
712 a = (int)(m1*im->alpha[(c1)] + m2*im->alpha[(c2)] + m3*im->alpha[(c3)] + m4*im->alpha[(c4)]); in getPixelInterpolateWeight()
/php-src/ext/dom/tests/
H A Ddom_test.inc15 <row><entry>a2</entry><entry>c2</entry></row>
H A Ddom001.phpt199 <row><entry>a2</entry><entry>c2</entry></row>
258 <row><entry>a2</entry><entry>c2</entry></row>
/php-src/ext/standard/tests/strings/
H A Dstrtolower.phpt248 c2 => c2
H A Dstrtoupper1.phpt251 c2 => c2
H A Dparse_str_basic3.phpt36 $s1 = "sum=10%5c2%3d5";
H A Dhtml_entity_decode_iso8859-15.phpt220 LATIN CAPITAL LETTER A WITH CIRCUMFLEX: &#xC2; => c2
221 &#xC2; => c2
H A Dhtml_entity_decode_macroman.phpt290 &#xAC; => c2
355 NOT SIGN: &#xAC; => c2
H A Dhtml_entity_decode_iso8859-5.phpt220 CYRILLIC CAPITAL LETTER TE: &#x422; => c2
/php-src/Zend/
H A Dzend_operators.c3180 int c1, c2; in zend_binary_strcasecmp() local
3190 if (c1 != c2) { in zend_binary_strcasecmp()
3191 return c1 - c2; in zend_binary_strcasecmp()
3202 int c1, c2; in zend_binary_strncasecmp() local
3211 if (c1 != c2) { in zend_binary_strncasecmp()
3212 return c1 - c2; in zend_binary_strncasecmp()
3223 int c1, c2; in zend_binary_strcasecmp_l() local
3233 if (c1 != c2) { in zend_binary_strcasecmp_l()
3234 return c1 - c2; in zend_binary_strcasecmp_l()
3245 int c1, c2; in zend_binary_strncasecmp_l() local
[all …]
/php-src/ext/mbstring/tests/
H A Dmb_str_split_other.phpt103 [74, 65, 73, 74, 20, c0, c1, c2, c3, c4, c5, c6, c7, c8, c9, ca, cb, cc, cd, ce, cf]
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_jit_simd_inc.h751 struct { unsigned char c1, c2, c3, c4; } c; member
857 ic.c.c2 = char2; in fast_forward_char_simd()
878 ic.c.c2 = mask; in fast_forward_char_simd()
896 ic.c.c2 = char2; in fast_forward_char_simd()
1059 ic.c.c2 = char1b; in fast_forward_char_pair_simd()
/php-src/ext/hash/tests/
H A Dcrc32.phpt132 352441c2
/php-src/build/
H A Dconfig.sub279 convex-c2)
280 basic_machine=c2-convex
/php-src/ext/hash/xxhash/
H A Dxxhash.h3489 xxh_u8 const c2 = input[len >> 1]; in XXH3_len_1to3_64b() local
3491 xxh_u32 const combined = ((xxh_u32)c1 << 16) | ((xxh_u32)c2 << 24) in XXH3_len_1to3_64b()
5024 xxh_u8 const c2 = input[len >> 1]; in XXH3_len_1to3_128b() local
5026 xxh_u32 const combinedl = ((xxh_u32)c1 <<16) | ((xxh_u32)c2 << 24) in XXH3_len_1to3_128b()
/php-src/ext/mbstring/
H A Dmbstring.c6547 unsigned char c2 = *p++; in mime_header_decode_encoded_word() local
6549 if (qprint_map[c2] >= 0 && qprint_map[c3] >= 0) { in mime_header_decode_encoded_word()
6550 *bufp++ = (qprint_map[c2] << 4) | (qprint_map[c3] & 0xF); in mime_header_decode_encoded_word()
6552 } else if (c2 == '\r') { in mime_header_decode_encoded_word()
6557 } else if (c2 == '\n') { in mime_header_decode_encoded_word()

Completed in 123 milliseconds

12345