Home
last modified time | relevance | path

Searched refs:distance (Results 1 - 25 of 523) sorted by relevance

12345678910>>...21

/third_party/skia/src/core/
H A DSkContourMeasure.cpp197 SkScalar compute_line_seg(SkPoint p0, SkPoint p1, SkScalar distance, unsigned ptIndex);
198 SkScalar compute_quad_segs(const SkPoint pts[3], SkScalar distance,
200 SkScalar compute_conic_segs(const SkConic& conic, SkScalar distance,
204 SkScalar compute_cubic_segs(const SkPoint pts[4], SkScalar distance,
208 SkScalar SkContourMeasureIter::Impl::compute_quad_segs(const SkPoint pts[3], SkScalar distance, in compute_quad_segs() argument
215 distance = this->compute_quad_segs(tmp, distance, mint, halft, ptIndex); in compute_quad_segs()
216 distance = this->compute_quad_segs(&tmp[2], distance, halft, maxt, ptIndex); in compute_quad_segs()
219 SkScalar prevD = distance; in compute_quad_segs()
[all...]
/third_party/icu/icu4c/source/common/
H A Dlocdistance.cpp96 // default region distance between unrelated Englishes. in LocaleDistance()
100 // As of CLDR 36, we have <languageMatch desired="en_*_*" supported="en_*_*" distance="5"/>. in LocaleDistance()
116 // Its "distance" is either a match point value of 0, or a non-match negative value. in getBestIndexAndDistance()
120 // Index of the supported LSR with the lowest distance. in getBestIndexAndDistance()
127 int32_t distance = desLangDistance; in getBestIndexAndDistance() local
128 if (distance >= 0) { in getBestIndexAndDistance()
129 U_ASSERT((distance & DISTANCE_IS_FINAL) == 0); in getBestIndexAndDistance()
133 distance = trieNext(iter, supported.language, true); in getBestIndexAndDistance()
140 if (distance >= 0) { in getBestIndexAndDistance()
141 flags = distance in getBestIndexAndDistance()
261 int32_t distance = trieNext(iter, desired, false); getDesSuppScriptDistance() local
361 int32_t distance = iter.getValue(); getFallbackRegionDistance() local
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dlocdistance.cpp96 // default region distance between unrelated Englishes. in LocaleDistance()
100 // As of CLDR 36, we have <languageMatch desired="en_*_*" supported="en_*_*" distance="5"/>. in LocaleDistance()
116 // Its "distance" is either a match point value of 0, or a non-match negative value. in getBestIndexAndDistance()
120 // Index of the supported LSR with the lowest distance. in getBestIndexAndDistance()
127 int32_t distance = desLangDistance; in getBestIndexAndDistance() local
128 if (distance >= 0) { in getBestIndexAndDistance()
129 U_ASSERT((distance & DISTANCE_IS_FINAL) == 0); in getBestIndexAndDistance()
133 distance = trieNext(iter, supported.language, true); in getBestIndexAndDistance()
140 if (distance >= 0) { in getBestIndexAndDistance()
141 flags = distance in getBestIndexAndDistance()
261 int32_t distance = trieNext(iter, desired, false); getDesSuppScriptDistance() local
361 int32_t distance = iter.getValue(); getFallbackRegionDistance() local
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dlocdistance.cpp96 // default region distance between unrelated Englishes. in LocaleDistance()
100 // As of CLDR 36, we have <languageMatch desired="en_*_*" supported="en_*_*" distance="5"/>. in LocaleDistance()
116 // Its "distance" is either a match point value of 0, or a non-match negative value. in getBestIndexAndDistance()
120 // Index of the supported LSR with the lowest distance. in getBestIndexAndDistance()
127 int32_t distance = desLangDistance; in getBestIndexAndDistance() local
128 if (distance >= 0) { in getBestIndexAndDistance()
129 U_ASSERT((distance & DISTANCE_IS_FINAL) == 0); in getBestIndexAndDistance()
133 distance = trieNext(iter, supported.language, true); in getBestIndexAndDistance()
140 if (distance >= 0) { in getBestIndexAndDistance()
141 flags = distance in getBestIndexAndDistance()
261 int32_t distance = trieNext(iter, desired, false); getDesSuppScriptDistance() local
361 int32_t distance = iter.getValue(); getFallbackRegionDistance() local
[all...]
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/
H A DDistanceTable.java24 * Represents the conceptual distance between pairs of language specifications.
42 * to avoid modifying either the Trie or the returned distance array.
47 * the distance table reserves {@code '*'} for a different purpose. This difference
58 // Distances must be in the range [0-127] because bit 7 of the distance value
70 * Adds a distance to the table between the specified and desired tuples.
75 public void addDistance(int distance, boolean oneway, String... args) { in addDistance() argument
76 MappingKey key = MappingKey.fromSubtags(args, distance); in addDistance()
78 // Minimum region distance needs to be tracked specially. in addDistance()
79 if (key.getDepth() == 3 && distance < minRegionDistance) { in addDistance()
80 minRegionDistance = distance; in addDistance()
200 private int distance; global() field in DistanceTable.Node
202 Node(int distance) Node() argument
437 fromSubtags(String[] subtagPairs, int distance) fromSubtags() argument
455 private final int distance; global() field in DistanceTable.MappingKey
460 MappingKey(ImmutableList<String> pairs, int distance, boolean isReversed) MappingKey() argument
[all...]
/third_party/json/tests/src/
H A Dunit-capacity.cpp221 CHECK(std::distance(j.begin(), j.end()) == j.size());
222 CHECK(std::distance(j_const.begin(), j_const.end()) == j_const.size());
223 CHECK(std::distance(j.rbegin(), j.rend()) == j.size());
224 CHECK(std::distance(j_const.crbegin(), j_const.crend()) == j_const.size());
241 CHECK(std::distance(j.begin(), j.end()) == j.size());
242 CHECK(std::distance(j_const.begin(), j_const.end()) == j_const.size());
243 CHECK(std::distance(j.rbegin(), j.rend()) == j.size());
244 CHECK(std::distance(j_const.crbegin(), j_const.crend()) == j_const.size());
263 CHECK(std::distance(j.begin(), j.end()) == j.size());
264 CHECK(std::distance(j_cons
[all...]
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless_common.h96 // Splitting of distance and length codes into prefixes and
99 static WEBP_INLINE void VP8LPrefixEncodeBitsNoLUT(int distance, int* const code, in VP8LPrefixEncodeBitsNoLUT() argument
101 const int highest_bit = BitsLog2Floor(--distance); in VP8LPrefixEncodeBitsNoLUT()
102 const int second_highest_bit = (distance >> (highest_bit - 1)) & 1; in VP8LPrefixEncodeBitsNoLUT()
107 static WEBP_INLINE void VP8LPrefixEncodeNoLUT(int distance, int* const code, in VP8LPrefixEncodeNoLUT() argument
110 const int highest_bit = BitsLog2Floor(--distance); in VP8LPrefixEncodeNoLUT()
111 const int second_highest_bit = (distance >> (highest_bit - 1)) & 1; in VP8LPrefixEncodeNoLUT()
113 *extra_bits_value = distance & ((1 << *extra_bits) - 1); in VP8LPrefixEncodeNoLUT()
126 static WEBP_INLINE void VP8LPrefixEncodeBits(int distance, int* const code, in VP8LPrefixEncodeBits() argument
128 if (distance < PREFIX_LOOKUP_IDX_MA in VP8LPrefixEncodeBits()
137 VP8LPrefixEncode(int distance, int* const code, int* const extra_bits, int* const extra_bits_value) VP8LPrefixEncode() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DLocaleDistance.java39 // The distance is shifted left to gain some fraction bits.
60 // (encoded in ASCII with bit 7 set on the last character of each subtag) to a distance.
82 public static final int shiftDistance(int distance) { in shiftDistance() argument
83 return distance << DISTANCE_SHIFT; in shiftDistance()
207 // default region distance between unrelated Englishes. in LocaleDistance()
211 // As of CLDR 36, we have <languageMatch desired="en_*_*" supported="en_*_*" distance="5"/>. in LocaleDistance()
219 System.out.println("*** locale distance"); in LocaleDistance()
238 * Finds the supported LSR with the smallest distance from the desired one.
241 * <p>Returns the index of the lowest-distance supported LSR in the high bits
242 * (negative if none has a distance belo
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/
H A DLocaleDistance.java41 // The distance is shifted left to gain some fraction bits.
62 // (encoded in ASCII with bit 7 set on the last character of each subtag) to a distance.
84 public static final int shiftDistance(int distance) { in shiftDistance() argument
85 return distance << DISTANCE_SHIFT; in shiftDistance()
212 // default region distance between unrelated Englishes. in LocaleDistance()
216 // As of CLDR 36, we have <languageMatch desired="en_*_*" supported="en_*_*" distance="5"/>. in LocaleDistance()
224 System.out.println("*** locale distance"); in LocaleDistance()
243 * Finds the supported LSR with the smallest distance from the desired one.
246 * <p>Returns the index of the lowest-distance supported LSR in the high bits
247 * (negative if none has a distance belo
[all...]
/third_party/skia/fuzz/
H A DFuzzPathMeasure.cpp17 SkScalar distance[6]; in DEF_FUZZ() local
19 fuzz->next(&distance[index]); in DEF_FUZZ()
32 ignoreResult(measure.getPosTan(distance[0], &position, &tangent)); in DEF_FUZZ()
34 ignoreResult(measure.getSegment(distance[1], distance[2], &dst, (bits >> 1) & 1)); in DEF_FUZZ()
36 ignoreResult(measure.getPosTan(distance[3], &position, &tangent)); in DEF_FUZZ()
37 ignoreResult(measure.getSegment(distance[4], distance[5], &dst, (bits >> 2) & 1)); in DEF_FUZZ()
/third_party/node/deps/v8/src/baseline/ia32/
H A Dbaseline-assembler-ia32-inl.h103 void BaselineAssembler::Jump(Label* target, Label::Distance distance) { in Jump() argument
104 __ jmp(target, distance); in Jump()
108 Label* target, Label::Distance distance) { in JumpIfRoot()
109 __ JumpIfRoot(value, index, target, distance); in JumpIfRoot()
113 Label* target, Label::Distance distance) { in JumpIfNotRoot()
114 __ JumpIfNotRoot(value, index, target, distance); in JumpIfNotRoot()
118 Label::Distance distance) { in JumpIfSmi()
119 __ JumpIfSmi(value, target, distance); in JumpIfSmi()
124 Label::Distance distance) { in JumpIfImmediate()
126 __ j(AsMasmCondition(cc), target, distance); in JumpIfImmediate() local
107 JumpIfRoot(Register value, RootIndex index, Label* target, Label::Distance distance) JumpIfRoot() argument
112 JumpIfNotRoot(Register value, RootIndex index, Label* target, Label::Distance distance) JumpIfNotRoot() argument
117 JumpIfSmi(Register value, Label* target, Label::Distance distance) JumpIfSmi() argument
122 JumpIfImmediate(Condition cc, Register left, int right, Label* target, Label::Distance distance) JumpIfImmediate() argument
129 JumpIfNotSmi(Register value, Label* target, Label::Distance distance) JumpIfNotSmi() argument
146 TestAndBranch(Register value, int mask, Condition cc, Label* target, Label::Distance distance) TestAndBranch() argument
153 __ j(AsMasmCondition(cc), target, distance); TestAndBranch() local
156 JumpIf(Condition cc, Register lhs, const Operand& rhs, Label* target, Label::Distance distance) JumpIf() argument
159 __ j(AsMasmCondition(cc), target, distance); JumpIf() local
161 JumpIfObjectType(Condition cc, Register object, InstanceType instance_type, Register map, Label* target, Label::Distance distance) JumpIfObjectType() argument
167 __ j(AsMasmCondition(cc), target, distance); JumpIfObjectType() local
169 JumpIfInstanceType(Condition cc, Register map, InstanceType instance_type, Label* target, Label::Distance distance) JumpIfInstanceType() argument
181 __ j(AsMasmCondition(cc), target, distance); JumpIfInstanceType() local
183 JumpIfPointer(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance distance) JumpIfPointer() argument
188 JumpIfSmi(Condition cc, Register value, Smi smi, Label* target, Label::Distance distance) JumpIfSmi() argument
195 __ j(AsMasmCondition(cc), target, distance); JumpIfSmi() local
197 JumpIfSmi(Condition cc, Register lhs, Register rhs, Label* target, Label::Distance distance) JumpIfSmi() argument
202 __ j(AsMasmCondition(cc), target, distance); JumpIfSmi() local
204 JumpIfTagged(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance distance) JumpIfTagged() argument
208 __ j(AsMasmCondition(cc), target, distance); JumpIfTagged() local
210 JumpIfTagged(Condition cc, MemOperand operand, Register value, Label* target, Label::Distance distance) JumpIfTagged() argument
214 __ j(AsMasmCondition(cc), target, distance); JumpIfTagged() local
216 JumpIfByte(Condition cc, Register value, int32_t byte, Label* target, Label::Distance distance) JumpIfByte() argument
219 __ j(AsMasmCondition(cc), target, distance); JumpIfByte() local
[all...]
/third_party/node/deps/v8/src/baseline/x64/
H A Dbaseline-assembler-x64-inl.h105 void BaselineAssembler::Jump(Label* target, Label::Distance distance) { in Jump() argument
106 __ jmp(target, distance); in Jump()
109 Label* target, Label::Distance distance) { in JumpIfRoot()
110 __ JumpIfRoot(value, index, target, distance); in JumpIfRoot()
113 Label* target, Label::Distance distance) { in JumpIfNotRoot()
114 __ JumpIfNotRoot(value, index, target, distance); in JumpIfNotRoot()
117 Label::Distance distance) { in JumpIfSmi()
118 __ JumpIfSmi(value, target, distance); in JumpIfSmi()
121 Label::Distance distance) { in JumpIfNotSmi()
122 __ JumpIfNotSmi(value, target, distance); in JumpIfNotSmi()
108 JumpIfRoot(Register value, RootIndex index, Label* target, Label::Distance distance) JumpIfRoot() argument
112 JumpIfNotRoot(Register value, RootIndex index, Label* target, Label::Distance distance) JumpIfNotRoot() argument
116 JumpIfSmi(Register value, Label* target, Label::Distance distance) JumpIfSmi() argument
120 JumpIfNotSmi(Register value, Label* target, Label::Distance distance) JumpIfNotSmi() argument
147 TestAndBranch(Register value, int mask, Condition cc, Label* target, Label::Distance distance) TestAndBranch() argument
154 __ j(AsMasmCondition(cc), target, distance); TestAndBranch() local
157 JumpIf(Condition cc, Register lhs, const Operand& rhs, Label* target, Label::Distance distance) JumpIf() argument
160 __ j(AsMasmCondition(cc), target, distance); JumpIf() local
162 JumpIfObjectType(Condition cc, Register object, InstanceType instance_type, Register map, Label* target, Label::Distance distance) JumpIfObjectType() argument
168 __ j(AsMasmCondition(cc), target, distance); JumpIfObjectType() local
170 JumpIfInstanceType(Condition cc, Register map, InstanceType instance_type, Label* target, Label::Distance distance) JumpIfInstanceType() argument
180 __ j(AsMasmCondition(cc), target, distance); JumpIfInstanceType() local
182 JumpIfPointer(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance distance) JumpIfPointer() argument
186 __ j(AsMasmCondition(cc), target, distance); JumpIfPointer() local
188 JumpIfSmi(Condition cc, Register lhs, Smi smi, Label* target, Label::Distance distance) JumpIfSmi() argument
191 __ j(AsMasmCondition(cc), target, distance); JumpIfSmi() local
193 JumpIfSmi(Condition cc, Register lhs, Register rhs, Label* target, Label::Distance distance) JumpIfSmi() argument
196 __ j(AsMasmCondition(cc), target, distance); JumpIfSmi() local
199 JumpIfImmediate(Condition cc, Register left, int right, Label* target, Label::Distance distance) JumpIfImmediate() argument
203 __ j(AsMasmCondition(cc), target, distance); JumpIfImmediate() local
207 JumpIfTagged(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance distance) JumpIfTagged() argument
211 __ j(AsMasmCondition(cc), target, distance); JumpIfTagged() local
213 JumpIfTagged(Condition cc, MemOperand operand, Register value, Label* target, Label::Distance distance) JumpIfTagged() argument
217 __ j(AsMasmCondition(cc), target, distance); JumpIfTagged() local
219 JumpIfByte(Condition cc, Register value, int32_t byte, Label* target, Label::Distance distance) JumpIfByte() argument
222 __ j(AsMasmCondition(cc), target, distance); JumpIfByte() local
[all...]
/third_party/skia/tests/
H A DPathCoverageTest.cpp48 static inline uint32_t estimate_pointCount(int distance) { in estimate_pointCount() argument
50 int shift = 30 - SkCLZ(distance); in estimate_pointCount()
70 int distance = estimate_distance(points); in quadraticPointCount_EE() local
71 return estimate_pointCount(distance); in quadraticPointCount_EE()
75 int distance = estimate_distance(points); in quadraticPointCount_EC() local
76 return compute_pointCount(SkIntToScalar(distance), tol); in quadraticPointCount_EC()
80 SkScalar distance = compute_distance(points); in quadraticPointCount_CE() local
81 return estimate_pointCount(SkScalarRoundToInt(distance)); in quadraticPointCount_CE()
85 SkScalar distance = compute_distance(points); in quadraticPointCount_CC() local
86 return compute_pointCount(distance, to in quadraticPointCount_CC()
[all...]
/third_party/node/deps/v8/src/baseline/
H A Dbaseline-assembler.h51 inline void Jump(Label* target, Label::Distance distance = Label::kFar);
53 Label::Distance distance = Label::kFar);
55 Label ::Distance distance = Label::kFar);
57 Label::Distance distance = Label::kFar);
59 Label::Distance distance = Label::kFar);
63 Label::Distance distance = Label::kFar);
66 Label* target, Label::Distance distance = Label::kFar);
70 Label::Distance distance = Label::kFar);
73 Label::Distance distance = Label::kFar);
76 Label::Distance distance
[all...]
/third_party/node/deps/brotli/c/enc/
H A Dbackward_references.c25 static BROTLI_INLINE size_t ComputeDistanceCode(size_t distance, in ComputeDistanceCode() argument
28 if (distance <= max_distance) { in ComputeDistanceCode()
29 size_t distance_plus_3 = distance + 3; in ComputeDistanceCode()
32 if (distance == (size_t)dist_cache[0]) { in ComputeDistanceCode()
34 } else if (distance == (size_t)dist_cache[1]) { in ComputeDistanceCode()
40 } else if (distance == (size_t)dist_cache[2]) { in ComputeDistanceCode()
42 } else if (distance == (size_t)dist_cache[3]) { in ComputeDistanceCode()
46 return distance + BROTLI_NUM_DISTANCE_SHORT_CODES - 1; in ComputeDistanceCode()
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dbackward_references.c25 static BROTLI_INLINE size_t ComputeDistanceCode(size_t distance, in ComputeDistanceCode() argument
28 if (distance <= max_distance) { in ComputeDistanceCode()
29 size_t distance_plus_3 = distance + 3; in ComputeDistanceCode()
32 if (distance == (size_t)dist_cache[0]) { in ComputeDistanceCode()
34 } else if (distance == (size_t)dist_cache[1]) { in ComputeDistanceCode()
40 } else if (distance == (size_t)dist_cache[2]) { in ComputeDistanceCode()
42 } else if (distance == (size_t)dist_cache[3]) { in ComputeDistanceCode()
46 return distance + BROTLI_NUM_DISTANCE_SHORT_CODES - 1; in ComputeDistanceCode()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dloop_dependence.cpp400 // If source == destination, dependence with direction = and distance 0. in ZIVTest()
516 // based on distance. in StrongSIVTest()
539 // Build an SENode for distance. in StrongSIVTest()
560 int64_t distance = 0; in StrongSIVTest() local
572 // Check if the distance is not integral to try to prove independence. in StrongSIVTest()
575 "StrongSIVTest proved independence through distance not being an " in StrongSIVTest()
582 distance = delta_value / coefficient_value; in StrongSIVTest()
583 PrintDebug("StrongSIV test found distance as " + ToString(distance)); in StrongSIVTest()
587 // distance in StrongSIVTest()
711 int64_t distance = 0; WeakZeroSourceSIVTest() local
863 int64_t distance = 0; WeakZeroDestinationSIVTest() local
1025 int64_t distance = 0; WeakCrossingSIVTest() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dloop_dependence.cpp400 // If source == destination, dependence with direction = and distance 0. in ZIVTest()
516 // based on distance. in StrongSIVTest()
539 // Build an SENode for distance. in StrongSIVTest()
560 int64_t distance = 0; in StrongSIVTest() local
572 // Check if the distance is not integral to try to prove independence. in StrongSIVTest()
575 "StrongSIVTest proved independence through distance not being an " in StrongSIVTest()
582 distance = delta_value / coefficient_value; in StrongSIVTest()
583 PrintDebug("StrongSIV test found distance as " + ToString(distance)); in StrongSIVTest()
587 // distance in StrongSIVTest()
711 int64_t distance = 0; WeakZeroSourceSIVTest() local
863 int64_t distance = 0; WeakZeroDestinationSIVTest() local
1025 int64_t distance = 0; WeakCrossingSIVTest() local
[all...]
/third_party/spirv-tools/source/opt/
H A Dloop_dependence.cpp399 // If source == destination, dependence with direction = and distance 0. in ZIVTest()
515 // based on distance. in StrongSIVTest()
538 // Build an SENode for distance. in StrongSIVTest()
559 int64_t distance = 0; in StrongSIVTest() local
571 // Check if the distance is not integral to try to prove independence. in StrongSIVTest()
574 "StrongSIVTest proved independence through distance not being an " in StrongSIVTest()
581 distance = delta_value / coefficient_value; in StrongSIVTest()
582 PrintDebug("StrongSIV test found distance as " + ToString(distance)); in StrongSIVTest()
586 // distance in StrongSIVTest()
710 int64_t distance = 0; WeakZeroSourceSIVTest() local
862 int64_t distance = 0; WeakZeroDestinationSIVTest() local
1024 int64_t distance = 0; WeakCrossingSIVTest() local
[all...]
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/
H A DDigitSequenceTest.java80 assertThat(domain().distance(DigitSequence.empty(), DigitSequence.of("0"))) in testDistance()
82 assertThat(domain().distance(DigitSequence.of("0"), DigitSequence.of("1"))) in testDistance()
84 assertThat(domain().distance(DigitSequence.of("0"), DigitSequence.of("00"))) in testDistance()
86 assertThat(domain().distance(DigitSequence.of("0"), DigitSequence.of("10"))) in testDistance()
88 assertThat(domain().distance(DigitSequence.of("10"), DigitSequence.of("0"))) in testDistance()
90 assertThat(domain().distance(DigitSequence.empty(), DigitSequence.of("000000"))) in testDistance()
92 assertThat(domain().distance(DigitSequence.of("000"), DigitSequence.of("000000"))) in testDistance()
94 // Max distance is one less than the total number of digit sequences. in testDistance()
95 assertThat(domain().distance(domain().minValue(), domain().maxValue())) in testDistance()
/third_party/libevdev/tools/
H A Dmouse-dpi-tool.c28 int distance; member
41 "the distance covered and maximum frequency of the incoming events.\n" in usage()
86 printf("\rCovered distance in device units: %8d at frequency %3.1fHz %c", in print_current_values()
87 abs(m->distance), m->max_frequency, status); in print_current_values()
104 m->distance = 0; in handle_event()
120 m->distance += ev->value; in handle_event()
217 printf("To calculate resolution, measure physical distance covered\n" in print_summary()
220 m->distance = abs(m->distance); in print_summary()
225 double inch = m->distance/(doubl in print_summary()
[all...]
/third_party/node/deps/npm/node_modules/color-convert/
H A Droute.js23 distance: -1,
36 graph[fromModel].distance = 0;
46 if (node.distance === -1) {
47 node.distance = graph[current].distance + 1;
/third_party/skia/src/effects/
H A DSk1DPathEffect.cpp29 SkScalar distance = this->begin(length); variable
30 while (distance < length && --governor >= 0) {
31 SkScalar delta = this->next(dst, distance, meas);
35 distance += delta;
45 /** Called with the current distance along the path, with the current matrix
46 for the point/tangent at the specified distance.
47 Return the distance to travel for the next call. If return <= 0, then that
209 SkScalar SkPath1DPathEffectImpl::next(SkPath* dst, SkScalar distance, in next() argument
219 if (meas.getPosTan(distance, &pos, nullptr)) { in next()
225 if (meas.getMatrix(distance, in next()
[all...]
/third_party/skia/third_party/externals/freetype/src/truetype/
H A Dttinterp.c1700 * - round distance (MIRP, MDRP) or value (MIAP, MDAP)
1702 * - check minimum distance (MIRP,MDRP)
1717 * Moves a point by a given distance along the freedom vector. The
1724 * distance ::
1725 * The distance to apply.
1739 FT_F26Dot6 distance ) in Direct_Move()
1753 FT_MulDiv( distance, in Direct_Move()
1765 FT_MulDiv( distance, in Direct_Move()
1773 FT_MulDiv( distance, in Direct_Move()
1791 FT_MulDiv( distance, in Direct_Move()
1954 Round_None( TT_ExecContext exc, FT_F26Dot6 distance, FT_Int color ) Round_None() argument
1997 Round_To_Grid( TT_ExecContext exc, FT_F26Dot6 distance, FT_Int color ) Round_To_Grid() argument
2042 Round_To_Half_Grid( TT_ExecContext exc, FT_F26Dot6 distance, FT_Int color ) Round_To_Half_Grid() argument
2089 Round_Down_To_Grid( TT_ExecContext exc, FT_F26Dot6 distance, FT_Int color ) Round_Down_To_Grid() argument
2133 Round_Up_To_Grid( TT_ExecContext exc, FT_F26Dot6 distance, FT_Int color ) Round_Up_To_Grid() argument
2178 Round_To_Double_Grid( TT_ExecContext exc, FT_F26Dot6 distance, FT_Int color ) Round_To_Double_Grid() argument
2229 Round_Super( TT_ExecContext exc, FT_F26Dot6 distance, FT_Int color ) Round_Super() argument
2283 Round_Super_45( TT_ExecContext exc, FT_F26Dot6 distance, FT_Int color ) Round_Super_45() argument
5882 FT_F26Dot6 distance; Ins_MSIRP() local
5953 FT_F26Dot6 distance; Ins_MDAP() local
5999 FT_F26Dot6 distance; Ins_MIAP() local
6113 FT_F26Dot6 org_dist, distance; Ins_MDRP() local
6252 distance, Ins_MIRP() local
6482 FT_F26Dot6 distance; Ins_ALIGNRP() local
6642 FT_F26Dot6 distance; Ins_ALIGNPTS() local
[all...]
/third_party/lzma/Java/SevenZip/Compression/LZ/
H A DOutWindow.java56 public void CopyBlock(int distance, int len) throws IOException in CopyBlock() argument
58 int pos = _pos - distance - 1; in CopyBlock()
78 public byte GetByte(int distance) in GetByte() argument
80 int pos = _pos - distance - 1; in GetByte()

Completed in 19 milliseconds

12345678910>>...21