Lines Matching full:next
52 /* Advance to the next wordsize boundary. Return NULL if fewer than
59 const uint8_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;
98 const uint8_t *next;
100 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
103 *u = EXTRACT_LE_64BITS(next);
106 cs->c_next = next + sizeof(*u);
114 const uint8_t *next;
116 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
119 *u = EXTRACT_LE_32BITS(next);
122 cs->c_next = next + sizeof(*u);
130 const uint8_t *next;
132 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
135 *u = EXTRACT_LE_16BITS(next);
138 cs->c_next = next + sizeof(*u);