Home
last modified time | relevance | path

Searched refs:c4 (Results 26 – 50 of 52) sorted by relevance

123

/PHP-8.3/ext/oci8/tests/
H A Dbug41069.phpt36 c4 varchar2(255 byte),
51 "insert into bug41069_tab (c1, c2, c3, c4, c5, c6, c7, c9, c10, c12, c13, c15) values
54 "insert into bug41069_tab (c1, c2, c3, c4, c5, c6, c7, c9, c10, c12, c15) values
H A Dbind_misccoltypes.phpt90 . " :c4, "
104 $c4 = "nchar10";
118 oci_bind_by_name($s, ":c4", $c4);
H A Dedition_2.phpt82 $c4 = get_conn(2); //oci_pconnect()
83 get_edit_attr($c4);
89 oci_close($c4);
H A Dbug42173.phpt24 c4 TIMESTAMP (2) WITH TIME ZONE,
/PHP-8.3/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf8.c272 unsigned char c4 = *p++; in mb_utf8_to_wchar() local
282 } else if ((c4 & 0xC0) != 0x80) { in mb_utf8_to_wchar()
286 uint32_t decoded = ((c & 0x7) << 18) | ((c2 & 0x3F) << 12) | ((c3 & 0x3F) << 6) | (c4 & 0x3F); in mb_utf8_to_wchar()
H A Dmbfilter_utf16.c528 unsigned char c4 = *p++; in mb_utf16be_to_wchar_default() local
529 uint16_t n2 = (c3 << 8) | c4; in mb_utf16be_to_wchar_default()
606 unsigned char c4 = *p++; in mb_utf16le_to_wchar_default() local
607 uint16_t n2 = (c4 << 8) | c3; in mb_utf16le_to_wchar_default()
741 unsigned char c4 = *p++; in mb_utf16be_to_wchar_avx2() local
745 uint16_t n2 = (c3 << 8) | c4; in mb_utf16be_to_wchar_avx2()
927 unsigned char c4 = *p++; in mb_utf16le_to_wchar_avx2() local
929 if ((c4 & 0xFC) == 0xDC) { in mb_utf16le_to_wchar_avx2()
931 uint16_t n2 = (c4 << 8) | c3; in mb_utf16le_to_wchar_avx2()
H A Dmbfilter_utf8_mobile.c466 unsigned char c4 = *p++; in mb_mobile_utf8_to_wchar() local
476 } else if ((c4 & 0xC0) != 0x80) { in mb_mobile_utf8_to_wchar()
481 s = ((c & 0x7) << 18) | ((c2 & 0x3F) << 12) | ((c3 & 0x3F) << 6) | (c4 & 0x3F); in mb_mobile_utf8_to_wchar()
H A Dmbfilter_cjk.c474 unsigned char c4 = *p++; in mb_iso2022jp_to_wchar() local
475 if (c4 == '@' || c4 == 'B') { in mb_iso2022jp_to_wchar()
477 } else if (c4 == 'D') { in mb_iso2022jp_to_wchar()
786 if (c4 == '@' || c4 == 'B') { in mb_check_jis()
788 } else if (c4 == 'D') { in mb_check_jis()
1304 if (c4 == '@' || c4 == 'B') { in mb_iso2022jp_kddi_to_wchar()
2113 if (c4 == 'Q') { in mb_iso2022jp2004_to_wchar()
3131 if (c4 == '@' || c4 == 'B') { in mb_cp5022x_to_wchar()
3819 if (c4 == '@' || c4 == 'B') { in mb_iso2022jpms_to_wchar()
9817 if (c2 <= 0xAE && c4 > 0xA0 && c4 < 0xFF) { in mb_euctw_to_wchar()
[all …]
/PHP-8.3/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_encoding.h204 …c inline unsigned char* mb_convert_buf_add4(unsigned char *out, char c1, char c2, char c3, char c4) in mb_convert_buf_add4() argument
209 *out++ = c4; in mb_convert_buf_add4()
/PHP-8.3/ext/mysqli/tests/
H A D013.phpt20 c3 int, c4 bigint,
/PHP-8.3/ext/standard/
H A Dcrypt_blowfish.c385 unsigned int tmp, c1, c2, c3, c4; in BF_decode() local
397 BF_safe_atoi64(c4, *sptr++); in BF_decode()
398 *dptr++ = ((c3 & 0x03) << 6) | c4; in BF_decode()
/PHP-8.3/ext/standard/tests/strings/
H A Dstrtolower.phpt250 c4 => c4
H A Dstrtoupper1.phpt253 c4 => c4
H A Dhtml_entity_decode_iso8859-15.phpt226 LATIN CAPITAL LETTER A WITH DIAERESIS: &#xC4; => c4
227 &#xC4; => c4
H A Dhtml_entity_decode_iso8859-5.phpt226 CYRILLIC CAPITAL LETTER EF: &#x424; => c4
H A Dhtml_entity_decode_macroman.phpt361 LATIN SMALL LETTER F WITH HOOK: &#x192; => c4
H A Dhtml_entity_decode_win1251.phpt358 CYRILLIC CAPITAL LETTER DE: &#x414; => c4
H A Dhtml_entity_decode_cp866.phpt354 BOX DRAWINGS LIGHT HORIZONTAL: &#x2500; => c4
H A Dhtml_entity_decode_koi8-r.phpt354 CYRILLIC SMALL LETTER DE: &#x434; => c4
/PHP-8.3/ext/gd/libgd/
H A Dgd_interpolation.c706 …const int c4 = im->trueColor == 1 ? getPixelOverflowTC(im, sx - 1, sy - 1, bgColor) : getPixelOver… in getPixelInterpolateWeight() local
714 …GetRed(c1) + m2*gdTrueColorGetRed(c2) + m3*gdTrueColorGetRed(c3) + m4*gdTrueColorGetRed(c4)); in getPixelInterpolateWeight()
715 …tGreen(c1) + m2*gdTrueColorGetGreen(c2) + m3*gdTrueColorGetGreen(c3) + m4*gdTrueColorGetGreen(c4)); in getPixelInterpolateWeight()
716 …etBlue(c1) + m2*gdTrueColorGetBlue(c2) + m3*gdTrueColorGetBlue(c3) + m4*gdTrueColorGetBlue(c4)); in getPixelInterpolateWeight()
717 …tAlpha(c1) + m2*gdTrueColorGetAlpha(c2) + m3*gdTrueColorGetAlpha(c3) + m4*gdTrueColorGetAlpha(c4)); in getPixelInterpolateWeight()
719 r = (int)(m1*im->red[(c1)] + m2*im->red[(c2)] + m3*im->red[(c3)] + m4*im->red[(c4)]); in getPixelInterpolateWeight()
720 g = (int)(m1*im->green[(c1)] + m2*im->green[(c2)] + m3*im->green[(c3)] + m4*im->green[(c4)]); in getPixelInterpolateWeight()
721 b = (int)(m1*im->blue[(c1)] + m2*im->blue[(c2)] + m3*im->blue[(c3)] + m4*im->blue[(c4)]); in getPixelInterpolateWeight()
722 a = (int)(m1*im->alpha[(c1)] + m2*im->alpha[(c2)] + m3*im->alpha[(c3)] + m4*im->alpha[(c4)]); in getPixelInterpolateWeight()
/PHP-8.3/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-8.3/ext/pcre/pcre2lib/
H A Dpcre2_jit_neon_inc.h128 PCRE2_UCHAR char2b = ic.c.c4; in FF_FUN()
H A Dpcre2_jit_simd_inc.h775 struct { unsigned char c1, c2, c3, c4; } c; member
1080 ic.c.c4 = char2b; in fast_forward_char_pair_simd()
/PHP-8.3/build/
H A Dshtool340 opt_OPT=`echo "x$1" | cut -c4-`
H A Dconfig.guess845 GUESS=c4-convex-bsd

Completed in 78 milliseconds

123