| /PHP_5_5/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 7314 ** Hash.first points to the head of this list. 15485 ** Pointers to the head of the list are stored in mem3.aiSmall[] 15712 ** *pRoot is the head of a list of free chunks of the same size 36455 struct RowSetEntry head; local [all...] |
| /PHP_5_5/ext/xmlrpc/libxmlrpc/ |
| H A D | queue.h | 38 node *head, *tail, *cursor; member in struct:__anon495 83 #define Q_Iter_Head_F(q) (q ? (q_iter)((queue*)q)->head : NULL)
|
| /PHP_5_5/ext/gd/libgd/ |
| H A D | gdcache.c | 26 * The head structure has a pointer to the most-recently-used 28 * time they are used. The head also contains pointers to three 63 gdCache_head_t *head; local 65 head = (gdCache_head_t *) gdPMalloc(sizeof (gdCache_head_t)); 66 head->mru = NULL; 67 head->size = size; 68 head->gdCacheTest = gdCacheTest; 69 head->gdCacheFetch = gdCacheFetch; 70 head->gdCacheRelease = gdCacheRelease; 71 return head; 75 gdCacheDelete(gdCache_head_t * head) argument 91 gdCacheGet(gdCache_head_t * head, void *keydata) argument [all...] |
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 2714 subexp_inf_recursive_check(Node* node, ScanEnv* env, int head) argument 2729 ret = subexp_inf_recursive_check(NCAR(x), env, head); 2732 if (head) { 2735 if (min != 0) head = 0; 2746 ret = subexp_inf_recursive_check(NCAR(node), env, head); 2754 r = subexp_inf_recursive_check(NQTFR(node)->target, env, head); 2768 r = subexp_inf_recursive_check(an->target, env, head); 2775 r = subexp_inf_recursive_check(NCALL(node)->target, env, head); 2782 return (head == 0 ? RECURSION_EXIST : RECURSION_INFINITE); 2785 r = subexp_inf_recursive_check(NENCLOSE(node)->target, env, head); 3093 Node *head, *np, *insert_node; local 5240 regex_t *head, *prev; local [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend_llist.h | 38 zend_llist_element *head; member in struct:_zend_llist
|
| /PHP_5_5/ext/dba/libcdb/ |
| H A D | cdb_make.c | 61 c->head = 0; 78 struct cdb_hplist *head; local 80 head = c->head; 81 if (!head || (head->num >= CDB_HPLIST)) { 82 head = (struct cdb_hplist *) emalloc(sizeof(struct cdb_hplist)); 83 if (!head) 85 head->num = 0; 86 head [all...] |
| H A D | cdb_make.h | 47 struct cdb_hplist *head; member in struct:cdb_make
|
| /PHP_5_5/ext/pcntl/ |
| H A D | php_pcntl.h | 70 struct php_pcntl_pending_signal *head, *tail, *spares; variable in typeref:struct:php_pcntl_pending_signal
|
| /PHP_5_5/ext/soap/ |
| H A D | php_packet_soap.c | 29 xmlNodePtr trav, env, head, body, resp, cur, fault; local 103 head = NULL; 109 head = trav; 157 if (head != NULL) { 158 attr = head->properties; 395 if (soap_headers && head) { 396 trav = head->children;
|
| H A D | soap.c | 3413 xmlNodePtr trav,env,head,body,func; local 3459 head = NULL; 3465 head = trav; 3549 if (head) { 3552 attr = head->properties; 3565 trav = head->children; 3781 xmlNodePtr head = NULL; local 3820 head = xmlNewChild(envelope, ns, BAD_CAST("Header"), NULL); 3853 if (serialize_response_call2(head, headers->function, Z_STRVAL(headers->function_name), uri, hdr_ret, version, 0 TSRMLS_CC) == SOAP_ENCODED) { 3857 xmlNodePtr xmlHdr = master_to_xml(hdr_enc, hdr_ret, hdr_use, head TSRMLS_C 4132 xmlNodePtr envelope = NULL, body, method = NULL, head = NULL; local [all...] |
| /PHP_5_5/main/streams/ |
| H A D | php_stream_filter_api.h | 59 php_stream_bucket *head, *tail; member in struct:_php_stream_bucket_brigade 102 php_stream_filter *head, *tail; member in struct:_php_stream_filter_chain 142 #define php_stream_is_filtered(stream) ((stream)->readfilters.head || (stream)->writefilters.head)
|
| /PHP_5_5/sapi/caudium/ |
| H A D | caudium.c | 186 struct svalue *head = NULL; local 187 THREAD_SAFE_RUN(head = lookup_header(headername), "header lookup"); 188 if(!head || head->type != PIKE_T_STRING) 190 return head->u.string->str; 198 struct svalue *head = NULL; local 199 THREAD_SAFE_RUN(head = lookup_header(headername), "header lookup"); 200 if(!head || head->type != PIKE_T_INT) 202 return head [all...] |
| /PHP_5_5/sapi/roxen/ |
| H A D | roxen.c | 188 struct svalue *head = NULL; local 189 THREAD_SAFE_RUN(head = lookup_header(headername), "header lookup"); 190 if(!head || head->type != PIKE_T_STRING) 192 return head->u.string->str; 200 struct svalue *head = NULL; local 201 THREAD_SAFE_RUN(head = lookup_header(headername), "header lookup"); 202 if(!head || head->type != PIKE_T_INT) 204 return head [all...] |
| /PHP_5_5/ext/spl/ |
| H A D | spl_dllist.c | 77 spl_ptr_llist_element *head; member in struct:_spl_ptr_llist 129 llist->head = NULL; 147 spl_ptr_llist_element *current = llist->head, *next; 172 current = llist->head; 195 elem->next = llist->head; 197 if (llist->head) { 198 llist->head->prev = elem; 203 llist->head = elem; 224 llist->head = elem; 248 llist->head 281 spl_ptr_llist_element *head = llist->head; local 294 spl_ptr_llist_element *head = llist->head; local [all...] |
| /PHP_5_5/ext/gd/ |
| H A D | gdcache.c | 17 * The head structure has a pointer to the most-recently-used 19 * time they are used. The head also contains pointers to three 64 gdCache_head_t *head; local 66 head = (gdCache_head_t *)pemalloc(sizeof(gdCache_head_t), 1); 67 head->mru = NULL; 68 head->size = size; 69 head->gdCacheTest = gdCacheTest; 70 head->gdCacheFetch = gdCacheFetch; 71 head->gdCacheRelease = gdCacheRelease; 72 return head; 91 gdCacheGet( gdCache_head_t *head, void *keydata ) argument [all...] |