Home
last modified time | relevance | path

Searched refs:put_unaligned_be16 (Results 1 – 1 of 1) sorted by relevance

/third_party/FreeBSD/sys/dev/usb/implementation/
D_macro_ref.h61 #define put_unaligned_be16(p, v) do {*((UINT8*)(p)) = (v >> 8); *((UINT8*)(p + 1)) = (v);}while(0); macro
62 #define put_unaligned_be32(p, v) do{put_unaligned_be16(p, (v >> 16)) ; put_unaligned_be16((p + 2), …