Home
last modified time | relevance | path

Searched refs:high (Results 1 – 25 of 189) sorted by relevance

12345678

/arch/x86/include/asm/
Dmsr.h18 unsigned long low, high; in native_read_tscp() local
20 : "=a" (low), "=d" (high), "=c" (*aux)); in native_read_tscp()
21 return low | ((u64)high << 32); in native_read_tscp()
31 #define DECLARE_ARGS(val, low, high) unsigned low, high argument
32 #define EAX_EDX_VAL(val, low, high) ((low) | ((u64)(high) << 32)) argument
33 #define EAX_EDX_ARGS(val, low, high) "a" (low), "d" (high) argument
34 #define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high) argument
36 #define DECLARE_ARGS(val, low, high) unsigned long long val argument
37 #define EAX_EDX_VAL(val, low, high) (val) argument
38 #define EAX_EDX_ARGS(val, low, high) "A" (val) argument
[all …]
/arch/arm/nwfpe/
Dfpopcode.c31 { .high = 0x0000, .low = 0x0000000000000000ULL},/* extended 0.0 */
32 { .high = 0x3fff, .low = 0x8000000000000000ULL},/* extended 1.0 */
33 { .high = 0x4000, .low = 0x8000000000000000ULL},/* extended 2.0 */
34 { .high = 0x4000, .low = 0xc000000000000000ULL},/* extended 3.0 */
35 { .high = 0x4001, .low = 0x8000000000000000ULL},/* extended 4.0 */
36 { .high = 0x4001, .low = 0xa000000000000000ULL},/* extended 5.0 */
37 { .high = 0x3ffe, .low = 0x8000000000000000ULL},/* extended 0.5 */
38 { .high = 0x4002, .low = 0xa000000000000000ULL},/* extended 10.0 */
/arch/x86/oprofile/
Dop_model_amd.c105 unsigned int low, high; in op_amd_setup_ctrs() local
112 CTRL_READ(low, high, msrs, i); in op_amd_setup_ctrs()
114 CTRL_CLEAR_HI(high); in op_amd_setup_ctrs()
115 CTRL_WRITE(low, high, msrs, i); in op_amd_setup_ctrs()
132 CTRL_READ(low, high, msrs, i); in op_amd_setup_ctrs()
134 CTRL_CLEAR_HI(high); in op_amd_setup_ctrs()
140 CTRL_SET_EVENT_HIGH(high, counter_config[i].event); in op_amd_setup_ctrs()
141 CTRL_SET_HOST_ONLY(high, 0); in op_amd_setup_ctrs()
142 CTRL_SET_GUEST_ONLY(high, 0); in op_amd_setup_ctrs()
144 CTRL_WRITE(low, high, msrs, i); in op_amd_setup_ctrs()
[all …]
Dop_model_p4.c353 #define ESCR_READ(escr, high, ev, i) do {rdmsr(ev->bindings[(i)].escr_address, (escr), (high)); } w… argument
354 #define ESCR_WRITE(escr, high, ev, i) do {wrmsr(ev->bindings[(i)].escr_address, (escr), (high)); } … argument
364 #define CCCR_READ(low, high, i) do {rdmsr(p4_counters[(i)].cccr_address, (low), (high)); } while (0) argument
365 #define CCCR_WRITE(low, high, i) do {wrmsr(p4_counters[(i)].cccr_address, (low), (high)); } while (… argument
494 unsigned int high = 0; in pmc_setup_one_p4_counter() local
518 ESCR_READ(escr, high, ev, i); in pmc_setup_one_p4_counter()
529 ESCR_WRITE(escr, high, ev, i); in pmc_setup_one_p4_counter()
532 CCCR_READ(cccr, high, VIRT_CTR(stag, ctr)); in pmc_setup_one_p4_counter()
540 CCCR_WRITE(cccr, high, VIRT_CTR(stag, ctr)); in pmc_setup_one_p4_counter()
554 unsigned int low, high; in p4_setup_ctrs() local
[all …]
/arch/x86/kernel/cpu/mcheck/
Dp6.c22 u32 alow, ahigh, high, low; in intel_machine_check() local
34 rdmsr(MSR_IA32_MC0_STATUS+i*4, low, high); in intel_machine_check()
35 if (high & (1<<31)) { in intel_machine_check()
39 if (high & (1<<29)) in intel_machine_check()
41 if (high & (1<<25)) in intel_machine_check()
43 high &= ~(1<<31); in intel_machine_check()
44 if (high & (1<<27)) { in intel_machine_check()
48 if (high & (1<<26)) { in intel_machine_check()
53 smp_processor_id(), i, high, low, misc, addr); in intel_machine_check()
71 rdmsr(msr, low, high); in intel_machine_check()
[all …]
Dk7.c22 u32 alow, ahigh, high, low; in k7_machine_check() local
34 rdmsr(MSR_IA32_MC0_STATUS+i*4, low, high); in k7_machine_check()
35 if (high&(1<<31)) { in k7_machine_check()
39 if (high & (1<<29)) in k7_machine_check()
41 if (high & (1<<25)) in k7_machine_check()
43 high &= ~(1<<31); in k7_machine_check()
44 if (high & (1<<27)) { in k7_machine_check()
48 if (high & (1<<26)) { in k7_machine_check()
53 smp_processor_id(), i, high, low, misc, addr); in k7_machine_check()
/arch/mips/lib/
Dashrdi3.c18 w.s.high = in __ashrdi3()
19 uu.s.high >> 31; in __ashrdi3()
20 w.s.low = uu.s.high >> -bm; in __ashrdi3()
22 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
24 w.s.high = uu.s.high >> b; in __ashrdi3()
Dlshrdi3.c17 w.s.high = 0; in __lshrdi3()
18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
22 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
Ducmpdi2.c10 if ((unsigned int) au.s.high < (unsigned int) bu.s.high) in __ucmpdi2()
12 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high) in __ucmpdi2()
/arch/sh/lib/
Dashrdi3.c18 w.s.high = in __ashrdi3()
19 uu.s.high >> 31; in __ashrdi3()
20 w.s.low = uu.s.high >> -bm; in __ashrdi3()
22 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
24 w.s.high = uu.s.high >> b; in __ashrdi3()
Dlshrdi3.c17 w.s.high = 0; in __lshrdi3()
18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
22 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
/arch/mn10300/lib/
Dashrdi3.c30 SItype high; member
52 w.s.high = uu.s.high >> (sizeof(SItype) * BITS_PER_UNIT - 1); in __ashrdi3()
53 w.s.low = uu.s.high >> -bm; in __ashrdi3()
55 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3()
56 w.s.high = uu.s.high >> b; in __ashrdi3()
Dlshrdi3.c30 SItype high; member
51 w.s.high = 0; in __lshrdi3()
52 w.s.low = (USItype) uu.s.high >> -bm; in __lshrdi3()
54 USItype carries = (USItype) uu.s.high << bm; in __lshrdi3()
55 w.s.high = (USItype) uu.s.high >> b; in __lshrdi3()
/arch/m68knommu/lib/
Dashrdi3.c28 struct DIstruct {SItype high, low;}; member
52 w.s.high = uu.s.high >> (sizeof (SItype) * BITS_PER_UNIT - 1); in __ashrdi3()
53 w.s.low = uu.s.high >> -bm; in __ashrdi3()
57 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3()
58 w.s.high = uu.s.high >> b; in __ashrdi3()
Dlshrdi3.c28 struct DIstruct {SItype high, low;}; member
51 w.s.high = 0; in __lshrdi3()
52 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3()
56 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3()
57 w.s.high = (USItype)uu.s.high >> b; in __lshrdi3()
/arch/h8300/lib/
Dashrdi3.c28 struct DIstruct {SItype high, low;}; member
52 w.s.high = uu.s.high >> (sizeof (SItype) * BITS_PER_UNIT - 1); in __ashrdi3()
53 w.s.low = uu.s.high >> -bm; in __ashrdi3()
57 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3()
58 w.s.high = uu.s.high >> b; in __ashrdi3()
/arch/m68k/lib/
Dashrdi3.c28 struct DIstruct {SItype high, low;}; member
52 w.s.high = uu.s.high >> (sizeof (SItype) * BITS_PER_UNIT - 1); in __ashrdi3()
53 w.s.low = uu.s.high >> -bm; in __ashrdi3()
57 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3()
58 w.s.high = uu.s.high >> b; in __ashrdi3()
Dlshrdi3.c28 struct DIstruct {SItype high, low;}; member
51 w.s.high = 0; in __lshrdi3()
52 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3()
56 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3()
57 w.s.high = (USItype)uu.s.high >> b; in __lshrdi3()
/arch/powerpc/kernel/
Dtau_6xx.c34 unsigned char high; member
64 mtspr (SPRN_THRM2, THRM1_THRES(tau[cpu].high) | THRM1_V | THRM1_TIE); in set_thresholds()
68 mtspr(SPRN_THRM2, THRM1_THRES(tau[cpu].high) | THRM1_V); in set_thresholds()
86 tau[cpu].high -= (step_size - window_expand); in TAUupdate()
96 if (tau[cpu].high <= 127-step_size){ in TAUupdate()
98 tau[cpu].high += step_size; in TAUupdate()
151 size = tau[cpu].high - tau[cpu].low; in tau_timeout()
157 tau[cpu].high -= shrink; in tau_timeout()
161 if ((tau[cpu].high - tau[cpu].low) != min_window){ in tau_timeout()
214 tau[cpu].high = 120; in TAU_init_smp()
[all …]
/arch/blackfin/lib/
Dashrdi3.c50 w.s.high = uu.s.high >> (sizeof(SItype) * BITS_PER_UNIT - 1); in __ashrdi3()
51 w.s.low = uu.s.high >> -bm; in __ashrdi3()
53 USItype carries = (USItype) uu.s.high << bm; in __ashrdi3()
54 w.s.high = uu.s.high >> b; in __ashrdi3()
Dlshrdi3.c38 SItype high, low; member
63 w.s.high = 0; in __lshrdi3()
64 w.s.low = (USItype) uu.s.high >> -bm; in __lshrdi3()
66 USItype carries = (USItype) uu.s.high << bm; in __lshrdi3()
67 w.s.high = (USItype) uu.s.high >> b; in __lshrdi3()
/arch/x86/kernel/cpu/mtrr/
Dcentaur.c8 unsigned long high; member
48 centaur_mcr[mcr].high = hi; in mtrr_centaur_report_mcr()
55 *base = centaur_mcr[reg].high >> PAGE_SHIFT; in centaur_get_mcr()
70 unsigned long low, high; in centaur_set_mcr() local
74 high = low = 0; in centaur_set_mcr()
76 high = base << PAGE_SHIFT; in centaur_set_mcr()
86 centaur_mcr[reg].high = high; in centaur_set_mcr()
88 wrmsr(MSR_IDT_MCR0 + reg, low, high); in centaur_set_mcr()
122 if (centaur_mcr[i].high == 0 && centaur_mcr[i].low == 0) {
163 if (centaur_mcr[i].high == 0 && centaur_mcr[i].low == 0)
/arch/parisc/kernel/
Dsys_parisc.c161 unsigned int high, unsigned int low) in parisc_truncate64() argument
163 return sys_truncate(path, (long)high << 32 | low); in parisc_truncate64()
167 unsigned int high, unsigned int low) in parisc_ftruncate64() argument
169 return sys_ftruncate(fd, (long)high << 32 | low); in parisc_ftruncate64()
189 unsigned int high, unsigned int low) in parisc_truncate64() argument
191 return sys_truncate64(path, (loff_t)high << 32 | low); in parisc_truncate64()
195 unsigned int high, unsigned int low) in parisc_ftruncate64() argument
197 return sys_ftruncate64(fd, (loff_t)high << 32 | low); in parisc_ftruncate64()
202 unsigned int high, unsigned int low) in parisc_pread64() argument
204 return sys_pread64(fd, buf, count, (loff_t)high << 32 | low); in parisc_pread64()
[all …]
/arch/x86/include/asm/numaq/
Dwakecpu.h23 static inline void store_NMI_vector(unsigned short *high, unsigned short *low) in store_NMI_vector() argument
26 *high = in store_NMI_vector()
32 static inline void restore_NMI_vector(unsigned short *high, unsigned short *low) in restore_NMI_vector() argument
36 *high; in restore_NMI_vector()
/arch/sparc/lib/
Dcmpdi2.c14 if (au.s.high < bu.s.high) in __cmpdi2()
16 else if (au.s.high > bu.s.high) in __cmpdi2()

12345678