Home
last modified time | relevance | path

Searched refs:ch (Results 101 – 125 of 186) sorted by relevance

12345678

/php-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Ddocument.c305 const lxb_char_t *ch = memchr(data, ']', sizeof(lxb_char_t) * len); in lxb_dom_document_create_cdata_section() local
307 while (ch != NULL) { in lxb_dom_document_create_cdata_section()
308 if ((end - ch) < 3) { in lxb_dom_document_create_cdata_section()
312 if(memcmp(ch, "]]>", 3) == 0) { in lxb_dom_document_create_cdata_section()
316 ch++; in lxb_dom_document_create_cdata_section()
317 ch = memchr(ch, ']', sizeof(lxb_char_t) * (end - ch)); in lxb_dom_document_create_cdata_section()
350 while (ch != NULL) { in lxb_dom_document_create_processing_instruction()
351 if ((end - ch) < 2) { in lxb_dom_document_create_processing_instruction()
355 if(memcmp(ch, "?>", 2) == 0) { in lxb_dom_document_create_processing_instruction()
359 ch++; in lxb_dom_document_create_processing_instruction()
[all …]
/php-src/ext/curl/tests/
H A Dbug65458.phpt7 $ch = curl_init();
10 curl_setopt($ch, CURLOPT_HTTPHEADER, [ "SOAPAction: getItems" ]);
14 curl_close($ch);
H A Dcurl_basic_014.phpt9 $ch = curl_init();
10 var_dump($ch);
H A Dbug48207.phpt38 $ch = curl_init($url);
40 curl_setopt($ch, CURLOPT_FILE, $fp);
45 curl_exec($ch);
46 curl_close($ch);
H A Dcurl_basic_015.phpt10 $ch = curl_init($url);
11 var_dump($url == curl_getinfo($ch, CURLINFO_EFFECTIVE_URL));
H A Dbug68089.phpt8 $ch = curl_init();
11 curl_setopt($ch, CURLOPT_URL, $url);
H A Dbug71144.phpt9 $ch = curl_init();
10 var_dump(curl_setopt($ch, CURLOPT_DNS_USE_GLOBAL_CACHE, 1));
H A Dbug79741.phpt12 $ch = curl_init();
13 curl_setopt($ch, CURLOPT_POSTFIELDS, new Test);
/php-src/ext/gd/libgd/
H A Dgd_gd2.c58 int ch; in _gd2GetHeader() local
67 ch = gdGetC(in); in _gd2GetHeader()
68 if (ch == EOF) { in _gd2GetHeader()
71 id[i] = ch; in _gd2GetHeader()
353 int ch; in gdImageCreateFromGd2Ctx() local
442 unsigned int ch; in gdImageCreateFromGd2PartCtx() local
584 ch = 0; in gdImageCreateFromGd2PartCtx()
589 ch = 0; in gdImageCreateFromGd2PartCtx()
595 ch = (ch << 8) + chunkBuf[chunkPos++]; in gdImageCreateFromGd2PartCtx()
596 ch = (ch << 8) + chunkBuf[chunkPos++]; in gdImageCreateFromGd2PartCtx()
[all …]
H A Dgdft.c320 ch <<= 6; in gdTcl_UtfToUniChar()
324 *chPtr = ch; in gdTcl_UtfToUniChar()
980 ch = *next;
983 if (ch == '\r') {
993 if (ch == '\n') {
1017 ch |= 0xf000;
1043 if (ch & 1) {
1052 ch = (ch - 0x21) / 2 + 0x81;
1054 ch += 0x40;
1057 ch = (ch << 8) + jiscode;
[all …]
H A Dgd_gd.c193 int ch; in gdImageCreateFromGdCtx() local
194 ch = gdGetC(in); in gdImageCreateFromGdCtx()
195 if (ch == EOF) { in gdImageCreateFromGdCtx()
199 im->pixels[y][x] = ch; in gdImageCreateFromGdCtx()
/php-src/ext/standard/
H A Dcrc32.h24 #define CRC32(crc, ch) (crc = (crc >> 8) ^ crc32tab[(crc ^ (ch)) & 0xff]) argument
H A Dfile.c1788 while (ch < end) { in php_fputcsv()
1797 ch++; in php_fputcsv()
2242 ch = md->lc; in php_next_meta_token()
2246 switch (ch) { in php_next_meta_token()
2264 compliment = ch; in php_next_meta_token()
2266 …while (!php_stream_eof(md->stream) && (ch = php_stream_getc(md->stream)) && ch != compliment && ch in php_next_meta_token()
2274 if (ch == '<' || ch == '>') { in php_next_meta_token()
2277 md->lc = ch; in php_next_meta_token()
2299 if (isalnum(ch)) { in php_next_meta_token()
2311 if (!isalpha(ch) && ch != '-') { in php_next_meta_token()
[all …]
H A Dbase64.c252 int ch; in php_base64_decode_impl() local
267 ch = *in++; in php_base64_decode_impl()
268 if (ch == base64_pad) { in php_base64_decode_impl()
273 ch = base64_reverse_table[ch]; in php_base64_decode_impl()
276 if (ch < 0) { in php_base64_decode_impl()
281 if (ch == -1) { in php_base64_decode_impl()
285 if (ch == -2 || padding) { in php_base64_decode_impl()
292 out[j] = ch << 2; in php_base64_decode_impl()
295 out[j++] |= ch >> 4; in php_base64_decode_impl()
299 out[j++] |= ch >>2; in php_base64_decode_impl()
[all …]
/php-src/ext/dom/lexbor/lexbor/encoding/
H A Ddecode.c17 if (ch < _lower || ch > _upper) { \
1332 lxb_char_t ch; in lxb_encoding_decode_utf_8() local
1376 ch = *p++; in lxb_encoding_decode_utf_8()
1460 ch = *p++; in lxb_encoding_decode_utf_8()
1462 if (ch < 0x80 || ch > 0xBF) { in lxb_encoding_decode_utf_8()
2784 lxb_char_t ch; in lxb_encoding_decode_utf_8_single() local
2800 ch = *(*data)++; in lxb_encoding_decode_utf_8_single()
2802 if (ch < 0x80) { in lxb_encoding_decode_utf_8_single()
2803 return ch; in lxb_encoding_decode_utf_8_single()
2855 ch = *p; in lxb_encoding_decode_utf_8_single()
[all …]
/php-src/Zend/asm/
H A Dmake_i386_ms_pe_masm.asm10 ; | 0h | 04h | 08h | 0ch | 010h | 014h | 018h | 01ch |
17 ; | 020h | 024h | 028h | 02ch | 030h | 034h | 038h | 03ch |
63 mov [eax+0ch], ecx
70 mov ecx, [esp+0ch]
77 mov [eax+02ch], ecx
111 mov [eax+03ch], ecx
/php-src/ext/standard/tests/file/
H A Dbug53241.phpt15 $ch = curl_init('http://www.yahoo.com/');
16 var_dump(curl_setopt($ch, CURLOPT_FILE, $fh));
/php-src/ext/standard/tests/strings/
H A Dchunk_split_variation12.phpt14 $str = "This is str to check with heredoc ending.This\tcontains,\nspeci@! ch@r$ __with wrong \k esc…
84 speci@! ch@r$ __with wrong \k escape char 222."
87 speci@! ch@r$ __with wrong \k escape char 222."
90 specai@! ch@r$ a__with wroang \k escaape char 22a2.a"
93 specThis is simple heredoc stringi@! ch@r$ This is simple heredoc string__with wroThis is simple he…
108 heredoci@! ch@r$ This is to check chunk_split
121 specThis checks with $, %, &, charsi@! ch@r$ This checks with $, %, &, chars__with wroThis checks w…
130 white space charsi@! ch@r$ This checks and
138 spec"To check " in heredoc".I'm sure it'll \work!i@! ch@r$ "To check " in heredoc".I'm sure it'll \…
H A Dchunk_split_variation8.phpt20 It has _speci@l ch@r$ 2222 !!!Now \k as escape char to test
67 It has _speci@l ch@r$ 2222 !!!Now \k as escape char to test
72 It has _speci@l ch@r$ 222:::2 !!!Now \k as escape char::: to test
77 It has _speci@l ch@r$ 2222 !!!Now \k as escape char to test
H A Dstrrchr_variation5.phpt39 ch
53 ch
H A Dstr_split_variation4.phpt105 string(5) " & ch"
169 string(5) "pe ch"
176 string(5) "to ch"
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_internal.h1870 #define GET_UCD(ch) ((ch > MAX_UTF_CODE_POINT)? \ argument
1873 #define GET_UCD(ch) REAL_GET_UCD(ch) argument
1884 #define UCD_CHARTYPE(ch) GET_UCD(ch)->chartype argument
1885 #define UCD_SCRIPT(ch) GET_UCD(ch)->script argument
1886 #define UCD_CATEGORY(ch) PRIV(ucp_gentype)[UCD_CHARTYPE(ch)] argument
1887 #define UCD_GRAPHBREAK(ch) GET_UCD(ch)->gbprop argument
1888 #define UCD_CASESET(ch) GET_UCD(ch)->caseset argument
1889 #define UCD_OTHERCASE(ch) ((uint32_t)((int)ch + (int)(GET_UCD(ch)->other_case))) argument
1890 #define UCD_SCRIPTX(ch) UCD_SCRIPTX_PROP(GET_UCD(ch)) argument
1891 #define UCD_BPROPS(ch) UCD_BPROPS_PROP(GET_UCD(ch)) argument
[all …]
/php-src/ext/curl/
H A Dcurl_private.h139 void init_curl_handle(php_curl *ch);
142 void _php_curl_verify_handlers(php_curl *ch, bool reporterror);
143 void _php_setup_easy_copy_handlers(php_curl *ch, php_curl *source);
/php-src/
H A D.gitattributes20 *.[ch] diff=cpp
27 /Zend/zend_vm_opcodes.[ch] linguist-generated -diff
/php-src/Zend/
H A Dzend_smart_str.h122 static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { in smart_str_appendc_ex() argument
124 ZSTR_VAL(dest->s)[new_len - 1] = ch; in smart_str_appendc_ex()
182 static zend_always_inline void smart_str_appendc(smart_str *dest, char ch) in smart_str_appendc() argument
184 smart_str_appendc_ex(dest, ch, false); in smart_str_appendc()

Completed in 284 milliseconds

12345678