Searched refs:hi (Results 1 – 12 of 12) sorted by relevance
/busybox-1.35.0/shell/hush_test/hush-heredoc/ |
D | heredoc.right | 5 hi\ 8 hi\ 12 hi 13 hi
|
D | heredoc.tests | 4 hi 27 hi\ 35 hi\ 45 hi 50 hi 96 #hush# hi
|
/busybox-1.35.0/shell/ash_test/ash-heredoc/ |
D | heredoc.right | 5 hi\ 8 hi\ 12 hi 20 hi
|
D | heredoc.tests | 4 hi 27 hi\ 35 hi\ 45 hi 50 #ash# hi 93 hi
|
/busybox-1.35.0/coreutils/ |
D | shuf.c | 97 unsigned long long hi; in shuf_main() local 109 hi = xatoull(dash + 1); in shuf_main() 111 if (hi < lo) in shuf_main() 113 hi -= lo; in shuf_main() 115 if (hi >= UINT_MAX) in shuf_main() 118 if (hi >= UINT_MAX / sizeof(lines[0])) in shuf_main() 122 numlines = hi + 1; in shuf_main()
|
/busybox-1.35.0/archival/libarchive/bz/ |
D | blocksort.c | 67 int32_t hi) in fallbackSimpleSort() argument 72 if (lo == hi) return; in fallbackSimpleSort() 74 if (hi - lo > 3) { in fallbackSimpleSort() 75 for (i = hi-4; i >= lo; i--) { in fallbackSimpleSort() 78 for (j = i+4; j <= hi && ec_tmp > eclass[fmap[j]]; j += 4) in fallbackSimpleSort() 84 for (i = hi-1; i >= lo; i--) { in fallbackSimpleSort() 87 for (j = i+1; j <= hi && ec_tmp > eclass[fmap[j]]; j++) in fallbackSimpleSort() 128 int32_t lo, hi; in fallbackQSort3() local 134 fpop(lo, hi); in fallbackQSort3() 135 if (hi - lo < FALLBACK_QSORT_SMALL_THRESH) { in fallbackQSort3() [all …]
|
/busybox-1.35.0/util-linux/ |
D | switch_root.c | 132 unsigned lo, hi; in drop_usermodehelper() local 142 ret = sscanf(buf, "%u %u", &lo, &hi); in drop_usermodehelper() 149 hi &= ~(1 << (cap_idx - 32)); in drop_usermodehelper() 152 fdprintf(fd, "%u %u", lo, hi); in drop_usermodehelper()
|
/busybox-1.35.0/editors/ |
D | awk.c | 701 hash_item *hi, *thi; in hash_clear() local 704 hi = hash->items[i]; in hash_clear() 705 while (hi) { in hash_clear() 706 thi = hi; in hash_clear() 707 hi = hi->next; in hash_clear() 729 hash_item *hi; in hash_search3() local 731 hi = hash->items[idx % hash->csize]; in hash_search3() 732 while (hi) { in hash_search3() 733 if (strcmp(hi->name, name) == 0) in hash_search3() 734 return &hi->data; in hash_search3() [all …]
|
/busybox-1.35.0/shell/ash_test/ash-psubst/ |
D | bash_procsub.tests | 19 x=>(tr '[:lower:]' '[:upper:]') f <(echo 'hi there')
|
/busybox-1.35.0/networking/ |
D | netstat.c | 208 unsigned hi = PRG_HASHIT(inode); in prg_cache_add() local 212 for (pnp = prg_hash + hi; (pn = *pnp) != NULL; pnp = &pn->next) { in prg_cache_add() 227 unsigned hi = PRG_HASHIT(inode); in prg_cache_get() local 230 for (pn = prg_hash[hi]; pn; pn = pn->next) in prg_cache_get()
|
D | tls_sp_c32.c | 799 uint64_t lo, hi; in sp_256_mul_add_4() local 803 hi = (b << 32) - b; /* make lower 32 bits of "hi", part 1 */ in sp_256_mul_add_4() 805 lo = hi << 32; /* (use "hi" value to calculate "lo",... */ in sp_256_mul_add_4() 808 hi >>= 32; /* make lower 32 bits of "hi", part 2 */ in sp_256_mul_add_4() 809 hi |= (b << 32); /* combine lower and upper 32 bits */ in sp_256_mul_add_4() 810 t64u += hi; /* consume "hi" */ in sp_256_mul_add_4()
|
/busybox-1.35.0/libbb/ |
D | pw_encrypt_des.c | 281 uint8_t lo, hi; in const_des_init() local 282 hi = u_sbox[(b << 1)][i / 2]; in const_des_init() 284 hi <<= 4; in const_des_init() 288 m_sbox[b][(i << 6) | j] = (hi & 0xf0) | (lo & 0x0f); in const_des_init()
|