Searched refs:low (Results 176 - 200 of 425) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/dev/isci/scil/
H A Dscic_sds_port.c442 sas_address->low = 0;
534 sas_address->low += phy->phy_index;
539 sas_address->low = SCIC_SWAP_DWORD(sas_address->low);
545 sas_address->low = 0;
881 && (phy_sas_address.low == port_sas_address.low )
1432 this_port, initiator_sas_address_lo, sas_address.low);
2144 if (port_sas_address.high != 0 && port_sas_address.low != 0)
2154 || (port_sas_address.low !
[all...]
H A Dscic_sds_port_configuration_agent.c113 else if (address_one.low > address_two.low)
117 else if (address_one.low < address_two.low)
332 sas_address.low = 0;
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Dbufferevent-internal.h365 evbuffer_get_length(bufev->input) >= bufev->wm_read.low))
368 evbuffer_get_length(bufev->output) <= bufev->wm_write.low))
/freebsd-11-stable/lib/libc/powerpc/softfloat/
H A Dsoftfloat.h60 unsigned long long low; member in struct:__anon6693
65 unsigned long long high, low; member in struct:__anon6694
/freebsd-11-stable/lib/libc/powerpc64/softfloat/
H A Dsoftfloat.h60 unsigned long long low; member in struct:__anon6700
65 unsigned long long high, low; member in struct:__anon6701
/freebsd-11-stable/lib/libc/rpc/
H A Dclnt_perror.c130 i = snprintf(str, len, "; low version = %u, high version = %u",
131 e.re_vers.low, e.re_vers.high);
159 i = snprintf(str, len, "; low version = %u, high version = %u",
160 e.re_vers.low, e.re_vers.high);
/freebsd-11-stable/lib/libc/softfloat/templates/
H A Dsoftfloat.h55 !!!bits64 low; member in struct:__anon6720
60 !!!bits64 high, low; member in struct:__anon6721
/freebsd-11-stable/lib/libc/arm/softfloat/
H A Dsoftfloat.h60 unsigned long long low; member in struct:__anon6585
65 unsigned long long high, low; member in struct:__anon6586
/freebsd-11-stable/lib/libc/mips/softfloat/
H A Dsoftfloat.h60 unsigned long long low; member in struct:__anon6674
65 unsigned long long high, low; member in struct:__anon6675
/freebsd-11-stable/sys/dev/bnxt/
H A Dbnxt_txrx.c550 if (le16toh(tpas->low.flags_type) & RX_TPA_START_CMPL_FLAGS_RSS_VALID) {
551 ri->iri_flowid = le32toh(tpas->low.rss_hash);
552 bnxt_set_rsstype(ri, tpas->low.rss_hash_type);
561 ri->iri_frags[0].irf_flid = ((tpas->low.opaque >> 16) & 0xff);
562 ri->iri_frags[0].irf_idx = (tpas->low.opaque & 0xffff);
563 ri->iri_frags[0].irf_len = le16toh(tpas->low.len);
564 ri->iri_len = le16toh(tpas->low.len);
647 softc->rx_rings[ri->iri_qsidx].tpa_start[agg_id].low = *rtpa;
/freebsd-11-stable/sys/vm/
H A Dvm_reserv.c402 * must be at or above the given physical address "low" and below the given
416 vm_paddr_t low, vm_paddr_t high, u_long alignment, vm_paddr_t boundary,
537 m = vm_phys_alloc_contig(allocpages, low, high, ulmax(alignment,
594 if (pa < low || pa + size > high || (pa & (alignment - 1)) != 0 ||
954 vm_reserv_reclaim_contig(u_long npages, vm_paddr_t low, vm_paddr_t high, argument
967 if (pa + PAGE_SIZE - size < low) {
968 /* This entire reservation is too low; go to next. */
976 if (pa < low) {
977 /* Start the search for free pages at "low". */
978 low_index = (low
415 vm_reserv_alloc_contig(vm_object_t object, vm_pindex_t pindex, u_long npages, vm_paddr_t low, vm_paddr_t high, u_long alignment, vm_paddr_t boundary, vm_page_t mpred) argument
[all...]
/freebsd-11-stable/sys/contrib/zlib/
H A Dinflate.c344 unsigned low, size; local
359 low = 0;
361 if ((low % 7) == 0) printf("\n ");
362 printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op,
363 state.lencode[low].bits, state.lencode[low].val);
364 if (++low == size) break;
370 low = 0;
372 if ((low
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Dsyms.c1259 long low, high; local
1266 low = 0;
1268 while (low != high)
1270 mid = (high + low) / 2;
1281 low = mid + 1;
/freebsd-11-stable/sys/fs/cd9660/
H A Dcd9660_rrip.c414 u_int high, low; local
417 low = isonum_733(p->dev_t_low);
420 ana->inop->inode.iso_rdev = makedev(major(low), minor(low));
422 ana->inop->inode.iso_rdev = makedev(high, minor(low));
/freebsd-11-stable/contrib/byacc/
H A Dlalr.c254 int low; local
258 low = goto_map[symbol];
263 assert(low <= high);
264 middle = (low + high) >> 1;
269 low = middle + 1;
/freebsd-11-stable/usr.sbin/ppp/
H A Dnat_cmd.c347 StrToPortRange(const char *str, u_short *low, u_short *high, const char *proto) argument
356 res = StrToPort(str, low, proto);
365 *high = *low;
372 StrToAddrAndPort(const char *str, struct in_addr *addr, u_short *low, argument
390 return StrToPortRange(colon + 1, low, high, proto);
/freebsd-11-stable/contrib/gcc/
H A Dtree.c23 /* This file contains the low level primitives for operating on tree nodes,
704 build_int_cst (tree type, HOST_WIDE_INT low)
706 return build_int_cst_wide (type, low, low < 0 ? -1 : 0);
712 build_int_cstu (tree type, unsigned HOST_WIDE_INT low)
714 return build_int_cst_wide (type, low, 0);
727 build_int_cst_type (tree type, HOST_WIDE_INT low)
729 unsigned HOST_WIDE_INT val = (unsigned HOST_WIDE_INT) low;
742 negative = (low < 0);
812 build_int_cst_wide (tree type, unsigned HOST_WIDE_INT low, HOST_WIDE_IN
700 build_int_cst(tree type, HOST_WIDE_INT low) argument
708 build_int_cstu(tree type, unsigned HOST_WIDE_INT low) argument
723 build_int_cst_type(tree type, HOST_WIDE_INT low) argument
808 build_int_cst_wide(tree type, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi) argument
918 unsigned HOST_WIDE_INT low; local
1356 HOST_WIDE_INT high, low; local
1417 HOST_WIDE_INT high, low; local
1455 HOST_WIDE_INT high, low; local
[all...]
H A Dfold-const.c174 encode (HOST_WIDE_INT *words, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
176 words[0] = LOWPART (low);
177 words[1] = HIGHPART (low);
187 decode (HOST_WIDE_INT *words, unsigned HOST_WIDE_INT *low,
190 *low = words[0] + words[1] * BASE;
214 unsigned HOST_WIDE_INT low;
221 low = TREE_INT_CST_LOW (t);
244 low &= ~((HOST_WIDE_INT) (-1) << prec);
260 if ((HOST_WIDE_INT)low < 0)
266 if (low
173 encode(HOST_WIDE_INT *words, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi) argument
186 decode(HOST_WIDE_INT *words, unsigned HOST_WIDE_INT *low, HOST_WIDE_INT *hi) argument
212 unsigned HOST_WIDE_INT low; local
1525 unsigned HOST_WIDE_INT low; local
1992 HOST_WIDE_INT high, low; local
3942 tree low, high, n_low, n_high; local
4220 build_range_check(tree type, tree exp, int in_p, tree low, tree high) argument
4397 tree low, high; local
4885 tree low0, low1, low, high0, high1, high; local
10250 HOST_WIDE_INT low = (TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)) local
12996 unsigned HOST_WIDE_INT low; local
13044 unsigned HOST_WIDE_INT low; local
[all...]
/freebsd-11-stable/contrib/gcc/config/arm/
H A Darm.h1148 HOST_WIDE_INT low, high; \
1151 low = ((val & 0xf) ^ 0x8) - 0x8; \
1154 low = val >= 0 ? (val & 0xff) : -((-val) & 0xff); \
1159 low = val >= 0 ? (val & 0xfff) : -((-val) & 0xfff); \
1162 low = val >= 0 ? (val & 0xff) : -((-val) & 0xff); \
1166 low = val >= 0 ? (val & 0x3ff) : -((-val) & 0x3ff); \
1170 high = ((((val - low) & (unsigned HOST_WIDE_INT) 0xffffffff) \
1174 if (low == 0 || high == 0 || (high + low != val)) \
1177 /* Reload the high part into a base reg; leave the low par
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_resource.c97 int error, low; local
100 low = PRIO_MAX + 1;
105 low = td->td_proc->p_nice;
111 low = p->p_nice;
133 if (p->p_nice < low)
134 low = p->p_nice;
150 if (p->p_nice < low)
151 low = p->p_nice;
162 if (low == PRIO_MAX + 1 && error == 0)
164 td->td_retval[0] = low;
[all...]
/freebsd-11-stable/contrib/libgnuregex/
H A Dregex_internal.c608 int low = 0, high = pstr->valid_len, mid;
611 mid = (high + low) / 2;
615 low = mid + 1;
619 while (low < high);
636 for (low = 0; low < pstr->valid_len; low++)
637 pstr->offsets[low] = pstr->offsets[low + offset] - offset;
660 for (low
607 int low = 0, high = pstr->valid_len, mid; local
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dhashtab.c172 unsigned int low = 0; local
175 while (low != high)
177 unsigned int mid = low + (high - low) / 2;
179 low = mid + 1;
185 if (n > prime_tab[low].prime)
191 return low;
831 high bits or all three low bits, whether the original value of a,b,c
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dhashtab.c172 unsigned int low = 0; local
175 while (low != high)
177 unsigned int mid = low + (high - low) / 2;
179 low = mid + 1;
185 if (n > prime_tab[low].prime)
191 return low;
831 high bits or all three low bits, whether the original value of a,b,c
/freebsd-11-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma_decoder.c45 probs = ld.low[pos_state];\
123 rc_bit_case(ld.low[pos_state][symbol], , , seq ## _LOW0); \
124 rc_bit_case(ld.low[pos_state][symbol], , , seq ## _LOW1); \
125 rc_bit_case(ld.low[pos_state][symbol], , , seq ## _LOW2); \
164 probability low[POS_STATES_MAX][LEN_LOW_SYMBOLS]; member in struct:__anon40
549 // Prepare to decode the low bits for
916 bittree_reset(coder->match_len_decoder.low[pos_state],
921 bittree_reset(coder->rep_len_decoder.low[pos_state],
/freebsd-11-stable/tools/test/testfloat/
H A Dslowfloat-32.c383 ax.sig.a1 = a.low;
433 z.low = 0;
438 z.low = 0;
443 z.high = z.low = 0xFFFFFFFF;
494 z.low = 0;
499 z.low = 0xFFFFFFFF;
508 z.low = 0;
513 z.low = 0xFFFFFFFF;
545 z.low = zx.sig.a1;

Completed in 232 milliseconds

1234567891011>>