Home
last modified time | relevance | path

Searched refs:outval (Results 1 – 7 of 7) sorted by relevance

/linux-4.19.296/drivers/media/radio/
Dradio-typhoon.c84 unsigned long outval; in typhoon_s_frequency() local
99 outval = (x * x + 2500) / 5000; in typhoon_s_frequency()
100 outval = (outval * x + 5000) / 10000; in typhoon_s_frequency()
101 outval -= (10 * x * x + 10433) / 20866; in typhoon_s_frequency()
102 outval += 4 * x - 11505; in typhoon_s_frequency()
104 outb_p((outval >> 8) & 0x01, isa->io + 4); in typhoon_s_frequency()
105 outb_p(outval >> 9, isa->io + 6); in typhoon_s_frequency()
106 outb_p(outval & 0xff, isa->io + 8); in typhoon_s_frequency()
/linux-4.19.296/drivers/pci/controller/
Dpci-ftpci100.c133 u32 outval; in faraday_res_to_memcfg() local
137 outval = FARADAY_PCI_MEMSIZE_1MB; in faraday_res_to_memcfg()
140 outval = FARADAY_PCI_MEMSIZE_2MB; in faraday_res_to_memcfg()
143 outval = FARADAY_PCI_MEMSIZE_4MB; in faraday_res_to_memcfg()
146 outval = FARADAY_PCI_MEMSIZE_8MB; in faraday_res_to_memcfg()
149 outval = FARADAY_PCI_MEMSIZE_16MB; in faraday_res_to_memcfg()
152 outval = FARADAY_PCI_MEMSIZE_32MB; in faraday_res_to_memcfg()
155 outval = FARADAY_PCI_MEMSIZE_64MB; in faraday_res_to_memcfg()
158 outval = FARADAY_PCI_MEMSIZE_128MB; in faraday_res_to_memcfg()
161 outval = FARADAY_PCI_MEMSIZE_256MB; in faraday_res_to_memcfg()
[all …]
/linux-4.19.296/drivers/char/ipmi/
Dipmi_watchdog.c201 typedef int (*action_fn)(const char *intval, char *outval);
203 static int action_op(const char *inval, char *outval);
204 static int preaction_op(const char *inval, char *outval);
205 static int preop_op(const char *inval, char *outval);
1189 static int action_op(const char *inval, char *outval) in action_op() argument
1191 if (outval) in action_op()
1192 strcpy(outval, action); in action_op()
1211 static int preaction_op(const char *inval, char *outval) in preaction_op() argument
1213 if (outval) in preaction_op()
1214 strcpy(outval, preaction); in preaction_op()
[all …]
/linux-4.19.296/fs/xfs/
Dxfs_fsops.c328 xfs_fsop_resblks_t *outval) in xfs_reserve_blocks() argument
338 if (!outval) in xfs_reserve_blocks()
340 outval->resblks = mp->m_resblks; in xfs_reserve_blocks()
341 outval->resblks_avail = mp->m_resblks_avail; in xfs_reserve_blocks()
426 if (outval) { in xfs_reserve_blocks()
427 outval->resblks = mp->m_resblks; in xfs_reserve_blocks()
428 outval->resblks_avail = mp->m_resblks_avail; in xfs_reserve_blocks()
Dxfs_fsops.h13 xfs_fsop_resblks_t *outval);
/linux-4.19.296/drivers/gpio/
Dgpio-viperboard.c56 u8 outval; member
108 gamsg->outval = 0x00; in vprbrd_gpioa_get()
160 gamsg->outval = value; in vprbrd_gpioa_set()
197 gamsg->outval = 0x00; in vprbrd_gpioa_direction_input()
238 gamsg->outval = value; in vprbrd_gpioa_direction_output()
/linux-4.19.296/crypto/
Ddrbg.c308 static int drbg_kcapi_sym(struct drbg_state *drbg, unsigned char *outval,
633 static int drbg_kcapi_hash(struct drbg_state *drbg, unsigned char *outval,
821 unsigned char *outval, size_t outlen, in drbg_hash_df() argument
849 memcpy(outval + len, tmp, blocklen); in drbg_hash_df()
1693 static int drbg_kcapi_hash(struct drbg_state *drbg, unsigned char *outval, in drbg_kcapi_hash() argument
1702 return crypto_shash_final(&sdesc->shash, outval); in drbg_kcapi_hash()
1797 static int drbg_kcapi_sym(struct drbg_state *drbg, unsigned char *outval, in drbg_kcapi_sym() argument
1805 crypto_cipher_encrypt_one(tfm, outval, in->buf); in drbg_kcapi_sym()