Home
last modified time | relevance | path

Searched refs:sft (Results 1 – 6 of 6) sorted by relevance

/linux-4.4.14/sound/soc/codecs/
Drl6231.c28 int rl6231_get_pre_div(struct regmap *map, unsigned int reg, int sft) in rl6231_get_pre_div() argument
34 val = (val >> sft) & 0x7; in rl6231_get_pre_div()
Drl6231.h33 int rl6231_get_pre_div(struct regmap *map, unsigned int reg, int sft);
/linux-4.4.14/kernel/time/
Dclocksource.c66 u32 sft, sftacc= 32; in clocks_calc_mult_shift() local
82 for (sft = 32; sft > 0; sft--) { in clocks_calc_mult_shift()
83 tmp = (u64) to << sft; in clocks_calc_mult_shift()
90 *shift = sft; in clocks_calc_mult_shift()
Dhrtimer.c286 int sft = 0; in __ktime_divns() local
295 sft++; in __ktime_divns()
298 tmp >>= sft; in __ktime_divns()
/linux-4.4.14/drivers/mtd/nand/
Dnand_bbt.c624 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk; in write_bbt() local
700 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01; in write_bbt()
703 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01; in write_bbt()
706 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C; in write_bbt()
709 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F; in write_bbt()
741 memset(&buf[offs], 0xff, (size_t)(numblocks >> sft)); in write_bbt()
751 len = (size_t)(numblocks >> sft); in write_bbt()
761 len = (size_t)(numblocks >> sft); in write_bbt()
779 int sftcnt = (i << (3 - sft)) & sftmsk; in write_bbt()
782 buf[offs + (i >> sft)] &= ~(msk[dat] << sftcnt); in write_bbt()
/linux-4.4.14/drivers/scsi/libsas/
Dsas_init.c541 static struct sas_function_template sft = { variable
554 struct scsi_transport_template *stt = sas_attach_transport(&sft); in sas_domain_attach_transport()