Home
last modified time | relevance | path

Searched full:boundaries (Results 1 – 25 of 2761) sorted by relevance

12345678910>>...111

/external/icu/libicu/cts_headers/
Drbbi_cache.h20 /* DictionaryCache stores the boundaries obtained from a run of dictionary characters.
21 * Dictionary boundaries are moved first to this cache, then from here
23 * boundaries. The public BreakIterator API always fetches directly
26 * In common situations, the number of boundaries in a single dictionary run
29 * up with boundaries from multiple dictionary based runs.
31 * The boundaries are stored in a simple ArrayList (vector), with the
45 * Populate the cache with the dictionary based boundaries within a region of text.
49 * @param otherRuleStatus The rule status index that applies to boundaries other than startPos
59 UVector32 fBreaks; // A vector containing the boundaries.
66 int32_t fOtherRuleStatusIndex; // Rule status info for 2nd through last boundaries.
[all …]
/external/cronet/third_party/icu/source/common/
Drbbi_cache.h20 /* DictionaryCache stores the boundaries obtained from a run of dictionary characters.
21 * Dictionary boundaries are moved first to this cache, then from here
23 * boundaries. The public BreakIterator API always fetches directly
26 * In common situations, the number of boundaries in a single dictionary run
29 * up with boundaries from multiple dictionary based runs.
31 * The boundaries are stored in a simple ArrayList (vector), with the
45 * Populate the cache with the dictionary based boundaries within a region of text.
49 * @param otherRuleStatus The rule status index that applies to boundaries other than startPos
59 UVector32 fBreaks; // A vector containing the boundaries.
66 int32_t fOtherRuleStatusIndex; // Rule status info for 2nd through last boundaries.
[all …]
/external/icu/icu4c/source/common/
Drbbi_cache.h20 /* DictionaryCache stores the boundaries obtained from a run of dictionary characters.
21 * Dictionary boundaries are moved first to this cache, then from here
23 * boundaries. The public BreakIterator API always fetches directly
26 * In common situations, the number of boundaries in a single dictionary run
29 * up with boundaries from multiple dictionary based runs.
31 * The boundaries are stored in a simple ArrayList (vector), with the
45 * Populate the cache with the dictionary based boundaries within a region of text.
49 * @param otherRuleStatus The rule status index that applies to boundaries other than startPos
59 UVector32 fBreaks; // A vector containing the boundaries.
66 int32_t fOtherRuleStatusIndex; // Rule status info for 2nd through last boundaries.
[all …]
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/provider/asymmetric/x509/
DPEMUtil.java17 private class Boundaries class in PEMUtil
22 private Boundaries(String type) in Boundaries() method in PEMUtil.Boundaries
39 private final Boundaries[] _supportedBoundaries;
43 _supportedBoundaries = new Boundaries[] in PEMUtil()
44 { new Boundaries(type), new Boundaries("X509 " + type), in PEMUtil()
45 new Boundaries("PKCS7") }; in PEMUtil()
92 * Returns a {@link Boundaries} object representing the passed in boundary
96 * @return the {@link Boundaries} object corresponding to the given boundary
100 private Boundaries getBoundaries(String line) in getBoundaries()
104 Boundaries boundary = _supportedBoundaries[i]; in getBoundaries()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
DPEMUtil.java16 private class Boundaries class in PEMUtil
21 private Boundaries(String type) in Boundaries() method in PEMUtil.Boundaries
38 private final Boundaries[] _supportedBoundaries;
42 _supportedBoundaries = new Boundaries[] in PEMUtil()
43 { new Boundaries(type), new Boundaries("X509 " + type), in PEMUtil()
44 new Boundaries("PKCS7") }; in PEMUtil()
91 * Returns a {@link Boundaries} object representing the passed in boundary
95 * @return the {@link Boundaries} object corresponding to the given boundary
99 private Boundaries getBoundaries(String line) in getBoundaries()
103 Boundaries boundary = _supportedBoundaries[i]; in getBoundaries()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/x509/
DPEMUtil.java17 private class Boundaries class in PEMUtil
22 private Boundaries(String type) in Boundaries() method in PEMUtil.Boundaries
39 private final Boundaries[] _supportedBoundaries;
43 _supportedBoundaries = new Boundaries[] in PEMUtil()
44 { new Boundaries(type), new Boundaries("X509 " + type), in PEMUtil()
45 new Boundaries("PKCS7") }; in PEMUtil()
92 * Returns a {@link Boundaries} object representing the passed in boundary
96 * @return the {@link Boundaries} object corresponding to the given boundary
100 private Boundaries getBoundaries(String line) in getBoundaries()
104 Boundaries boundary = _supportedBoundaries[i]; in getBoundaries()
[all …]
/external/perfetto/src/trace_processor/metrics/sql/android/jank/internal/
Dderived_events.sql19 -- Computed CUJ boundaries.
26 'CUJ Boundaries' AS group_name
30 -- Computed frame boundaries on the Main Thread.
37 cuj.cuj_name || ' - MT frame boundaries' AS group_name
41 -- Computed frame boundaries on the Render Thread.
48 cuj.cuj_name || ' - RT frame boundaries' AS group_name
52 -- Computed overall frame boundaries not specific to any thread.
63 -- Computed frame boundaries on the SF Main Thread
70 cuj.cuj_name || ' - SF MT frame boundaries' AS group_name
74 -- Computed frame boundaries on the SF RenderEngine Thread.
[all …]
/external/cronet/third_party/icu/source/i18n/
Dbrktrans.cpp79 LocalPointer<UVector32> boundaries; in handleTransliterate() local
84 boundaries = std::move(nonConstThis->cachedBoundaries); in handleTransliterate()
90 if (boundaries.isNull()) { in handleTransliterate()
91 boundaries.adoptInstead(new UVector32(status)); in handleTransliterate()
94 if (bi.isNull() || boundaries.isNull() || U_FAILURE(status)) { in handleTransliterate()
98 boundaries->removeAllElements(); in handleTransliterate()
103 // To make things much easier, we will stack the boundaries, and then insert at the end. in handleTransliterate()
121 boundaries->addElement(boundary, status); in handleTransliterate()
128 if (boundaries->size() != 0) { // if we found something, adjust in handleTransliterate()
129 delta = boundaries->size() * fInsertion.length(); in handleTransliterate()
[all …]
/external/icu/icu4c/source/i18n/
Dbrktrans.cpp79 LocalPointer<UVector32> boundaries; in handleTransliterate() local
84 boundaries = std::move(nonConstThis->cachedBoundaries); in handleTransliterate()
90 if (boundaries.isNull()) { in handleTransliterate()
91 boundaries.adoptInstead(new UVector32(status)); in handleTransliterate()
94 if (bi.isNull() || boundaries.isNull() || U_FAILURE(status)) { in handleTransliterate()
98 boundaries->removeAllElements(); in handleTransliterate()
103 // To make things much easier, we will stack the boundaries, and then insert at the end. in handleTransliterate()
121 boundaries->addElement(boundary, status); in handleTransliterate()
128 if (boundaries->size() != 0) { // if we found something, adjust in handleTransliterate()
129 delta = boundaries->size() * fInsertion.length(); in handleTransliterate()
[all …]
/external/tensorflow/tensorflow/lite/kernels/
Dbucketize.cc36 // boundaries array is owned by the buffer housing TfLiteBucketizeParams.
37 const float* boundaries; member
45 op_data->boundaries = params->boundaries; in Init()
58 if (!std::is_sorted(opdata->boundaries, in Prepare()
59 opdata->boundaries + opdata->num_boundaries)) { in Prepare()
60 TF_LITE_KERNEL_LOG(context, "Expected sorted boundaries"); in Prepare()
85 const float* boundaries, int num_boundaries, in Bucketize() argument
91 boundaries, boundaries + num_boundaries, input_data[i]); in Bucketize()
92 output_data[i] = first_bigger_it - boundaries; in Bucketize()
107 opdata->boundaries, opdata->num_boundaries, in BucketizeImpl()
Dbucketize_test.cc33 const std::vector<float>& boundaries) { in BucketizeOpModel() argument
35 boundaries_ = boundaries; in BucketizeOpModel()
47 const std::vector<float>& boundaries() { return boundaries_; } in boundaries() function in tflite::__anonce1e42c20111::BucketizeOpModel
62 /*boundaries=*/{0.0f, 10.0f, 100.0f}); in TEST()
77 /*boundaries=*/{0, 10, 100}); in TEST()
91 /*boundaries=*/{0, 10, -10}), in TEST()
92 "Expected sorted boundaries"); in TEST()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DBreakIterator.java27 * <p>A class that locates boundaries in text. This class defines a protocol for
34 * <ul><li>getTitleInstance() returns a BreakIterator that locates boundaries
36 * <li>getSentenceInstance() returns a BreakIterator that locates boundaries
38 * <li>getWordInstance() returns a BreakIterator that locates boundaries between
49 * <li>getCharacterInstance() returns a BreakIterator that locates boundaries between
58 * described in Unicode Standard Annex #29, Text Boundaries, and
97 * Creating and using text boundaries
203 * With the word-break iterator, the characters between two boundaries might be a
205 * above code uses {@link #getRuleStatus} to identify and ignore boundaries associated
246 * boundaries have been returned.
[all …]
/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/text/
DBreakIterator.java26 * <p>A class that locates boundaries in text. This class defines a protocol for
33 * <ul><li>getTitleInstance() returns a BreakIterator that locates boundaries
35 * <li>getSentenceInstance() returns a BreakIterator that locates boundaries
37 * <li>getWordInstance() returns a BreakIterator that locates boundaries between
48 * <li>getCharacterInstance() returns a BreakIterator that locates boundaries between
57 * described in Unicode Standard Annex #29, Text Boundaries, and
96 * Creating and using text boundaries
202 * With the word-break iterator, the characters between two boundaries might be a
204 * above code uses {@link #getRuleStatus} to identify and ignore boundaries associated
248 * boundaries have been returned.
[all …]
/external/opencensus-java/api/src/main/java/io/opencensus/stats/
DBucketBoundaries.java29 * The bucket boundaries for a histogram.
42 * @param bucketBoundaries the boundaries for the buckets in the underlying histogram.
43 * @return a new {@code BucketBoundaries} with the specified boundaries.
56 Utils.checkArgument(previous < next, "Bucket boundaries not sorted."); in create()
86 + " negative bucket boundaries, the values must be strictly > 0.");
93 * Returns a list of histogram bucket boundaries.
95 * @return a list of histogram bucket boundaries.
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_BoostedTreesQuantileStreamResourceDeserialize.pbtxt14 float; List of Rank 1 Tensors each containing the bucket boundaries for a feature.
20 inferred int; number of features to get bucket boundaries for.
23 summary: "Deserialize bucket boundaries and ready flag into current QuantileAccumulator."
25 An op that deserializes bucket boundaries and are boundaries ready flag into current QuantileAccumu…
Dapi_def_BoostedTreesQuantileStreamResourceGetBucketBoundaries.pbtxt14 float; List of Rank 1 Tensors each containing the bucket boundaries for a feature.
20 inferred int; number of features to get bucket boundaries for.
23 summary: "Generate the bucket boundaries for each feature based on accumulated summaries."
26 tensor is Rank 1 containing bucket boundaries for a single feature.
/external/tensorflow/tensorflow/python/kernel_tests/math_ops/
Dbucketize_op_test.py33 boundaries=[0, 3, 8, 11])
40 array_ops.zeros([0, 3], dtype=dtypes.float32), boundaries=[])
48 boundaries=[0., 3., 8., 11.])
56 boundaries=[0, 3, 8, 11])
64 constant_op.constant([-5, 0]), boundaries=[0, 8, 3, 11])
67 "Expected sorted boundaries"):
72 math_ops._bucketize(constant_op.constant([-5, 0]), boundaries=0)
/external/perfetto/src/trace_processor/metrics/sql/android/jank/
Dslices.sql32 -- Take slices which overlap even they started before the boundaries
50 -- Take slices which overlap even they started before the boundaries
69 -- Take slices which overlap even they started before the boundaries
91 -- Take slices which overlap even they started before the boundaries
109 -- Take slices which overlap even they started before the boundaries
117 -- and only take slices that are within RenderEngine frame boundaries.
131 -- Take slices which overlap even they started before the boundaries
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dbucketize_op.cc30 OP_REQUIRES_OK(context, context->GetAttr("boundaries", &boundaries_)); in BucketizeOp()
32 errors::InvalidArgument("Expected sorted boundaries")); in BucketizeOp()
40 xla::XlaOp boundaries = xla::ConstantR1<float>(builder, boundaries_); in Compile() local
46 boundaries = xla::ConvertElementType(boundaries, xla::F64); in Compile()
51 xla::ConvertElementType(xla::Ge(xla::Broadcast(input, {1}), boundaries, in Compile()
/external/tensorflow/tensorflow/python/keras/optimizer_v2/
Dlegacy_learning_rate_decay.py105 def piecewise_constant(x, boundaries, values, name=None): argument
106 """Piecewise constant from boundaries and interval values.
113 boundaries = [100000, 110000]
115 learning_rate = tf.compat.v1.train.piecewise_constant(global_step, boundaries,
124 boundaries: A list of `Tensor`s or `int`s or `float`s with strictly
127 for the intervals defined by `boundaries`. It should have one more element
128 than `boundaries`, and all elements should have the same type.
133 A 0-D Tensor. Its value is `values[0]` when `x <= boundaries[0]`,
134 `values[1]` when `x > boundaries[0]` and `x <= boundaries[1]`, ...,
135 and values[-1] when `x > boundaries[-1]`.
[all …]
Dlearning_rate_schedule.py214 boundaries = [100000, 110000]
217 boundaries, values)
234 is `values[0]` when `step <= boundaries[0]`,
235 `values[1]` when `step > boundaries[0]` and `step <= boundaries[1]`, ...,
236 and values[-1] when `step > boundaries[-1]`.
241 boundaries, argument
244 """Piecewise constant from boundaries and interval values.
247 boundaries: A list of `Tensor`s or `int`s or `float`s with strictly
251 values for the intervals defined by `boundaries`. It should have one
252 more element than `boundaries`, and all elements should have the same
[all …]
/external/libaom/av1/common/
Dalloccommon.c330 RestorationStripeBoundaries *boundaries = &cm->rst_info[p].boundaries; in av1_alloc_restoration_buffers() local
332 if (buf_size != boundaries->stripe_boundary_size || in av1_alloc_restoration_buffers()
333 boundaries->stripe_boundary_above == NULL || in av1_alloc_restoration_buffers()
334 boundaries->stripe_boundary_below == NULL) { in av1_alloc_restoration_buffers()
335 aom_free(boundaries->stripe_boundary_above); in av1_alloc_restoration_buffers()
336 aom_free(boundaries->stripe_boundary_below); in av1_alloc_restoration_buffers()
338 CHECK_MEM_ERROR(cm, boundaries->stripe_boundary_above, in av1_alloc_restoration_buffers()
340 CHECK_MEM_ERROR(cm, boundaries->stripe_boundary_below, in av1_alloc_restoration_buffers()
343 boundaries->stripe_boundary_size = buf_size; in av1_alloc_restoration_buffers()
345 boundaries->stripe_boundary_stride = stride; in av1_alloc_restoration_buffers()
[all …]
/external/tensorflow/tensorflow/python/data/kernel_tests/
Dbucket_by_sequence_length_test.py83 boundaries = [10, 20, 30]
139 bucket_boundaries=boundaries,
208 boundaries = [10, 20, 30]
237 bucket_boundaries=boundaries,
268 boundaries = [10, 20, 30]
282 el = [1] * (boundaries[-1] + 5)
290 bucket_boundaries=boundaries,
312 self.assertEqual([boundary - 1 for boundary in sorted(boundaries)],
318 boundaries = [3, 7, 11]
331 bucket_boundaries=boundaries,
[all …]
/external/tensorflow/tensorflow/compiler/tests/
Dbucketize_op_test.py32 op = math_ops._bucketize(p, boundaries=[0, 3, 8, 11])
41 op = math_ops._bucketize(p, boundaries=[0., 3., 8., 11.])
51 op = math_ops._bucketize(p, boundaries=[0, 3, 8, 11])
62 op = math_ops._bucketize(p, boundaries=[0, 8, 3, 11])
64 "Expected sorted boundaries"):
72 math_ops._bucketize(p, boundaries=0)
/external/timezone-boundary-builder/
DREADME.md3 The goal of this project is to produce a shapefile with the boundaries of the world's timezones usi…
14 … This project also will attempt to provide the most accurate possible boundaries of timezones acc…
16 … Various boundaries are assembled together to produce each zone with various geographic operations…
66 timezone-boundary-builder downloads boundaries from OpenStreetMap and places them in the `./downloa…
81 + `--skip_validation` - do not validate the time zone boundaries
87boundaries to extract via queries to the Overpass API. The `timezones.json` file lists all of the…
121 …etmap.org/user/Shinigami) for making lots of edits in OpenStreetMap of various timezone boundaries.
126 The code used to construct the timezone boundaries is licensed under the [MIT License](https://open…

12345678910>>...111