Home
last modified time | relevance | path

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

/xnu-10063.141.1/libkern/zlib/
H A Dz_crc32.c67 typedef unsigned int u4; typedef
70 typedef unsigned long u4; typedef
73 typedef unsigned short u4; typedef
260 u4 endian; in z_crc32()
284 c = (u4)(crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \
292 u4 c; in crc32_little()
293 const u4 FAR *buf4; in crc32_little()
295 c = (u4)crc; in crc32_little()
298 c = (u4)(crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8)); in crc32_little()
302 buf4 = (const u4 FAR *)(const void FAR *)buf; in crc32_little()
[all …]
/xnu-10063.141.1/bsd/uuid/
H A Duuid.h46 #define UUID_DEFINE(name, u0, u1, u2, u3, u4, u5, u6, u7, u8, u9, u10, u11, u12, u13, u14, u15) \ argument
47 …static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13…