Lines Matching defs:next
52 /* Advance to the next wordsize boundary. Return NULL if fewer than
59 u_int8_t *next;
62 next = cpack_next_boundary(cs->c_buf, cs->c_next, wordsize);
65 if (next - cs->c_buf + wordsize > cs->c_len)
68 return next;
87 u_int8_t *next;
89 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
92 *u = EXTRACT_LE_64BITS(next);
95 cs->c_next = next + sizeof(*u);
103 u_int8_t *next;
105 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
108 *u = EXTRACT_LE_32BITS(next);
111 cs->c_next = next + sizeof(*u);
119 u_int8_t *next;
121 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
124 *u = EXTRACT_LE_16BITS(next);
127 cs->c_next = next + sizeof(*u);