Lines Matching full:uint64_t
134 #define swap64(x) ((uint64_t)(((uint64_t)(x) << 56) & 0xff00000000000000ULL | \\
135 ((uint64_t)(x) << 40) & 0x00ff000000000000ULL | \\
136 ((uint64_t)(x) << 24) & 0x0000ff0000000000ULL | \\
137 ((uint64_t)(x) << 8) & 0x000000ff00000000ULL | \\
165 #define swap64(x) ((uint64_t)(((uint64_t)(x) << 56) & 0xff00000000000000ULL | \\
166 ((uint64_t)(x) << 40) & 0x00ff000000000000ULL | \\
167 ((uint64_t)(x) << 24) & 0x0000ff0000000000ULL | \\
168 ((uint64_t)(x) << 8) & 0x000000ff00000000ULL | \\
181 #define swap64(x) ((uint64_t)(((uint64_t)(x) << 56) & 0xff00000000000000ULL | \\
182 ((uint64_t)(x) << 40) & 0x00ff000000000000ULL | \\
183 ((uint64_t)(x) << 24) & 0x0000ff0000000000ULL | \\
184 ((uint64_t)(x) << 8) & 0x000000ff00000000ULL | \\
342 # define be64atoh(x) be64toh(*(uint64_t*)(x))
351 # define le64atoh(x) le64toh(*(uint64_t*)(x))
361 # define htobe64a(a,x) *(uint64_t*)(a) = htobe64(x)
370 # define htole64a(a,x) *(uint64_t*)(a) = htole64(x)
387 #define be64atoh_x(x,off,shift) (((uint64_t)((x)[off]))<<shift)
388 #define be64atoh(x) ((uint64_t)(be64atoh_x(x,0,56)|be64atoh_x(x,1,48)|be64atoh_x(x,2,40)| \\
392 #define le64atoh_x(x,off,shift) (((uint64_t)(x)[off])<<shift)
393 #define le64atoh(x) ((uint64_t)(le64atoh_x(x,7,56)|le64atoh_x(x,6,48)|le64atoh_x(x,5,40)| \\