| /src/external/bsd/openldap/dist/libraries/libldap/ |
| messages.c | 35 ldap_first_message( LDAP *ld, LDAPMessage *chain ) 39 assert( chain != NULL ); 41 return chain; 55 ldap_count_messages( LDAP *ld, LDAPMessage *chain ) 62 for ( i = 0; chain != NULL; chain = chain->lm_chain ) {
|
| getentry.c | 37 ldap_first_entry( LDAP *ld, LDAPMessage *chain ) 41 assert( chain != NULL ); 43 return chain->lm_msgtype == LDAP_RES_SEARCH_ENTRY 44 ? chain 45 : ldap_next_entry( ld, chain ); 69 ldap_count_entries( LDAP *ld, LDAPMessage *chain ) 76 for ( i = 0; chain != NULL; chain = chain->lm_chain ) { 77 if( chain->lm_msgtype == LDAP_RES_SEARCH_ENTRY ) [all...] |
| /src/external/gpl3/gcc/dist/gcc/objc/ |
| objc-runtime-shared-support.cc | 98 add_field_decl (tree type, const char *name, tree **chain) 102 if (*chain != NULL) 103 **chain = field; 104 *chain = &DECL_CHAIN (field); 161 tree decls, *chain = NULL; local 166 decls = add_field_decl (objc_object_type, "self", &chain); 170 "super_class", &chain); local 187 tree decls, *chain = NULL; local 192 decls = add_field_decl (objc_selector_type, "_cmd", &chain); 195 add_field_decl (string_type_node, "method_types", &chain); 198 add_field_decl (build_pointer_type (void_type_node), "_imp", &chain); local 209 tree decls, *chain = NULL; local 234 tree array_type, decls, *chain = NULL; local 265 tree array_type, decls, *chain = NULL; local 295 tree *chain, decl, type; local 476 tree decls, *chain = NULL; local 568 tree array_type, decls, *chain = NULL; local 594 tree decls, *chain = NULL; local 617 tree chain; local 678 tree chain, string_expr; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/objc/ |
| objc-runtime-shared-support.cc | 98 add_field_decl (tree type, const char *name, tree **chain) 102 if (*chain != NULL) 103 **chain = field; 104 *chain = &DECL_CHAIN (field); 161 tree decls, *chain = NULL; local 166 decls = add_field_decl (objc_object_type, "self", &chain); 170 "super_class", &chain); local 187 tree decls, *chain = NULL; local 192 decls = add_field_decl (objc_selector_type, "_cmd", &chain); 195 add_field_decl (string_type_node, "method_types", &chain); 198 add_field_decl (build_pointer_type (void_type_node), "_imp", &chain); local 209 tree decls, *chain = NULL; local 234 tree array_type, decls, *chain = NULL; local 265 tree array_type, decls, *chain = NULL; local 295 tree *chain, decl, type; local 476 tree decls, *chain = NULL; local 568 tree array_type, decls, *chain = NULL; local 594 tree decls, *chain = NULL; local 617 tree chain; local 678 tree chain, string_expr; local [all...] |
| /src/sys/external/bsd/drm2/linux/ |
| linux_dma_fence_chain.c | 35 #include <linux/dma-fence-chain.h> 44 * dma_fence_chain_init(chain, prev, fence, seqno) 46 * Initialize a fence chain node. If prev was already a chain, 47 * extend it; otherwise; create a new chain context. 50 dma_fence_chain_init(struct dma_fence_chain *chain, struct dma_fence *prev, 56 spin_lock_init(&chain->dfc_lock); 57 chain->dfc_prev = prev; /* consume caller's reference */ 58 chain->dfc_fence = fence; /* consume caller's reference */ 59 init_irq_work(&chain->dfc_irq_work, &dma_fence_chain_irq_work) 93 struct dma_fence_chain *chain = container_of(work, local 104 struct dma_fence_chain *chain = container_of(cb, local 114 struct dma_fence_chain *chain = to_dma_fence_chain(fence); local 158 struct dma_fence_chain *chain = to_dma_fence_chain(fence); local 247 struct dma_fence_chain *chain, *prev_chain; local 291 struct dma_fence_chain *chain; local [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/ec/curve448/ |
| scalar.c | 42 c448_dsword_t chain = 0; local 47 chain = (chain + accum[i]) - sub->limb[i]; 48 out->limb[i] = (c448_word_t)chain; 49 chain >>= WBITS; 51 borrow = (c448_word_t)chain + extra; /* = 0 or -1 */ 53 chain = 0; 55 chain = (chain + out->limb[i]) + (p->limb[i] & borrow); 56 out->limb[i] = (c448_word_t)chain; 72 c448_dword_t chain = 0; local 114 c448_dword_t chain = 0; local 213 c448_dword_t chain = 0; local [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/ec/curve448/ |
| scalar.c | 53 c448_dsword_t chain = 0; local 58 chain = (chain + accum[i]) - sub->limb[i]; 59 out->limb[i] = (c448_word_t)chain; 60 chain >>= WBITS; 62 borrow = (c448_word_t)chain + extra; /* = 0 or -1 */ 64 chain = 0; 66 chain = (chain + out->limb[i]) + (p->limb[i] & borrow); 67 out->limb[i] = (c448_word_t)chain; 83 c448_dword_t chain = 0; local 127 c448_dword_t chain = 0; local 229 c448_dword_t chain = 0; local [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/ec/curve448/ |
| scalar.c | 53 c448_dsword_t chain = 0; local 58 chain = (chain + accum[i]) - sub->limb[i]; 59 out->limb[i] = (c448_word_t)chain; 60 chain >>= WBITS; 62 borrow = (c448_word_t)chain + extra; /* = 0 or -1 */ 64 chain = 0; 66 chain = (chain + out->limb[i]) + (p->limb[i] & borrow); 67 out->limb[i] = (c448_word_t)chain; 83 c448_dword_t chain = 0; local 125 c448_dword_t chain = 0; local 224 c448_dword_t chain = 0; local [all...] |
| /src/external/bsd/openpam/dist/lib/libpam/ |
| openpam_load.c | 104 * Destroy a chain, freeing all its links and releasing the modules 109 openpam_destroy_chain(pam_chain_t *chain) 112 if (chain == NULL) 114 openpam_destroy_chain(chain->next); 115 chain->next = NULL; 116 FREEV(chain->optc, chain->optv); 117 openpam_release_module(chain->module); 118 chain->module = NULL; 119 FREE(chain); [all...] |
| openpam_dispatch.c | 62 * Execute a module chain 70 pam_chain_t *chain; local 86 /* pick a chain */ 90 chain = pamh->chains[PAM_AUTH]; 93 chain = pamh->chains[PAM_ACCOUNT]; 97 chain = pamh->chains[PAM_SESSION]; 100 chain = pamh->chains[PAM_PASSWORD]; 110 for (; chain != NULL; chain = chain->next) [all...] |
| /src/external/bsd/flex/dist/src/ |
| filter.c | 34 /** global chain. */ 38 * @param chain the current chain or NULL for new chain 42 * @return newest filter in chain 44 struct filter *filter_create_ext (struct filter *chain, const char *cmd, 62 if (chain != NULL) { 63 /* append f to end of chain */ 64 while (chain->next) 65 chain = chain->next [all...] |
| /src/external/bsd/libevent/dist/ |
| buffer.c | 143 (ptr)->internal_.chain = NULL; \ 147 static void evbuffer_chain_align(struct evbuffer_chain *chain); 148 static int evbuffer_chain_should_realign(struct evbuffer_chain *chain, 158 static inline void evbuffer_chain_incref(struct evbuffer_chain *chain); 163 struct evbuffer_chain *chain; local 182 if ((chain = mm_malloc(to_alloc)) == NULL) 185 memset(chain, 0, EVBUFFER_CHAIN_SIZE); 187 chain->buffer_len = to_alloc - EVBUFFER_CHAIN_SIZE; 192 chain->buffer = EVBUFFER_CHAIN_EXTRA(unsigned char, chain); 336 struct evbuffer_chain *chain; local 567 struct evbuffer_chain *chain, *next; local 627 struct evbuffer_chain *chain; local 678 struct evbuffer_chain *chain, **chainp; local 731 struct evbuffer_chain *chain, **firstchainp, **chainp; local 821 struct evbuffer_chain *chain, **pinned; local 915 struct evbuffer_chain *chain = src->first; local 1019 struct evbuffer_chain *chain; local 1107 struct evbuffer_chain *chain, *next; local 1198 struct evbuffer_chain *chain; local 1270 struct evbuffer_chain *chain, *previous; local 1356 struct evbuffer_chain *chain, *next, *tmp, *last_with_data; local 1480 struct evbuffer_chain *chain = it->internal_.chain; local 1529 struct evbuffer_chain *chain = it->internal_.chain; local 1553 struct evbuffer_chain *chain = ptr->internal_.chain; local 1591 struct evbuffer_chain *chain = it->internal_.chain; local 1736 struct evbuffer_chain *chain, *tmp; local 1833 struct evbuffer_chain *chain, *tmp; local 1945 struct evbuffer_chain *chain, **chainp; local 2057 struct evbuffer_chain *chain = buf->last, *tmp, *next; local 2167 struct evbuffer_chain *chain; local 2233 struct evbuffer_chain *chain; local 2297 struct evbuffer_chain *chain; local 2424 struct evbuffer_chain *chain = buffer->first; local 2475 struct evbuffer_chain *chain = buffer->first; local 2544 struct evbuffer_chain *chain = buffer->first; local 2631 struct evbuffer_chain *chain = NULL; local 2686 struct evbuffer_chain *chain; local 2728 struct evbuffer_chain *chain, *last_chain = NULL; local 2793 struct evbuffer_chain *chain; local 2854 struct evbuffer_chain *chain; local 2929 struct evbuffer_chain *chain; local 3201 struct evbuffer_chain *chain; local [all...] |
| /src/external/bsd/ntp/dist/sntp/libevent/ |
| buffer.c | 141 (ptr)->internal_.chain = NULL; \ 145 static void evbuffer_chain_align(struct evbuffer_chain *chain); 146 static int evbuffer_chain_should_realign(struct evbuffer_chain *chain, 156 static inline void evbuffer_chain_incref(struct evbuffer_chain *chain); 161 struct evbuffer_chain *chain; local 180 if ((chain = mm_malloc(to_alloc)) == NULL) 183 memset(chain, 0, EVBUFFER_CHAIN_SIZE); 185 chain->buffer_len = to_alloc - EVBUFFER_CHAIN_SIZE; 190 chain->buffer = EVBUFFER_CHAIN_EXTRA(unsigned char, chain); 334 struct evbuffer_chain *chain; local 565 struct evbuffer_chain *chain, *next; local 625 struct evbuffer_chain *chain; local 676 struct evbuffer_chain *chain, **chainp; local 729 struct evbuffer_chain *chain, **firstchainp, **chainp; local 819 struct evbuffer_chain *chain, **pinned; local 913 struct evbuffer_chain *chain = src->first; local 1017 struct evbuffer_chain *chain; local 1105 struct evbuffer_chain *chain, *next; local 1196 struct evbuffer_chain *chain; local 1268 struct evbuffer_chain *chain, *previous; local 1354 struct evbuffer_chain *chain, *next, *tmp, *last_with_data; local 1478 struct evbuffer_chain *chain = it->internal_.chain; local 1527 struct evbuffer_chain *chain = it->internal_.chain; local 1551 struct evbuffer_chain *chain = ptr->internal_.chain; local 1589 struct evbuffer_chain *chain = it->internal_.chain; local 1734 struct evbuffer_chain *chain, *tmp; local 1831 struct evbuffer_chain *chain, *tmp; local 1943 struct evbuffer_chain *chain, **chainp; local 2055 struct evbuffer_chain *chain = buf->last, *tmp, *next; local 2165 struct evbuffer_chain *chain; local 2231 struct evbuffer_chain *chain; local 2295 struct evbuffer_chain *chain; local 2422 struct evbuffer_chain *chain = buffer->first; local 2473 struct evbuffer_chain *chain = buffer->first; local 2542 struct evbuffer_chain *chain = buffer->first; local 2629 struct evbuffer_chain *chain = NULL; local 2684 struct evbuffer_chain *chain; local 2726 struct evbuffer_chain *chain, *last_chain = NULL; local 2791 struct evbuffer_chain *chain; local 2852 struct evbuffer_chain *chain; local 2927 struct evbuffer_chain *chain; local 3199 struct evbuffer_chain *chain; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| tree-predcom.cc | 62 the same chain. The chains are then processed independently, 67 In our example, we get the following chains (the chain for c is invalid). 79 single root reference of the chain (adjusting their distance 99 and we can combine the chains for e and f into one chain. 101 5) For each root reference (end of the chain) R, let N be maximum distance 197 can see this as a restricted Store-Mixed-Load-Store chain. 200 force to not unroll in case of store-store chain even if other chains might 260 /* Distance of the reference from the root of the chain (in number of 276 /* Type of the chain of the references. */ 280 /* The addresses of the references in the chain are constant. * 298 typedef struct chain struct 300 chain (chain_type t) : type (t), op (ERROR_MARK), rslt_type (NULL_TREE), function in struct:chain 654 chain_p chain; local 718 chain_p chain; local 1296 chain_p chain = new struct chain (CT_INVARIANT); local 1319 chain_p chain = new struct chain (type); local 1553 chain_p chain = NULL; local 2406 chain_p chain; local 2450 chain_p chain; local 2483 chain_p chain; local 2504 chain_p chain; local 3248 chain_p chain; local 3318 chain_p chain; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| tree-predcom.cc | 62 the same chain. The chains are then processed independently, 67 In our example, we get the following chains (the chain for c is invalid). 79 single root reference of the chain (adjusting their distance 99 and we can combine the chains for e and f into one chain. 101 5) For each root reference (end of the chain) R, let N be maximum distance 197 can see this as a restricted Store-Mixed-Load-Store chain. 200 force to not unroll in case of store-store chain even if other chains might 260 /* Distance of the reference from the root of the chain (in number of 276 /* Type of the chain of the references. */ 280 /* The addresses of the references in the chain are constant. * 298 typedef struct chain struct 300 chain (chain_type t) : type (t), op (ERROR_MARK), rslt_type (NULL_TREE), function in struct:chain 654 chain_p chain; local 718 chain_p chain; local 1265 chain_p chain = new struct chain (CT_INVARIANT); local 1288 chain_p chain = new struct chain (type); local 1522 chain_p chain = NULL; local 2375 chain_p chain; local 2419 chain_p chain; local 2452 chain_p chain; local 2473 chain_p chain; local 3217 chain_p chain; local 3287 chain_p chain; local [all...] |
| /src/crypto/external/apache2/openssl/dist/test/ |
| bio_prefix_text.c | 21 * This program sets up a chain of BIO_f_filter() on top of bio_out, how 24 * text from bio_in and prints it out through the BIO chain. 40 static BIO **chain = NULL; variable 53 * idx is the index to the BIO_f_filter chain(), where 0 is closest 86 if (!BIO_write_ex(chain[amount - 1], buf, bytes_in, &bytes)) 99 chain = OPENSSL_zalloc(sizeof(*chain) * n); 101 if (chain != NULL) { 114 chain[i] = BIO_push(curr, next); 115 if (chain[i] == NULL [all...] |
| /src/crypto/external/bsd/openssl/dist/test/ |
| bio_prefix_text.c | 21 * This program sets up a chain of BIO_f_filter() on top of bio_out, how 24 * text from bio_in and prints it out through the BIO chain. 40 static BIO **chain = NULL; variable 53 * idx is the index to the BIO_f_filter chain(), where 0 is closest 86 if (!BIO_write_ex(chain[amount - 1], buf, bytes_in, &bytes)) 99 chain = OPENSSL_zalloc(sizeof(*chain) * n); 101 if (chain != NULL) { 112 chain[i] = BIO_push(curr, next); 113 if (chain[i] == NULL [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/dwarf2/ |
| frame-tailcall.c | 42 /* Reference count. The whole chain of virtual tail call frames shares one 46 /* Associated found virtual tail call frames chain, it is never NULL. */ 47 struct call_site_chain *chain; member in struct:tailcall_cache 53 in CHAIN. */ 129 xfree (cache->chain); 144 call chain. Otherwise return NULL. No new reference is created. */ 186 /* The number of virtual tail call frames in CHAIN. With no virtual tail call 187 frames the function would return 0 (but CHAIN does not exist in such 191 pretended_chain_levels (struct call_site_chain *chain) 195 gdb_assert (chain != NULL) 237 struct call_site_chain *chain = cache->chain; local 373 gdb::unique_xmalloc_ptr<call_site_chain> chain; local [all...] |
| /src/external/gpl3/gdb/dist/gdb/dwarf2/ |
| frame-tailcall.c | 42 /* Reference count. The whole chain of virtual tail call frames shares one 46 /* Associated found virtual tail call frames chain, it is never NULL. */ 47 struct call_site_chain *chain; member in struct:tailcall_cache 53 in CHAIN. */ 129 xfree (cache->chain); 144 call chain. Otherwise return NULL. No new reference is created. */ 186 /* The number of virtual tail call frames in CHAIN. With no virtual tail call 187 frames the function would return 0 (but CHAIN does not exist in such 191 pretended_chain_levels (struct call_site_chain *chain) 195 gdb_assert (chain != NULL) 237 struct call_site_chain *chain = cache->chain; local 370 gdb::unique_xmalloc_ptr<call_site_chain> chain; local [all...] |
| /src/external/bsd/openldap/dist/tests/data/ |
| slapd-chain1.conf | 30 # uses the chain overlay as global; 31 # no chain-URI is configured, so the URI is parsed out of the referral 32 overlay chain 33 chain-uri @URI2@ 34 chain-idassert-bind bindmethod=simple
|
| slapd-chain2.conf | 48 # uses the chain overlay as database specific; 49 # the chain-URI is configured, so only that URI is chained 50 overlay chain 51 chain-uri @URI1@ 52 chain-idassert-bind bindmethod=simple
|
| /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/ |
| allocsa.c | 120 void **chain = &mallocsa_results[slot]; local 121 for (; *chain != NULL;) 123 if (*chain == p) 127 *chain = ((struct header *) p_begin)->next; 131 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| allocsa.c | 120 void **chain = &mallocsa_results[slot]; local 121 for (; *chain != NULL;) 123 if (*chain == p) 127 *chain = ((struct header *) p_begin)->next; 131 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
|
| /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| allocsa.c | 120 void **chain = &mallocsa_results[slot]; local 121 for (; *chain != NULL;) 123 if (*chain == p) 127 *chain = ((struct header *) p_begin)->next; 131 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
|
| /src/external/gpl2/xcvs/dist/lib/ |
| allocsa.c | 125 void **chain = &mallocsa_results[slot]; local 126 for (; *chain != NULL;) 128 if (*chain == p) 132 *chain = ((struct header *) p_begin)->next; 136 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
|