Home
last modified time | relevance | path

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

/busybox-1.35.0/libbb/
Dpw_encrypt_des.c511 int shifts, round; in des_setkey() local
555 shifts = 0; in des_setkey()
559 shifts += key_shifts[round]; in des_setkey()
561 t0 = (k0 << shifts) | (k0 >> (28 - shifts)); in des_setkey()
562 t1 = (k1 << shifts) | (k1 >> (28 - shifts)); in des_setkey()
/busybox-1.35.0/archival/libarchive/bz/
Dblocksort.c990 unsigned shifts = 0; in mainSort() local
992 while ((bbSize >> shifts) > 65534) shifts++; in mainSort()
996 uint16_t qVal = (uint16_t)(j >> shifts); in mainSort()
1001 AssertH(((bbSize-1) >> shifts) <= 65535, 1002); in mainSort()