Home | History | Annotate | Download | only in src

Lines Matching refs:pb

25 #define GetUnalignedWord( pb, w ) \
26 (w) = ((uint16) *(pb + 1) << 8) + *pb;
28 #define GetUnalignedDword( pb, dw ) \
29 (dw) = ((uint32) *(pb + 3) << 24) + \
30 ((uint32) *(pb + 2) << 16) + \
31 ((uint16) *(pb + 1) << 8) + *pb;
33 #define GetUnalignedWordEx( pb, w ) GetUnalignedWord( pb, w ); (pb) += sizeof(uint16);
34 #define GetUnalignedDwordEx( pb, dw ) GetUnalignedDword( pb, dw ); (pb) += sizeof(uint32);
35 #define GetUnalignedQwordEx( pb, qw ) GetUnalignedQword( pb, qw ); (pb) += sizeof(uint64);