Searched defs:high (Results 1 - 25 of 26) sorted by relevance

12

/osnet-11/usr/src/grub/grub2/grub-core/kern/mips/
H A Dinit.c24 /* FIXME: use interrupt to count high. */
28 static grub_uint32_t high = 0; local
34 high++;
37 return (((grub_uint64_t) high) << 32) | low;
/osnet-11/usr/src/grub/grub2/grub-core/kern/i386/qemu/
H A Dmmap.c44 grub_uint8_t high, low, b, c, d; local
45 grub_cmos_read (QEMU_CMOS_MEMSIZE_HIGH, &high);
47 mem_size = ((grub_uint64_t) high) << 24
56 grub_cmos_read (QEMU_CMOS_MEMSIZE2_HIGH, &high);
59 = ((((grub_uint64_t) high) << 18) | (((grub_uint64_t) low) << 10))
/osnet-11/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...]
/osnet-11/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...]
H A Dpack_float.c62 unsigned int high, low, shiftout = 0; local
64 high = pu->significand[i] >> n;
66 pu->significand[i] = shiftout | high;
/osnet-11/usr/src/grub/grub2/grub-core/kern/ia64/
H A Ddl.c78 grub_uint32_t high, mid, low, c; local
81 high = (a & 0x003e00) << 7;
82 c = (low | mid | high) + value;
/osnet-11/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...]
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Ddevice.c565 s64 high, low; local
608 for (high = 1024LL; !ntfs_device_offset_valid(dev, high); high <<= 1)
609 low = high;
610 while (low < high - 1LL) {
611 const s64 mid = (low + high) / 2;
616 high = mid;
/osnet-11/usr/src/lib/libcurses/screen/
H A Dprint.c108 int low = 0, mid, high = listsize - 2; local
109 while (low <= high) {
110 mid = (low + high) / 4 * 2;
115 high = mid - 2;
119 high = mid - 2;
/osnet-11/usr/src/grub/grub2/grub-core/commands/
H A Dhashsum.c107 int high, low; local
108 high = hextoval (*p++);
110 if (high < 0 || low < 0)
112 expected[i] = (high << 4) | low;
/osnet-11/usr/src/grub/grub2/grub-core/mmap/
H A Dmmap.c324 grub_uint64_t iterator, low, high, cur; local
344 high = ~0ULL;
345 /* Find starting value. Keep low and high such that
346 fill_mask (low) < addr and fill_mask (high) >= addr;
348 while (high - low > 1)
350 cur = (low + high) / 2;
352 high = cur;
356 iterator = high;
/osnet-11/usr/src/lib/libuuid/common/
H A Duuid.c236 * The variant for this format is the 2 high bits set to 10,
465 * The variant for this format is the 2 high bits set to 10,
498 * Creates a new UUID. The uuid will be generated based on high-quality
661 uint_t high; local
675 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
676 clock_reg = uuid.time_low | ((u_longlong_t)high << 32);
/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A Dcryptodisk.c134 grub_uint8_t high[GRUB_CRYPTODISK_GF_BYTES]; member in struct:lrw_sector
166 gf_mul_be (sec->high, dev->lrw_key, idx);
186 grub_crypto_xor (b + i, b + i, sec->high, GRUB_CRYPTODISK_GF_BYTES);
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dregex_internal.c609 Idx low = 0, high = pstr->valid_len, mid;
612 mid = (high + low) / 2;
614 high = mid;
620 while (low < high);
608 Idx low = 0, high = pstr->valid_len, mid; local
/osnet-11/usr/src/grub/grub2/grub-core/lib/xzembed/
H A Dxz_dec_lzma2.c132 uint16_t high[LEN_HIGH_SYMBOLS]; member in struct:lzma_len_dec
575 uint32_t high = (s->dict.pos & s->lzma.literal_pos_mask) << s->lzma.lc; local
576 return s->lzma.literal[low + high];
634 probs = l->high;
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-mkimagexx.c212 grub_uint32_t high, mid, low, c; local
215 high = (a & 0x003e00) << 7;
216 c = (low | mid | high) + value;
/osnet-11/usr/src/lib/libdtrace_jni/common/
H A Ddtj_util.c979 dtj_int128(JNIEnv *jenv, uint64_t high, uint64_t low) argument
986 g_bigint_val_jsm, high);
/osnet-11/usr/src/grub/grub2/grub-core/fs/
H A Dbtrfs.c714 grub_uint64_t middle, high; local
721 high = grub_divmod64 (middle, grub_le_to_cpu16 (chunk->nstripes),
724 low + grub_le_to_cpu64 (chunk->stripe_length) * high;
730 grub_uint64_t middle, high; local
736 high = grub_divmod64 (middle,
743 * high;
H A Dnilfs2.c420 int index, low, high, s;
423 high = grub_le_to_cpu16 (node->bn_nchildren) - 1;
426 while (low <= high)
428 index = (low + high) / 2;
442 high = index - 1;
419 int index, low, high, s; local
/osnet-11/usr/src/cmd/ntfsprogs/
H A Dntfsclone.c1450 s64 high, low; local
1488 for (high = 1024LL; !device_offset_valid(fd, high); high <<= 1)
1489 low = high;
1490 while (low < high - 1LL) {
1491 const s64 mid = (low + high) / 2;
1496 high = mid;
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Dtg3.c359 uint32_t low, high; local
362 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high);
368 high &= 0x000f;
370 high != test_pat[chan][i+1]) {
1896 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
H A De1000_hw.h352 /* Number of high/low register pairs in the RAR. The RAR (Receive Address
503 volatile uint32_t high; /* receive address high */ member in struct:e1000_rar
/osnet-11/usr/src/grub/grub2/grub-core/fs/zfs/
H A Dzfs.c1654 grub_uint64_t high; local
1674 high = grub_divmod64 ((offset >> desc->ashift),
1697 high = grub_divmod64 ((offset >> desc->ashift) + c,
1707 offset >> desc->ashift, c, len, bsize, high,
1709 err = read_device ((high << desc->ashift)
1759 high = grub_divmod64 ((offset >> desc->ashift)
1765 err = read_device ((high << desc->ashift)
2302 * collision differentiator. We MUST use the high bits, since
/osnet-11/usr/src/grub/grub2/grub-core/lib/
H A DLzmaEnc.c226 CLzmaProb high[kLenNumHighSymbols]; member in struct:__anon487
776 p->high[i] = kProbInitValue;
797 RcTree_Encode(rc, p->high, kLenNumHighBits, symbol - kLenNumLowSymbols - kLenNumMidSymbols);
822 prices[i] = b1 + RcTree_GetPrice(p->high, kLenNumHighBits, i - kLenNumLowSymbols - kLenNumMidSymbols, ProbPrices);
/osnet-11/usr/src/lib/libzonecfg/common/
H A Dlibzonecfg.c4934 uint64_t low, high; local
4936 if (!valid_uint(lowstr, &low) || !valid_uint(highstr, &high) ||
4937 low < 1 || low > high)

Completed in 207 milliseconds

12