Home
last modified time | relevance | path

Searched refs:span (Results 376 - 400 of 471) sorted by relevance

1...<<111213141516171819

/third_party/json/tests/src/
H A Dunit-regression2.cpp40 #include <span>
670 const auto s = std::as_bytes(std::span(DATA));
/third_party/node/deps/v8/src/inspector/
H A Dv8-stack-trace-impl.cc137 v8_crdtp::span<uint8_t>(json.characters8(), json.length()), &cbor); in V8StackTraceId()
140 v8_crdtp::span<uint16_t>(json.characters16(), json.length()), &cbor); in V8StackTraceId()
/third_party/skia/src/core/
H A DSkBlurMask.cpp388 float span = float(sw)/(2*sigma); in ComputeBlurredScanline() local
390 pixels[x] = (uint8_t) (255 * (gaussianIntegral(giX) - gaussianIntegral(giX + span))); in ComputeBlurredScanline()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcord_rep_btree.h29 #include "absl/types/span.h"
216 // Returns a span (mutable range of bytes) of up to `size` bytes into the
221 // If all these conditions are met, a non-empty span is returned, and the
223 // `span.length()`. The caller is responsible for immediately assigning values
224 // to all uninitialized data reference by the returned span.
362 // This function is useful to find the edges for some span of bytes ending at
812 Span<char> span = {edge->flat()->Data() + edge->length, delta}; in GetAppendBuffer() local
826 return span; in GetAppendBuffer()
/third_party/curl/src/
H A Dtool_getparam.c640 size_t span; in parse_cert_parameter() local
667 span = strcspn(param_place, ":\\"); in parse_cert_parameter()
668 strncpy(certname_place, param_place, span); in parse_cert_parameter()
669 param_place += span; in parse_cert_parameter()
670 certname_place += span; in parse_cert_parameter()
/third_party/typescript/lib/
H A Dtsserverlibrary.js1535 * want to use something looser than object identity - e.g. "has the same span".
[all...]
H A Dtsserver.js1536 * want to use something looser than object identity - e.g. "has the same span".
[all...]
H A Dtypescript.js1526 * want to use something looser than object identity - e.g. "has the same span".
[all...]
H A DtypescriptServices.js1526 * want to use something looser than object identity - e.g. "has the same span".
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUnicodeSetTest.java2602 * should only be a zero length span at the very start.
2607 int limit = us.span(longString, start, spanCondition); in checkSpan()
2614 limit = us.span(longString, start, SpanCondition.NOT_CONTAINED); in checkSpan()
2676 assertEquals("CharSequence span", 3, new UnicodeSet("[a-cA]"). span(new StringBuilder("abc"), SpanCondition.SIMPLE) ); in TestCharSequenceArgs()
2677 assertEquals("CharSequence span", 3, new UnicodeSet("[a-cA]"). span(new StringBuilder("abc"), 1, SpanCondition.SIMPLE) ); in TestCharSequenceArgs()
2870 assertEquals("span", 1, set.span("abc", SpanCondition.SIMPLE)); in TestEmptyString()
2875 assertEquals("frozen span", in TestEmptyString()
[all...]
/third_party/skia/third_party/externals/freetype/src/autofit/
H A Daflatin.c3359 FT_Pos dist1, dist2, span, delta; in af_latin_hint_edges() local
3378 span = dist1 - dist2; in af_latin_hint_edges()
3379 if ( span < 0 ) in af_latin_hint_edges()
3380 span = -span; in af_latin_hint_edges()
3382 if ( span < 8 ) in af_latin_hint_edges()
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/include/adapt/
H A Dhi_math_adapt.h86 * Get the span between two unsigned number, such as
87 * span(hi_u32, 100, 200) is 200 - 100 = 100
88 * span(hi_u32, 200, 100) is 0xFFFFFFFF - 200 + 100
89 * span(hi_u64, 200, 100) is 0xFFFFFFFFFFFFFFFF - 200 + 100
91 #define span(type, begin, end) \ macro
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/adapt/
H A Dhi_math_adapt.h83 * Get the span between two unsigned number, such as
84 * span(hi_u32, 100, 200) is 200 - 100 = 100
85 * span(hi_u32, 200, 100) is 0xFFFFFFFF - 200 + 100
86 * span(hi_u64, 200, 100) is 0xFFFFFFFFFFFFFFFF - 200 + 100
88 #define span(type, begin, end) \ macro
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/adapt/
H A Dhi_math_adapt.h83 * Get the span between two unsigned number, such as
84 * span(hi_u32, 100, 200) is 200 - 100 = 100
85 * span(hi_u32, 200, 100) is 0xFFFFFFFF - 200 + 100
86 * span(hi_u64, 200, 100) is 0xFFFFFFFFFFFFFFFF - 200 + 100
88 #define span(type, begin, end) \ macro
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DBMPSet.java18 * Helper class for frozen UnicodeSets, implements contains() and span() optimized for BMP code points.
131 * @param outCount If not null: Receives the number of code points in the span.
132 * @return the limit (exclusive end) of the span
138 public final int span(CharSequence s, int start, SpanCondition spanCondition, in span() method in BMPSet
145 // span in span()
184 // span not in span()
231 * Symmetrical with span().
235 * @return The string index which starts the span (i.e. inclusive).
241 // span in spanBack()
281 // span no in spanBack()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DFormattedValueStringBuilderImpl.java43 * Finds the index at which a span field begins.
45 * @param value The value of the span field to search for.
148 // Handle span fields; don't trim them in nextPosition()
255 .span(self, start, UnicodeSet.SpanCondition.CONTAINED); in trimFront()
H A DBMPSet.java19 * Helper class for frozen UnicodeSets, implements contains() and span() optimized for BMP code points.
133 * @param outCount If not null: Receives the number of code points in the span.
134 * @return the limit (exclusive end) of the span
140 public final int span(CharSequence s, int start, SpanCondition spanCondition, in span() method in BMPSet
147 // span in span()
186 // span not in span()
233 * Symmetrical with span().
237 * @return The string index which starts the span (i.e. inclusive).
243 // span in spanBack()
283 // span no in spanBack()
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DCommandBufferStateTracker.cpp34 bool BufferSizesAtLeastAsBig(const ityp::span<uint32_t, uint64_t> unverifiedBufferSizes, in BufferSizesAtLeastAsBig()
/third_party/ffmpeg/libavformat/
H A Dimg2dec.c87 size_t span = 0; in is_glob() local
95 if (span = strspn(p, "*?[]{}")) in is_glob()
99 return span != 0; in is_glob()
/third_party/rust/crates/regex/regex-syntax/src/hir/
H A Dmod.rs30 /// span in an error is a valid range into this string.
32 /// The span of this error, derived from the Ast given to the translator.
33 span: Span,
44 /// Every span reported by this error is reported in terms of this string.
49 /// Return the span at which this error occurred.
50 pub fn span(&self) -> &Span { in span() functions
51 &self.span in span()
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js1667 * want to use something looser than object identity - e.g. "has the same span".
12392 function textSpanEnd(span) {
12393 return span.start + span.length;
12396 function textSpanIsEmpty(span) {
12397 return span.length === 0;
12400 function textSpanContainsPosition(span, position) {
12401 return position >= span.start && position < textSpanEnd(span);
12405 function textRangeContainsPositionInclusive(span, positio
[all...]
/third_party/node/deps/googletest/include/gtest/
H A Dgtest-printers.h126 #include <span> // NOLINT
145 struct IsStdSpan<std::span<E>> {
153 // NOTE: Since std::span does not have const_iterator until C++23, it would
156 // because of iterator::iterator. Which means std::span satisfies the *intended*
/third_party/skia/tests/
H A DUtilsTest.cpp484 auto span = z.get<1>(); in DEF_TEST() local
485 REPORTER_ASSERT(reporter, span[1] == 20.f); in DEF_TEST()
/device/soc/rockchip/common/sdk_linux/drivers/irqchip/
H A Dirq-gic-v3-its.c2007 u32 span; member
2010 static struct lpi_range *mk_lpi_range(u32 base, u32 span) in mk_lpi_range() argument
2017 range->span = span; in mk_lpi_range()
2032 if (range->span >= nr_lpis) { in alloc_lpi_range()
2035 range->span -= nr_lpis; in alloc_lpi_range()
2037 if (range->span == 0) { in alloc_lpi_range()
2058 if (a->base_id + a->span != b->base_id) { in merge_lpi_ranges()
2062 b->span += a->span; in merge_lpi_ranges()
[all...]
/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/
H A Dc_parser_lite.py92 line).span()

Completed in 149 milliseconds

1...<<111213141516171819