Searched refs:hi (Results 26 - 50 of 746) sorted by relevance

1234567891011>>

/linux-master/arch/sparc/include/asm/
H A Dasmmacro.h15 sethi %hi(trap_setup), %l4; \
/linux-master/arch/arm/include/asm/
H A Dtherm.h25 int hi; member in struct:therm
/linux-master/arch/sparc/lib/
H A DNG2patch.S10 sethi %hi(NEW), %g1; \
12 sethi %hi(OLD), %g2; \
15 sethi %hi(BRANCH_ALWAYS), %g3; \
21 sethi %hi(NOP), %g3; \
H A DU3patch.S10 sethi %hi(NEW), %g1; \
12 sethi %hi(OLD), %g2; \
15 sethi %hi(BRANCH_ALWAYS), %g3; \
21 sethi %hi(NOP), %g3; \
H A Dclear_page.S44 sethi %hi(PAGE_OFFSET), %g2
45 sethi %hi(PAGE_SIZE), %o4
48 sethi %hi(PAGE_KERNEL_LOCKED), %g3
56 sethi %hi(TLBTEMP_BASE), %o3
70 sethi %hi(KERNBASE), %g1
80 sethi %hi(PAGE_SIZE/64), %o1
H A Dhweight.S8 sethi %hi(__sw_hweight8), %g1
21 sethi %hi(__sw_hweight16), %g1
34 sethi %hi(__sw_hweight32), %g1
47 sethi %hi(__sw_hweight64), %g1
H A DNG4patch.S12 sethi %hi(NEW), %g1; \
14 sethi %hi(OLD), %g2; \
17 sethi %hi(BRANCH_ALWAYS), %g3; \
23 sethi %hi(NOP), %g3; \
/linux-master/drivers/scsi/qedf/
H A Ddrv_scsi_fw_funcs.c27 val = cpu_to_le32(sgl_task_params->sgl_phys_addr.hi);
28 ctx_sgl_params->sgl_addr.hi = val;
36 val = cpu_to_le32(sgl_task_params->sgl[sge_index].sge_addr.hi);
37 ctx_data_desc->sge[sge_index].sge_addr.hi = val;
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/timer/
H A Dnv04.c32 u32 hi = upper_32_bits(time); local
36 nvkm_debug(subdev, "time high : %08x\n", hi);
38 nvkm_wr32(device, NV04_PTIMER_TIME_1, hi);
46 u32 hi, lo; local
49 hi = nvkm_rd32(device, NV04_PTIMER_TIME_1);
51 } while (hi != nvkm_rd32(device, NV04_PTIMER_TIME_1));
53 return ((u64)hi << 32 | lo);
/linux-master/drivers/hid/
H A Dhid-icade.c188 static int icade_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
200 hid_map_usage(hi, usage, bit, max, EV_KEY, trans->to);
201 set_bit(trans->to, hi->input->keybit);
211 static int icade_input_mapped(struct hid_device *hdev, struct hid_input *hi, argument
216 set_bit(usage->type, hi->input->evbit);
H A Dhid-lcpower.c18 #define ts_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
20 static int ts_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
H A Dhid-kensington.c18 #define ks_map_key(c) hid_map_usage(hi, usage, bit, max, EV_KEY, (c))
20 static int ks_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
/linux-master/arch/mips/loongson2ef/lemote-2f/
H A Dreset.c44 u32 hi, lo; local
45 _rdmsr(DIVIL_MSR_REG(DIVIL_SOFT_RESET), &hi, &lo); local
47 _wrmsr(DIVIL_MSR_REG(DIVIL_SOFT_RESET), hi, lo); local
53 u32 hi, lo, val; local
57 _rdmsr(DIVIL_MSR_REG(DIVIL_LBAR_GPIO), &hi, &lo); local
/linux-master/arch/x86/kernel/cpu/
H A Dzhaoxin.c22 u32 lo, hi; local
30 rdmsr(MSR_ZHAOXIN_FCR57, lo, hi);
33 wrmsr(MSR_ZHAOXIN_FCR57, lo, hi);
39 rdmsr(MSR_ZHAOXIN_FCR57, lo, hi);
42 wrmsr(MSR_ZHAOXIN_FCR57, lo, hi);
/linux-master/drivers/net/dsa/b53/
H A Db53_mmap.c85 u32 hi; local
89 hi = ioread32be(regs + (page << 8) + reg + 2);
92 hi = readl(regs + (page << 8) + reg + 2);
95 *val = ((u64)hi << 16) | lo;
98 u16 hi; local
102 hi = ioread16be(regs + (page << 8) + reg + 4);
105 hi = readw(regs + (page << 8) + reg + 4);
108 *val = ((u64)hi << 32) | lo;
118 u32 hi, lo; local
125 hi
187 u32 hi = (u32)(value >> 16); local
193 u16 hi = (u16)(value >> 32); local
206 u32 hi, lo; local
[all...]
/linux-master/arch/parisc/net/
H A Dbpf_jit_comp32.c28 * | hi(R9) |
30 * | hi(FP) |
110 static s8 hi(const s8 *r) function
163 REG_SET_SEEN(ctx, hi(rd));
165 emit_hppa_copy(HPPA_REG_ZERO, hi(rd), ctx);
167 emit(hppa_ldi(-1, hi(rd)), ctx);
173 emit_imm(hi(rd), imm_hi, ctx);
227 if (is_stacked(hi(reg))) {
228 emit(hppa_ldw(REG_SIZE * hi(reg) - offset_sp, HPPA_REG_SP, hi(tm
[all...]
/linux-master/samples/seccomp/
H A Dbpf-helper.h142 /* Loads lo into M[0] and hi into M[1] and A */
147 BPF_STMT(BPF_ST, 1) /* hi -> M[1] */
178 * All the JXX64 checks assume lo is saved in M[0] and hi is saved in both
181 #define JEQ64(lo, hi, jt) \
182 /* if (hi != arg.hi) goto NOMATCH; */ \
183 BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (hi), 0, 5), \
191 #define JNE64(lo, hi, jt) \
192 /* if (hi != arg.hi) got
[all...]
/linux-master/fs/ext4/
H A Dbitmap.c23 __u32 hi; local
33 hi = le16_to_cpu(gdp->bg_inode_bitmap_csum_hi);
34 provided |= (hi << 16);
61 __u32 hi; local
72 hi = le16_to_cpu(gdp->bg_block_bitmap_csum_hi);
73 provided |= (hi << 16);
/linux-master/fs/bcachefs/
H A Dmean_and_variance.h70 u64 hi, lo; member in struct:__anon628
87 return a.hi;
97 c.hi = a.hi + b.hi + (c.lo < a.lo);
106 c.hi = a.hi - b.hi - (c.lo > a.lo);
116 r.hi = (i.hi << shif
138 u64s_to_u128(u64 hi, u64 lo) argument
[all...]
H A Dbtree_write_buffer_types.h28 u64 hi; member in struct:wb_key_ref::__anon302::__anon304
30 u64 hi;
/linux-master/arch/mips/net/
H A Dbpf_jit_comp32.c154 static inline u8 hi(const u8 reg[]) function
178 emit(ctx, addiu, hi(dst), MIPS_R_ZERO, -1);
180 emit(ctx, move, hi(dst), MIPS_R_ZERO);
188 emit(ctx, move, hi(dst), MIPS_R_ZERO);
189 clobber_reg(ctx, hi(dst));
230 emit(ctx, addu, hi(dst), hi(dst), MIPS_R_T9);
232 emit(ctx, addiu, hi(dst), hi(dst), -1);
238 emit(ctx, subu, hi(ds
[all...]
/linux-master/arch/sparc/mm/
H A Dultra.S42 sethi %hi(KERNBASE), %g3
74 sethi %hi(KERNBASE), %o4
106 sethi %hi(KERNBASE), %o4
124 sethi %hi(PAGE_SIZE), %o4
132 2: sethi %hi(KERNBASE), %o3
181 sethi %hi(KERNBASE), %o1
194 sethi %hi(PAGE_OFFSET), %g1
196 sethi %hi(PAGE_SIZE), %g2
219 sethi %hi(PAGE_OFFSET), %g1
223 sethi %hi(
[all...]
/linux-master/arch/sparc/kernel/
H A Dtrampoline_64.S85 sethi %hi(0x80000000), %g5
101 sethi %hi(0x80000000), %g2
108 sethi %hi(prom_entry_lock), %g2
116 sethi %hi(tramp_stack), %g1
129 sethi %hi(KERNBASE), %l3
130 sethi %hi(kern_locked_tte_data), %l4
133 sethi %hi(num_kernel_image_mappings), %l6
144 sethi %hi(call_method), %g2
151 sethi %hi(itlb_load), %g2
154 sethi %hi(prom_mmu_ihandle_cach
[all...]
/linux-master/arch/arm/mach-orion5x/
H A Dtsx09-common.c68 int hi; local
71 hi = qnap_tsx09_parse_hex_nibble(b[0]);
74 if (hi < 0 || lo < 0)
77 return (hi << 4) | lo;
/linux-master/drivers/net/ethernet/intel/i40e/
H A Di40e_io.h8 #include <linux/io-64-nonatomic-lo-hi.h>

Completed in 254 milliseconds

1234567891011>>