Lines Matching refs:next

61 	const uint8_t *next;  in nd_cpack_align_and_reserve()  local
64 next = nd_cpack_next_boundary(cs->c_buf, cs->c_next, wordsize); in nd_cpack_align_and_reserve()
67 if (next - cs->c_buf + wordsize > cs->c_len) in nd_cpack_align_and_reserve()
70 return next; in nd_cpack_align_and_reserve()
100 const uint8_t *next; in nd_cpack_uint64() local
102 if ((next = nd_cpack_align_and_reserve(cs, sizeof(*u))) == NULL) in nd_cpack_uint64()
105 *u = GET_LE_U_8(next); in nd_cpack_uint64()
108 cs->c_next = next + sizeof(*u); in nd_cpack_uint64()
116 const uint8_t *next; in nd_cpack_int64() local
118 if ((next = nd_cpack_align_and_reserve(cs, sizeof(*u))) == NULL) in nd_cpack_int64()
121 *u = GET_LE_S_8(next); in nd_cpack_int64()
124 cs->c_next = next + sizeof(*u); in nd_cpack_int64()
132 const uint8_t *next; in nd_cpack_uint32() local
134 if ((next = nd_cpack_align_and_reserve(cs, sizeof(*u))) == NULL) in nd_cpack_uint32()
137 *u = GET_LE_U_4(next); in nd_cpack_uint32()
140 cs->c_next = next + sizeof(*u); in nd_cpack_uint32()
148 const uint8_t *next; in nd_cpack_int32() local
150 if ((next = nd_cpack_align_and_reserve(cs, sizeof(*u))) == NULL) in nd_cpack_int32()
153 *u = GET_LE_S_4(next); in nd_cpack_int32()
156 cs->c_next = next + sizeof(*u); in nd_cpack_int32()
164 const uint8_t *next; in nd_cpack_uint16() local
166 if ((next = nd_cpack_align_and_reserve(cs, sizeof(*u))) == NULL) in nd_cpack_uint16()
169 *u = GET_LE_U_2(next); in nd_cpack_uint16()
172 cs->c_next = next + sizeof(*u); in nd_cpack_uint16()
180 const uint8_t *next; in nd_cpack_int16() local
182 if ((next = nd_cpack_align_and_reserve(cs, sizeof(*u))) == NULL) in nd_cpack_int16()
185 *u = GET_LE_S_2(next); in nd_cpack_int16()
188 cs->c_next = next + sizeof(*u); in nd_cpack_int16()