Home
last modified time | relevance | path

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

/busybox-1.35.0/util-linux/volume_id/
Dsquashfs.c43 #define pack(a,b,c,d) ( (uint32_t)((a * 256 + b) * 256 + c) * 256 + d ) in volume_id_probe_squashfs() macro
44 #define SIG1 pack('s','q','s','h') in volume_id_probe_squashfs()
45 #define SIG2 pack('h','s','q','s') in volume_id_probe_squashfs()
46 #define SIG3 pack('s','h','s','q') in volume_id_probe_squashfs()
47 #define SIG4 pack('q','s','h','s') in volume_id_probe_squashfs()
/busybox-1.35.0/runit/
Dsvlogd.c375 uint32_t pack[3]; in fmt_time_bernstein_25() local
385 pack[0] = htonl(sec_hi); in fmt_time_bernstein_25()
386 pack[1] = htonl(tv.tv_sec); in fmt_time_bernstein_25()
387 pack[2] = htonl(tv.tv_usec); in fmt_time_bernstein_25()
389 bin2hex(s, (char*)pack, 12); in fmt_time_bernstein_25()