Searched defs:low (Results 1 - 25 of 31) sorted by relevance

12

/osnet-11/usr/src/grub/grub2/grub-core/kern/mips/
H A Dinit.c30 grub_uint32_t low; local
32 asm volatile ("mfc0 %0, " GRUB_CPU_MIPS_COP0_TIMER_COUNT : "=r" (low));
33 if (low < last)
35 last = low;
37 return (((grub_uint64_t) high) << 32) | low;
/osnet-11/usr/src/grub/grub2/grub-core/commands/
H A Dxnu_uuid.c54 int low = 0; local
61 low = 1;
86 if (!low)
H A Dhashsum.c107 int high, low; local
109 low = hextoval (*p++);
110 if (high < 0 || low < 0)
112 expected[i] = (high << 4) | 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
46 grub_cmos_read (QEMU_CMOS_MEMSIZE_LOW, &low);
48 | ((grub_uint64_t) low) << 16;
57 grub_cmos_read (QEMU_CMOS_MEMSIZE2_LOW, &low);
59 = ((((grub_uint64_t) high) << 18) | (((grub_uint64_t) low) << 10))
/osnet-11/usr/src/lib/libldap5/sources/ldap/ssldap/
H A Derrormap.c165 PRInt32 low = 0; local
176 for (i = low; i <= high; ++i) {
213 while (low + 1 < high) {
214 i = (low + high) / 2;
221 low = i;
223 if (errNum == errStrings[low].errNum)
224 return errStrings[low].errString;
269 PRInt32 low = 0; local
279 while (low + 1 < high) {
280 i = (low
[all...]
/osnet-11/usr/src/lib/libc/port/fp/
H A Dmuldi3.c73 * (2^n + 1) (u0 v0) [u0v0 = low]
91 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low)
95 * (2^n)(high + mid + low) + low
98 * of 2^n in either one will also vanish. Only `low' need be computed
106 union uu u, v, low, prod; local
142 low.q = __lmulq(u0, v0);
159 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] +
160 low.ul[H];
161 prod.ul[L] = low
190 ulong_t u1, u0, v1, v0, udiff, vdiff, high, mid, low; local
[all...]
H A Dpack_float.c62 unsigned int high, low, shiftout = 0; local
65 low = pu->significand[i] << (32 - n);
67 shiftout = low;
/osnet-11/usr/src/lib/libc/port/gen/
H A Dclosefrom.c137 int low = (lowfd < 0)? 0 : lowfd; local
144 (void) close(low++);
145 (void) fdwalk(void_close, &low);
/osnet-11/usr/src/grub/grub2/grub-core/kern/ia64/
H A Ddl.c78 grub_uint32_t high, mid, low, c; local
79 low = (a & 0x00007f);
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
308 *low = 0;
310 *low = (id_t)strtol(range, &range, 10);
313 *high = *low;
330 if (*high < *low) {
332 *high = *low;
333 *low = tmp;
356 id_t low, high; local
371 if (proc_lwp_get_range(range, &low, &high) != 0) {
382 if (id >= low
394 id_t low, high; local
[all...]
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Ddevice.c565 s64 high, low; local
607 low = 0LL;
609 low = high;
610 while (low < high - 1LL) {
611 const s64 mid = (low + high) / 2;
614 low = mid;
619 return (low + 1LL) / block_size;
/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;
117 low = mid + 2;
121 low = mid + 2;
/osnet-11/usr/src/lib/libgen/common/
H A Dreg_step.c64 static int low; variable
311 while (low--) {
333 while (low--)
347 while (low--) {
383 while (low--) {
403 while (low--) {
601 low = *str++ & 0377;
602 size = (*str == (char)255)? 20000: (*str &0377) - low;
/osnet-11/usr/src/grub/grub2/grub-core/mmap/
H A Dmmap.c324 grub_uint64_t iterator, low, high, cur; local
343 low = 0;
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;
354 low = cur;
/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A Dcryptodisk.c133 grub_uint8_t low[GRUB_CRYPTODISK_GF_BYTES]; member in struct:lrw_sector
151 gf_mul_be (sec->low, dev->lrw_key, idx);
178 grub_crypto_xor (b + i, b + i, sec->low, 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;
616 low = mid + 1;
620 while (low < high);
637 for (low = 0; low < pstr->valid_len; low++)
638 pstr->offsets[low] = pstr->offsets[low + offset] - offset;
661 for (low
608 Idx low = 0, high = pstr->valid_len, mid; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/xzembed/
H A Dxz_dec_lzma2.c126 uint16_t low[POS_STATES_MAX][LEN_LOW_SYMBOLS]; member in struct:lzma_len_dec
574 uint32_t low = prev_byte >> (8 - s->lzma.lc); local
576 return s->lzma.literal[low + high];
625 probs = l->low[pos_state];
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-mkimagexx.c212 grub_uint32_t high, mid, low, c; local
213 low = (a & 0x00007f);
216 c = (low | mid | high) + value;
/osnet-11/usr/src/grub/grub-0.97/grub/
H A Dasmstub.c485 /* low-level timing info */
727 /* low-level character I/O */
898 /* low 4 bits */
899 int low = *ptr & 0xf; local
903 grub_printf ("%x%x", hi, low);
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dinit.c2121 int n=0,low; local
2130 if((low=strcmp(name,e_tolower)) && strcmp(name,e_toupper))
2143 if(low==0)
/osnet-11/usr/src/lib/libdtrace_jni/common/
H A Ddtj_util.c979 dtj_int128(JNIEnv *jenv, uint64_t high, uint64_t low) argument
990 low64 = dtj_uint64(jenv, low);
/osnet-11/usr/src/grub/grub2/grub-core/fs/
H A Dbtrfs.c715 grub_uint64_t low; local
719 &low);
724 low + grub_le_to_cpu64 (chunk->stripe_length) * high;
725 csize = grub_le_to_cpu64 (chunk->stripe_length) - low;
731 grub_uint64_t low; local
734 &low);
742 stripe_offset = low + grub_le_to_cpu64 (chunk->stripe_length)
744 csize = grub_le_to_cpu64 (chunk->stripe_length) - low;
H A Dnilfs2.c420 int index, low, high, s;
422 low = 0;
426 while (low <= high)
428 index = (low + high) / 2;
437 low = index + 1;
419 int index, low, high, s; local
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dutf8.c571 /* Call the low level routine asking for checks */
883 UV low = (p[0] << 8) + p[1]; local
885 if (low < 0xdc00 || low >= 0xdfff)
887 uv = ((uv - 0xd800) << 10) + (low - 0xdc00) + 0x10000;
1422 * since any characters in the low 256 are Unicode
1802 Allows length and flags to be passed to low level routine.
/osnet-11/usr/src/cmd/ntfsprogs/
H A Dntfsclone.c1450 s64 high, low; local
1487 low = 0LL;
1489 low = high;
1490 while (low < high - 1LL) {
1491 const s64 mid = (low + high) / 2;
1494 low = mid;
1499 return (low + 1LL);

Completed in 84 milliseconds

12