Searched refs:shifts (Results 1 - 4 of 4) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/ext2/
H A DHTree.cpp252 uint32 shifts[4] = { 3, 7, 11, 19 }; local
256 uint32 shift = shifts[i % 4];
263 shifts[1] = 5;
264 shifts[2] = 9;
265 shifts[3] = 13;
270 uint32 shift = shifts[i / 2];
278 shifts[1] = 9;
279 shifts[2] = 11;
280 shifts[3] = 15;
284 uint32 shift = shifts[
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_gpio.c430 u_int32_t regs[2], shifts[2]; local
440 shifts[0] = AR_INTR_ASYNC_ENABLE_GPIO_S;
441 shifts[1] = AR_INTR_ASYNC_MASK_GPIO_S;
445 shifts[0] = AR_INTR_SYNC_ENABLE_GPIO_S;
446 shifts[1] = AR_INTR_SYNC_MASK_GPIO_S;
464 reg_bit = shifts[i] + gpio;
470 field_val = (reg_val >> shifts[i]) & gpio_mask;
491 reg_bit = shifts[i] + gpio;
497 field_val = (reg_val >> shifts[i]) & gpio_mask;
H A Dar9300_reset.c297 * masks and shifts are the same, though they differ for the
304 u_int8_t shifts[2] = { local
328 nf = (OS_REG_READ(ah, regs[i]) & masks[chan]) >> shifts[chan];
2113 * with an active radio can result in corrupted shifts to the
/haiku/src/system/libroot/posix/musl/crypt/
H A Dcrypt_des.c696 unsigned int shifts, round, i, ibit; local
726 shifts = 0;
731 shifts += key_shifts[round];
733 t0 = (k0 << shifts) | (k0 >> (28 - shifts));
734 t1 = (k1 << shifts) | (k1 >> (28 - shifts));

Completed in 98 milliseconds