Home
last modified time | relevance | path

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

12345678910>>...12

/titanic_50/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_50/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_50/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_50/usr/src/lib/iconv_modules/ko/common/
H A Dc2p.c55 short high = CI_CNT ; local
69 Ci_val = (low + high) / 2 ;
70 if (low >= high)
73 high = Ci_val - 1 ;
127 short high = CI_CNT ; local
141 Ci_val = (low + high) / 2 ;
142 if (low >= high)
145 high = Ci_val - 1 ;
/titanic_50/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_50/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_50/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_50/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_50/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_50/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_50/usr/src/lib/iconv_modules/common/
H A Dtab_lookup.c205 int low, high, mid; in bisearch() local
212 high = n - 1; in bisearch()
213 while ( low <= high ) { in bisearch()
214 mid = (low + high) / 2; in bisearch()
217 high = mid - 1; in bisearch()
224 high = mid - 1; in bisearch()
/titanic_50/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_50/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_50/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_50/usr/src/lib/iconv_modules/zh/common/
H A Dzh_CN.euc%zh_TW-big5.c198 int low, high, mid; in binsearch() local
201 high = n - 1; in binsearch()
202 while (low <= high) { in binsearch()
203 mid = (low + high) >> 1; in binsearch()
205 high = mid - 1; in binsearch()
H A Dzh_TW-big5p%zh_HK.hkscs.c197 int low, high, mid; in binsearch() local
200 high = n - 1; in binsearch()
201 while (low <= high) { in binsearch()
202 mid = (low + high) >> 1; in binsearch()
204 high = mid - 1; in binsearch()
H A Dzh_HK.hkscs%zh_TW-big5p.c199 int low, high, mid; in binsearch() local
202 high = n - 1; in binsearch()
203 while (low <= high) { in binsearch()
204 mid = (low + high) >> 1; in binsearch()
206 high = mid - 1; in binsearch()
H A Dzh_TW-big5%zh_CN.gbk.c198 int low, high, mid; in binsearch() local
201 high = n - 1; in binsearch()
202 while (low <= high) { in binsearch()
203 mid = (low + high) >> 1; in binsearch()
205 high = mid - 1; in binsearch()
H A Dzh_TW-big5p%zh_CN.gbk.c198 int low, high, mid; in binsearch() local
201 high = n - 1; in binsearch()
202 while (low <= high) { in binsearch()
203 mid = (low + high) >> 1; in binsearch()
205 high = mid - 1; in binsearch()
H A Dzh_HK.hkscs%zh_CN.gbk.c220 int low, high, mid; in binsearch() local
223 high = n - 1; in binsearch()
224 while (low <= high) { in binsearch()
225 mid = (low + high) >> 1; in binsearch()
227 high = mid - 1; in binsearch()
H A Dzh_TW-big5%zh_CN.euc.c198 int low, high, mid; in binsearch() local
201 high = n - 1; in binsearch()
202 while (low <= high) { in binsearch()
203 mid = (low + high) >> 1; in binsearch()
205 high = mid - 1; in binsearch()
H A Dzh_TW-big5%zh_TW-euc.c346 int low, high, mid; in binsearch() local
349 high = n - 1; in binsearch()
350 while (low <= high) { in binsearch()
351 mid = (low + high) / 2; in binsearch()
353 high = mid - 1; in binsearch()
/titanic_50/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_50/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_50/usr/src/lib/iconv_modules/vi/common/
H A Dtcvn%UCS-2.c180 int high = n - 1; in binsearch() local
183 while (low <= high) { in binsearch()
184 mid = ((high - low)>>1) + low; in binsearch()
186 high = mid - 1; in binsearch()

12345678910>>...12