Home
last modified time | relevance | path

Searched full:low (Results 1 – 25 of 4633) sorted by relevance

12345678910>>...186

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A Dlldb-x86-register-enums.h176 lldb_r8d_x86_64, // Low 32 bits of r8
177 lldb_r9d_x86_64, // Low 32 bits of r9
178 lldb_r10d_x86_64, // Low 32 bits of r10
179 lldb_r11d_x86_64, // Low 32 bits of r11
180 lldb_r12d_x86_64, // Low 32 bits of r12
181 lldb_r13d_x86_64, // Low 32 bits of r13
182 lldb_r14d_x86_64, // Low 32 bits of r14
183 lldb_r15d_x86_64, // Low 32 bits of r15
192 lldb_r8w_x86_64, // Low 16 bits of r8
193 lldb_r9w_x86_64, // Low 16 bits of r9
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dudivmoddi4.c44 *rem = n.s.low % d.s.low; in __udivmoddi4()
45 return n.s.low / d.s.low; in __udivmoddi4()
51 *rem = n.s.low; in __udivmoddi4()
55 if (d.s.low == 0) { in __udivmoddi4()
61 *rem = n.s.high % d.s.low; in __udivmoddi4()
62 return n.s.high / d.s.low; in __udivmoddi4()
65 if (n.s.low == 0) { in __udivmoddi4()
71 r.s.low = 0; in __udivmoddi4()
81 r.s.low = n.s.low; in __udivmoddi4()
100 q.s.low = 0; in __udivmoddi4()
[all …]
H A Dmuldi3.c21 r.s.low = (a & lower_mask) * (b & lower_mask); in __muldsi3()
22 su_int t = r.s.low >> bits_in_word_2; in __muldsi3()
23 r.s.low &= lower_mask; in __muldsi3()
25 r.s.low += (t & lower_mask) << bits_in_word_2; in __muldsi3()
27 t = r.s.low >> bits_in_word_2; in __muldsi3()
28 r.s.low &= lower_mask; in __muldsi3()
30 r.s.low += (t & lower_mask) << bits_in_word_2; in __muldsi3()
44 r.all = __muldsi3(x.s.low, y.s.low); in __muldi3()
45 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high; in __muldi3()
H A Dmulti3.c23 r.s.low = (a & lower_mask) * (b & lower_mask); in __mulddi3()
24 du_int t = r.s.low >> bits_in_dword_2; in __mulddi3()
25 r.s.low &= lower_mask; in __mulddi3()
27 r.s.low += (t & lower_mask) << bits_in_dword_2; in __mulddi3()
29 t = r.s.low >> bits_in_dword_2; in __mulddi3()
30 r.s.low &= lower_mask; in __mulddi3()
32 r.s.low += (t & lower_mask) << bits_in_dword_2; in __mulddi3()
46 r.all = __mulddi3(x.s.low, y.s.low); in __multi3()
47 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high; in __multi3()
H A Dudivmodti4.c116 if (dividend.s.high < divisor.s.low) { in __udivmodti4()
118 quotient.s.low = udiv128by64to64(dividend.s.high, dividend.s.low, in __udivmodti4()
119 divisor.s.low, &remainder.s.low); in __udivmodti4()
123 // After that dividend.s.high < divisor.s.low. in __udivmodti4()
124 quotient.s.high = dividend.s.high / divisor.s.low; in __udivmodti4()
125 dividend.s.high = dividend.s.high % divisor.s.low; in __udivmodti4()
126 quotient.s.low = udiv128by64to64(dividend.s.high, dividend.s.low, in __udivmodti4()
127 divisor.s.low, &remainder.s.low); in __udivmodti4()
138 quotient.s.low = 0; in __udivmodti4()
140 quotient.s.low <<= 1; in __udivmodti4()
[all …]
/freebsd/sys/contrib/openzfs/include/sys/
H A Dbitops.h45 #define BF32_DECODE(x, low, len) P2PHASE((x) >> (low), 1U << (len)) argument
46 #define BF64_DECODE(x, low, len) P2PHASE((x) >> (low), 1ULL << (len)) argument
47 #define BF32_ENCODE(x, low, len) (P2PHASE((x), 1U << (len)) << (low)) argument
48 #define BF64_ENCODE(x, low, len) (P2PHASE((x), 1ULL << (len)) << (low)) argument
50 #define BF32_GET(x, low, len) BF32_DECODE(x, low, len) argument
51 #define BF64_GET(x, low, len) BF64_DECODE(x, low, len) argument
53 #define BF32_SET(x, low, len, val) do { \ argument
55 ASSERT3U(low + len, <=, 32); \
56 (x) ^= BF32_ENCODE((x >> low) ^ (val), low, len); \
59 #define BF64_SET(x, low, len, val) do { \ argument
[all …]
/freebsd/secure/lib/libcrypto/man/man7/
H A Dossl-guide-migration.7131 be accessed using the "Low Level APIs".
154 \fILow Level APIs\fR
155 .IX Subsection "Low Level APIs"
158 algorithms: the "high level" APIs (such as the \f(CW\*(C`EVP\*(C'\fR APIs) and the "low level"
160 types. The "low level" APIs are targeted at a specific algorithm implementation.
164 On the other hand, to do AES encryption using the low level APIs you would have
167 Use of the low level APIs has been informally discouraged by the OpenSSL
169 formal. All such low level APIs have been deprecated. You may still use them in
175 This is described in more detail in "Deprecation of Low Level Functions"
223 Setting engine\-based or application\-based default low\-level crypto method such
[all …]
/freebsd/sys/contrib/device-tree/Bindings/leds/
H A Dleds-bcm6358.txt18 - brcm,clk-dat-low : Boolean, makes clock and data signals active low.
43 active-low;
48 active-low;
53 active-low;
58 active-low;
69 brcm,pol-low;
74 active-low;
79 active-low;
89 active-low;
98 active-low;
[all …]
H A Dleds-bcm6328.txt34 - brcm,serial-clk-low : Boolean, makes clock signal active low.
36 - brcm,serial-dat-low : Boolean, makes data signal active low.
49 - active-low : Boolean, makes LED active low.
82 active-low;
87 active-low;
92 active-low;
121 brcm,serial-dat-low;
136 active-low;
141 active-low;
146 active-low;
[all …]
H A Dleds-bcm6328.yaml51 brcm,serial-clk-low:
53 description: Makes clock signal active low.
55 brcm,serial-dat-low:
57 description: Makes data signal active low.
130 active-low;
136 active-low;
142 active-low;
175 brcm,serial-dat-low;
192 active-low;
198 active-low;
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextLinuxCore_x86_64.cpp97 x86_64_with_base::lldb_r8d, // Low 32 bits or r8
98 x86_64_with_base::lldb_r9d, // Low 32 bits or r9
99 x86_64_with_base::lldb_r10d, // Low 32 bits or r10
100 x86_64_with_base::lldb_r11d, // Low 32 bits or r11
101 x86_64_with_base::lldb_r12d, // Low 32 bits or r12
102 x86_64_with_base::lldb_r13d, // Low 32 bits or r13
103 x86_64_with_base::lldb_r14d, // Low 32 bits or r14
104 x86_64_with_base::lldb_r15d, // Low 32 bits or r15
113 x86_64_with_base::lldb_r8w, // Low 16 bits or r8
114 x86_64_with_base::lldb_r9w, // Low 16 bits or r9
[all …]
/freebsd/sys/contrib/device-tree/src/arm/nuvoton/
H A Dnuvoton-npcm750-runbmc-olympus-pincfg.dtsi9 output-low;
14 output-low;
19 output-low;
24 output-low;
49 output-low;
64 output-low;
69 output-low;
74 output-low;
79 output-low;
189 output-low;
[all …]
H A Dnuvoton-npcm750-pincfg-evb.dtsi36 pin25_output_low: pin25-output-low {
39 output-low;
106 pin197_output_low: pin197-output-low {
109 output-low;
116 pin219_output_low: pin219-output-low {
119 output-low;
121 pin220_output_low: pin220-output-low {
124 output-low;
136 pin223_output_low: pin223-output-low {
139 output-low;
[all …]
/freebsd/contrib/llvm-project/libc/src/__support/
H A Dhash.h24 // low 64-bit parts of the result.
27 uint64_t low = static_cast<uint64_t>(p); in folded_multiply() local
29 return low ^ high; in folded_multiply()
57 LIBC_INLINE void read_small_values(const void *ptr, size_t size, uint64_t &low, in read_small_values() argument
62 low = static_cast<uint64_t>(read_little_endian<uint32_t>(&bytes[0])); in read_small_values()
66 low = static_cast<uint64_t>(read_little_endian<uint16_t>(&bytes[0])); in read_small_values()
71 low = static_cast<uint64_t>(bytes[0]); in read_small_values()
74 low = 0; in read_small_values()
102 LIBC_INLINE void update(uint64_t low, uint64_t high) { in update() argument
104 folded_multiply(low ^ extra_keys[0], high ^ extra_keys[1]); in update()
[all …]
/freebsd/crypto/openssl/doc/man7/
H A Dossl-guide-migration.pod72 be accessed using the L</Low Level APIs>.
95 =head3 Low Level APIs
98 algorithms: the "high level" APIs (such as the C<EVP> APIs) and the "low level"
100 types. The "low level" APIs are targeted at a specific algorithm implementation.
104 On the other hand, to do AES encryption using the low level APIs you would have
107 Use of the low level APIs has been informally discouraged by the OpenSSL
109 formal. All such low level APIs have been deprecated. You may still use them in
115 This is described in more detail in L</Deprecation of Low Level Functions>
160 Setting engine-based or application-based default low-level crypto method such
447 OpenSSL 3.0. Previously they returned a pointer to the low-level key used
[all …]
/freebsd/sys/contrib/device-tree/src/arm/broadcom/
H A Dbcm6846-genexis-xg6846b.dts83 active-low;
90 active-low;
97 active-low;
104 active-low;
111 active-low;
118 active-low;
125 active-low;
133 active-low;
141 active-low;
149 active-low;
[all …]
/freebsd/lib/libc/quad/
H A Dmuldi3.c67 * (2^n + 1) (u0 v0) [u0v0 = low]
85 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low)
89 * (2^n)(high + mid + low) + low
92 * of 2^n in either one will also vanish. Only `low' need be computed
100 union uu u, v, low, prod; in __muldi3() local
136 low.q = __lmulq(u0, v0); in __muldi3()
153 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] + in __muldi3()
154 low.ul[H]; in __muldi3()
155 prod.ul[L] = low.ul[L]; in __muldi3()
179 * splits into high and low longs as HHALF(l) and LHUP(l) respectively.
[all …]
/freebsd/sys/libkern/arm/
H A Dmuldi3.c69 * (2^n + 1) (u0 v0) [u0v0 = low]
87 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low)
91 * (2^n)(high + mid + low) + low
94 * of 2^n in either one will also vanish. Only `low' need be computed
103 union uu u, v, low, prod; in __muldi3() local
139 low.q = __lmulq(u0, v0); in __muldi3()
156 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] + in __muldi3()
157 low.ul[H]; in __muldi3()
158 prod.ul[L] = low.ul[L]; in __muldi3()
182 * splits into high and low ints as HHALF(l) and LHUP(l) respectively.
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp52 APInt Low, High; member
63 // then check if the Low field is <= R.Low. If so, we in IsInRanges()
67 return I != Ranges.end() && I->Low.sle(R.Low); in IsInRanges()
71 ConstantInt *Low; member
75 CaseRange(ConstantInt *low, ConstantInt *high, BasicBlock *bb) in CaseRange()
76 : Low(low), High(high), BB(bb) {} in CaseRange()
86 const ConstantInt *CI1 = cast<const ConstantInt>(C1.Low); in operator ()()
98 O << "[" << B->Low->getValue() << ", " << B->High->getValue() << "]"; in operator <<()
163 if (Leaf.Low == Leaf.High) { in NewLeafBlock()
166 new ICmpInst(NewLeaf, ICmpInst::ICMP_EQ, Val, Leaf.Low, "SwitchLeaf"); in NewLeafBlock()
[all …]
/freebsd/sys/amd64/include/
H A Dcpufunc.h278 uint32_t low, high; in rdmsr() local
280 __asm __volatile("rdmsr" : "=a" (low), "=d" (high) : "c" (msr)); in rdmsr()
281 return (low | ((uint64_t)high << 32)); in rdmsr()
287 uint32_t low; in rdmsr32() local
289 __asm __volatile("rdmsr" : "=a" (low) : "c" (msr) : "rdx"); in rdmsr32()
290 return (low); in rdmsr32()
296 uint32_t low, high; in rdpmc() local
298 __asm __volatile("rdpmc" : "=a" (low), "=d" (high) : "c" (pmc)); in rdpmc()
299 return (low | ((uint64_t)high << 32)); in rdpmc()
305 uint32_t low, high; in rdtsc() local
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Dfixunstfti.c28 // The long double representation, with the high and low portions of in __fixunstfti()
32 double d[2]; // [0] is the high double, [1] is the low double. in __fixunstfti()
33 unsigned long long ull[2]; // High and low doubles as 64-bit integers. in __fixunstfti()
41 // Retrieve the 64-bit patterns of high and low doubles. in __fixunstfti()
42 // Compute the unbiased exponent of both high and low doubles by in __fixunstfti()
50 // CASE 1: High or low double fits in int64 in __fixunstfti()
53 // CASE 2: High or low double does not fit in int64 in __fixunstfti()
62 // from long double to 64-bit integer is needed. The low double can be either in __fixunstfti()
64 // of the low double and to ensure it does not simply get converted to 0. in __fixunstfti()
90 // CASE 1 - Low double fits in int64. in __fixunstfti()
[all …]
/freebsd/lib/libc/softfloat/
H A Dtimesoftfloat.c1014 bits64 low; member
1062 a.low = inputs_floatx80[ inputNum ].low; in time_a_floatx80_z_int32()
1072 a.low = inputs_floatx80[ inputNum ].low; in time_a_floatx80_z_int32()
1094 a.low = inputs_floatx80[ inputNum ].low; in time_a_floatx80_z_int64()
1104 a.low = inputs_floatx80[ inputNum ].low; in time_a_floatx80_z_int64()
1126 a.low = inputs_floatx80[ inputNum ].low; in time_a_floatx80_z_float32()
1136 a.low = inputs_floatx80[ inputNum ].low; in time_a_floatx80_z_float32()
1158 a.low = inputs_floatx80[ inputNum ].low; in time_a_floatx80_z_float64()
1168 a.low = inputs_floatx80[ inputNum ].low; in time_a_floatx80_z_float64()
1192 a.low = inputs_floatx80[ inputNum ].low; in time_a_floatx80_z_float128()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/
H A Dste,abx500.txt40 output-low;
52 output-low;
76 output-low;
88 output-low;
100 output-low;
117 output-low;
129 output-low;
145 output-low;
162 output-low;
178 output-low;
[all …]
/freebsd/sys/contrib/zlib/
H A Dinftrees.c60 unsigned low; /* low bits for current root entry */ in inflate_table() local
61 unsigned mask; /* mask for low root bits */ in inflate_table()
168 of the low root bits of huff. This is saved in low to check for when a in inflate_table()
211 low = (unsigned)(-1); /* trigger new sub-table when len > root */ in inflate_table()
213 mask = used - 1; /* mask for comparing low */ in inflate_table()
237 /* replicate for those indices with low len bits equal to huff */ in inflate_table()
265 if (len > root && (huff & mask) != low) { in inflate_table()
290 low = huff & mask; in inflate_table()
291 (*table)[low].op = (unsigned char)curr; in inflate_table()
292 (*table)[low].bits = (unsigned char)root; in inflate_table()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp26 const APInt &LowCase = Clusters[First].Low->getValue(); in getJumpTableRange()
58 assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue())); in findJumpTables()
77 const APInt &Lo = Clusters[i].Low->getValue(); in findJumpTables()
212 const APInt &Low = Clusters[I].Low->getValue(); in buildJumpTable() local
214 NumCmps += (Low == High) ? 1 : 2; in buildJumpTable()
218 assert(PreviousHigh.slt(Low)); in buildJumpTable()
219 uint64_t Gap = (Low - PreviousHigh).getLimitedValue() - 1; in buildJumpTable()
223 uint64_t ClusterSize = (High - Low).getLimitedValue() + 1; in buildJumpTable()
231 Clusters[First].Low->getValue(), in buildJumpTable()
258 JumpTableHeader JTH(Clusters[First].Low->getValue(), in buildJumpTable()
[all …]

12345678910>>...186