Home
last modified time | relevance | path

Searched refs:hi (Results 1 – 12 of 12) sorted by relevance

/busybox-1.35.0/shell/hush_test/hush-heredoc/
Dheredoc.right5 hi\
8 hi\
12 hi
13 hi
Dheredoc.tests4 hi
27 hi\
35 hi\
45 hi
50 hi
96 #hush# hi
/busybox-1.35.0/shell/ash_test/ash-heredoc/
Dheredoc.right5 hi\
8 hi\
12 hi
20 hi
Dheredoc.tests4 hi
27 hi\
35 hi\
45 hi
50 #ash# hi
93 hi
/busybox-1.35.0/coreutils/
Dshuf.c97 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/
Dblocksort.c67 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/
Dswitch_root.c132 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/
Dawk.c701 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/
Dbash_procsub.tests19 x=>(tr '[:lower:]' '[:upper:]') f <(echo 'hi there')
/busybox-1.35.0/networking/
Dnetstat.c208 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()
Dtls_sp_c32.c799 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/
Dpw_encrypt_des.c281 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()