Home | History | Annotate | Download | only in vm

Lines Matching refs:u4

49 INLINE u4 get4BE(unsigned char const* pSrc)
59 u4 low, high;
84 INLINE u4 get4LE(unsigned char const* pSrc)
86 u4 result;
101 u4 low, high;
136 INLINE u4 read4BE(unsigned char const** ppSrc)
139 u4 result;
156 u4 low, high;
184 INLINE u4 read4LE(unsigned char const** ppSrc)
187 u4 result;
204 u4 low, high;
224 u4 length = read4BE(ppSrc);
236 u4 length = read4BE(ppSrc);
254 u4 length = read4BE(ppSrc);
289 INLINE void set4BE(u1* buf, u4 val)
324 INLINE void set4LE(u1* buf, u4 val)
352 u4 strLen = strlen((const char*)str);
355 memcpy(buf + sizeof(u4), str, strLen);