Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:next

53 /* Advance to the next wordsize boundary. Return NULL if fewer than
60 uint8_t *next;
63 next = cpack_next_boundary(cs->c_buf, cs->c_next, wordsize);
66 if (next - cs->c_buf + wordsize > cs->c_len)
69 return next;
99 uint8_t *next;
101 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
104 *u = EXTRACT_LE_64BITS(next);
107 cs->c_next = next + sizeof(*u);
115 uint8_t *next;
117 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
120 *u = EXTRACT_LE_32BITS(next);
123 cs->c_next = next + sizeof(*u);
131 uint8_t *next;
133 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
136 *u = EXTRACT_LE_16BITS(next);
139 cs->c_next = next + sizeof(*u);