| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | printf.c | 718 static void *printf_realloc(void *old, int size){ argument 719 return sqliteRealloc(old,size);
|
| /PHP_5_3/sapi/fpm/fpm/ |
| H A D | fpm_atomic.h | 43 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /* {{{ */ argument 48 "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "memory"); 69 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /* {{{ */ argument 74 "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "memory"); 104 static inline int atomic_cas_64(atomic_t *lock, atomic_uint_t old, atomic_uint_t new) /* {{{ */ argument 106 __asm__ __volatile__("casx [%2], %3, %0 " : "=&r"(new) : "0"(new), "r"(lock), "r"(old): "memory"); 112 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /* {{{ */ argument 114 return (atomic_cas_64(lock, old, set)==old); 121 static inline int atomic_cas_32(atomic_t *lock, atomic_uint_t old, atomic_uint_ argument 129 atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) argument [all...] |
| H A D | fpm_main.c | 1217 char old; local 1220 old = path_info[0]; 1231 path_info[0] = old;
|
| /PHP_5_3/ext/fileinfo/libmagic/ |
| H A D | compress.c | 32 * uncompress(method, old, n, newch) - uncompress old into new, 320 uncompressgzipped(struct magic_set *ms, const unsigned char *old, argument 323 unsigned char flg = old[3]; 331 data_start += 2 + old[data_start] + old[data_start + 1] * 256; 334 while(data_start < n && old[data_start]) 339 while(data_start < n && old[data_start]) 351 z.next_in = (Bytef *)strchr((const char *)old + data_start, 352 old[data_star 384 uncompressbuf(struct magic_set *ms, int fd, size_t method, const unsigned char *old, unsigned char **newch, size_t n) argument [all...] |
| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 1745 Node* old = *ptarget; local 1747 if (*ptarget != old && NTYPE(*ptarget) == N_QUANTIFIER) {
|
| /PHP_5_3/ext/calendar/ |
| H A D | calendar.c | 500 char *p, old[18], *endofalafim; local 502 p = endofalafim = old; 581 *ret = estrndup(old, (p - old) + 1);
|
| /PHP_5_3/ext/soap/ |
| H A D | php_encoding.c | 255 xmlChar old; local 262 old = '\0'; 264 if (*str != ' ' || old != ' ') { 268 old = *str; 271 if (old == ' ') {
|
| H A D | php_xml.c | 95 zend_bool old; local 103 old = php_libxml_disable_entity_loader(1 TSRMLS_CC); 105 php_libxml_disable_entity_loader(old TSRMLS_CC); 143 zend_bool old; local 153 old = php_libxml_disable_entity_loader(1 TSRMLS_CC); 155 php_libxml_disable_entity_loader(old TSRMLS_CC);
|
| H A D | soap.c | 2349 int old = PG(display_errors); local 2390 PG(display_errors) = old; 2402 int old = PG(display_errors); local 2476 PG(display_errors) = old; 3373 The function returns old value of location options. */
|
| /PHP_5_3/ext/standard/ |
| H A D | html.c | 921 PHPAPI char *php_unescape_html_entities(unsigned char *old, int oldlen, int *newlen, int all, int quote_style, char *hint_charset TSRMLS_DC) argument 930 ret = estrndup(old, oldlen); 1117 PHPAPI char *php_escape_html_entities(unsigned char *old, int oldlen, int *newlen, int all, int quote_style, char *hint_charset TSRMLS_DC) argument 1119 return php_escape_html_entities_ex(old, oldlen, newlen, all, quote_style, hint_charset, 1 TSRMLS_CC); 1125 PHPAPI char *php_escape_html_entities_ex(unsigned char *old, int oldlen, int *newlen, int all, int quote_style, char *hint_charset, zend_bool double_encode TSRMLS_DC) argument 1142 unsigned int this_char = get_next_char(charset, old, oldlen, &i, mbsequence, &mbseqlen, &status); 1204 char *e = memchr(old + i, ';', oldlen - i); 1205 char *s = old + i;
|
| H A D | string.c | 129 static char *php_bin2hex(const unsigned char *old, const size_t oldlen, size_t *newlen) argument 137 result[j++] = hexconvtab[old[i] >> 4]; 138 result[j++] = hexconvtab[old[i] & 15]; 2498 char *str, *old; local 2504 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &old, &old_len) == FAILURE) { 2508 old_end = old + old_len; 2510 if (old == old_end) { 2516 for (p = old, q = str; p != old_end; p++) {
|
| /PHP_5_3/sapi/cgi/ |
| H A D | cgi_main.c | 1206 char old; local 1209 old = path_info[0]; 1220 path_info[0] = old;
|
| /PHP_5_3/ext/phar/ |
| H A D | phar.c | 53 zend_bool old, ini; local 56 old = PHAR_G(readonly_orig); 58 old = PHAR_G(require_hash_orig); 81 } else if (old && !ini) { 1741 char *realpath, old, *a = (char *)(ext + ext_len); local 1743 old = *a; 1751 *a = old; 1757 *a = old; 1765 *a = old; 1780 *a = old; [all...] |
| H A D | tar.c | 201 php_uint32 sum1, sum2, size, old; local 223 old = (memcmp(hdr->magic, "ustar", sizeof("ustar")-1) != 0); 253 sum2 = phar_tar_checksum(buf, old?sizeof(old_tar_header):sizeof(tar_header)); 258 if (((!old && hdr->prefix[0] == 0) || old) && strlen(hdr->name) == sizeof(".phar/signature.bin")-1 && !strncmp(hdr->name, ".phar/signature.bin", sizeof(".phar/signature.bin")-1)) { 391 } else if (!last_was_longlink && !old && hdr->prefix[0] != 0) { 448 entry.tar_type = ((old & (hdr->typeflag == '\0')) ? TAR_FILE : hdr->typeflag); 457 if (old && entry.tar_type == TAR_FILE && S_ISDIR(entry.flags)) { 671 php_stream *old; member in struct:_phar_pass_tar_info 1113 pass.old [all...] |
| H A D | zip.c | 509 PHAR_ZIP_FAIL("unsupported compression method (PKWare Implode/old IBM TERSE) used in this zip"); 768 php_stream *old; member in struct:_phar_zip_pass 940 if (p->old) { 941 if (-1 == php_stream_seek(p->old, entry->offset_abs, SEEK_SET)) { 1063 if (!entry->is_dir && entry->compressed_filesize && SUCCESS != phar_stream_copy_to_stream(p->old, p->filefp, entry->compressed_filesize, NULL)) { 1371 pass.old = oldfile;
|
| /PHP_5_3/ext/libxml/ |
| H A D | libxml.c | 839 zend_bool old = LIBXML(entity_loader_disabled); local 842 return old;
|
| /PHP_5_3/ext/spl/ |
| H A D | spl_dllist.c | 841 /* call dtor on the old element as in spl_ptr_llist_pop */ 846 /* the element is replaced, delref the old one as in 956 spl_ptr_llist_element *old = *traverse_pointer_ptr; local 959 *traverse_pointer_ptr = old->prev; 970 *traverse_pointer_ptr = old->next; 983 SPL_LLIST_DELREF(old);
|