Lines Matching defs:p
41 #define next_ucs2_ptr(p) (((uchar_t*)(p))+sizeof(ucs2_t))
45 #define get_ucs2_word(p) (*((ucs2_t*)(p)))
46 #define set_ucs2_word(p,n) ((*((ucs2_t*)(p)))=(n))
49 #define get_ucs2_word_BB(p) \
50 (((ucs2_t)((*(p))<<8))|((ucs2_t)(*((p)+1))))
52 #define set_ucs2_word_BB(p,n) \
53 (((*(p))=ext_ucs2_msb(n)),((*((p)+1))=ext_ucs2_lsb(n)))
56 #define get_ucs2_word_BB(p) \
57 (((ucs2_t)(((*((p)+1)))<<8))|((ucs2_t)(*(p))))
59 #define set_ucs2_word_BB(p,n) \
60 ((*((p)+1))=ext_ucs2_msb(n),(*(p))=ext_ucs2_lsb(n))