Lines Matching defs:p
8 #define U8GET(p) ((p)[0]) argument
9 #define U16GET(p) (((p)[0]<<8)|(p)[1]) argument
10 #define U32GET(p) ((u32int)(((p)[0]<<24)|((p)[1]<<16)|((p)[2]<<8)|(p)[3])) argument
11 #define U48GET(p) (((vlong)U16GET(p)<<32)|(vlong)U32GET((p)+2)) argument
12 #define U64GET(p) (((vlong)U32GET(p)<<32)|(vlong)U32GET((p)+4)) argument
14 #define U8PUT(p,v) (p)[0]=(v) argument
15 #define U16PUT(p,v) (p)[0]=(v)>>8;(p)[1]=(v) argument
16 #define U32PUT(p,v) (p)[0]=(v)>>24;(p)[1]=(v)>>16;(p)[2]=(v)>>8;(p)[3]=(v) argument
17 #define U48PUT(p,v,t32) t32=(v)>>32;U16PUT(p,t32);t32=(v);U32PUT((p)+2,t32) argument
18 #define U64PUT(p,v,t32) t32=(v)>>32;U32PUT(p,t32);t32=(v);U32PUT((p)+4,t32) argument
32 vtRootPack(VtRoot *r, uchar *p) in vtRootPack()
53 vtRootUnpack(VtRoot *r, uchar *p) in vtRootUnpack()
85 vtEntryPack(VtEntry *e, uchar *p, int index) in vtEntryPack()
114 vtEntryUnpack(VtEntry *e, uchar *p, int index) in vtEntryUnpack()