| /src/external/mpl/bind/dist/tests/ns/ |
| listenlist_test.c | 44 ns_listenelt_t *elt; local 56 elt = ISC_LIST_HEAD(list->elts); 57 while (elt != NULL) { 58 ns_listenelt_t *next = ISC_LIST_NEXT(elt, link); 61 dns_acl_attach(elt->acl, &acl); 62 ISC_LIST_UNLINK(list->elts, elt, link); 63 ns_listenelt_destroy(elt); 64 elt = next; 83 elt = ISC_LIST_HEAD(list->elts); 84 while (elt != NULL) [all...] |
| /src/external/gpl3/binutils/dist/binutils/ |
| binemul.c | 82 bfd *elt; local 85 for (elt = bfd_openr_next_archived_file (new_bfd, NULL); 86 elt; 87 elt = bfd_openr_next_archived_file (new_bfd, elt)) 89 if (do_ar_emul_append (after_bfd, elt, verbose, true, check))
|
| /src/external/gpl3/binutils.old/dist/binutils/ |
| binemul.c | 82 bfd *elt; local 85 for (elt = bfd_openr_next_archived_file (new_bfd, NULL); 86 elt; 87 elt = bfd_openr_next_archived_file (new_bfd, elt)) 89 if (do_ar_emul_append (after_bfd, elt, verbose, true, check))
|
| /src/external/gpl3/gcc/dist/gcc/config/ |
| vxworks.cc | 113 constructor_elt elt = {field, fold_convert (TREE_TYPE (field), tmpl_addr)}; local 114 v->quick_push (elt); 117 elt.index = field; 118 elt.value = build_int_cst (TREE_TYPE (field), 0); 119 v->quick_push (elt); 122 elt.index = field; 123 elt.value = fold_convert (TREE_TYPE (field), DECL_SIZE_UNIT (decl)); 124 v->quick_push (elt);
|
| /src/external/gpl3/gcc.old/dist/gcc/config/ |
| vxworks.cc | 113 constructor_elt elt = {field, fold_convert (TREE_TYPE (field), tmpl_addr)}; local 114 v->quick_push (elt); 117 elt.index = field; 118 elt.value = build_int_cst (TREE_TYPE (field), 0); 119 v->quick_push (elt); 122 elt.index = field; 123 elt.value = fold_convert (TREE_TYPE (field), DECL_SIZE_UNIT (decl)); 124 v->quick_push (elt);
|
| /src/external/gpl3/binutils/dist/gas/ |
| hash.h | 99 string_tuple_t *elt = string_tuple_alloc (table, key, value); local 100 void **slot = htab_insert (table, elt, replace); 102 table->free_f (elt);
|
| /src/external/gpl3/binutils.old/dist/gas/ |
| hash.h | 99 string_tuple_t *elt = string_tuple_alloc (table, key, value); local 100 void **slot = htab_insert (table, elt, replace); 102 table->free_f (elt);
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/ |
| condition_variable.cc | 65 auto elt = (__at_thread_exit_elt*)p; local 66 while (elt) 68 auto next = elt->_M_next; 69 elt->_M_cb(elt); 70 elt = next; 76 auto elt = (__at_thread_exit_elt*)__gthread_getspecific(key); local 78 run(elt); 115 __at_thread_exit(__at_thread_exit_elt* elt) 120 elt->_M_next = (__at_thread_exit_elt*)__gthread_getspecific(key) [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/ |
| condition_variable.cc | 65 auto elt = (__at_thread_exit_elt*)p; local 66 while (elt) 68 auto next = elt->_M_next; 69 elt->_M_cb(elt); 70 elt = next; 76 auto elt = (__at_thread_exit_elt*)__gthread_getspecific(key); local 78 run(elt); 115 __at_thread_exit(__at_thread_exit_elt* elt) 120 elt->_M_next = (__at_thread_exit_elt*)__gthread_getspecific(key) [all...] |
| /src/external/mpl/bind/dist/lib/ns/ |
| listenlist.c | 38 ns_listenelt_t *elt = NULL; local 188 elt = isc_mem_get(mctx, sizeof(*elt)); 189 elt->mctx = mctx; 190 ISC_LINK_INIT(elt, link); 191 elt->port = port; 192 elt->is_http = false; 193 elt->acl = acl; 194 elt->sslctx = sslctx; 195 elt->sslctx_cache = NULL 303 ns_listenelt_t *elt, *next; local 334 ns_listenelt_t *elt = NULL; local [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| AbstractBasicWriter.h | 146 for (const T &elt : array) { 147 WriteDispatcher<T>::write(asImpl(), elt); local
|
| /src/external/bsd/libbind/dist/isc/ |
| heap.c | 108 float_up(heap_context ctx, int i, void *elt) { 112 i > 1 && ctx->higher_priority(elt, ctx->heap[p]); 118 ctx->heap[i] = elt; 124 sink_down(heap_context ctx, int i, void *elt) { 135 if (ctx->higher_priority(elt, ctx->heap[j])) 142 ctx->heap[i] = elt; 148 heap_insert(heap_context ctx, void *elt) { 151 if (ctx == NULL || elt == NULL) { 160 float_up(ctx, i, elt); 167 void *elt; local [all...] |
| /src/external/bsd/nsd/dist/ |
| netio.c | 41 netio_handler_list_type *elt; local 51 elt = netio->deallocated; 52 netio->deallocated = elt->next; 57 elt = (netio_handler_list_type *) region_alloc( 61 elt->next = netio->handlers; 62 elt->handler = handler; 63 elt->handler->pfd = -1; 64 netio->handlers = elt; 116 netio_handler_list_type *elt; local 144 for (elt = netio->handlers; elt; elt = elt->next) [all...] |
| /src/external/gpl2/texinfo/dist/makeinfo/ |
| toc.c | 369 int elt = STREQ (command, "contents") ? CONTENTS : SHORTCONTENTS; 370 xml_insert_element (elt, START); 371 xml_insert_element (elt, END); 367 int elt = STREQ (command, "contents") ? CONTENTS : SHORTCONTENTS; local
|
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| expr.cc | 75 constructor_elt *elt; local 77 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (cst), idx, elt) 78 elt->value = cplus_expand_constant (elt->value);
|
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| expr.cc | 75 constructor_elt *elt; local 77 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (cst), idx, elt) 78 elt->value = cplus_expand_constant (elt->value);
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/ |
| atexit_thread.cc | 58 struct elt struct in namespace:__anon17202 62 elt *next; 71 elt *single_thread; 76 elt *e = static_cast<elt*>(p); 79 elt *old_e = e; 146 elt *first; 148 first = static_cast<elt*>(__gthread_getspecific (key)); 152 elt *new_elt = new (std::nothrow) elt; [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| registry.h | 176 void *elt = m_fields[i]; local 177 if (elt != nullptr) 179 registrations[i] (elt);
|
| type-stack.h | 85 type_stack_elt elt; local 86 elt.piece = tp; 87 m_elements.push_back (elt); 92 type_stack_elt elt; local 93 elt.int_val = n; 94 m_elements.push_back (elt); 101 type_stack_elt elt; local 102 elt.stack_val = stack; 103 m_elements.push_back (elt); 113 type_stack_elt elt; local 135 type_stack_elt elt = m_elements.back (); local 143 type_stack_elt elt = m_elements.back (); local 153 type_stack_elt elt = m_elements.back (); local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| registry.h | 176 void *elt = m_fields[i]; local 177 if (elt != nullptr) 179 registrations[i] (elt);
|
| type-stack.h | 85 type_stack_elt elt; local 86 elt.piece = tp; 87 m_elements.push_back (elt); 92 type_stack_elt elt; local 93 elt.int_val = n; 94 m_elements.push_back (elt); 101 type_stack_elt elt; local 102 elt.stack_val = stack; 103 m_elements.push_back (elt); 113 type_stack_elt elt; local 135 type_stack_elt elt = m_elements.back (); local 143 type_stack_elt elt = m_elements.back (); local 153 type_stack_elt elt = m_elements.back (); local [all...] |
| /src/external/mpl/bind/dist/tests/dns/ |
| geoip_test.c | 173 dns_geoip_elem_t elt; local 182 elt.subtype = subtype; 183 strlcpy(elt.as_string, string, sizeof(elt.as_string)); 185 return dns_geoip_match(&na, &geoip, &elt); 191 dns_geoip_elem_t elt; local 200 elt.subtype = subtype; 201 strlcpy(elt.as_string, string, sizeof(elt.as_string)); 203 return dns_geoip_match(&na, &geoip, &elt); [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| vector-builder.h | 64 bool integral_p (T elt) const; 66 Return true if element ELT can be interpreted as an integer. 78 bool can_elide_p (T elt) const; 80 Return true if we can drop element ELT, even if the retained 122 T elt (unsigned int) const; 229 vector_builder<T, Shape, Derived>::elt (unsigned int i) const function in class:vector_builder 374 i != end && derived ()->equal_p (elt (i), elt (start));
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| vector-builder.h | 64 bool integral_p (T elt) const; 66 Return true if element ELT can be interpreted as an integer. 78 bool can_elide_p (T elt) const; 80 Return true if we can drop element ELT, even if the retained 122 T elt (unsigned int) const; 229 vector_builder<T, Shape, Derived>::elt (unsigned int i) const function in class:vector_builder 374 i != end && derived ()->equal_p (elt (i), elt (start));
|
| /src/external/mpl/bind/dist/lib/isc/ |
| heap.c | 143 float_up(isc_heap_t *heap, unsigned int i, void *elt) { 146 for (p = heap_parent(i); i > 1 && heap->compare(elt, heap->array[p]); 154 heap->array[i] = elt; 164 sink_down(isc_heap_t *heap, unsigned int i, void *elt) { 176 if (heap->compare(elt, heap->array[j])) { 185 heap->array[i] = elt; 195 isc_heap_insert(isc_heap_t *heap, void *elt) { 208 float_up(heap, new_last, elt); 213 void *elt; local 228 elt = heap->array[heap->last] [all...] |