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

12345678

/illumos-gate/usr/src/cmd/sgs/prof/common/
H A Dlookup.c41 size_t low = 0, middle, high = module->nfuncs - 1; local
62 if (keyval >= nl[high].value) {
65 return (&nl[high]);
68 while (low != high) {
69 middle = (high + low) >> 1;
82 high = middle;
100 size_t low = 0, middle, high = nelem - 1; local
105 if (keypc > pclist[high])
108 while (low != high) {
109 middle = (high
[all...]
/illumos-gate/usr/src/common/ficl/
H A Ddouble.c78 return (x.high < 0);
88 x.high = ~x.high;
92 x.high++;
110 ficl2Unsigned resultHi = ficl2UnsignedMultiply(u.high, mul);
111 resultLo.high += resultHi.low;
115 resultLo.high++;
156 x.high--;
167 result.high = x.high
[all...]
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dlookup.c42 size_t low = 0, middle, high = module->nname - 1; local
63 if (keyval >= mnl[high].value) {
66 return (&mnl[high]);
69 while (low != high) {
70 middle = (high + low) >> 1;
83 high = middle;
/illumos-gate/usr/src/lib/libldap5/sources/ldap/ssldap/
H A Derrormap.c166 PRInt32 high = numStrings - 1; local
176 for (i = low; i <= high; ++i) {
213 while (low + 1 < high) {
214 i = (low + high) / 2;
219 high = i;
225 if (errNum == errStrings[high].errNum)
226 return errStrings[high].errString;
270 PRInt32 high = numStrings - 1; local
279 while (low + 1 < high) {
280 i = (low + high) /
[all...]
/illumos-gate/usr/src/lib/libc/i386/gen/
H A Dlmul.s44 mull rop(%esp) / high(lop) * low(rop)
45 movl %eax,%ecx / partial high(product)
48 mull lop(%esp) / high(rop) * low(lop)
49 addl %eax,%ecx / partial sum of high(product)
53 addl %edx,%ecx / final high(product)
H A Dbyteorder.s66 shrl $16, %eax / moves high 16-bit to low 16-bit
73 shrl $16, %eax / moves high 16-bit to low 16-bit
84 shrl $16, %eax / moves high 16-bit to low 16-bit
106 shrl $16, %eax / moves high 16-bit to low 16-bit
113 shrl $16, %eax / moves high 16-bit to low 16-bit
/illumos-gate/usr/src/uts/common/os/
H A Did_space.c62 * Create an arena to represent the range [low, high).
66 id_space_create(const char *name, id_t low, id_t high) argument
69 ASSERT(low < high);
71 return (vmem_create(name, ID_TO_ADDR(low), high - low, 1,
86 id_space_extend(id_space_t *isp, id_t low, id_t high) argument
88 (void) vmem_add(isp, ID_TO_ADDR(low), high - low, VM_SLEEP);
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dlsign.s45 ld [%o0],%o0 ! fetch op (high word only)
/illumos-gate/usr/src/lib/libbsm/common/
H A Daudit_scf.h135 #define CHK_BDRY_QLOWATER(low, high) !((low) < AQ_MINLOW || (low) >= (high))
136 #define CHK_BDRY_QHIWATER(low, high) !((high) <= (low) || \
137 (high) < AQ_LOWATER || \
138 (high) > AQ_MAXHIGH)
/illumos-gate/usr/src/lib/libc/port/fp/
H A Dmuldi3.c71 * uv = (2^2n + 2^n) (u1 v1) + [u1v1 = high]
91 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low)
95 * (2^n)(high + mid + low) + low
97 * Furthermore, `high' and `mid' can be computed mod 2^n, as any factor
107 ulong_t high, mid, udiff, vdiff; local
139 * any upper bits in high and mid, so we can use native
154 high = u1 * v1;
159 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] +
185 * splits into high and low longs as HHALF(l) and LHUP(l) respectively.
190 ulong_t u1, u0, v1, v0, udiff, vdiff, high, mi local
[all...]
/illumos-gate/usr/src/lib/libm/i386/src/
H A Datan2.s49 movl 8(%esp),%eax / high part of y
50 movl 16(%esp),%ecx / high part of x
59 pushl 12(%ebp) / high y
61 pushl 20(%ebp) / high x
H A Dacos.s75 pushl 12(%ebp) / high x
77 pushl 12(%ebp) / high x
H A Dasin.s60 pushl 12(%ebp) / high x
62 pushl 12(%ebp) / high x
/illumos-gate/usr/src/cmd/geniconvtbl/
H A Ditm_comp.l266 int high;
272 for (low = 0, high = (sizeof (at_table) /
274 low < high; /* NOP */) {
275 mid = (low + high) / 2;
278 high = mid;
297 int high;
327 high = *(seq + j);
329 if (('0' <= high) && (high <= '9')) {
330 val = ((high
[all...]
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dmoddiv.c38 struct DWstruct {Wtype low, high;}; member in struct:DWstruct
82 d1 = dd.s.high;
84 n1 = nn.s.high;
113 rr.s.high = 0;
132 rr.s.high = n1;
164 rr.s.high = n1;
197 rr.s.high = n1 >> bm;
204 const DWunion ww = {{.low = q0, .high = q1}};
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_vers_c.x75 % vers( unsigned int high, unsigned int low) {
76 % vers_high = high; vers_low = low; time_sec = time_usec = 0;
/illumos-gate/usr/src/lib/libproc/common/
H A Dproc_arg.c305 proc_lwp_get_range(char *range, id_t *low, id_t *high) argument
313 *high = *low;
322 *high = INT_MAX;
324 *high = (id_t)strtol(range, &range, 10);
330 if (*high < *low) {
331 id_t tmp = *high;
332 *high = *low;
356 id_t low, high; local
371 if (proc_lwp_get_range(range, &low, &high) != 0) {
382 if (id >= low && id <= high)
394 id_t low, high; local
[all...]
/illumos-gate/usr/src/cmd/mdb/i86pc/modules/common/
H A Dapic_common.c89 mdb_printf("%4s %8s %8s\n", "reg", "high", " low");
91 uint32_t high, low; local
93 high = APIC_READ_IOAPIC_RDT_ENTRY_HIGH_DWORD(i, reg);
96 mdb_printf("%2d %8x %8x\n", reg, high, low);
/illumos-gate/usr/src/lib/libbc/inc/include/rpc/
H A Drpc_msg.h81 u_long high; member in struct:accepted_reply::__anon2774::__anon2775
101 u_long high; member in struct:rejected_reply::__anon2777::__anon2778
/illumos-gate/usr/src/common/mc/mc-amd/
H A Dmcamd_rowcol_impl.h50 #define BITS(val, high, low) \
51 ((val) & (((2ULL << (high)) - 1) & ~((1ULL << (low)) - 1)))
/illumos-gate/usr/src/cmd/sgs/rtld.4.x/
H A Dumultiply.s146 ! But for unsigned multiplies, the high-order bit of the multiplicand
148 ! the high-order bit of the multiplicand is one, the result is
161 ! The multiply hasn't overflowed if the high-order bits are 0
174 addcc %o4, %g0, %o1 ! return high-order bits and set Z if
175 ! high order bits are 0
189 ! multiplicand had it's high bit set (see 32-bit case for explanation)
193 sra %o4, 28, %o1 ! right shift high bits by 28 bits
197 ! The multiply hasn't overflowed if high-order bits are 0
213 tst %o1 ! set Z if high order bits are 0
230 ! multiplicand had it's high bi
[all...]
/illumos-gate/usr/src/boot/sys/amd64/include/
H A Dcpufunc.h347 uint32_t low, high; local
349 __asm __volatile("rdmsr" : "=a" (low), "=d" (high) : "c" (msr));
350 return (low | ((uint64_t)high << 32));
365 uint32_t low, high; local
367 __asm __volatile("rdpmc" : "=a" (low), "=d" (high) : "c" (pmc));
368 return (low | ((uint64_t)high << 32));
374 uint32_t low, high; local
376 __asm __volatile("rdtsc" : "=a" (low), "=d" (high));
377 return (low | ((uint64_t)high << 32));
404 uint32_t low, high; local
470 u_int low, high; local
479 u_int low, high; local
[all...]
/illumos-gate/usr/src/uts/i86pc/i86hvm/io/xpv/
H A Devtchn.c67 #define GET_BOUNDS(bitmap, low, high) { \
69 low = high = -1; \
74 high = _i; \
228 int low, high; local
254 low = high = 0;
258 GET_BOUNDS(sels, low, high);
261 for (i = low; i <= high; i++) {
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dbitset.c74 int high; local
88 high = i << BT_ULSHIFT;
90 if (BT_TEST(bs->bs_set, high + i))
92 return (high + i + 1);
/illumos-gate/usr/src/boot/sys/boot/fdt/dts/arm/
H A Darmada-388-gp.dts246 enable-active-high;
256 enable-active-high;
266 enable-active-high;
276 enable-active-high;
284 enable-active-high;
312 enable-active-high;
338 enable-active-high;
364 enable-active-high;

Completed in 128 milliseconds

12345678