Searched refs:low (Results 1 - 25 of 425) sorted by last modified time

1234567891011>>

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_mtree.c1528 int high, low; local
1572 low = parse_hex_nibble(digest[i+1]);
1573 if (high == -1 || low == -1) {
1579 digest_buf[j] = high << 4 | low;
H A Darchive_write_set_format_iso9660.c1205 get_num_opt(struct archive_write *a, int *num, int high, int low, argument
1235 if (data < low) {
1238 "option ``%s''", low, key);
2213 joliet_allowed_char(unsigned char high, unsigned char low) argument
2215 int utf16 = (high << 8) | low;
3357 * | 'P'| 'N'| 14 | 01 | dev_t high | dev_t low |
H A Darchive_ppmd7.c1129 UInt32 low = sum; local
1137 RangeEnc_Encode(rc, low, s1->Freq, sum + escFreq);
/freebsd-11-stable/lib/libfetch/
H A Dftp.c627 int low, pasv, verbose; local
634 low = CHECK_FLAG('l');
796 arg = low ? IPV6_PORTRANGE_DEFAULT : IPV6_PORTRANGE_HIGH;
804 arg = low ? IP_PORTRANGE_DEFAULT : IP_PORTRANGE_HIGH;
/freebsd-11-stable/contrib/unbound/util/
H A Dconfig_file.c1627 int i, low, high = atoi(mid+1); local
1640 low = atoi(buf);
1641 if(low == 0 && strcmp(buf, "0") != 0) {
1645 for(i=low; i<=high; i++) {
/freebsd-11-stable/sbin/ipfw/
H A Dipfw2.c149 * (though in fact only the low 5 bits are significant).
1040 uint32_t *low, *high; local
1049 low = (uint32_t *)(cmd + 1);
1050 high = low + 1;
1052 *low = 0;
1073 *low |= 1 << code;
3179 int low, high; local
3194 low = d[0] & 0xff;
3195 high = low + cmd->o.arg1 - 1;
3213 if (a < low ||
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_descrip.c105 static int fd_first_free(struct filedesc *fdp, int low, int size);
176 * If low >= size, just return low. Otherwise find the first zero bit in the
177 * given bitmap, starting at low and not exceeding size - 1. Return size if
181 fd_first_free(struct filedesc *fdp, int low, int size) argument
187 if (low >= size)
188 return (low);
190 off = NDSLOT(low);
191 if (low % NDENTRIES) {
192 mask = ~(~(NDSLOTTYPE)0 >> (NDENTRIES - (low
[all...]
/freebsd-11-stable/contrib/subversion/
H A Dbuild.conf1209 description = Test low-level functionality in libsvn_client
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dfil.c3368 * add back carry outs from top 16 bits to low 16 bits
3370 sum = (sum >> 16) + (sum & 0xffff); /* add hi 16 to low 16 */
8952 /* number of connections considered to be "active" to the low watermark. */
8958 /* CLOSED or both CLOSED and TIME_WAIT brings us to the low watermark, */
8990 /* low water mark is reached. */
8993 ipf_queueflush(softc, deletefn, ipfqs, userqs, activep, size, low)
8998 int size, low;
9010 if ((*activep * 100 / size) > low) {
9019 if ((*activep * 100 / size) <= low) {
9049 while ((*activep * 100 / size) > low) {
[all...]
/freebsd-11-stable/sys/contrib/rdma/krping/
H A Dkrping.c72 uint32_t low, high; local
73 __asm __volatile("rdtsc" : "=a" (low), "=d" (high));
74 return (low | ((u_int64_t)high << 32));
/freebsd-11-stable/sys/x86/x86/
H A Dio_apic.c313 uint32_t low, high; local
325 low = ioapic_read(io->io_addr,
327 if ((low & IOART_INTMASK) == IOART_INTMCLR)
330 low | IOART_INTMSET);
345 &high, &low);
350 intpin->io_lowreg = low;
352 low);
364 low = IOART_DESTPHY;
367 /* Program the rest of the low word. */
369 low |
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Datomic.c113 intptr_t low = hash & SPINLOCK_MASK; local
117 hash ^= low;
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/
H A Dib_cma.c2999 int low, high, remaining; local
3004 inet_get_local_port_range(net, &low, &high);
3005 remaining = (high - low) + 1;
3007 rover = rand % remaining + low;
3023 if ((rover < low) || (rover > high))
3024 rover = low;
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_proto.c3443 double high, low; local
3652 * scan the candidate list first from the low end upwards and
3664 * survivors with offsets not less than low and not greater than
3667 low = 1e9;
3672 * Bound the interval (low, high) as the smallest
3677 low = endpoint[indx[i]].val;
3695 if (high > low)
3717 if (( high <= low
3718 || peer->offset + h < low
5076 * With sys_fuzz set to zero, get_systime() fuzzing of low bit
[all...]
/freebsd-11-stable/sys/dev/mxge/
H A Dif_mxge.c233 BUS_SPACE_MAXADDR, /* low */
862 buf->response_addr.low = htobe32(dma_low);
1533 0, "Wait for IRQ line to go low in ihandler");
1861 uint32_t low, high_swapped; local
1946 low = MXGE_LOWPART_TO_U32(seg->ds_addr);
1977 req->addr_low = htobe32(low);
1985 low += seglen;
2394 * pio handler in the nic. We re-write the first segment's low
2402 uint32_t low; local
2404 low
[all...]
/freebsd-11-stable/sys/dev/bnxt/
H A Dbnxt.h488 struct rx_tpa_start_cmpl low; member in struct:bnxt_full_tpa_start
/freebsd-11-stable/contrib/unbound/sldns/
H A Dstr2wire.c1463 uint32_t low; local
1469 low = (uint32_t)(t);
1471 sldns_write_uint32(rd+2, low);
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c2284 dtrace_aggregate_llquantize_bucket(uint16_t factor, uint16_t low, argument
2293 for (order = 0; order < low; order++)
2298 * low order of magnitude, it goes into the zeroth bucket.
2344 uint16_t low = DTRACE_LLQUANTIZE_LOW(arg); local
2349 low, high, nsteps, nval)] += incr;
11224 uint16_t low = DTRACE_LLQUANTIZE_LOW(desc->dtad_arg);
11232 if (factor < 2 || low >= high || nsteps < factor)
11247 low, high, nsteps, INT64_MAX) + 2) * sizeof (uint64_t);
/freebsd-11-stable/sys/dev/mfi/
H A Dmfi_tbolt.c689 while ((val.u.low != 0xFFFFFFFF) && (val.u.high != 0xFFFFFFFF)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp94 CaseRange(ConstantInt *low, ConstantInt *high, BasicBlock *bb) argument
95 : Low(low), High(high), BB(bb) {}
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp307 // Create an initial mask for the low word with zeros below loBit.
322 // Apply the mask to the low word.
569 /// This function returns the low "numBits" bits of this APInt.
2552 WordType low, mid, high, srcPart;
2565 low = carry;
2568 low = lowHalf(srcPart) * lowHalf(multiplier);
2574 if (low + mid < low)
2576 low += mid;
2581 if (low
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMagic.cpp90 unsigned low = Data2MSB ? 17 : 16; local
92 switch (Magic[low]) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DHashing.h178 inline uint64_t hash_16_bytes(uint64_t low, uint64_t high) { argument
181 uint64_t a = (low ^ high) * kMul;
/freebsd-11-stable/contrib/llvm-project/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c1227 uint32_t low = 0; local
1231 while (low < high) {
1232 uint32_t mid = (low + high) / 2;
1246 low = mid + 1;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp138 bool RemoteAwarePlatform::CalculateMD5(const FileSpec &file_spec, uint64_t &low, argument
141 return Platform::CalculateMD5(file_spec, low, high);
143 return m_remote_platform_sp->CalculateMD5(file_spec, low, high);

Completed in 413 milliseconds

1234567891011>>