Home
last modified time | relevance | path

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

12345678910>>...49

/netbsd/src/external/gpl3/gcc/dist/gcc/
Ddouble-int.cc656 result.high |= value << (bitpos - HOST_BITS_PER_WIDE_INT); in from_buffer()
675 mask.high = (HOST_WIDE_INT) m; in mask()
680 mask.high = 0; in mask()
733 r.high = cst.high & mask.high; in zext()
753 snum = (unsigned HOST_WIDE_INT) cst.high; in sext()
758 r.high = cst.high | ~mask.high; in sext()
763 r.high = cst.high & mask.high; in sext()
775 if (cst.high == 0) in fits_shwi()
777 else if (cst.high == -1) in fits_shwi()
802 mul_double (a.low, a.high, b.low, b.high, &ret.low, &ret.high); in operator *()
[all …]
Dwide-int-bitmask.h38 uint64_t low, high; variable
43 : low (0), high (0) in wide_int_bitmask()
49 : low (l), high (0) in wide_int_bitmask()
55 : low (l), high (h) in wide_int_bitmask()
63 high &= b.high;
71 high |= b.high;
78 return wide_int_bitmask (~low, ~high);
84 return wide_int_bitmask (low | b.low, high | b.high);
90 return wide_int_bitmask (low & b.low, high & b.high);
100 ret.high = low << (amount - 64);
[all …]
Ddouble-int.h60 static double_int from_pair (HOST_WIDE_INT high, unsigned HOST_WIDE_INT low);
196 HOST_WIDE_INT high; member
212 r.high = cst < 0 ? -1 : 0; in from_shwi()
235 r.high = 0; in from_uhwi()
240 double_int::from_pair (HOST_WIDE_INT high, unsigned HOST_WIDE_INT low) in from_pair() argument
244 r.high = high; in from_pair()
306 return high == 0; in fits_uhwi()
318 result.high = ~high;
329 result.high = high | b.high;
340 result.high = high & b.high;
[all …]
Dfixed-value.cc33 && a->data.high == b->data.high in fixed_identical()
42 return (unsigned int) (f->data.low ^ f->data.high); in fixed_hash()
134 f->data.high = w.elt (1); in fixed_from_string()
140 f->data.high = -1; in fixed_from_string()
189 max.high = -1; in fixed_saturate1()
202 max.high = -1; in fixed_saturate1()
205 min.high = 0; in fixed_saturate1()
246 max_r.high = 0; in fixed_saturate2()
248 max_s.high = -1; in fixed_saturate2()
264 max_r.high = 0; in fixed_saturate2()
[all …]
Ddbgcnt.cc126 unsigned int low, unsigned int high) in dbg_cnt_set_limit_by_index() argument
131 limits[index].safe_push (limit_tuple (low, high)); in dbg_cnt_set_limit_by_index()
153 unsigned int high) in dbg_cnt_set_limit_by_name() argument
155 if (high < low) in dbg_cnt_set_limit_by_name()
158 name, low, high); in dbg_cnt_set_limit_by_name()
174 return dbg_cnt_set_limit_by_index ((enum debug_counter) i, name, low, high); in dbg_cnt_set_limit_by_name()
187 unsigned int high, low; in dbg_cnt_process_single_pair() local
194 high = strtol (value1, NULL, 10); in dbg_cnt_process_single_pair()
196 low = high == 0 ? 0 : 1; in dbg_cnt_process_single_pair()
201 high = strtol (value2, NULL, 10); in dbg_cnt_process_single_pair()
[all …]
/netbsd/src/sys/arch/x86/include/
Dcpufunc.h103 uint32_t low, high; \
108 : "=a" (low), "=d" (high) \
112 return (low | ((uint64_t)high << 32)); \
363 uint32_t low, high; in rdxcr() local
367 : "=a" (low), "=d" (high) in rdxcr()
371 return (low | ((uint64_t)high << 32)); in rdxcr()
377 uint32_t low, high; in wrxcr() local
380 high = val >> 32; in wrxcr()
384 : "a" (low), "d" (high), "c" (xcr) in wrxcr()
444 uint32_t low, high; in xsave() local
[all …]
/netbsd/src/sys/lib/libkern/
Dsoftfloat-specialize.h70 bits64 high, low; member
115 z.high = ( (bits64) a )<<41; in float32ToCommonNaN()
128 return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | ( a.high>>41 ); in commonNaNToFloat32()
184 z.high = a<<12; in float64ToCommonNaN()
200 | ( a.high>>12 ); in commonNaNToFloat64()
256 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 ); in floatx80_is_nan()
271 ( ( a.high & 0x7FFF ) == 0x7FFF ) in floatx80_is_signaling_nan()
288 z.sign = a.high>>15; in floatx80ToCommonNaN()
290 z.high = a.low<<1; in floatx80ToCommonNaN()
304 z.low = LIT64( 0xC000000000000000 ) | ( a.high>>1 ); in commonNaNToFloatx80()
[all …]
/netbsd/src/sys/arch/mips/mips/
Din_cksum.c79 unsigned long hilo = 0, high = 0; in fastsum() local
124 high += w0 >> 16; in fastsum()
128 high += w1 >> 16; in fastsum()
132 high += w0 >> 16; in fastsum()
136 high += w1 >> 16; in fastsum()
140 high += w0 >> 16; in fastsum()
144 high += w1 >> 16; in fastsum()
148 high += w0 >> 16; in fastsum()
152 high += w1 >> 16; in fastsum()
157 high += w0 >> 16; in fastsum()
[all …]
/netbsd/src/external/gpl3/gcc/dist/libgcc/
Dfixed-bit.c215 FIXED_SATURATE2 (INT_C_TYPE *high, INT_C_TYPE *low) in FIXED_SATURATE2() argument
234 if (*high > r_max in FIXED_SATURATE2()
235 || (*high == r_max && (UINT_C_TYPE)(*low) > (UINT_C_TYPE)s_max)) in FIXED_SATURATE2()
237 *high = r_max; in FIXED_SATURATE2()
240 else if (*high < r_min || in FIXED_SATURATE2()
241 (*high == r_min && (UINT_C_TYPE)(*low) < (UINT_C_TYPE)s_min)) in FIXED_SATURATE2()
243 *high = r_min; in FIXED_SATURATE2()
294 a_high.s.low = aa.s.high; in FIXED_MULHELPER()
295 a_high.s.high = 0; in FIXED_MULHELPER()
297 a_low.s.high = 0; in FIXED_MULHELPER()
[all …]
Dlibgcc2.c68 .high = -uu.s.high - ((UWtype) -uu.s.low > 0) } }; in __negdi2()
263 if (__builtin_expect (uu.s.high == uu.s.low >> (W_TYPE_SIZE - 1), 1)) in __mulvDI3()
266 if (__builtin_expect (vv.s.high == vv.s.low >> (W_TYPE_SIZE - 1), 1)) in __mulvDI3()
278 * (UDWtype) (UWtype) vv.s.high}; in __mulvDI3()
280 if (vv.s.high < 0) in __mulvDI3()
281 w1.s.high -= uu.s.low; in __mulvDI3()
284 w1.ll += (UWtype) w0.s.high; in __mulvDI3()
285 if (__builtin_expect (w1.s.high == w1.s.low >> (W_TYPE_SIZE - 1), 1)) in __mulvDI3()
287 w0.s.high = w1.s.low; in __mulvDI3()
294 if (__builtin_expect (vv.s.high == vv.s.low >> (W_TYPE_SIZE - 1), 1)) in __mulvDI3()
[all …]
/netbsd/src/external/gpl3/gcc/dist/libcpp/
Dexpr.cc38 #define num_zerop(num) ((num.low | num.high) == 0)
39 #define num_eq(num1, num2) (num1.low == num2.low && num1.high == num2.high)
876 result.high = 0; in cpp_interpret_integer()
1003 overflow = !!(num.high >> (PART_PRECISION - shift)); in append_digit()
1004 result.high = num.high << shift; in append_digit()
1006 result.high |= num.low >> (PART_PRECISION - shift); in append_digit()
1012 add_high = (num.high << 1) + (num.low >> (PART_PRECISION - 1)); in append_digit()
1023 if (result.high + add_high < result.high) in append_digit()
1027 result.high += add_high; in append_digit()
1033 num.high = result.high; in append_digit()
[all …]
/netbsd/src/lib/libm/src/
Ds_modf.c52 u_int32_t high; in __strong_alias() local
54 GET_HIGH_WORD(high,x); in __strong_alias()
55 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ in __strong_alias()
63 u_int32_t high; in __strong_alias() local
67 GET_HIGH_WORD(high,x); in __strong_alias()
68 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ in __strong_alias()
73 u_int32_t high; in __strong_alias() local
75 GET_HIGH_WORD(high,x); in __strong_alias()
76 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ in __strong_alias()
Ds_expm1.c202 u_int32_t high; in expm1() local
204 GET_HIGH_WORD(high,y); in expm1()
205 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */ in expm1()
210 u_int32_t high; in expm1() local
213 GET_HIGH_WORD(high,y); in expm1()
214 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */ in expm1()
216 u_int32_t high; in expm1() local
220 GET_HIGH_WORD(high,y); in expm1()
221 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */ in expm1()
Ds_cbrt.c47 u_int32_t high,low; in cbrt() local
61 t*=x; GET_HIGH_WORD(high,t); SET_HIGH_WORD(t,high/3+B2); in cbrt()
73 GET_HIGH_WORD(high,t); in cbrt()
74 INSERT_WORDS(t,high+0x00000001,0); in cbrt()
85 GET_HIGH_WORD(high,t); in cbrt()
86 SET_HIGH_WORD(t,high|sign); in cbrt()
/netbsd/src/lib/libc/softfloat/
Dtimesoftfloat.c1018 bits16 high; member
1068 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_int32()
1078 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_int32()
1100 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_int64()
1110 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_int64()
1132 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_float32()
1142 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_float32()
1164 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_float64()
1174 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_float64()
1198 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_float128()
[all …]
/netbsd/src/lib/libskey/
Dput.c27 static int wsrch(const char *w, int low, int high);
2124 int i, p, v, l, low, high; in etob() local
2146 high = 570; in etob()
2151 high = 2047; in etob()
2155 if ((v = wsrch (word, low, high)) < 0) in etob()
2207 static int wsrch(const char *w, int low, int high) in wsrch() argument
2213 i = (low + high) / 2; in wsrch()
2216 if (high == low + 1) in wsrch()
2219 if (strncmp (w, Wp[high], 4) == 0) in wsrch()
2220 return high; in wsrch()
[all …]
/netbsd/src/regress/lib/libc/ieeefp/testfloat/include/
Dsoftfloat-specialize93 bits64 high, low;
143 z.high = ( (bits64) a )<<41;
157 return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | ( a.high>>41 );
245 z.high = a<<12;
262 | ( a.high>>12 );
306 `high' and `low' values hold the most- and least-significant bits,
322 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );
338 ( ( a.high & 0x7FFF ) == 0x7FFF )
356 z.sign = a.high>>15;
358 z.high = a.low<<1;
[all …]
/netbsd/src/lib/libc/softfloat/templates/
Dsoftfloat-specialize62 bits64 high, low;
112 z.high = ( (bits64) a )<<41;
126 return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | ( a.high>>41 );
206 z.high = a<<12;
223 | ( a.high>>12 );
259 `high' and `low' values hold the most- and least-significant bits,
275 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );
291 ( ( a.high & 0x7FFF ) == 0x7FFF )
309 z.sign = a.high>>15;
311 z.high = a.low<<1;
[all …]
/netbsd/src/external/gpl3/binutils/dist/gprof/
Dsymtab.c180 unsigned long low, mid, high; in dbg_sym_lookup() local
187 for (low = 0, high = sym_tab->len - 1; low != high;) in dbg_sym_lookup()
189 mid = (high + low) >> 1; in dbg_sym_lookup()
192 low, mid, high); in dbg_sym_lookup()
201 high = mid; in dbg_sym_lookup()
219 long low, high; in sym_lookup() local
230 for (low = 0, high = sym_tab->len - 1; low != high;) in sym_lookup()
233 mid = (high + low) / 2; in sym_lookup()
253 high = mid; in sym_lookup()
/netbsd/src/games/sail/
Ddr_2.c56 int ma, int ta, bool af, int vma, int dir, int *high,
166 int high; in closeon() local
170 high = -30000; in closeon()
172 ma, ta, af, ma, from->file->dir, &high, 0); in closeon()
252 int ma, int ta, bool af, int vma, int dir, int *high, int rakeme) in try() argument
263 if (new > *high && (!rakeme || rakeyou)) { in try()
264 *high = new; in try()
269 dir, high, rakeme); in try()
276 if (new > *high && (!rakeme || in try()
278 *high = new; in try()
[all …]
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/ec/
Decp_nistp256.c382 u64 high, low; in felem_shrink() local
423 high = (u64)(tmp[3] >> 64); in felem_shrink()
425 high = 0 - high; in felem_shrink()
448 mask = (mask & low) | high; in felem_shrink()
488 u64 high, low; in smallfelem_square() local
492 high = a >> 64; in smallfelem_square()
494 out[1] = high; in smallfelem_square()
498 high = a >> 64; in smallfelem_square()
501 out[2] = high; in smallfelem_square()
505 high = a >> 64; in smallfelem_square()
[all …]
/netbsd/src/sys/uvm/
Duvm_pglist.c112 uvm_pglistalloc_c_ps(uvm_physseg_t psi, int num, paddr_t low, paddr_t high, in uvm_pglistalloc_c_ps() argument
128 high = atop(high); in uvm_pglistalloc_c_ps()
133 if (high <= uvm_physseg_get_avail_start(psi) || in uvm_pglistalloc_c_ps()
144 limit = ulmin(high, uvm_physseg_get_avail_end(psi)); in uvm_pglistalloc_c_ps()
300 uvm_pglistalloc_contig_aggressive(int num, paddr_t low, paddr_t high, in uvm_pglistalloc_contig_aggressive() argument
333 if (pa < low || pa >= high) { in uvm_pglistalloc_contig_aggressive()
367 rhi = MIN(rhi, high); in uvm_pglistalloc_contig_aggressive()
451 uvm_pglistalloc_contig(int num, paddr_t low, paddr_t high, paddr_t alignment, in uvm_pglistalloc_contig() argument
482 int done = uvm_pglistalloc_c_ps(psi, num, low, high, in uvm_pglistalloc_contig()
513 error = uvm_pglistalloc_contig_aggressive(num, low, high, in uvm_pglistalloc_contig()
[all …]
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/bn/
Dbn_local.h387 # define BN_UMULT_LOHI(low,high,a,b) ({ \ argument
389 (high)=ret>>64; (low)=ret; })
421 # define BN_UMULT_LOHI(low,high,a,b) \ argument
423 : "=a"(low),"=d"(high) \
434 # define BN_UMULT_LOHI(low,high,a,b) ((low)=_umul128((a),(b),&(high))) argument
444 # define BN_UMULT_LOHI(low,high,a,b) \ argument
446 : "=l"(low),"=h"(high) \
503 BN_ULONG high,low,ret,tmp=(a); \
505 BN_UMULT_LOHI(low,high,w,tmp); \
508 (c) += high; \
[all …]
/netbsd/src/sys/external/bsd/compiler_rt/dist/test/Unit/
Dmuloti4_test.c43 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low, in test__muloti4()
44 expectedt.s.high, expectedt.s.low); in test__muloti4()
59 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low, in test__muloti4()
60 expectedt.s.high, expectedt.s.low); in test__muloti4()
/netbsd/src/common/lib/libc/quad/
Dmuldi3.c112 u_int high, mid, udiff, vdiff; in __muldi3() local
159 high = u1 * v1; in __muldi3()
164 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] + in __muldi3()
195 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low; in __lmulq() local
221 high = u1 * v1; in __lmulq()
224 prodh = high + HHALF(high); in __lmulq()
225 prodl = LHUP(high); in __lmulq()

12345678910>>...49