Home
last modified time | relevance | path

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

/busybox-1.35.0/networking/
Dtls_pstm.c1257 uint32 high = rem >> 32; in psDiv64() local
1259 if (high >= denominator) { in psDiv64()
1260 high /= denominator; in psDiv64()
1261 res = (uint64) high << 32; in psDiv64()
1262 rem -= (uint64) (high * denominator) << 32; in psDiv64()
1289 uint64 high = rem >> 64; in psDiv128() local
1291 if (high >= denominator) { in psDiv128()
1292 high /= denominator; in psDiv128()
1293 res = (uint128) high << 64; in psDiv128()
1294 rem -= (uint128) (high * denominator) << 64; in psDiv128()
Dntpd.c1165 double low, high; in select_and_cluster() local
1233 high = - (1 << 9); in select_and_cluster()
1254 high = point[i].edge; in select_and_cluster()
1265 if (num_midpoints <= num_falsetickers && low < high) in select_and_cluster()
1276 low, high, num_candidates, num_falsetickers); in select_and_cluster()
1287 if (point[i].edge < low || point[i].edge > high) in select_and_cluster()
/busybox-1.35.0/archival/libarchive/unxz/
Dxz_dec_lzma2.c129 uint16_t high[LEN_HIGH_SYMBOLS]; member
578 uint32_t high = (s->dict.pos & s->lzma.literal_pos_mask) << s->lzma.lc; in lzma_literal_probs() local
579 return s->lzma.literal[low + high]; in lzma_literal_probs()
637 probs = l->high; in lzma_len()
/busybox-1.35.0/examples/bootfloppy/
Dbootfloppy.txt147 the timeout to 0 (or omit) to boot instantly, or you can set it as high as
/busybox-1.35.0/util-linux/
Dfdisk.c293 static sector_t read_int(sector_t low, sector_t dflt, sector_t high, sector_t base, const char *mes…
1590 read_int(sector_t low, sector_t dflt, sector_t high, sector_t base, const char *mesg) in read_int() argument
1596 if (dflt < low || dflt > high) { in read_int()
1606 printf(fmt, mesg, low, high, dflt); in read_int()
1690 if (value >= low && value <= high) in read_int()
/busybox-1.35.0/networking/udhcp/
DConfig.src130 This option controls how high it can be cranked up.
/busybox-1.35.0/miscutils/
Dbc.c1290 size_t low = 0, high = v->len; in bc_map_find_ge() local
1292 while (low < high) { in bc_map_find_ge()
1293 size_t mid = (low + high) / 2; in bc_map_find_ge()
1300 high = mid; in bc_map_find_ge()