Home
last modified time | relevance | path

Searched refs:shft (Results 1 – 9 of 9) sorted by relevance

/kernel/linux/linux-5.10/fs/ubifs/
Dlpt.c551 int num, shft; in calc_nnode_num_from_parent() local
555 shft = (c->lpt_hght - parent->level) * UBIFS_LPT_FANOUT_SHIFT; in calc_nnode_num_from_parent()
556 num = parent->num ^ (1 << shft); in calc_nnode_num_from_parent()
557 num |= (UBIFS_LPT_FANOUT + iip) << shft; in calc_nnode_num_from_parent()
1458 int err, h, iip, shft; in ubifs_pnode_lookup() local
1468 shft = c->lpt_hght * UBIFS_LPT_FANOUT_SHIFT; in ubifs_pnode_lookup()
1470 iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1)); in ubifs_pnode_lookup()
1471 shft -= UBIFS_LPT_FANOUT_SHIFT; in ubifs_pnode_lookup()
1476 iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1)); in ubifs_pnode_lookup()
1605 int err, i, h, iip, shft; in ubifs_lpt_lookup_dirty() local
[all …]
/kernel/linux/linux-5.10/arch/arm/mach-pxa/
Dmfp-pxa2xx.c57 int shft = (gpio & 0xf) << 1; in __mfp_config_gpio() local
66 gafr = (gafr & ~(0x3 << shft)) | (fn << shft); in __mfp_config_gpio()
/kernel/linux/linux-5.10/arch/m68k/fpsp040/
Dsgetem.S96 bsr shft |shift mantissa bits till msbit is set
110 shft: label
/kernel/linux/linux-5.10/drivers/edac/
Dpnd2_edac.c900 static int bank_hash(u64 pmiaddr, int idx, int shft) in bank_hash() argument
906 bhash ^= ((pmiaddr >> (12 + shft)) ^ (pmiaddr >> (9 + shft))) & 1; in bank_hash()
909 bhash ^= (((pmiaddr >> (10 + shft)) ^ (pmiaddr >> (8 + shft))) & 1) << 1; in bank_hash()
913 bhash ^= (((pmiaddr >> (13 + shft)) ^ (pmiaddr >> (11 + shft))) & 1) << 2; in bank_hash()
/kernel/linux/linux-5.10/arch/m68k/ifpsp060/src/
Dfpsp.S1486 neg.w %d0 # -shft amt
7637 neg.w %d0 # new exp = -(shft amt)
13515 neg.w %d0 # new exponent = -(shft val)
15895 neg.w %d0 # new exp = -(shft val)
15931 neg.w %d0 # new exp = -(shft val)
16007 neg.l %d0 # new exponent = -(shft val)
16133 neg.l %d0 # new exponent = -(shft val)
Dpfpsp.S1485 neg.w %d0 # -shft amt
Dfplsp.S9264 cmpi.w %d0,&-0x3fff # is the shft amt really low?
10866 add.l &32, %d2 # add 32 to shft amount
10960 sub.w &32, %d1 # adjust shft amt by 32
/kernel/linux/patches/linux-5.10/hispark_taurus_patch/
Dhispark_taurus.patch29206 + const int shft = (start) & 31; /* max shift value 31 */
29209 + res = resp[off] >> shft;
29210 + if (size + shft > BIT_WIDTH)
29211 + res |= resp[off - 1] << ((BIT_WIDTH - shft) % BIT_WIDTH);
/kernel/linux/patches/linux-4.19/hispark_taurus_patch/
Dhispark_taurus.patch314954 + const int shft = (start) & 31; /* max shift value 31 */
314957 + res = resp[off] >> shft;
314958 + if (size + shft > BIT_WIDTH)
314959 + res |= resp[off - 1] << ((BIT_WIDTH - shft) % BIT_WIDTH);