Home
last modified time | relevance | path

Searched refs:bounded (Results 1 – 25 of 146) sorted by relevance

123456

/third_party/boost/libs/lockfree/test/
Dfreelist_test.cpp54 bool bounded>
62 if (bounded) in run_test()
66 dummy * allocated = fl.template construct<threadsafe, bounded>(); in run_test()
76 nodes.insert(fl.template construct<threadsafe, bounded>()); in run_test()
82 nodes.insert(fl.template construct<threadsafe, bounded>()); in run_test()
84 if (bounded) in run_test()
88 template <bool bounded>
91 run_test<boost::lockfree::detail::freelist_stack<dummy>, true, bounded>(); in run_tests()
92 run_test<boost::lockfree::detail::freelist_stack<dummy>, false, bounded>(); in run_tests()
93 run_test<boost::lockfree::detail::fixed_size_freelist<dummy>, true, bounded>(); in run_tests()
[all …]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
DFontInputStream.java91 private boolean bounded; field in FontInputStream
111 this.bounded = true; in FontInputStream()
116 if (this.bounded && this.position >= this.length) { in read()
128 if (this.bounded && this.position >= this.length) { in read()
131 int bytesToRead = bounded ? (int) Math.min(len, this.length - this.position) : len; in read()
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
DFontInputStream.java91 private boolean bounded; field in FontInputStream
111 this.bounded = true; in FontInputStream()
116 if (this.bounded && this.position >= this.length) { in read()
128 if (this.bounded && this.position >= this.length) { in read()
131 int bytesToRead = bounded ? (int) Math.min(len, this.length - this.position) : len; in read()
/third_party/skia/src/pathops/
DSkPathOpsTSect.cpp49 SkTSpanBounded* bounded = heap->make<SkTSpanBounded>(); in addBounded() local
50 bounded->fBounded = span; in addBounded()
51 bounded->fNext = fBounded; in addBounded()
52 fBounded = bounded; in addBounded()
154 SkTSpanBounded* bounded = fBounded; in findOppSpan() local
155 while (bounded) { in findOppSpan()
156 SkTSpan* test = bounded->fBounded; in findOppSpan()
160 bounded = bounded->fNext; in findOppSpan()
342 SkTSpanBounded* bounded = fBounded; in oppT() local
343 while (bounded) { in oppT()
[all …]
/third_party/flutter/skia/src/pathops/
DSkPathOpsTSect.cpp48 SkTSpanBounded* bounded = heap->make<SkTSpanBounded>(); in addBounded() local
49 bounded->fBounded = span; in addBounded()
50 bounded->fNext = fBounded; in addBounded()
51 fBounded = bounded; in addBounded()
153 SkTSpanBounded* bounded = fBounded; in findOppSpan() local
154 while (bounded) { in findOppSpan()
155 SkTSpan* test = bounded->fBounded; in findOppSpan()
159 bounded = bounded->fNext; in findOppSpan()
341 SkTSpanBounded* bounded = fBounded; in oppT() local
342 while (bounded) { in oppT()
[all …]
/third_party/boost/libs/icl/doc/
Dfunctions_interval_construct.qbk47 … [For dynamically bounded intervals this function constructs an
64 `` ] [For dynamically bounded intervals there are…
76 … The library default uses ['*dynamically bounded intervals*]. You
77 … can switch to ['*statically bounded intervals*] by
90 … This works with the statically bounded intervals as well,
96 // library default is the statically bounded right_open_interval
110 [[[link boost_icl.examples.dynamic_interval ['*Example: Dynamically bounded intervals and the libra…
111 [[[link boost_icl.examples.static_interval ['*Example: Statically bounded intervals, changing the …
Dintroduction.qbk204 [[statically bounded] [asymmetric][__ro_itv__] ]
208 [[dynamically bounded][] [__dc_itv__] ]
212 Statically bounded intervals always have the same kind of interval borders,
213 e.g. right open borders`[a..b)` for __ro_itv__. Dynamically bounded intervals
Dinterface.qbk21 In the *icl* we have two groups of interval types. There are ['*statically bounded*] intervals,
26 that always have the the same kind of interval borders and ['*dynamically bounded*] intervals,
34 [[statically bounded] [asymmetric][__ro_itv__] [`<class DomainT, template<class>class Compar…
38 [[dynamically bounded][] [__dc_itv__] []]
47 [[statically bounded] [asymmetric][__ro_itv__] [yes] [yes] ]
51 [[dynamically bounded][] [__dc_itv__] [yes] [ ] ]
56 of the /statically bounded/ group is __ro_itv__. For discrete domain types
127 the library uses only statically bounded __ro_itv__ as default interval type.
139 that matches the library default for statically bounded intervals: __ro_itv__.
Dfunctions_interval_orderings.qbk41 dynamically bounded ones.
/third_party/boost/boost/spirit/home/classic/core/composite/
Ddirectives.hpp548 struct bounded struct
549 : public unary<ParserT, parser<bounded<ParserT, BoundsT> > >
551 typedef bounded<ParserT, BoundsT> self_t; argument
562 bounded(ParserT const& p, BoundsT const& min__, BoundsT const& max__) in bounded() function
590 bounded<DerivedT, BoundsT>
592 { return bounded<DerivedT, BoundsT>(p.derived(), min_, max_); } in operator []()
/third_party/boost/boost/geometry/formulas/
Dsjoberg_intersection.hpp207 using math::detail::bounded; in sjoberg_d_lambda_e_sqr()
217 CT const asin_B = asin(bounded(sin_beta / sqrt_1_Cj_sqr, -c1, c1)); in sjoberg_d_lambda_e_sqr()
236 CT const sqrt_Y = math::sqrt(bounded(-X_sqr + one_minus_Cj_sqr, c0)); in sjoberg_d_lambda_e_sqr()
419 using math::detail::bounded; in lon_diff()
436 CT const asin_t_t0j = asin(bounded(t_t0j, -c1, c1)); in lon_diff()
482 using math::detail::bounded; in lon_diffs()
501 CT const asin_t_t0j = asin(bounded(t_t0j, -c1, c1)); in lon_diffs()
512 using math::detail::bounded; in lon()
530 CT const asin_t_t0j = asin(bounded(t_t0j, -c1, c1)); in lon()
1157 using math::detail::bounded; in converge_07_one_geod()
[all …]
/third_party/boost/libs/spirit/doc/qi/
Dnumeric.qbk252 [[`std::numeric_limits<T>::is_bounded`] [`true` or `false` if `T` bounded.]]
254 Required only if `T` is bounded.]]
256 Required only if `T` is bounded.]]
258 Required only if `T` is bounded.]]
260 Required only if `T` is bounded.]]
474 [[`std::numeric_limits<T>::is_bounded`] [`true` or `false` if `T` bounded.]]
476 Required only if `T` is bounded.]]
478 Required only if `T` is bounded.]]
480 Required only if `T` is bounded.]]
482 Required only if `T` is bounded.]]
[all …]
/third_party/mesa3d/src/util/tests/fast_idiv_by_const/
Dfast_idiv_by_const_test.cpp265 random_udiv_add_sat_test(unsigned bits, bool bounded) in random_udiv_add_sat_test() argument
273 unsigned n_bits = bounded ? util_logbase2_64(MAX2(n, 1)) + 1 : bits; in random_udiv_add_sat_test()
282 random_udiv_mul_add_test(unsigned bits, bool bounded) in random_udiv_mul_add_test() argument
290 unsigned n_bits = bounded ? util_logbase2_64(MAX2(n, 1)) + 1: bits; in random_udiv_mul_add_test()
/third_party/boost/libs/iterator/doc/
Dfunction_input_iterator.rst17 `InputIterator`_ concept and is useful for creating bounded input iterators.
89 in cases where we want to create bounded (lazy) generated ranges.
111 Here we can see that we've bounded the number of invocations using an ``int``
/third_party/mindspore/mindspore/dataset/vision/
Dpy_transforms.py1080 bounded = True
1083 … self.value, bounded, self.max_attempts)
1135 bounded = False
1138 …, erase_h, erase_w, erase_value = util.get_erase_params(np_img, (scale, scale), (1, 1), 0, bounded,
/third_party/boost/boost/spirit/home/classic/core/
Dtypeof.hpp94 template<class ParserT, typename BoundsT> struct bounded;
300 BOOST_TYPEOF_REGISTER_TEMPLATE(BOOST_SPIRIT_CLASSIC_NS::bounded, 2)
/third_party/boost/libs/outcome/doc/src/content/tutorial/advanced/hooks/
Dkeeping_state.md11 …m payloads](../../payload)). But let us assume that we care so deeply about bounded execution times
/third_party/boost/libs/geometry/doc/generated/
Dreferring_segment.qbk22 From Wikipedia: In geometry, a line segment is a part of a line that is bounded by two distinct end…
Dsegment.qbk22 From Wikipedia: In geometry, a line segment is a part of a line that is bounded by two distinct end…
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DPluralRules.java1136 public final boolean bounded; field in PluralRules.FixedDecimalSamples
1142 …ivate FixedDecimalSamples(SampleType sampleType, Set<FixedDecimalRange> samples, boolean bounded) { in FixedDecimalSamples() argument
1146 this.bounded = bounded; in FixedDecimalSamples()
1238 if (!bounded) { in toString()
1906 return mySamples == null ? true : mySamples.bounded; in isLimited()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DPluralRules.java1206 public final boolean bounded; field in PluralRules.FixedDecimalSamples
1212 …ivate FixedDecimalSamples(SampleType sampleType, Set<FixedDecimalRange> samples, boolean bounded) { in FixedDecimalSamples() argument
1216 this.bounded = bounded; in FixedDecimalSamples()
1306 if (!bounded) { in toString()
1973 return mySamples == null ? true : mySamples.bounded; in isLimited()
/third_party/boost/libs/thread/doc/
Dsync_queues_ref.qbk48 One of the major features of a concurrent queue is whether it has a bounded-unbounded capacity.
56 …ueues. These queues can not define operations such as push (and pull for bounded queues). That is,…
124 [[Effects:] [Waits until the queue is not full (for bounded queues) and then push back `e` to the q…
144 [[Effects:] [Waits until the queue is not full (for bounded queues) and then push `e` to the queue …
455 [section:bounded Bounded Concurrent Queue Operations]
538 [[Effects:] [Waits until the queue is not full (for bounded queues) and then push back `e` to the q…
566 [[Effects:] [Waits until the queue is not full (for bounded queues) and then push `e` to the queue …
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dcontainer.dart70 /// no [alignment], but the parent provides bounded constraints, then
76 /// If the widget has an [alignment], and the parent provides bounded
208 /// no [alignment], but the parent provides bounded constraints, then
214 /// If the widget has an [alignment], and the parent provides bounded
/third_party/boost/libs/beast/doc/qbk/04_http/
D_http.qbk134 constrained implementations to perform work bounded on storage,
136 These functions read or write bounded amounts of data and return
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dnotched_shapes.dart51 /// points in the circle bounded by `guest` will be outside of the returned
62 // The guest's shape is a circle bounded by the guest rectangle.

123456