Home
last modified time | relevance | path

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

/external/tcpdump/
Dcpack.c63 next = cpack_next_boundary(cs->c_buf, cs->c_next, wordsize); in cpack_align_and_reserve()
77 if (cs->c_next - cs->c_buf + toskip > cs->c_len) in cpack_advance()
79 cs->c_next += toskip; in cpack_advance()
90 cs->c_next = cs->c_buf; in cpack_init()
107 cs->c_next = next + sizeof(*u); in cpack_uint64()
123 cs->c_next = next + sizeof(*u); in cpack_uint32()
139 cs->c_next = next + sizeof(*u); in cpack_uint16()
148 if ((size_t)(cs->c_next - cs->c_buf) >= cs->c_len) in cpack_uint8()
151 *u = *cs->c_next; in cpack_uint8()
154 cs->c_next++; in cpack_uint8()
Dcpack.h35 uint8_t *c_next; member
Dprint-802_11.c2608 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()
/external/opencv3/modules/features2d/src/kaze/
Dnldiffusion_functions.cpp370 const float *c_next = c.ptr<float>(i + 1); in operator ()() local
381 float ypos = (c_curr[j] + c_next[j]) *(ld_next[j] - ld_curr[j]); in operator ()()