| /PHP_5_5/TSRM/ |
| H A D | tsrm_strtok_r.c | 6 static inline int in_character_class(char ch, const char *delim) argument 9 if (*delim == ch) {
|
| /PHP_5_5/ext/standard/ |
| H A D | crypt_freesec.c | 188 ascii_to_bin(char ch) argument 190 signed char sch = ch; 209 ascii_is_unsafe(char ch) argument 211 return !ch || ch == '\n' || ch == ':';
|
| H A D | base64.c | 113 for(ch = 0; ch < 256; ch++) { 114 chp = strchr(base64_table, ch); 115 if(ch && chp) { 118 rt[ch] = idx; 120 rt[ch] = -1; 125 for(ch =0; ch < 256;) { 127 sprintf(sp, "\t% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,\n", rt[ch 146 int ch, i = 0, j = 0, k; local [all...] |
| H A D | scanf.c | 119 static int CharInSet(CharSet *cset, int ch); 143 char *ch, start; local 149 ch = format; 150 if (*ch == '^') { 152 ch = ++format; 159 if (*ch == ']') { 160 ch = end++; 163 while (*ch != ']') { 164 if (*ch == '-') { 167 ch 244 char ch = (char) c; local 315 char *end, *ch = NULL; local 594 char *ch, sch; local [all...] |
| H A D | var_unserializer.c | 173 unsigned char ch = 0; local 178 ch = (ch << 4) + (**p -'0'); 180 ch = (ch << 4) + (**p -'a'+10); 182 ch = (ch << 4) + (**p -'A'+10); 188 str[i] = (char)ch;
|
| /PHP_5_5/sapi/cli/ |
| H A D | php_http_parser.c | 328 char c, ch; local 372 ch = *p; 390 if (ch == CR || ch == LF) 397 if (ch == 'H') 407 if (ch == 'T') { 411 if (ch != 'E') goto error; 426 switch (ch) { 442 STRICT_CHECK(ch != 'T'); 447 STRICT_CHECK(ch ! [all...] |
| /PHP_5_5/scripts/dev/generate-phpt/tests/ |
| H A D | gtIfClassHasMethodTest.php | 12 $ch = new gtIfClassHasMethod(); variable 13 $this->assertTrue($ch->check($clo)); 20 $ch = new gtIfClassHasMethod(); variable 21 $this->assertFalse($ch->check($clo)); 28 $ch = new gtIfClassHasMethod(); variable 29 $this->assertTrue($ch->check($clo)); 36 $ch = new gtIfClassHasMethod(); variable 37 $this->assertEquals($ch->getMessage(), gtText::get('methodNotSpecified'));
|
| H A D | gtIsSpecifiedFunctionOrMethodTest.php | 12 $ch = new gtIsSpecifiedFunctionOrMethod(); variable 13 $this->assertTrue($ch->check($clo)); 20 $ch = new gtIsSpecifiedFunctionOrMethod(); variable 21 $this->assertTrue($ch->check($clo)); 28 $ch = new gtIsSpecifiedFunctionOrMethod(); variable 29 $this->assertFalse($ch->check($clo)); 37 $ch = new gtIsSpecifiedFunctionOrMethod(); variable 38 $this->assertEquals($ch->getMessage(), gtText::get('functionOrMethodNotSpecified'));
|
| H A D | gtIsSpecifiedTestTypeTest.php | 12 $ch = new gtIsSpecifiedTestType(); variable 13 $this->assertTrue($ch->check($clo)); 20 $ch = new gtIsSpecifiedTestType(); variable 21 $this->assertFalse($ch->check($clo)); 28 $ch = new gtIsSpecifiedtestType(); variable 29 $this->assertEquals($ch->getMessage(), gtText::get('testTypeNotSpecified'));
|
| H A D | gtIsValidClassTest.php | 12 $ch = new gtIsValidClass(); variable 13 $this->assertTrue($ch->check($clo)); 20 $ch = new gtIsValidClass(); variable 21 $this->assertFalse($ch->check($clo)); 28 $ch = new gtIsValidClass(); variable 29 $this->assertTrue($ch->check($clo)); 36 $ch = new gtIsvalidClass(); variable 37 $this->assertEquals($ch->getMessage(), gtText::get('unknownClass'));
|
| H A D | gtIsValidFunctionTest.php | 12 $ch = new gtIsValidFunction(); variable 13 $this->assertTrue($ch->check($clo)); 20 $ch = new gtIsValidFunction(); variable 21 $this->assertFalse($ch->check($clo)); 28 $ch = new gtIsValidFunction(); variable 29 $this->assertTrue($ch->check($clo)); 36 $ch = new gtIsvalidFunction(); variable 37 $this->assertEquals($ch->getMessage(), gtText::get('unknownFunction'));
|
| H A D | gtIsValidMethodTest.php | 12 $ch = new gtIsValidMethod(); variable 13 $this->assertTrue($ch->check($clo)); 20 $ch = new gtIsValidMethod(); variable 21 $this->assertFalse($ch->check($clo)); 28 $ch = new gtIsValidMethod(); variable 29 $this->assertTrue($ch->check($clo)); 36 $ch = new gtIsvalidMethod(); variable 37 $this->assertEquals($ch->getMessage(), gtText::get('unknownMethod'));
|
| /PHP_5_5/ext/gd/libgd/ |
| H A D | gd_gd.c | 193 int ch; local 194 ch = gdGetC(in); 195 if (ch == EOF) { 199 im->pixels[y][x] = ch;
|
| H A D | gd_gd2.c | 57 int ch; local 66 ch = gdGetC(in); 67 if (ch == EOF) { 70 id[i] = ch; 333 int ch; local 334 if (!gdGetByte(&ch, in)) { 335 ch = 0; 337 im->pixels[y][x] = ch; 420 unsigned int ch; local 561 if (!gdGetInt((int *)&ch, i [all...] |
| H A D | gdft.c | 306 int ch, total, trail; local 312 ch = byte & (0x3F >> trail); 319 ch <<= 6; 320 ch |= (*str & 0x3F); 323 *chPtr = ch; 785 int len, i = 0, ch; local 925 ch = *next; 928 if (ch == '\r') { 938 if (ch == '\n') { 964 len = gdTcl_UtfToUniChar (next, &ch); [all...] |
| H A D | xbm.c | 46 int ch; local 108 if ((ch=getc(fd)) == EOF) { 112 if (ch == 'x') { 120 if ((ch=getc(fd)) == EOF) { 123 h[0] = ch; 124 if ((ch=getc(fd)) == EOF) { 127 h[1] = ch; 129 if ((ch=getc(fd)) == EOF) { 132 h[2] = ch; 133 if ((ch [all...] |
| /PHP_5_5/ext/ftp/ |
| H A D | ftp.c | 891 int ch; local 931 while (!php_stream_eof(instream) && (ch = php_stream_getc(instream))!=EOF) { 941 if (ch == '\n' && type == FTPTYPE_ASCII) { 946 *ptr++ = ch; 1605 int ch, lastch; local 1676 while ((ch = php_stream_getc(tmpstream)) != EOF) { 1677 if (ch == '\n' && lastch == '\r') { 1681 *text++ = ch; 1683 lastch = ch; 1889 int ch; local [all...] |
| /PHP_5_5/sapi/litespeed/ |
| H A D | lsapilib.c | 1122 char ch = toupper( *pKey ); local 1123 if ((ch != *p )||(( *p == '_' )&&( ch != '-'))) { 1250 char ch = *pKey++; local 1251 if ( ch == '-' ) { 1254 *p++ = toupper( ch );
|
| /PHP_5_5/ext/curl/ |
| H A D | multi.c | 71 /* {{{ proto int curl_multi_add_handle(resource mh, resource ch) 78 php_curl *ch; local 86 ZEND_FETCH_RESOURCE(ch, php_curl *, &z_ch, -1, le_curl_name, le_curl); 88 _php_curl_cleanup_handle(ch); 96 RETURN_LONG((long) curl_multi_add_handle(mh->multi, ch->cp)); 103 php_curl *ch; local 110 ch = (php_curl *) zend_fetch_resource(&z_ch TSRMLS_CC, -1, le_curl_name, NULL, 1, le_curl); 111 if (!ch) { 128 /* {{{ proto int curl_multi_remove_handle(resource mh, resource ch) 135 php_curl *ch; local 214 php_curl *ch; local 239 php_curl *ch; local 286 php_curl *ch; local 339 php_curl *ch; local [all...] |
| H A D | interface.c | 151 static void _php_curl_close_ex(php_curl *ch TSRMLS_DC); 168 static int php_curl_option_url(php_curl *ch, const char *url, const int len TSRMLS_DC) /* {{{ */ argument 177 error = curl_easy_setopt(ch->cp, CURLOPT_PROTOCOLS, CURLPROTO_ALL & ~CURLPROTO_FILE); 196 error = curl_easy_setopt(ch->cp, CURLOPT_URL, url); 199 error = curl_easy_setopt(ch->cp, CURLOPT_URL, copystr); 200 zend_llist_add_element(&ch->to_free->str, ©str); 207 int _php_curl_verify_handlers(php_curl *ch, int reporterror TSRMLS_DC) /* {{{ */ argument 210 if (!ch || !ch->handlers) { 214 if (ch 1268 php_curl *ch = (php_curl *) ctx; local 1345 php_curl *ch = (php_curl *) ctx; local 1409 php_curl *ch = (php_curl *) clientp; local 1490 php_curl *ch = (php_curl *) ctx; local 1565 php_curl *ch = (php_curl *) ctx; local 1641 php_curl *ch = (php_curl *) ctx; local 1662 php_curl *ch = (php_curl *) ctx; local 1771 alloc_curl_handle(php_curl **ch) argument 1879 _php_curl_set_default_options(php_curl *ch) argument 1911 php_curl *ch; local 1959 php_curl *ch, *dupch; local 2058 _php_curl_setopt(php_curl *ch, long option, zval **zvalue, zval *return_value TSRMLS_DC) argument 2850 php_curl *ch; local 2876 php_curl *ch; local 2905 _php_curl_cleanup_handle(php_curl *ch) argument 2926 php_curl *ch; local 2982 php_curl *ch; local 3188 php_curl *ch; local 3206 php_curl *ch; local 3223 php_curl *ch; local 3340 php_curl *ch = (php_curl *) rsrc->ptr; local 3370 _php_curl_reset_handlers(php_curl *ch) argument 3425 php_curl *ch; local 3453 php_curl *ch; local 3477 php_curl *ch; local 3502 php_curl *ch; local [all...] |
| /PHP_5_5/ext/phar/ |
| H A D | phar.c | 2097 static inline int in_character_class(char ch, const char *delim) /* {{{ */ argument 2100 if (*delim == ch) {
|
| /PHP_5_5/Zend/ |
| H A D | zend_operators.c | 1773 int ch; local 1789 ch = s[pos]; 1790 if (ch >= 'a' && ch <= 'z') { 1791 if (ch == 'z') { 1799 } else if (ch >= 'A' && ch <= 'Z') { 1800 if (ch == 'Z') { 1808 } else if (ch >= '0' && ch < [all...] |
| /PHP_5_5/ext/soap/ |
| H A D | php_xml.c | 72 static void soap_ignorableWhitespace(void *ctx, const xmlChar *ch, int len) argument
|
| H A D | php_http.c | 1393 char ch, done, headerbuf[8192]; local 1423 ch = php_stream_getc(stream); 1424 if (ch == '\r') { 1425 ch = php_stream_getc(stream); 1427 if (ch != '\n') {
|
| /PHP_5_5/ext/gd/ |
| H A D | gd_ctx.c | 31 unsigned char ch = (unsigned char) c; local 33 php_write(&ch, 1 TSRMLS_CC); 50 char ch = (char) c; local 53 php_stream_write(stream, &ch, 1);
|