| /PHP_5_3/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_3/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); 595 unsigned char *haystack, *needle, *found; local 621 found [all...] |
| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | regexec.c | 1377 int found; local 1381 found = 0; 1384 found = (onig_is_in_code_range(cc->mbuf->p, code) != 0 ? 1 : 0); 1388 found = (BITSET_AT(cc->bs, code) == 0 ? 0 : 1); 1392 return !found; 1394 return found;
|
| /PHP_5_3/ext/date/lib/ |
| H A D | parse_date.c | 761 static long timelib_lookup_zone(char **ptr, int *dst, char **tz_abbr, int *found) argument 779 *found = 1; 781 *found = 0; 818 int found = 0; local 824 offset = timelib_lookup_zone(ptr, dst, &tz_abbr, &found); 825 if (found) { 829 /* If we found a TimeZone identifier, use it */ 840 found++; 843 if (found && t->zone_type != TIMELIB_ZONETYPE_ID) { 847 *tz_not_found = (found [all...] |
| /PHP_5_3/ext/dom/ |
| H A D | php_dom.c | 1319 PHP_DOM_EXPORT zval *php_dom_create_object(xmlNodePtr obj, int *found, zval *wrapper_in, zval *return_value, dom_object *domobj TSRMLS_DC) argument 1325 *found = 0; 1339 *found = 1;
|
| /PHP_5_3/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_3/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_3/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 | 343 char *found = strrchr((char*)inval, ':'); local 345 if (found != NULL && found != (char*)inval) { 346 (*namespace) = estrndup((char*)inval, found - (char*)inval); 347 (*value) = estrdup(++found);
|
| H A D | soap.c | 1384 int classname_len, found, num_args = 0; local 1396 found = zend_lookup_class(classname, classname_len, &ce TSRMLS_CC); 1399 found = zend_hash_find(EG(class_table), php_strtolower(class_name, classname_len), classname_len + 1, (void **)&ce); 1402 if (found != FAILURE) {
|
| /PHP_5_3/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) { 288 int class_name_len, file_exts_len = SPL_G(autoload_extensions_len), found = 0; local 311 found = 1; 325 if (!found && !SPL_G(autoload_running)) { 489 zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Function '%s' not %s (%s)", func_name, alfi.func_ptr ? "callable" : "found", error);
|
| /PHP_5_3/ext/standard/ |
| H A D | html.c | 852 int found = 0; local 858 found = 1; 862 if (!found) {
|
| H A D | string.c | 274 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) */ 282 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) */ 984 int allocated = EXPLODE_ALLOC_STEP, found = 0; local 988 positions[found++] = p1; 990 if (found >= allocated) { 991 allocated = found + EXPLODE_ALLOC_STEP;/* make sure we have enough memory */ 994 positions[found++] = p1 = p2 + Z_STRLEN_P(delim); 997 to_return = limit + found; 998 /* limit is at least -1 therefore no need of bounds checking : i will be always less than found */ 1630 char *found local 1684 char *found = NULL; local 1731 char *found = NULL; local 1779 char *found = NULL; local 2021 char *found = NULL; local 2703 int maxlen = 0, pos, len, found; local [all...] |
| /PHP_5_3/ext/xsl/ |
| H A D | php_xsl.c | 227 zval *php_xsl_create_object(xsltStylesheetPtr obj, int *found, zval *wrapper_in, zval *return_value TSRMLS_DC) argument 232 *found = 0; 246 *found = 1;
|
| H A D | xsltprocessor.c | 636 int found; local 647 found = zend_lookup_class(ret_class, ret_class_len, &ce TSRMLS_CC); 648 if ((found != SUCCESS) || !instanceof_function(*ce, curce TSRMLS_CC)) {
|
| /PHP_5_3/main/ |
| H A D | php_ini.c | 257 /* If option not found in hash or is not an array -> create array, otherwise add to existing array */ 485 int found = 0; local 497 found = 1; 504 if (!found) { 600 /* If still no ini file found, search for php.ini file in search path */ 646 /* Scan and parse any .ini files found in scan path if path not empty. */ 799 /* Walk through config hash and alter matching ini entries using the values found in the hash */ 840 /* Walk through each directory in path and apply any found per-dir-system-configuration from configuration_hash */
|
| /PHP_5_3/Zend/ |
| H A D | zend_hash.c | 867 /* Returns SUCCESS if found and FAILURE if not. The pointer to the 1224 int found = HASH_UPDATE_KEY_IF_BEFORE; local 1228 found = HASH_UPDATE_KEY_IF_AFTER; 1233 if (mode & found) {
|
| H A D | zend_compile.c | 2581 int found, found2; local 2583 found = zend_lookup_class(fe->common.arg_info[i].class_name, fe->common.arg_info[i].class_name_len, &fe_ce TSRMLS_CC); 2587 if (found != SUCCESS || found2 != SUCCESS || 5414 /* No slash found, therefore return '.' */
|
| H A D | zend_builtin_functions.c | 1172 int found; local 1195 found = zend_hash_find(EG(class_table), name, len+1, (void **) &ce); 1197 RETURN_BOOL(found == SUCCESS && !((*ce)->ce_flags & ZEND_ACC_INTERFACE)); 1215 int found; local 1238 found = zend_hash_find(EG(class_table), name, len+1, (void **) &ce); 1240 RETURN_BOOL(found == SUCCESS && (*ce)->ce_flags & ZEND_ACC_INTERFACE); 1299 int found; local 1311 found = zend_hash_find(EG(class_table), lc_name, class_name_len+1, (void **) &ce); 1314 found = zend_lookup_class(class_name, class_name_len, &ce TSRMLS_CC); 1316 if (found [all...] |
| /PHP_5_3/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_3/ext/date/ |
| H A D | php_date.c | 2386 /* Helper function used to store the latest found warnings and errors while 2651 Returns the warnings and errors found while parsing a date/time string. 3375 unsigned int i, begin = 0, found; local 3414 found = 1; 3417 found = 0; 3426 found = 1; 3434 if (!found) {
|
| /PHP_5_3/ext/zip/ |
| H A D | php_zip.c | 574 were found, others return the GLOB_NOMATCH error code. 1665 int found; local 1700 found = php_zip_glob(pattern, pattern_len, flags, return_value TSRMLS_CC); 1702 found = php_zip_pcre(pattern, pattern_len, path, path_len, return_value TSRMLS_CC); 1705 if (found > 0) { 1709 for (i = 0; i < found; i++) {
|