Home
last modified time | relevance | path

Searched refs:c_next (Results 1 – 6 of 6) sorted by relevance

/external/tcpdump/
Dcpack.c62 next = cpack_next_boundary(cs->c_buf, cs->c_next, wordsize); in cpack_align_and_reserve()
76 if (cs->c_next - cs->c_buf + toskip > cs->c_len) in cpack_advance()
78 cs->c_next += toskip; in cpack_advance()
89 cs->c_next = cs->c_buf; in cpack_init()
106 cs->c_next = next + sizeof(*u); in cpack_uint64()
122 cs->c_next = next + sizeof(*u); in cpack_uint32()
138 cs->c_next = next + sizeof(*u); in cpack_uint16()
147 if ((size_t)(cs->c_next - cs->c_buf) >= cs->c_len) in cpack_uint8()
150 *u = *cs->c_next; in cpack_uint8()
153 cs->c_next++; in cpack_uint8()
Dcpack.h35 u_int8_t *c_next; member
Dprint-802_11.c1988 s->c_next += length; in print_radiotap_field()
/external/valgrind/drd/
Ddrd_bitmap.c590 Addr c_next = first_address_with_higher_uword_msb(c); in DRD_() local
591 if (c_next > b_next) in DRD_()
592 c_next = b_next; in DRD_()
594 tl_assert(a1 <= b && b <= c && c <= c_next && c_next <= b_next in DRD_()
597 bm0_clear_range(p2->bm1.bm0_r, address_lsb(c), SCALED_SIZE(c_next - c)); in DRD_()
598 bm0_clear_range(p2->bm1.bm0_w, address_lsb(c), SCALED_SIZE(c_next - c)); in DRD_()
599 c = c_next; in DRD_()
604 Addr c_next = first_address_with_same_uword_lsb(b_next); in DRD_() local
607 tl_assert(uword_lsb(address_lsb(c_next)) == 0); in DRD_()
608 tl_assert(c_next <= b_next); in DRD_()
[all …]
/external/libxml2/os400/iconv/bldcsndfa/
Dbldcsndfa.c115 t_chset * c_next; /* Next character set. */ member
790 for (s = chset_list; s; s = s->c_next) in nfaenter()
907 for (sp = chset_list; sp; sp = sp->c_next) in read_assocs()
943 sp->c_next = chset_list; in read_assocs()
953 for (sp = chset_list; sp; sp = sp->c_next) { in read_assocs()
1109 for (sp = chset_list; sp; sp = sp->c_next) in read_iana()
1700 for (cp = chset_list; cp; cp = cp->c_next) { in listids()
/external/ppp/pppd/
Dmain.c1311 struct callout *c_next; member
1346 for (pp = &callout; (p = *pp); pp = &p->c_next)
1351 newp->c_next = p;
1369 for (copp = &callout; (freep = *copp); copp = &freep->c_next)
1371 *copp = freep->c_next;
1396 callout = p->c_next; in calltimeout()