Searched refs:srcraw (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/lib/libdhcpsvc/modules/util/
H A Dutil.c246 * Convert an object of `len' bytes pointed to by `srcraw' between
248 * must be the actual length of the objects pointed to by `srcraw' and
249 * `dstraw' (or zero) or the results are undefined. Note that `srcraw' and
255 nhconvert(void *dstraw, const void *srcraw, size_t len) argument
263 * If both `srcraw' and `dstraw' are 32-bit aligned and `len' is 4,
266 if (IS_P2ALIGNED(dstraw, 4) && IS_P2ALIGNED(srcraw, 4) && len == 4) {
267 *(uint32_t *)dstraw = ntohl(*(uint32_t *)srcraw);
272 src = (uint8_t *)srcraw;
281 if (srcraw != dstraw)
282 (void) memmove(dstraw, srcraw, le
[all...]

Completed in 14 milliseconds