Searched refs:high (Results 1 - 25 of 543) sorted by relevance

1234567891011>>

/linux-master/arch/arm/nwfpe/
H A Dfpopcode.c19 { .high = 0x0000, .low = 0x0000000000000000ULL},/* extended 0.0 */
20 { .high = 0x3fff, .low = 0x8000000000000000ULL},/* extended 1.0 */
21 { .high = 0x4000, .low = 0x8000000000000000ULL},/* extended 2.0 */
22 { .high = 0x4000, .low = 0xc000000000000000ULL},/* extended 3.0 */
23 { .high = 0x4001, .low = 0x8000000000000000ULL},/* extended 4.0 */
24 { .high = 0x4001, .low = 0xa000000000000000ULL},/* extended 5.0 */
25 { .high = 0x3ffe, .low = 0x8000000000000000ULL},/* extended 0.5 */
26 { .high = 0x4002, .low = 0xa000000000000000ULL},/* extended 10.0 */
/linux-master/Documentation/fb/
H A Dviafb.modes202 timings 25000 88 40 23 1 128 4 hsync high vsync high endmode
224 timings 20203 160 16 21 1 80 3 hsync high vsync high endmode
246 timings 17777 152 32 27 1 64 3 hsync high vsync high endmode
268 timings 14667 216 0 14 7 64 4 hsync high vsync high endmode
290 timings 11912 144 56 39 1 88 3 hsync high vsync high endmod
[all...]
/linux-master/arch/arm64/include/asm/
H A Dstacktrace.h28 unsigned long high = low + IRQ_STACK_SIZE; local
32 .high = high,
45 unsigned long high = low + THREAD_SIZE; local
49 .high = high,
68 unsigned long high = low + OVERFLOW_STACK_SIZE; local
72 .high = high,
86 unsigned long high local
97 unsigned long high = low + SDEI_STACK_SIZE; local
114 unsigned long high = (u64)efi_rt_stack_top; local
[all...]
/linux-master/arch/microblaze/lib/
H A Dcmpdi2.c15 if (au.s.high < bu.s.high)
17 else if (au.s.high > bu.s.high)
H A Ducmpdi2.c11 if ((unsigned int) au.s.high < (unsigned int) bu.s.high)
13 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high)
H A Dlshrdi3.c18 w.s.high = 0;
19 w.s.low = (unsigned int) uu.s.high >> -bm;
21 const unsigned int carries = (unsigned int) uu.s.high << bm;
23 w.s.high = (unsigned int) uu.s.high >> b;
H A Dashrdi3.c18 /* w.s.high = 1..1 or 0..0 */
19 w.s.high =
20 uu.s.high >> 31;
21 w.s.low = uu.s.high >> -bm;
23 const unsigned int carries = (unsigned int) uu.s.high << bm;
25 w.s.high = uu.s.high >> b;
H A Dashldi3.c19 w.s.high = (unsigned int) uu.s.low << -bm;
24 w.s.high = ((unsigned int) uu.s.high << b) | carries;
/linux-master/arch/parisc/lib/
H A Ducmpdi2.c8 unsigned int high; member in struct:ull_union::__anon9
18 if (au.ui.high < bu.ui.high)
20 else if (au.ui.high > bu.ui.high)
/linux-master/drivers/thermal/intel/
H A Dintel_tcc.c22 u32 low, high; local
26 err = rdmsr_safe(MSR_IA32_TEMPERATURE_TARGET, &low, &high);
28 err = rdmsr_safe_on_cpu(cpu, MSR_IA32_TEMPERATURE_TARGET, &low, &high);
49 u32 low, high; local
53 err = rdmsr_safe(MSR_IA32_TEMPERATURE_TARGET, &low, &high);
55 err = rdmsr_safe_on_cpu(cpu, MSR_IA32_TEMPERATURE_TARGET, &low, &high);
76 u32 low, high; local
83 err = rdmsr_safe(MSR_IA32_TEMPERATURE_TARGET, &low, &high);
85 err = rdmsr_safe_on_cpu(cpu, MSR_IA32_TEMPERATURE_TARGET, &low, &high);
97 return wrmsr_safe(MSR_IA32_TEMPERATURE_TARGET, low, high);
116 u32 low, high; local
[all...]
/linux-master/lib/
H A Dashrdi3.c21 /* w.s.high = 1..1 or 0..0 */
22 w.s.high =
23 uu.s.high >> 31;
24 w.s.low = uu.s.high >> -bm;
26 const unsigned int carries = (unsigned int) uu.s.high << bm;
28 w.s.high = uu.s.high >> b;
H A Dcmpdi2.c18 if (au.s.high < bu.s.high)
20 else if (au.s.high > bu.s.high)
H A Ducmpdi2.c13 if ((unsigned int) au.s.high < (unsigned int) bu.s.high)
15 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high)
H A Dlshrdi3.c21 w.s.high = 0;
22 w.s.low = (unsigned int) uu.s.high >> -bm;
24 const unsigned int carries = (unsigned int) uu.s.high << bm;
26 w.s.high = (unsigned int) uu.s.high >> b;
/linux-master/arch/mips/lib/
H A Dlibgcc.h11 int high, low; member in struct:DWstruct
15 long long high, low; member in struct:TWstruct
19 int low, high; member in struct:DWstruct
23 long long low, high; member in struct:TWstruct
/linux-master/arch/sh/lib/
H A Dlibgcc.h12 int high, low; member in struct:DWstruct
16 int low, high; member in struct:DWstruct
/linux-master/arch/s390/tools/
H A Dgen_facilities.c123 unsigned int high, bit, dword, i; local
129 high = 0;
133 if (dword > high) {
137 memset(array + high + 1, 0, (dword - high) * 8);
138 high = dword;
143 for (i = 0; i <= high; i++)
144 printf("_AC(0x%016llx,UL)%c", array[i], i < high ? ',' : '\n');
/linux-master/tools/testing/selftests/powerpc/signal/
H A Dsigreturn_vdso.c26 static int search_proc_maps(char *needle, unsigned long *low, unsigned long *high) argument
54 *high = end - 1;
74 unsigned long low, high, size; local
85 assert(search_proc_maps("[vdso]", &low, &high) == 0);
86 size = high - low + 1;
87 printf("VDSO is at 0x%lx-0x%lx (%lu bytes)\n", low, high, size);
97 assert(search_proc_maps("[vdso]", &low, &high) == 0);
98 size = high - low + 1;
99 printf("VDSO moved to 0x%lx-0x%lx (%lu bytes)\n", low, high, size);
109 assert(search_proc_maps("[vdso]", &low, &high) !
[all...]
/linux-master/include/linux/
H A Dio-64-nonatomic-hi-lo.h11 u32 low, high; local
13 high = readl(p + 1);
16 return low + ((u64)high << 32);
28 u32 low, high; local
30 high = readl_relaxed(p + 1);
33 return low + ((u64)high << 32);
62 u32 low, high; local
64 high = ioread32(addr + sizeof(u32));
67 return low + ((u64)high << 32);
84 u32 low, high; local
[all...]
H A Dio-64-nonatomic-lo-hi.h11 u32 low, high; local
14 high = readl(p + 1);
16 return low + ((u64)high << 32);
28 u32 low, high; local
31 high = readl_relaxed(p + 1);
33 return low + ((u64)high << 32);
62 u32 low, high; local
65 high = ioread32(addr + sizeof(u32));
67 return low + ((u64)high << 32);
84 u32 low, high; local
[all...]
H A Dcrash_reserve.h19 unsigned long long *low_size, bool *high);
39 bool high);
45 bool high)
41 reserve_crashkernel_generic(char *cmdline, unsigned long long crash_size, unsigned long long crash_base, unsigned long long crash_low_size, bool high) argument
/linux-master/arch/arm64/kvm/
H A Dstacktrace.c29 unsigned long high = low + OVERFLOW_STACK_SIZE; local
33 .high = high,
40 unsigned long high = low + OVERFLOW_STACK_SIZE; local
44 .high = high,
53 unsigned long high = low + PAGE_SIZE; local
57 .high = high,
64 unsigned long high local
[all...]
/linux-master/arch/x86/include/asm/
H A Dmsr.h46 /* Using 64-bit values saves one instruction clearing the high half of low */
47 #define DECLARE_ARGS(val, low, high) unsigned long low, high
48 #define EAX_EDX_VAL(val, low, high) ((low) | (high) << 32)
49 #define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high)
51 #define DECLARE_ARGS(val, low, high) unsigned long long val
52 #define EAX_EDX_VAL(val, low, high) (val)
53 #define EAX_EDX_RET(val, low, high) "
94 __wrmsr(unsigned int msr, u32 low, u32 high) argument
106 __wrmsrns(u32 msr, u32 low, u32 high) argument
158 native_write_msr(unsigned int msr, u32 low, u32 high) argument
168 native_write_msr_safe(unsigned int msr, u32 low, u32 high) argument
267 wrmsr(unsigned int msr, u32 low, u32 high) argument
281 wrmsr_safe(unsigned int msr, u32 low, u32 high) argument
[all...]
/linux-master/drivers/net/ethernet/sfc/falcon/
H A Dbitfield.h109 * Extract bit field portion [low,high) from the native-endian element
112 * For example, suppose "element" represents the high 32 bits of a
121 * [0,high-low), with garbage in bits [high-low+1,...).
123 #define EF4_EXTRACT_NATIVE(native_element, min, max, low, high) \
124 ((low) > (max) || (high) < (min) ? 0 : \
130 * Extract bit field portion [low,high) from the 64-bit little-endian
133 #define EF4_EXTRACT64(element, min, max, low, high) \
134 EF4_EXTRACT_NATIVE(le64_to_cpu(element), min, max, low, high)
137 * Extract bit field portion [low,high) fro
[all...]
/linux-master/drivers/net/ethernet/intel/i40e/
H A Di40e_ptp.c68 high, enumerator in enum:i40e_ptp_led_pin_state
83 {off, off, off, high, high, high, high},
84 {off, in_A, off, high, high, high, low},
85 {off, out_A, off, high, low, high, hig
[all...]

Completed in 596 milliseconds

1234567891011>>