Home
last modified time | relevance | path

Searched refs:nextp (Results 1 – 21 of 21) sorted by relevance

/external/libevent/
Dutil-internal.h152 struct type *elm1, *elm2, **nextp; \
171 nextp = &LIST_FIRST((dlist)); \
174 EVUTIL_ASSERT(*nextp == elm1); \
175 EVUTIL_ASSERT(nextp == elm1->field.le_prev); \
176 nextp = &LIST_NEXT(elm1, field); \
177 elm1 = *nextp; \
188 struct type *elm1, *elm2, **nextp; \
207 nextp = &TAILQ_FIRST((tailq)); \
210 EVUTIL_ASSERT(*nextp == elm1); \
211 EVUTIL_ASSERT(nextp == elm1->field.tqe_prev); \
[all …]
Dht-internal.h230 struct type **p, **nextp, *next; \
236 nextp = &(*p)->field.hte_next; \
237 next = *nextp; \
242 p = nextp; \
/external/elfutils/libdwfl/
Dcu.c246 struct dwfl_cu **nextp; in __libdwfl_nextcu() local
252 nextp = &mod->first_cu; in __libdwfl_nextcu()
258 nextp = &lastcu->next; in __libdwfl_nextcu()
261 if (*nextp == NULL) in __libdwfl_nextcu()
275 Dwfl_Error result = intern_cu (mod, cuoff + cuhdrsz, nextp); in __libdwfl_nextcu()
279 if (*nextp != (void *) -1 in __libdwfl_nextcu()
280 && (*nextp)->next == NULL && nextoff == (Dwarf_Off) -1l) in __libdwfl_nextcu()
281 (*nextp)->next = (void *) -1l; in __libdwfl_nextcu()
284 *cu = *nextp == (void *) -1l ? NULL : *nextp; in __libdwfl_nextcu()
DChangeLog679 (__libdwfl_nextcu): Check *nextp as returned by intern_cu isn't -1.
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_util.cpp114 Range *r, **nextp = &head; in extend() local
126 nextp = &r->next; in extend()
148 (*nextp) = new Range(a, b); in extend()
149 (*nextp)->next = r; in extend()
151 for (r = (*nextp); r->next; r = r->next); in extend()
/external/bcc/tests/python/
Dproto.b57 u32 nextp:8;
64 switch $ip.nextp {
Dtest_xlate1.c71 switch (ip->nextp) { in on_packet()
Dtest_clang_complex.c106 switch (ip->nextp) { in handle_packet()
/external/bcc/examples/networking/vlan_filter/
Ddata-plane-tracing.c35 switch (ip->nextp){ in vlan_filter()
/external/squashfs-tools/squashfs-tools/
Dcaches-queues-lists.c66 int nextp; in queue_put() local
71 while((nextp = (queue->writep + 1) % queue->size) == queue->readp) in queue_put()
75 queue->writep = nextp; in queue_put()
Dunsquashfs.c201 int nextp; in queue_put() local
205 while((nextp = (queue->writep + 1) % queue->size) == queue->readp) in queue_put()
209 queue->writep = nextp; in queue_put()
/external/bcc/examples/networking/dns_matching/
Ddns_matching.c67 if(ip->nextp == IPPROTO_UDP) { in dns_matching()
/external/bcc/examples/networking/http_filter/
Dhttp-parse-simple.c28 if (ip->nextp != IP_TCP) { in http_filter()
Dhttp-parse-complete.c48 if (ip->nextp != IP_TCP) { in http_filter()
/external/bcc/examples/networking/tunnel_monitor/
Dmonitor.c80 switch (ip->nextp) { in handle_outer()
/external/libxml2/
Ddict.c798 xmlDictStringsPtr pool, nextp; in xmlDictFree() local
840 nextp = pool->next; in xmlDictFree()
842 pool = nextp; in xmlDictFree()
/external/python/cpython2/Modules/_ctypes/libffi/src/
Ddlmalloc.c3401 mchunkptr nextp = chunk_plus_offset(p, SIZE_T_SIZE); in add_segment() local
3404 if ((char*)(&(nextp->head)) < old_end) in add_segment()
3405 p = nextp; in add_segment()
/external/libffi/src/
Ddlmalloc.c3396 mchunkptr nextp = chunk_plus_offset(p, SIZE_T_SIZE); in add_segment() local
3399 if ((char*)(&(nextp->head)) < old_end) in add_segment()
3400 p = nextp; in add_segment()
/external/elfutils/src/
Dreadelf.c10732 const unsigned char *nextp = data->d_buf + tu_off; in print_gdb_index_section() local
10736 size_t cu_nr = (nextp - readp) / 16; in print_gdb_index_section()
10757 nextp = data->d_buf + addr_off; in print_gdb_index_section()
10761 size_t tu_nr = (nextp - readp) / 24; in print_gdb_index_section()
10786 nextp = data->d_buf + sym_off; in print_gdb_index_section()
10790 size_t addr_nr = (nextp - readp) / 20; in print_gdb_index_section()
10821 nextp = const_start; in print_gdb_index_section()
10822 size_t sym_nr = (nextp - readp) / 8; in print_gdb_index_section()
DChangeLog3405 *nextp. Fix wrong logic in recognizing first iteration of group
/external/dlmalloc/
Dmalloc.c4028 mchunkptr nextp = chunk_plus_offset(p, SIZE_T_SIZE); in add_segment() local
4031 if ((char*)(&(nextp->head)) < old_end) in add_segment()
4032 p = nextp; in add_segment()