| /PHP_5_5/ext/gd/libgd/ |
| H A D | gdft.c | 356 FT_CharMap found = 0; local 472 found = charmap; 485 found = charmap; 488 found = charmap; 491 found = charmap; 496 found = charmap; 499 if (!found) { 507 a->face->charmap = found; 906 /* No character set found! */ 908 return "No character set found"; [all...] |
| /PHP_5_5/ext/intl/grapheme/ |
| H A D | grapheme_string.c | 113 unsigned char *found; local 149 found = (unsigned char *)php_memnstr((char *)haystack + offset, (char *)needle, needle_len, (char *)haystack + haystack_len); 152 if (!found) { 159 RETURN_LONG(found - haystack); 180 unsigned char *found; local 222 found = (unsigned char*) php_memnstr((char *)haystack_dup + offset, (char *)needle_dup, needle_len, (char *)haystack_dup + haystack_len); 227 if (found) { 228 RETURN_LONG(found - haystack_dup); 599 unsigned char *haystack, *needle, *found; local 625 found [all...] |
| /PHP_5_5/ext/intl/timezone/ |
| H A D | timezone_methods.cpp | 551 bool found = false; local 552 for (int i = 0; !found && i < sizeof(display_types)/sizeof(*display_types); i++) { 554 found = true; 556 if (!found) {
|
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 5627 int found; local 5631 found = 0; 5634 found = (onig_is_in_code_range(cc->mbuf->p, code) != 0 ? 1 : 0); 5638 found = (BITSET_AT(cc->bs, code) == 0 ? 0 : 1); 5642 return !found; 5644 return found;
|
| /PHP_5_5/ext/oci8/ |
| H A D | oci8.c | 1889 zend_bool found = 0; local 1892 found = 1; 1893 /* found */ 1898 found = 1; 1942 /* found an open connection. now ping it */ 2024 } else if (found) { 2025 /* found something, but it's not a connection, delete it */
|
| /PHP_5_5/ext/soap/ |
| H A D | php_sdl.c | 593 int found = 0; local 609 found = 1; 614 if (!found) {
|
| H A D | php_xml.c | 317 char *found = strrchr((char*)inval, ':'); local 319 if (found != NULL && found != (char*)inval) { 320 (*namespace) = estrndup((char*)inval, found - (char*)inval); 321 (*value) = estrdup(++found);
|
| H A D | soap.c | 1265 int classname_len, found, num_args = 0; local 1276 found = zend_lookup_class(classname, classname_len, &ce TSRMLS_CC); 1278 if (found != FAILURE) {
|
| /PHP_5_5/ext/spl/ |
| H A D | php_spl.c | 68 int found; local 77 found = zend_hash_find(EG(class_table), lc_name, len +1, (void **) &ce); 80 found = zend_lookup_class(name, len, &ce TSRMLS_CC); 82 if (found != SUCCESS) { 319 int class_name_len, file_exts_len = SPL_G(autoload_extensions_len), found = 0; local 342 found = 1; 356 if (!found && !SPL_G(autoload_running)) { 520 zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Function '%s' not %s (%s)", func_name, alfi.func_ptr ? "callable" : "found", error);
|
| H A D | spl_observer.c | 441 int hash_len, found; local 447 found = zend_hash_exists(&intern->storage, hash, hash_len); 449 return found; 523 zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0 TSRMLS_CC, "Object not found");
|
| /PHP_5_5/ext/xsl/ |
| H A D | php_xsl.c | 228 zval *php_xsl_create_object(xsltStylesheetPtr obj, int *found, zval *wrapper_in, zval *return_value TSRMLS_DC) argument 233 *found = 0; 247 *found = 1;
|
| H A D | xsltprocessor.c | 663 int found; local 674 found = zend_lookup_class(ret_class, ret_class_len, &ce TSRMLS_CC); 675 if ((found != SUCCESS) || !instanceof_function(*ce, curce TSRMLS_CC)) {
|
| /PHP_5_5/ext/phar/ |
| H A D | dirstream.c | 197 char *entry, *found, *save, *str_key; local 241 if (NULL != (found = (char *) memchr(str_key, '/', keylen))) { 243 entry = (char *) safe_emalloc(found - str_key, 1, 1); 244 memcpy(entry, str_key, found - str_key); 245 keylen = found - str_key; 257 /* entry in directory not found */ 277 if (NULL != (found = (char *) memchr(save, '/', keylen - dirlen - 1))) { 280 entry = (char *) safe_emalloc(found - save + dirlen, 1, 1); 281 memcpy(entry, save + dirlen + 1, found - save - dirlen - 1); 282 keylen = found [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | html.c | 439 int found = 0; local 445 found = 1; 449 if (!found) { 565 unsigned char found; local 598 found = unimap_bsearch(unimap_iso885915, 600 if (found) 601 *res = found; 611 found = unimap_bsearch(unimap_win1252, 613 if (found) 614 *res = found; [all...] |
| H A D | string.c | 347 Finds length of initial segment consisting entirely of characters found in mask. If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars) */ 355 Finds length of initial segment consisting entirely of characters not found in mask. If start or/and length is provide works like strcspn(substr($s,$start,$len),$bad_chars) */ 1057 int allocated = EXPLODE_ALLOC_STEP, found = 0; local 1061 positions[found++] = p1; 1063 if (found >= allocated) { 1064 allocated = found + EXPLODE_ALLOC_STEP;/* make sure we have enough memory */ 1067 positions[found++] = p1 = p2 + Z_STRLEN_P(delim); 1070 to_return = limit + found; 1071 /* limit is at least -1 therefore no need of bounds checking : i will be always less than found */ 1703 char *found local 1757 char *found = NULL; local 1804 char *found = NULL; local 1852 char *found = NULL; local 2094 const char *found = NULL; local [all...] |
| /PHP_5_5/ext/mbstring/ |
| H A D | php_mbregex.c | 451 int found = 0; local 456 found = zend_hash_find(&MBREX(ht_rc), (char *)pattern, patlen+1, (void **) &rc); 457 if (found == FAILURE || (*rc)->options != options || (*rc)->enc != enc || (*rc)->syntax != syntax) { 465 } else if (found == SUCCESS) {
|
| /PHP_5_5/ext/dom/ |
| H A D | php_dom.c | 1317 PHP_DOM_EXPORT zval *php_dom_create_object(xmlNodePtr obj, int *found, zval *return_value, dom_object *domobj TSRMLS_DC) argument 1323 *found = 0; 1337 *found = 1;
|
| /PHP_5_5/Zend/ |
| H A D | zend_hash.c | 909 /* Returns SUCCESS if found and FAILURE if not. The pointer to the 1290 int found = HASH_UPDATE_KEY_IF_BEFORE; local 1294 found = HASH_UPDATE_KEY_IF_AFTER; 1299 if (mode & found) {
|
| H A D | zend_builtin_functions.c | 1224 int found; local 1247 found = zend_hash_find(EG(class_table), name, len+1, (void **) &ce); 1249 RETURN_BOOL(found == SUCCESS && !(((*ce)->ce_flags & (ZEND_ACC_INTERFACE | ZEND_ACC_TRAIT)) > ZEND_ACC_EXPLICIT_ABSTRACT_CLASS)); 1267 int found; local 1290 found = zend_hash_find(EG(class_table), name, len+1, (void **) &ce); 1292 RETURN_BOOL(found == SUCCESS && (*ce)->ce_flags & ZEND_ACC_INTERFACE); 1310 int found; local 1333 found = zend_hash_find(EG(class_table), name, len+1, (void **) &ce); 1335 RETURN_BOOL(found == SUCCESS && (((*ce)->ce_flags & ZEND_ACC_TRAIT) > ZEND_ACC_EXPLICIT_ABSTRACT_CLASS)); 1394 int found; local [all...] |
| /PHP_5_5/ext/zip/ |
| H A D | php_zip.c | 565 were found, others return the GLOB_NOMATCH error code. 1661 int found; local 1696 found = php_zip_glob(pattern, pattern_len, flags, return_value TSRMLS_CC); 1698 found = php_zip_pcre(pattern, pattern_len, path, path_len, return_value TSRMLS_CC); 1701 if (found > 0) { 1705 for (i = 0; i < found; i++) {
|
| /PHP_5_5/ext/date/lib/ |
| H A D | parse_date.c | 726 static long timelib_lookup_zone(char **ptr, int *dst, char **tz_abbr, int *found) argument 744 *found = 1; 746 *found = 0; 783 int found = 0; local 789 offset = timelib_lookup_zone(ptr, dst, &tz_abbr, &found); 790 if (found) { 794 /* If we found a TimeZone identifier, use it */ 805 found++; 808 if (found && t->zone_type != TIMELIB_ZONETYPE_ID) { 812 *tz_not_found = (found [all...] |
| /PHP_5_5/ext/opcache/Optimizer/ |
| H A D | block_pass.c | 240 /* found new block start */ 338 int found = 0; local 342 if (found) { 345 found = 1; 350 if (found) { 354 found = 1;
|
| /PHP_5_5/ext/snmp/ |
| H A D | snmp.c | 714 int status, count, found; local 844 found = 0; 847 found = 1; 852 if (found) {
|
| /PHP_5_5/ext/date/ |
| H A D | php_date.c | 2527 /* Helper function used to store the latest found warnings and errors while 2872 Returns the warnings and errors found while parsing a date/time string. 3883 unsigned int i, begin = 0, found; local 3922 found = 1; 3925 found = 0; 3934 found = 1; 3942 if (!found) {
|
| /PHP_5_5/main/ |
| H A D | main.c | 273 int found = 0; local 285 found = 1; 292 if (!found) {
|