Searched defs:IXDR_GET_INT32 (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/rpc/
H A Dxdr.h337 #define IXDR_GET_INT32(buf) ((int32_t)ntohl((uint32_t)*(buf)++)) macro
339 #define IXDR_GET_U_INT32(buf) ((uint32_t)IXDR_GET_INT32(buf))
361 #define IXDR_GET_BOOL(buf) ((bool_t)IXDR_GET_INT32(buf))
362 #define IXDR_GET_ENUM(buf, t) ((t)IXDR_GET_INT32(buf))
363 #define IXDR_GET_SHORT(buf) ((short)IXDR_GET_INT32(buf))
364 #define IXDR_GET_U_SHORT(buf) ((ushort_t)IXDR_GET_INT32(buf))

Completed in 80 milliseconds