Searched refs:low (Results 26 - 50 of 425) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfixunsxfdi.c38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
43 return fb.u.low.all >> (63 - e);
H A Dfixunsxfsi.c38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
43 return fb.u.low.s.high >> (31 - e);
H A Dparitydi2.c20 return __paritysi2(x.s.high ^ x.s.low);
H A Dparityti2.c22 return __paritydi2(x.s.high ^ x.s.low);
H A Dctzdi2.c32 const si_int f = -(x.s.low == 0);
33 return __builtin_ctz((x.s.high & f) | (x.s.low & ~f)) +
H A Dfixunsdfdi.c20 su_int low = a - (double)high * 4294967296.f; // high * 0x1p32f; local
21 return ((du_int)high << 32) | low;
H A Dashrdi3.c27 result.s.low = input.s.high >> (b - bits_in_word);
32 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dashrti3.c29 result.s.low = input.s.high >> (b - bits_in_dword);
34 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dlshrdi3.c26 result.s.low = input.s.high >> (b - bits_in_word);
31 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dfixxfdi.c39 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
44 di_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
45 di_int r = fb.u.low.all;
H A Dfixunssfdi.c21 su_int low = da - (double)high * 4294967296.f; // high * 0x1p32f; local
22 return ((du_int)high << 32) | low;
H A Dfloatdixf.c35 fb.u.high.s.low = ((su_int)s & 0x00008000) | // sign
37 fb.u.low.all = a << clz; // mantissa
H A Dclzti2.c25 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) +
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddisasm.h31 int how_many, CORE_ADDR low, CORE_ADDR high);
/freebsd-11-stable/usr.bin/gprof/
H A Dlookup.c49 register long low; local
57 for ( low = 0 , high = nname - 1 ; low != high ; ) {
61 middle = ( high + low ) >> 1;
79 low = middle + 1;
/freebsd-11-stable/lib/libc/quad/
H A Dmuldi3.c71 * (2^n + 1) (u0 v0) [u0v0 = low]
89 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low)
93 * (2^n)(high + mid + low) + low
96 * of 2^n in either one will also vanish. Only `low' need be computed
105 union uu u, v, low, prod; local
141 low.q = __lmulq(u0, v0);
158 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] +
159 low.ul[H];
160 prod.ul[L] = low
189 u_long u1, u0, v1, v0, udiff, vdiff, high, mid, low; local
[all...]
/freebsd-11-stable/sys/libkern/arm/
H A Dmuldi3.c76 * (2^n + 1) (u0 v0) [u0v0 = low]
94 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low)
98 * (2^n)(high + mid + low) + low
101 * of 2^n in either one will also vanish. Only `low' need be computed
110 union uu u, v, low, prod; local
146 low.q = __lmulq(u0, v0);
163 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] +
164 low.ul[H];
165 prod.ul[L] = low
194 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low; local
[all...]
/freebsd-11-stable/sys/dev/random/
H A Dunit_test.h48 uint32_t low, high; local
50 __asm __volatile("rdtsc" : "=a" (low), "=d" (high));
51 return (low | ((uint64_t)high << 32));
/freebsd-11-stable/contrib/gcc/
H A Ddouble-int.h52 unsigned HOST_WIDE_INT low; member in struct:__anon1305
71 r.low = (unsigned HOST_WIDE_INT) cst;
93 r.low = cst;
148 return cst.low == 0 && cst.high == 0;
156 return cst.low == 1 && cst.high == 0;
164 return (cst.low == ALL_ONES && cst.high == -1);
172 return cst1.low == cst2.low && cst1.high == cst2.high;
/freebsd-11-stable/sys/dev/tdfx/
H A Dtdfx_linux.h43 #define LINUX_IOCTL_SET(n,low,high) \
45 static struct linux_ioctl_handler n##_handler = {linux_ioctl_##n, low, high}; \
/freebsd-11-stable/lib/msun/src/
H A De_hypot.c71 u_int32_t low; local
74 GET_LOW_WORD(low,a);
75 if(((ha&0xfffff)|low)==0) w = a;
76 GET_LOW_WORD(low,b);
77 if(((hb^0x7ff00000)|low)==0) w = b;
87 u_int32_t low; local
88 GET_LOW_WORD(low,b);
89 if((hb|low)==0) return a;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp28 CondDirectiveLocsTy::const_iterator low = llvm::lower_bound(
30 if (low == CondDirectiveLocs.end())
33 if (SourceMgr.isBeforeInTranslationUnit(Range.getEnd(), low->getLoc()))
37 upp = std::upper_bound(low, CondDirectiveLocs.end(),
43 return low->getRegionLoc() != uppRegion;
57 CondDirectiveLocsTy::const_iterator low = llvm::lower_bound(
59 assert(low != CondDirectiveLocs.end());
60 return low->getRegionLoc();
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dexpr.c39 #define num_zerop(num) ((num.low | num.high) == 0)
40 #define num_eq(num1, num2) (num1.low == num2.low && num1.high == num2.high)
376 result.low = 0;
386 result.low = p[0] - '0';
427 if (result.low < max)
428 result.low = result.low * base + c;
485 result.low = num.low << shif
[all...]
/freebsd-11-stable/sys/sys/
H A D_unrhdr.h40 u_int low; /* Lowest item */ member in struct:unrhdr
/freebsd-11-stable/sys/dev/smbus/
H A Dsmbus.h41 void smbus_generic_intr(device_t dev, u_char devaddr, char low, char high, int err);

Completed in 206 milliseconds

1234567891011>>