Home
last modified time | relevance | path

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

12345678910

/titanic_41/usr/src/cmd/sgs/prof/common/
H A Dlookup.c41 size_t low = 0, middle, high = module->nfuncs - 1; in nllookup() local
62 if (keyval >= nl[high].value) { in nllookup()
65 return (&nl[high]); in nllookup()
68 while (low != high) { in nllookup()
69 middle = (high + low) >> 1; in nllookup()
82 high = middle; in nllookup()
100 size_t low = 0, middle, high = nelem - 1; in locate() local
105 if (keypc > pclist[high]) in locate()
108 while (low != high) { in locate()
109 middle = (high + low) >> 1; in locate()
[all …]
/titanic_41/usr/src/lib/libldap5/sources/ldap/ssldap/
H A Derrormap.c166 PRInt32 high = numStrings - 1; in SECU_Strerror() local
176 for (i = low; i <= high; ++i) { in SECU_Strerror()
213 while (low + 1 < high) { in SECU_Strerror()
214 i = (low + high) / 2; in SECU_Strerror()
219 high = i; in SECU_Strerror()
225 if (errNum == errStrings[high].errNum) in SECU_Strerror()
226 return errStrings[high].errString; in SECU_Strerror()
270 PRInt32 high = numStrings - 1; in SECU_Strerror() local
279 while (low + 1 < high) { in SECU_Strerror()
280 i = (low + high) / 2; in SECU_Strerror()
[all …]
/titanic_41/usr/src/cmd/geniconvtbl/
H A Ditm_comp.l266 int high; in at_name_to_token() local
272 for (low = 0, high = (sizeof (at_table) / in at_name_to_token()
274 low < high; /* NOP */) { in at_name_to_token()
275 mid = (low + high) / 2; in at_name_to_token()
278 high = mid; in at_name_to_token()
297 int high; in hexadecimal_data() local
327 high = *(seq + j); in hexadecimal_data()
329 if (('0' <= high) && (high <= '9')) { in hexadecimal_data()
330 val = ((high - '0') << 4); in hexadecimal_data()
331 } else if (('a' <= high) && (high <= 'f')) { in hexadecimal_data()
[all …]
/titanic_41/usr/src/lib/libc/port/fp/
H A Dmuldi3.c107 ulong_t high, mid, udiff, vdiff; in ___muldi3() local
154 high = u1 * v1; in ___muldi3()
159 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] + in ___muldi3()
190 ulong_t u1, u0, v1, v0, udiff, vdiff, high, mid, low; in __lmulq() local
216 high = u1 * v1; in __lmulq()
219 prodh = high + HHALF(high); in __lmulq()
220 prodl = LHUP(high); in __lmulq()
/titanic_41/usr/src/cmd/sgs/gprof/common/
H A Dlookup.c42 size_t low = 0, middle, high = module->nname - 1; in nllookup() local
63 if (keyval >= mnl[high].value) { in nllookup()
66 return (&mnl[high]); in nllookup()
69 while (low != high) { in nllookup()
70 middle = (high + low) >> 1; in nllookup()
83 high = middle; in nllookup()
/titanic_41/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)
/titanic_41/usr/src/lib/libbsm/common/
H A Daudit_scf.h135 #define CHK_BDRY_QLOWATER(low, high) !((low) < AQ_MINLOW || (low) >= (high)) argument
136 #define CHK_BDRY_QHIWATER(low, high) !((high) <= (low) || \ argument
137 (high) < AQ_LOWATER || \
138 (high) > AQ_MAXHIGH)
/titanic_41/usr/src/uts/common/os/
H A Did_space.c66 id_space_create(const char *name, id_t low, id_t high) in id_space_create() argument
69 ASSERT(low < high); in id_space_create()
71 return (vmem_create(name, ID_TO_ADDR(low), high - low, 1, in id_space_create()
86 id_space_extend(id_space_t *isp, id_t low, id_t high) in id_space_extend() argument
88 (void) vmem_add(isp, ID_TO_ADDR(low), high - low, VM_SLEEP); in id_space_extend()
/titanic_41/usr/src/lib/libproc/common/
H A Dproc_arg.c305 proc_lwp_get_range(char *range, id_t *low, id_t *high) in proc_lwp_get_range() argument
313 *high = *low; in proc_lwp_get_range()
322 *high = INT_MAX; in proc_lwp_get_range()
324 *high = (id_t)strtol(range, &range, 10); in proc_lwp_get_range()
330 if (*high < *low) { in proc_lwp_get_range()
331 id_t tmp = *high; in proc_lwp_get_range()
332 *high = *low; in proc_lwp_get_range()
356 id_t low, high; in proc_lwp_in_set() local
371 if (proc_lwp_get_range(range, &low, &high) != 0) { in proc_lwp_in_set()
382 if (id >= low && id <= high) in proc_lwp_in_set()
[all …]
/titanic_41/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
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
230 ! multiplicand had it's high bit set (see 32-bit case for explanation)
234 sra %o4, 24, %o1 ! right shift high bits by 24 bits
275 ! multiplicand had it's high bit set (see 32-bit case for explanation)
279 sra %o4, 20, %o1 ! right shift high bits by 20 bits
324 ! multiplicand had it's high bit set (see 32-bit case for explanation)
328 sra %o4, 16, %o1 ! right shift high bits by 16 bits
/titanic_41/usr/src/test/zfs-tests/tests/functional/nopwrite/
H A Dnopwrite.shlib28 typeset high=99
47 high=98
56 within_percent $origin_used $clone_refer $high || return 1
57 within_percent $origin_used $snap_refer $high || return 1
64 within_percent $deadlist $clone_written $high || return 1
65 within_percent $snap_refer $snap_written $high || return 1
/titanic_41/usr/src/cmd/zonestat/zonestat/
H A Dzonestat.c628 uint64_t high; in format_uint64() local
640 high = val / 1024; in format_uint64()
641 low = val * 10 / 1024 - (high * 10); in format_uint64()
642 (void) snprintf(str, len, "%llu%1.1lluK", high, low); in format_uint64()
647 high = val; in format_uint64()
648 (void) snprintf(str, len, "%lluK", high); in format_uint64()
652 high = val / 1024; in format_uint64()
653 low = val * 10 / 1024 - (high * 10); in format_uint64()
654 (void) snprintf(str, len, "%llu.%1.1lluM", high, low); in format_uint64()
659 high = val; in format_uint64()
[all …]
/titanic_41/usr/src/uts/i86pc/io/acpi/acpidev/
H A Dacpidev_resource.c433 uint_t high; in acpidev_resource_address64() local
442 high = ACPIDEV_REG_TYPE_MEMORY; in acpidev_resource_address64()
444 high |= ACPIDEV_REG_SUB_DEC; in acpidev_resource_address64()
447 high |= ACPIDEV_REG_TRANSLATED; in acpidev_resource_address64()
450 high |= ACPIDEV_REG_MEM_COHERENT_NC; in acpidev_resource_address64()
452 high |= ACPIDEV_REG_MEM_COHERENT_CA; in acpidev_resource_address64()
455 high |= ACPIDEV_REG_MEM_COHERENT_WC; in acpidev_resource_address64()
458 high |= ACPIDEV_REG_MEM_COHERENT_PF; in acpidev_resource_address64()
467 high |= ACPIDEV_REG_MEM_WRITABLE; in acpidev_resource_address64()
475 reg.phys_hi = high; in acpidev_resource_address64()
[all …]
/titanic_41/usr/src/uts/i86pc/i86hvm/io/xpv/
H A Devtchn.c67 #define GET_BOUNDS(bitmap, low, high) { \ argument
69 low = high = -1; \
74 high = _i; \
228 int low, high; in evtchn_callback_fcn() local
254 low = high = 0; in evtchn_callback_fcn()
258 GET_BOUNDS(sels, low, high); in evtchn_callback_fcn()
261 for (i = low; i <= high; i++) { in evtchn_callback_fcn()
/titanic_41/usr/src/lib/libnsl/rpc/
H A Drpc_prot.c99 return (xdr_u_int(xdrs, (uint_t *)&(ar->ar_vers.high))); in xdr_accepted_reply()
117 return (xdr_u_int(xdrs, (uint_t *)&(rr->rj_vers.high))); in xdr_rejected_reply()
169 return (xdr_u_int(xdrs, (uint_t *)&(ar->ar_vers.high))); in xdr_replymsg()
232 return (xdr_u_int(xdrs, (uint_t *)&(ar->ar_vers.high))); in xdr_replymsg()
356 error->re_vers.high = msg->rjcted_rply.rj_vers.high; in __seterr_reply()
365 error->re_vers.high = msg->acpted_rply.ar_vers.high; in __seterr_reply()
/titanic_41/usr/src/uts/common/kiconv/kiconv_sc/
H A Dkiconv_cck_common.c298 size_t low, high, mid; in kiconv_binsearch() local
302 high = nitems - 1; in kiconv_binsearch()
305 while (low <= high) { in kiconv_binsearch()
306 mid = (low + high) / 2; in kiconv_binsearch()
309 high = mid - 1; in kiconv_binsearch()
/titanic_41/usr/src/cmd/mdb/common/modules/genunix/
H A Dbitset.c74 int high; in bitset_highbit() local
88 high = i << BT_ULSHIFT; in bitset_highbit()
90 if (BT_TEST(bs->bs_set, high + i)) in bitset_highbit()
92 return (high + i + 1); in bitset_highbit()
/titanic_41/usr/src/lib/libc/port/locale/
H A Dcollate.c216 int high; in chainsearch() local
225 high = lcc->lc_info->chain_count - 1; in chainsearch()
228 while (low <= high) { in chainsearch()
229 next = (low + high) / 2; in chainsearch()
243 high = next - 1; in chainsearch()
252 int high = lcc->lc_info->large_count - 1; in largesearch() local
260 while (low <= high) { in largesearch()
261 next = (low + high) / 2; in largesearch()
269 high = next - 1; in largesearch()
/titanic_41/usr/src/lib/libbc/libc/gen/common/
H A D_unpack_dble.c67 unsigned long high, low, shiftout = 0; in _fp_normalize() local
69 high = pu->significand[i] << nlzbits; in _fp_normalize()
71 pu->significand[i] = shiftout | high; in _fp_normalize()
114 unsigned long high, low, shiftout = 0; in _fp_leftshift() local
116 high = pu->significand[i] << n; in _fp_leftshift()
118 pu->significand[i] = shiftout | high; in _fp_leftshift()
/titanic_41/usr/src/uts/common/rpc/
H A Drpc_prot.c104 return (xdr_rpcvers(xdrs, &(ar->ar_vers.high))); in xdr_accepted_reply()
123 return (xdr_rpcvers(xdrs, &(rr->rj_vers.high))); in xdr_rejected_reply()
180 return (xdr_rpcvers(xdrs, &(ar->ar_vers.high))); in xdr_replymsg()
238 return (xdr_rpcvers(xdrs, &ar->ar_vers.high)); in xdr_replymsg()
421 error->re_vers.high = msg->rjcted_rply.rj_vers.high; in _seterr_reply()
430 error->re_vers.high = msg->acpted_rply.ar_vers.high; in _seterr_reply()
/titanic_41/usr/src/common/tsol/
H A Dltos.c53 static _mac_label_impl_t high; variable
142 _BSLHIGH(&high); in l_to_str_internal()
158 if (_MEQUAL(&high, (_mac_label_impl_t *)l)) { in l_to_str_internal()
198 _BSLHIGH(&high); in label_to_str()
236 } else if (_MEQUAL(&high, (_mac_label_impl_t *)l)) { in label_to_str()
/titanic_41/usr/src/cmd/mdb/i86pc/modules/common/
H A Dapic_common.c91 uint32_t high, low; in ioapic() local
93 high = APIC_READ_IOAPIC_RDT_ENTRY_HIGH_DWORD(i, reg); in ioapic()
96 mdb_printf("%2d %8x %8x\n", reg, high, low); in ioapic()
/titanic_41/usr/src/psm/stand/cpr/sparcv9/sun4u/
H A Dbitmap.c97 for (arp = cb_physavail; arp->high; arp++) { in count_free_pages()
99 for (bitno = arp->low; bitno <= arp->high; bitno++) { in count_free_pages()
133 for (; arp->high; bitno = (++arp)->low) { in search_phav_pages()
136 for (; bitno <= arp->high; bitno++) { in search_phav_pages()
489 arp->high = arp->low + pages - 1; in cb_get_physavail()
493 arp->low, arp->high, (arp->high - arp->low + 1)); in cb_get_physavail()
/titanic_41/usr/src/uts/common/io/usb/hcd/
H A DREADME32 overheads used for both full and high speed host controller drivers. This
44 host controllers and also to high speed hub Transaction Translators (TT),
235 1 high speed bit time 2.083 ns
267 for the non-periodic high-speed transfers, where as periodic high-speed
314 This field is used for for high, full and low speed usb device interrupt
316 frame of a given usb frame to initiate a high speed interrupt and
322 * For all low/full speed devices, and for high speed devices with
334 /* For high speed devices with a polling interval of 4us. */
340 /* For high speed devices with a polling interval of 2us. */
344 /* For high speed devices with a polling interval of 1us. */
[all …]
/titanic_41/usr/src/cmd/intrstat/
H A Dintrstat.c249 select_cpus(processorid_t low, processorid_t high) in select_cpus() argument
257 if (high < 0 || high >= g_max_cpus) in select_cpus()
258 fatal("invalid cpu '%d'\n", high); in select_cpus()
260 if (low >= high) in select_cpus()
261 fatal("invalid range '%d' to '%d'\n", low, high); in select_cpus()
266 } while (++low <= high); in select_cpus()

12345678910