| /PHP_5_3/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_3/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 | 162 unsigned char ch = 0; local 167 ch = (ch << 4) + (**p -'0'); 169 ch = (ch << 4) + (**p -'a'+10); 171 ch = (ch << 4) + (**p -'A'+10); 177 str[i] = (char)ch;
|
| /PHP_5_3/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_3/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_3/ext/curl/ |
| H A D | interface.c | 150 static void _php_curl_close_ex(php_curl *ch TSRMLS_DC); 167 static int php_curl_option_url(php_curl *ch, const char *url, const int len) /* {{{ */ argument 178 error = curl_easy_setopt(ch->cp, CURLOPT_PROTOCOLS, CURLPROTO_ALL & ~CURLPROTO_FILE); 197 error = curl_easy_setopt(ch->cp, CURLOPT_URL, url); 200 error = curl_easy_setopt(ch->cp, CURLOPT_URL, copystr); 201 zend_llist_add_element(&ch->to_free->str, ©str); 208 int _php_curl_verify_handlers(php_curl *ch, int reporterror TSRMLS_DC) /* {{{ */ argument 211 if (!ch || !ch->handlers) { 215 if (ch 987 php_curl *ch = (php_curl *) ctx; local 1063 php_curl *ch = (php_curl *) clientp; local 1140 php_curl *ch = (php_curl *) ctx; local 1215 php_curl *ch = (php_curl *) ctx; local 1291 php_curl *ch = (php_curl *) ctx; local 1312 php_curl *ch = (php_curl *) ctx; local 1421 alloc_curl_handle(php_curl **ch) argument 1527 php_curl *ch; local 1601 php_curl *ch, *dupch; local 1686 _php_curl_setopt(php_curl *ch, long option, zval **zvalue, zval *return_value TSRMLS_DC) argument 2232 php_curl *ch; local 2258 php_curl *ch; local 2287 _php_curl_cleanup_handle(php_curl *ch) argument 2308 php_curl *ch; local 2364 php_curl *ch; local 2551 php_curl *ch; local 2569 php_curl *ch; local 2586 php_curl *ch; local 2692 php_curl *ch = (php_curl *) rsrc->ptr; local [all...] |
| 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); 89 ch->uses++; 97 RETURN_LONG((long) curl_multi_add_handle(mh->multi, ch->cp)); 104 php_curl *ch; local 111 ch = (php_curl *) zend_fetch_resource(&z_ch TSRMLS_CC, -1, le_curl_name, NULL, 1, le_curl); 112 if (!ch) { 116 if (ch 140 php_curl *ch; local 219 php_curl *ch; local 244 php_curl *ch; local 291 php_curl *ch; local 344 php_curl *ch; local [all...] |
| /PHP_5_3/ext/ftp/ |
| H A D | ftp.c | 887 int ch; local 927 while (!php_stream_eof(instream) && (ch = php_stream_getc(instream))!=EOF) { 937 if (ch == '\n' && type == FTPTYPE_ASCII) { 942 *ptr++ = ch; 1597 int ch, lastch; local 1668 while ((ch = php_stream_getc(tmpstream)) != EOF) { 1669 if (ch == '\n' && lastch == '\r') { 1673 *text++ = ch; 1675 lastch = ch; 1881 int ch; local [all...] |
| /PHP_5_3/ext/gd/ |
| H A D | gd_ctx.c | 31 unsigned char ch = (unsigned char) c; local 33 php_write(&ch, 1 TSRMLS_CC);
|
| /PHP_5_3/ext/soap/ |
| H A D | php_http.c | 1329 char ch, done, headerbuf[8192]; local 1359 ch = php_stream_getc(stream); 1360 if (ch == '\r') { 1361 ch = php_stream_getc(stream); 1363 if (ch != '\n') {
|
| H A D | php_xml.c | 72 static void soap_ignorableWhitespace(void *ctx, const xmlChar *ch, int len) argument
|
| /PHP_5_3/sapi/litespeed/ |
| H A D | lsapi_main.c | 431 char ch; local 444 ch = *p; 452 *p = ch;
|
| H A D | lsapilib.c | 1132 char ch = toupper( *pKey ); local 1133 if ((ch != *p )||(( *p == '_' )&&( ch != '-'))) { 1261 char ch = *pKey++; local 1262 if ( ch == '-' ) { 1265 *p++ = toupper( ch );
|
| /PHP_5_3/Zend/ |
| H A D | zend_operators.c | 1688 int ch; local 1698 ch = s[pos]; 1699 if (ch >= 'a' && ch <= 'z') { 1700 if (ch == 'z') { 1708 } else if (ch >= 'A' && ch <= 'Z') { 1709 if (ch == 'Z') { 1717 } else if (ch >= '0' && ch < [all...] |
| /PHP_5_3/ext/phar/ |
| H A D | phar.c | 2103 static inline int in_character_class(char ch, const char *delim) /* {{{ */ argument 2106 if (*delim == ch) {
|