Home
last modified time | relevance | path

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

/external/tcpdump/
Dcpack.c62 next = cpack_next_boundary(cs->c_buf, cs->c_next, wordsize); in cpack_align_and_reserve()
78 cs->c_next = cs->c_buf; in cpack_init()
95 cs->c_next = next + sizeof(*u); in cpack_uint64()
111 cs->c_next = next + sizeof(*u); in cpack_uint32()
127 cs->c_next = next + sizeof(*u); in cpack_uint16()
136 if ((size_t)(cs->c_next - cs->c_buf) >= cs->c_len) in cpack_uint8()
139 *u = *cs->c_next; in cpack_uint8()
142 cs->c_next++; in cpack_uint8()
Dcpack.h35 u_int8_t *c_next; member
/external/valgrind/main/drd/
Ddrd_bitmap.c555 Addr c_next = first_address_with_higher_uword_msb(c); in DRD_() local
556 if (c_next > b_next) in DRD_()
557 c_next = b_next; in DRD_()
559 tl_assert(a1 <= b && b <= c && c <= c_next && c_next <= b_next in DRD_()
562 bm0_clear_range(p2->bm1.bm0_r, address_lsb(c), SCALED_SIZE(c_next - c)); in DRD_()
563 bm0_clear_range(p2->bm1.bm0_w, address_lsb(c), SCALED_SIZE(c_next - c)); in DRD_()
564 c = c_next; in DRD_()
569 Addr c_next = first_address_with_same_uword_lsb(b_next); in DRD_() local
572 tl_assert(uword_lsb(address_lsb(c_next)) == 0); in DRD_()
573 tl_assert(c_next <= b_next); in DRD_()
[all …]
/external/ppp/pppd/
Dmain.c1244 struct callout *c_next; member
1279 for (pp = &callout; (p = *pp); pp = &p->c_next)
1284 newp->c_next = p;
1302 for (copp = &callout; (freep = *copp); copp = &freep->c_next)
1304 *copp = freep->c_next;
1329 callout = p->c_next; in calltimeout()