Home
last modified time | relevance | path

Searched full:bound (Results 1 – 25 of 1527) sorted by relevance

12345678910>>...62

/freebsd-src/sys/contrib/pcg-c/include/
H A Dpcg_variants.h843 * bound, which we do by dropping output less than a threshold.
847 * uint32_t threshold = 0x100000000ull % bound;
852 * uint32_t threshold = (0x100000000ull-bound) % bound;
874 uint8_t bound) in pcg_oneseq_16_xsh_rs_8_boundedrand_r() argument
876 uint8_t threshold = ((uint8_t)(-bound)) % bound; in pcg_oneseq_16_xsh_rs_8_boundedrand_r()
880 return r % bound; in pcg_oneseq_16_xsh_rs_8_boundedrand_r()
892 uint16_t bound) in pcg_oneseq_32_xsh_rs_16_boundedrand_r() argument
894 uint16_t threshold = ((uint16_t)(-bound)) % bound; in pcg_oneseq_32_xsh_rs_16_boundedrand_r()
898 return r % bound; in pcg_oneseq_32_xsh_rs_16_boundedrand_r()
910 uint32_t bound) in pcg_oneseq_64_xsh_rs_32_boundedrand_r() argument
[all …]
/freebsd-src/lib/libpmc/pmu-events/arch/arm64/hisilicon/hip08/
H A Dmetrics.json4 "PublicDescription": "Frontend bound L1 topdown metric",
5 "BriefDescription": "Frontend bound L1 topdown metric",
25 "PublicDescription": "Backend Bound L1 topdown metric",
26 "BriefDescription": "Backend Bound L1 topdown metric",
32 "PublicDescription": "Fetch latency bound L2 topdown metric",
33 "BriefDescription": "Fetch latency bound L2 topdown metric",
39 "PublicDescription": "Fetch bandwidth bound L2 topdown metric",
40 "BriefDescription": "Fetch bandwidth bound L2 topdown metric",
60 "PublicDescription": "Core bound L2 topdown metric",
61 "BriefDescription": "Core bound L2 topdown metric",
[all …]
/freebsd-src/sys/contrib/dev/mediatek/mt76/mt7603/
H A Ddebugfs.c76 int bound[3], i, range; in mt7603_ampdu_stat_show() local
79 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt7603_ampdu_stat_show()
80 bound[i] = MT_AGG_ASRCR_RANGE(range, i) + 1; in mt7603_ampdu_stat_show()
82 seq_printf(file, "Length: %8d | ", bound[0]); in mt7603_ampdu_stat_show()
83 for (i = 0; i < ARRAY_SIZE(bound) - 1; i++) in mt7603_ampdu_stat_show()
85 bound[i], bound[i + 1]); in mt7603_ampdu_stat_show()
87 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt7603_ampdu_stat_show()
/freebsd-src/contrib/ofed/libibverbs/man/
H A Dibv_alloc_mw.323 The MW is created not bound. For it to be useful, the MW must be bound, through either ibv_bind_mw …
24 Once bound, the memory window allows RDMA (remote) access to a subset of the MR to which it was bou…
29 Unbinds in case was previously bound and deallocates the MW
45 fails if any memory window is still bound to this MR.
/freebsd-src/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DStencil.h11 /// parameterized by named references to (bound) AST nodes. Given a match
72 /// Generates the source of the expression bound to \p Id, wrapping it in
78 /// Constructs an idiomatic dereferencing of the expression bound to \p ExprId.
83 /// the expression bound to \p ExprId, including wrapping it in parentheses, if
88 /// expression bound to \p ExprId. \p ExprId is wrapped in parentheses, if
93 /// idiomatically takes the address of the expression bound to \p ExprId,
99 /// object bound to \p BaseId. The access is constructed idiomatically: if \p
100 /// BaseId is bound to `e` and \p Member identifies member `m`, then returns
108 /// Chooses between the two stencil parts, based on whether \p ID is bound in
112 /// Chooses between the two strings, based on whether \p ID is bound in the
[all …]
H A DMatchConsumer.h26 /// A failable computation over nodes bound by AST matchers.
38 /// to be bound by AST matchers, but it was not actually bound.
41 "Id not bound: " + Id); in notBoundError()
44 /// Chooses between the two consumers, based on whether \p ID is bound in the
55 /// A failable computation over nodes bound by AST matchers, with (limited)
H A DRangeSelector.h11 /// which select source ranges based on (bound) AST nodes.
37 /// Convenience version of \c range where end-points are bound nodes.
85 // Given a \c CallExpr (bound to \p ID), selects the arguments' source text (all
89 // Given a \c CXXConstructExpr (bound to \p ID), selects the
94 // Given a \c CompoundStmt (bound to \p ID), selects the source of the
98 // Given a \c InitListExpr (bound to \p ID), selects the range of the elements
102 /// Given an \IfStmt (bound to \p ID), selects the range of the else branch,
/freebsd-src/sys/kern/
H A Dsubr_prng.c56 pcg64u_boundedrand_r(pcg64u_random_t *state64, uint64_t bound) in pcg64u_boundedrand_r() argument
58 uint64_t threshold = -bound % bound; in pcg64u_boundedrand_r()
62 return (r % bound); in pcg64u_boundedrand_r()
98 prng32_bounded(uint32_t bound) in prng32_bounded() argument
103 r = pcg32u_boundedrand_r(DPCPU_PTR(pcpu_prng32_state), bound); in prng32_bounded()
120 prng64_bounded(uint64_t bound) in prng64_bounded() argument
125 r = pcg64u_boundedrand_r(DPCPU_PTR(pcpu_prng64_state), bound); in prng64_bounded()
/freebsd-src/share/man/man9/
H A Dprng.936 .Fn prng32_bounded "uint32_t bound"
40 .Fn prng64_bounded "uint64_t bound"
72 .It Fn prng32_bounded bound
73 Generate an integer uniformly in the range [0, bound-1].
76 .It Fn prng64_bounded bound
77 Generate an integer uniformly in the range [0, bound-1].
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundChecker.cpp10 // which looks for an out-of-bound array element access.
28 const BugType BT{this, "Out-of-bound array access"};
38 // Check for out of bound array element access. in checkLocation()
50 // Zero index is always in bound, this also passes ElementRegions created for in checkLocation()
74 BT, "Access out-of-bound array element (buffer overflow)", N); in checkLocation()
81 // Array bound check succeeded. From this point forward the array bound in checkLocation()
/freebsd-src/sys/contrib/dev/mediatek/mt76/
H A Dmt792x_debugfs.c11 int bound[15], range[4], i; in mt792x_ampdu_stat_read_phy() local
22 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt792x_ampdu_stat_read_phy()
23 bound[i] = MT_MIB_ARNCR_RANGE(range[i / 4], i % 4) + 1; in mt792x_ampdu_stat_read_phy()
27 seq_printf(file, "Length: %8d | ", bound[0]); in mt792x_ampdu_stat_read_phy()
28 for (i = 0; i < ARRAY_SIZE(bound) - 1; i++) in mt792x_ampdu_stat_read_phy()
29 seq_printf(file, "%3d %3d | ", bound[i] + 1, bound[i + 1]); in mt792x_ampdu_stat_read_phy()
32 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt792x_ampdu_stat_read_phy()
/freebsd-src/contrib/llvm-project/clang/include/clang/AST/
H A DExprOpenMP.h114 /// Normalized upper bound. Normalized loop iterates from 0 to Upper with in getBeginLoc()
/freebsd-src/contrib/ofed/librdmacm/man/
H A Drdma_resolve_addr.325 be bound to a local device.
33 If a source address is given, the rdma_cm_id is bound to that
35 address is given, and the rdma_cm_id has not yet been bound to a device,
36 then the rdma_cm_id will be bound to a source address based on the
37 local routing tables. After this call, the rdma_cm_id will be bound to
H A Drdma_listen.318 lookup. The listen will be restricted to the locally bound source
24 Users must have bound the rdma_cm_id to a local address by calling
26 bound to a specific IP address, the listen will be restricted to that
27 address and the associated RDMA device. If the rdma_cm_id is bound
H A Drdma_get_src_port.34 rdma_get_src_port \- Returns the local port number of a bound rdma_cm_id.
14 Returns the local port number for an rdma_cm_id that has been bound to
18 the rdma_cm_id is not bound to a port, the returned value is 0.
/freebsd-src/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp613 LLVM_DEBUG(dbgs() << "\t\tupper bound = " << UpperBound << "\n"); in intersectConstraints()
1110 const SCEV *Bound = SE->getMinusSCEV(S, Size); in isKnownLessThan() local
1111 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Bound)) { in isKnownLessThan()
1148 // Loop bound may be smaller (e.g., a char).
1149 // Should zero extend loop bound, since it's always >= 0.
1150 // This routine collects upper bound and extends or truncates if needed.
1153 // Return null if no bound available.
1222 // loop's upper bound. If a dependence exists, the dependence direction is
1427 // Check Delta/(2*ConstCoeff) against upper loop bound in weakCrossingSIVtest()
1630 // New bound chec in exactSIVtest()
2616 BoundInfo *Bound = new BoundInfo[MaxLevels + 1]; banerjeeMIVtest() local
2686 exploreDirections(unsigned Level,CoefficientInfo * A,CoefficientInfo * B,BoundInfo * Bound,const SmallBitVector & Loops,unsigned & DepthExpanded,const SCEV * Delta) const exploreDirections() argument
2804 testBounds(unsigned char DirKind,unsigned Level,BoundInfo * Bound,const SCEV * Delta) const testBounds() argument
2832 findBoundsALL(CoefficientInfo * A,CoefficientInfo * B,BoundInfo * Bound,unsigned K) const findBoundsALL() argument
2871 findBoundsEQ(CoefficientInfo * A,CoefficientInfo * B,BoundInfo * Bound,unsigned K) const findBoundsEQ() argument
2911 findBoundsLT(CoefficientInfo * A,CoefficientInfo * B,BoundInfo * Bound,unsigned K) const findBoundsLT() argument
2955 findBoundsGT(CoefficientInfo * A,CoefficientInfo * B,BoundInfo * Bound,unsigned K) const findBoundsGT() argument
[all...]
/freebsd-src/contrib/libfido2/src/
H A Dcompress.c11 #define BOUND (1024UL * 1024UL) macro
22 if (in->len > ULONG_MAX || (ilen = (u_long)in->len) > BOUND || in rfc1950_inflate()
23 origsiz > ULONG_MAX || (olen = (u_long)origsiz) > BOUND) { in rfc1950_inflate()
55 if (in->len > UINT_MAX || (ilen = (u_int)in->len) > BOUND || in rfc1951_inflate()
56 origsiz > UINT_MAX || (olen = (u_int)origsiz) > BOUND) { in rfc1951_inflate()
110 if (in->len > UINT_MAX || (ilen = (u_int)in->len) > BOUND) { in rfc1951_deflate()
120 olen = BOUND; in rfc1951_deflate()
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopBoundSplit.cpp1 //===------- LoopBoundSplit.cpp - Split Loop Bound --------------*- C++ -*-===//
22 #define DEBUG_TYPE "loop-bound-split"
40 /// Bound llvm value
44 /// Bound SCEV
60 // Locate AddRec in LHSSCEV and Bound in RHSSCEV. in analyzeICmp()
91 // For non-exit condtion, if pred is LT, keep existing bound. in calculateUpperBound()
97 // AddRec <= Bound --> AddRec < Bound + 1 in calculateUpperBound()
108 // Check Bound < INT_MAX in calculateUpperBound()
152 // Calculate upper bound in hasProcessableCondition()
[all...]
/freebsd-src/sys/contrib/xen/
H A Devent_channel.h109 * pending, before it was bound, EVTCHNOP_bind_interdomain always sets
137 * re-bound via EVTCHNOP_bind_vcpu.
138 * 3. Per-vcpu VIRQs may be bound to at most one event channel per vcpu.
139 * The allocated event channel is bound to the specified vcpu and the
154 * 1. A physical IRQ may be bound to at most one event channel per domain.
170 * 1. The allocated event channel is bound to the specified vcpu. The binding
217 #define EVTCHNSTAT_pirq 3 /* Channel is bound to a phys IRQ line. */
218 #define EVTCHNSTAT_virq 4 /* Channel is bound to a virtual IRQ line */
219 #define EVTCHNSTAT_ipi 5 /* Channel is bound to a virtual IPI line */
221 uint32_t vcpu; /* VCPU to which this channel is bound. */
[all …]
/freebsd-src/lib/libpmc/pmu-events/arch/x86/jaketown/
H A Djkt-metrics.json7Bound denotes unutilized issue-slots when there is no Backend stall; i.e. bubbles where Frontend d…
14Bound denotes unutilized issue-slots when there is no Backend stall; i.e. bubbles where Frontend d…
36 …oth categorized under Backend Bound. Backend Bound is further divided into two main categories: Me…
43 …oth categorized under Backend Bound. Backend Bound is further divided into two main categories: Me…
/freebsd-src/contrib/llvm-project/clang/include/clang/Tooling/
H A DRefactoringCallbacks.h76 /// Replace the text of the statement bound to \c FromId with the text in
88 /// Replace the text of an AST node bound to \c FromId with the result of
92 /// replaced by the text of the node bound to ${NodeName}. The string
111 /// Replace the text of the statement bound to \c FromId with the text of
112 /// the statement bound to \c ToId.
123 /// Replace an if-statement bound to \c Id with the outdented text of its
/freebsd-src/sys/sys/
H A Dpidctrl.h87 #define PIDCTRL_BOUND 4 /* Bound factor, setpoint multiple. */
92 int bound, int Kpd, int Kid, int Kdd);
97 * [-bound, bound] and the output may be negative. This should be used
109 * reduce it by doing work. As such the integral is bound between [0, bound]
/freebsd-src/lib/libpmc/pmu-events/arch/x86/sandybridge/
H A Dsnb-metrics.json7Bound denotes unutilized issue-slots when there is no Backend stall; i.e. bubbles where Frontend d…
14Bound denotes unutilized issue-slots when there is no Backend stall; i.e. bubbles where Frontend d…
36 …oth categorized under Backend Bound. Backend Bound is further divided into two main categories: Me…
43 …oth categorized under Backend Bound. Backend Bound is further divided into two main categories: Me…
/freebsd-src/contrib/ncurses/man/
H A Dkey_defined.3x45 It permits an application to determine if a string is currently bound
48 If the string is bound to a keycode, its value (greater than zero) is returned.
49 If no keycode is bound, zero is returned.
51 which are bound to keys, \-1 is returned.
/freebsd-src/sbin/dhclient/
H A Ddhclient-script.873 .Li MEDIUM , PREINIT , ARPCHECK , ARPSEND , BOUND , RENEW , REBIND , REBOOT ,
125 .It Li BOUND
168 to the bound IP address
173 .Li BOUND ,
179 if a local route to the bound address is being configured, the old local
184 .Li BOUND .
194 .Li BOUND .
213 .Li BOUND .

12345678910>>...62