Home
last modified time | relevance | path

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

/busybox-1.35.0/libbb/
Dpw_encrypt.c20 static int i64c(int i) in i64c() function
48 *p++ = i64c(x >> 16); in crypt_make_salt()
49 *p++ = i64c(x >> 22); in crypt_make_salt()
86 *s++ = i64c(v); in to64()
Dpw_encrypt_des.c706 *s++ = i64c(v >> 18); /* bits 23..18 */ in to64_msb_first()
707 *s++ = i64c(v >> 12); /* bits 17..12 */ in to64_msb_first()
708 *s++ = i64c(v >> 6); /* bits 11..6 */ in to64_msb_first()
709 *s = i64c(v); /* bits 5..0 */ in to64_msb_first()