Searched refs:hi (Results 1 - 25 of 181) sorted by relevance

12345678

/drivers/staging/cxt1e1/
H A Dhwprobe.c53 show_two (hdw_info_t * hi, int brdno) argument
64 ci = (ci_t *)(netdev_priv(hi->ndev));
66 switch (hi->promfmt)
69 memcpy (sn, (FLD_TYPE1 *) (hi->mfg_info.pft1.Serial), 6);
72 memcpy (sn, (FLD_TYPE2 *) (hi->mfg_info.pft2.Serial), 6);
80 hi->devname, bid,
84 (u_int8_t) hi->revid[0]);
88 pdev = hi->pdev[0];
90 hi->devname, "MUSYCC",
91 (unsigned long) hi
105 hdw_sn_get(hdw_info_t * hi, int brdno) argument
157 hdw_info_t *hi; local
177 hdw_info_t *hi; local
203 hdw_info_t *hi; local
227 hdw_info_t *hi; local
301 hdw_info_t *hi; local
[all...]
/drivers/infiniband/hw/mthca/
H A Dmthca_doorbell.h59 static inline void mthca_write64(u32 hi, u32 lo, void __iomem *dest, argument
62 __raw_writeq((__force u64) cpu_to_be64((u64) hi << 32 | lo), dest);
88 static inline void mthca_write64(u32 hi, u32 lo, void __iomem *dest, argument
93 hi = (__force u32) cpu_to_be32(hi);
97 __raw_writel(hi, dest);
/drivers/acpi/acpica/
H A Dutmath.c62 u32 hi; member in struct:uint64_struct
112 ACPI_DIV_64_BY_32(0, dividend_ovl.part.hi, divisor,
113 quotient.part.hi, remainder32);
169 if (divisor.part.hi == 0) {
174 remainder.part.hi = 0;
180 ACPI_DIV_64_BY_32(0, dividend.part.hi, divisor.part.lo,
181 quotient.part.hi, partial1);
191 quotient.part.hi = 0;
198 ACPI_SHIFT_RIGHT_64(normalized_divisor.part.hi,
200 ACPI_SHIFT_RIGHT_64(normalized_dividend.part.hi,
[all...]
/drivers/gpu/drm/nouveau/
H A Dnv04_timer.c71 u32 hi, lo; local
74 hi = nv_rd32(dev, NV04_PTIMER_TIME_1);
76 } while (hi != nv_rd32(dev, NV04_PTIMER_TIME_1));
78 return ((u64)hi << 32 | lo);
H A Dnv50_gpio.c98 u32 hi, lo; local
104 hi = (intr0 & 0x0000ffff) | (intr1 << 16);
106 nouveau_gpio_isr(dev, 0, hi | lo);
/drivers/hid/
H A Dhid-kensington.c21 #define ks_map_key(c) hid_map_usage(hi, usage, bit, max, EV_KEY, (c))
23 static int ks_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
H A Dhid-chicony.c26 #define ch_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
28 static int ch_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
35 set_bit(EV_REP, hi->input->evbit);
H A Dhid-ezkey.c26 #define ez_map_rel(c) hid_map_usage(hi, usage, bit, max, EV_REL, (c))
27 #define ez_map_key(c) hid_map_usage(hi, usage, bit, max, EV_KEY, (c))
29 static int ez_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
H A Dhid-gyration.c26 #define gy_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
28 static int gyration_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
35 set_bit(EV_REP, hi->input->evbit);
H A Dhid-microsoft.c51 #define ms_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
53 static int ms_ergonomy_kb_quirk(struct hid_input *hi, struct hid_usage *usage, argument
56 struct input_dev *input = hi->input;
75 static int ms_presenter_8k_quirk(struct hid_input *hi, struct hid_usage *usage, argument
78 set_bit(EV_REP, hi->input->evbit);
91 static int ms_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
101 int ret = ms_ergonomy_kb_quirk(hi, usage, bit, max);
107 ms_presenter_8k_quirk(hi, usage, bit, max))
113 static int ms_input_mapped(struct hid_device *hdev, struct hid_input *hi, argument
H A Dhid-belkin.c28 #define belkin_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
30 static int belkin_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
H A Dhid-cherry.c40 #define ch_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
42 static int ch_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
H A Dhid-lcpower.c21 #define ts_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
23 static int ts_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
H A Dhid-monterey.c35 #define mr_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
37 static int mr_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
H A Dhid-sunplus.c37 #define sp_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
39 static int sp_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
/drivers/lguest/
H A Dinterrupts_and_traps.c27 static unsigned long idt_address(u32 lo, u32 hi) argument
29 return (lo & 0x0000FFFF) | (hi & 0xFFFF0000);
36 static int idt_type(u32 lo, u32 hi) argument
38 return (hi >> 8) & 0xF;
42 static bool idt_present(u32 lo, u32 hi) argument
44 return (hi & 0x8000);
64 * "lo" and "hi" are the two parts of the Interrupt Descriptor Table for this
72 static void set_guest_interrupt(struct lg_cpu *cpu, u32 lo, u32 hi, argument
140 cpu->regs->eip = idt_address(lo, hi);
146 if (idt_type(lo, hi)
465 set_trap(struct lg_cpu *cpu, struct desc_struct *trap, unsigned int num, u32 lo, u32 hi) argument
499 load_guest_idt_entry(struct lg_cpu *cpu, unsigned int num, u32 lo, u32 hi) argument
[all...]
/drivers/ptp/
H A Dptp_ixp46x.c57 u32 lo, hi; local
60 hi = __raw_readl(&regs->systime_hi);
62 ns = ((u64) hi) << 32;
71 u32 hi, lo; local
74 hi = ns >> 32;
78 __raw_writel(hi, &regs->systime_hi);
90 u32 ack = 0, lo, hi, val; local
97 hi = __raw_readl(&regs->asms_hi);
101 event.timestamp = ((u64) hi) << 32;
111 hi
[all...]
/drivers/isdn/hardware/eicon/
H A Dcapidtmf.c252 long d, e, q1, q2, lo, mid, hi; local
272 hi = k >> 16;
275 hi += k >> 16;
276 hi += ((dword)(d >> 16)) * ((dword)(e >> 16));
286 hi = -((long)(k >> 16));
289 hi -= k >> 16;
290 hi -= ((dword)(d >> 16)) * ((dword)(e >> 16));
296 hi = -hi;
304 hi
495 dword lo, hi; local
[all...]
/drivers/char/
H A Dds1620.c202 ds1620_out(THERM_WRITE_TH, 9, therm->hi);
209 therm->hi = cvt_9_to_int(ds1620_in(THERM_READ_TH, 9));
253 if (get_user(therm.hi, uarg.i))
255 therm.lo = therm.hi - 3;
262 therm.hi <<= 1;
272 therm.hi >>= 1;
275 if (put_user(therm.hi, uarg.i))
344 th.hi >> 1, th.hi & 1 ? 5 : 0,
388 th_start.hi
[all...]
/drivers/char/tpm/
H A Dtpm_atmel.h118 int lo, hi; local
124 hi = tpm_read_index(TPM_ADDR, TPM_ATMEL_BASE_ADDR_HI);
126 *base = (hi << 8) | lo;
/drivers/char/hw_random/
H A Dvia-rng.c135 u32 lo, hi, old_lo; local
156 rdmsr(MSR_VIA_RNG, lo, hi);
176 wrmsr(MSR_VIA_RNG, lo, hi);
180 rdmsr(MSR_VIA_RNG, lo, hi);
/drivers/cpufreq/
H A De_powersaver.c92 u32 lo, hi; local
101 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
110 u32 lo, hi; local
120 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
124 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
137 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
147 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
155 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
207 u32 lo, hi; local
232 rdmsr(0x1153, lo, hi);
[all...]
/drivers/video/
H A Dedid.h66 #define COMBINE_HI_8LO( hi, lo ) \
67 ( (((unsigned)hi) << 8) | (unsigned)lo )
69 #define COMBINE_HI_4LO( hi, lo ) \
70 ( (((unsigned)hi) << 4) | (unsigned)lo )
/drivers/net/hamradio/
H A Dbaycom_epp.c1003 struct hdlcdrv_ioctl hi; local
1008 if (copy_from_user(&hi, ifr->ifr_data, sizeof(hi)))
1010 switch (hi.cmd) {
1015 hi.data.cp.tx_delay = bc->ch_params.tx_delay;
1016 hi.data.cp.tx_tail = bc->ch_params.tx_tail;
1017 hi.data.cp.slottime = bc->ch_params.slottime;
1018 hi.data.cp.ppersist = bc->ch_params.ppersist;
1019 hi.data.cp.fulldup = bc->ch_params.fulldup;
1025 bc->ch_params.tx_delay = hi
[all...]
/drivers/ide/
H A Dide-cd_verbose.c278 int lo = 0, mid, hi = ARRAY_SIZE(sense_data_texts); local
286 while (hi > lo) {
287 mid = (lo + hi) / 2;
293 hi = mid;
310 int lo = 0, mid, hi = ARRAY_SIZE(packet_command_texts); local
313 while (hi > lo) {
314 mid = (lo + hi) / 2;
322 hi = mid;

Completed in 988 milliseconds

12345678