Searched refs:minimum (Results 51 - 72 of 72) sorted by relevance

123

/freebsd-13-stable/sys/contrib/v4l/
H A Dvideodev2.h956 __s32 minimum; /* Note signedness */ member in struct:v4l2_queryctrl
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp1465 case Intrinsic::minimum:
1902 return ConstantFP::get(Ty->getContext(), minimum(FractU, AlmostOne));
2286 if (IntrinsicID == Intrinsic::minimum) {
2289 return ConstantFP::get(Ty->getContext(), minimum(C1, C2));
H A DVectorUtils.cpp72 case Intrinsic::minimum:
483 // of connected values must have the same minimum bitwidth.
H A DInstructionSimplify.cpp762 // Op1 is either 0 or the minimum signed value. If the sub is NSW, then
763 // Op1 must be 0 because negating the minimum signed value is undefined.
767 // 0 - X -> X if X is 0 or the minimum signed value.
1010 // Make sure that a constant is not the minimum signed value because taking
1025 // Special-case: we can't take the abs() of a minimum signed value. If
1027 // is also not the minimum signed value.
5333 case Intrinsic::minimum: {
5344 bool PropagateNaN = IID == Intrinsic::minimum || IID == Intrinsic::maximum;
5363 bool UseNegInf = IID == Intrinsic::minnum || IID == Intrinsic::minimum;
H A DValueTracking.cpp459 // We can infer at least the minimum number of known trailing bits
1544 // We need to take the minimum number of known bits
2657 /// minimum number of sign bits. Return 0 if the value is not a vector constant
2659 /// element with the minimum number of sign bits.
2699 /// vector element with the minimum number of known sign bits of the demanded
2724 // We return the minimum number of sign bits that are guaranteed to be present
2842 // be the minimum of the clamp min/max range.
2930 // Take the minimum of all incoming values. This can't infinitely loop
2954 // Collect the minimum number of sign bits that are shared by every vector
2985 "Failed to determine minimum sig
[all...]
/freebsd-13-stable/sys/cam/scsi/
H A Dscsi_sa.h54 u_int8_t minimum[2]; member in struct:scsi_read_block_limits_data
H A Dscsi_sa.c3028 softc->min_blk = scsi_2btoul(rblim->minimum);
/freebsd-13-stable/contrib/unbound/services/
H A Dauthzone.c1794 /* SOA record ends with serial, refresh, retry, expiry, minimum,
1802 /* soa minimum at d->rr_len[0]-4 */
2334 time_t minimum; local
2349 /* last 4 bytes are minimum ttl in network format */
2352 minimum = (time_t)sldns_read_uint32(d->rr_data[0]+(d->rr_len[0]-4));
2353 minimum = d->ttl<minimum?d->ttl:minimum;
2354 d->ttl = minimum;
2356 d->rr_ttl[i] = minimum;
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2140 // Given a constant C that is not the minimum signed value
2239 case Intrinsic::minimum:
2260 NewIID = Intrinsic::minimum;
2262 case Intrinsic::minimum:
2293 case Intrinsic::minimum:
2294 Res = minimum(*C1, *C2);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h112 /// format's minimum, so that the smallest denormal has just the least
1302 /// Implements IEEE 754-2018 minimum semantics. Returns the smaller of 2
1305 inline APFloat minimum(const APFloat &A, const APFloat &B) { function in namespace:llvm
/freebsd-13-stable/sys/contrib/openzfs/module/icp/asm-x86_64/modes/
H A Dghash-x86_64.S94 # and modified for ICP. Modification are kept at a bare minimum to ease later
H A Daesni-gcm-x86_64.S44 # and modified for ICP. Modification are kept at a bare minimum to ease later
/freebsd-13-stable/usr.sbin/bsdinstall/scripts/
H A Dzfsboot276 msg_not_enough_disks_selected="Not enough disks selected. (%u < %u minimum)"
628 f_dprintf "$funcname: %s: %s (%u < %u minimum)" \
715 f_dprintf "$funcname: %s: %s (%u < %u minimum)" \
/freebsd-13-stable/contrib/libevent/
H A Devdns.c1180 u32 serial, refresh, retry, expire, minimum; local
1187 GET32(minimum);
1193 ttl_r = MIN(ttl_r, minimum);
/freebsd-13-stable/contrib/ntp/sntp/libevent/
H A Devdns.c1182 u32 serial, refresh, retry, expire, minimum; local
1189 GET32(minimum);
1195 ttl_r = MIN(ttl_r, minimum);
/freebsd-13-stable/tools/tools/netmap/
H A Dnmreplay.c1445 and minimum tmin (corresponds to an exponential
/freebsd-13-stable/crypto/heimdal/lib/hx509/
H A Dcert.c1865 if (t->val[i].minimum && t->val[i].maximum)
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h891 /// Create call to the minimum intrinsic.
893 return CreateBinaryIntrinsic(Intrinsic::minimum, LHS, RHS, nullptr, Name);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp1247 case Intrinsic::minimum:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2660 // Subtract the minimum value.
6138 case Intrinsic::minimum:
9299 // by individual targets, so we just use the known minimum size here.
9783 // For scalable vectors, use the minimum size; individual targets
H A DDAGCombiner.cpp245 // We use the minimum store size here, since that's all we can guarantee
3106 // N1 is either 0 or the minimum signed value. If the sub is NSW, then
3107 // N1 must be 0 because negating the minimum signed value is undefined.
3111 // 0 - X --> X if X is 0 or the minimum signed value.
13186 // the minimum threshold specified by the target.
13664 // whether the input will fit in the float should depend on the minimum
13974 return visitFMinMax(DAG, N, minimum);
21112 // but the new load must be the minimum (most restrictive) alignment of the
21441 // when optimising for minimum size, we don't want to expand a div to a mul
21482 // when optimising for minimum siz
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp16215 Function *Callee = CGM.getIntrinsic(Intrinsic::minimum,

Completed in 770 milliseconds

123