Home
last modified time | relevance | path

Searched refs:kLength (Results 1 - 25 of 35) sorted by relevance

12

/third_party/jerryscript/tests/jerry/es2015/
H A Darray-prototype-fill.js79 var kLength = 5;
84 length: kLength,
98 assert (kLength === object.length);
101 for (var i = 0; i < kLength; ++i) {
122 var kLength = 5;
136 var object = { 0:0, 2:2, length: kLength};
141 assert (kLength === object.length);
149 for (var i = 0; i < kLength; ++i) {
/third_party/node/lib/internal/
H A Dblob.js72 const kLength = Symbol('kLength');
168 this[kLength] = length;
196 const length = this[kLength];
206 this[kLength] = length;
226 return this[kLength];
235 slice(start = 0, end = this[kLength], contentType = '') {
239 start = MathMax(this[kLength] + start, 0);
241 start = MathMin(start, this[kLength]);
246 end = MathMax(this[kLength]
[all...]
/third_party/node/deps/v8/src/objects/
H A Dlookup-cache.h37 for (int i = 0; i < kLength; ++i) { in DescriptorLookupCache()
46 static const int kLength = 64; member in v8::internal::DescriptorLookupCache
52 Key keys_[kLength];
53 int results_[kLength];
H A Dlookup-cache.cc11 for (int index = 0; index < kLength; index++) keys_[index].source = Map(); in Clear()
H A Dlookup-cache-inl.h21 return (source_hash ^ name_hash) % kLength; in Hash()
H A Dsource-text-module.h251 kLength
/third_party/skia/gm/
H A Dconvexpaths.cpp78 kLength = 100, in makePaths() enumerator
83 b.lineTo(kLength * SkIntToScalar(i) / kPtsPerSide, 0); in makePaths()
86 b.lineTo(kLength, kLength * SkIntToScalar(i) / kPtsPerSide); in makePaths()
89 b.lineTo(kLength * SkIntToScalar(i) / kPtsPerSide, kLength); in makePaths()
92 b.lineTo(0, kLength * SkIntToScalar(i) / kPtsPerSide); in makePaths()
/third_party/vixl/examples/aarch64/
H A Dneon-matrix-multiply.cc115 const int kLength = kRowSize * kColSize; in main() local
117 float mat1[kLength], mat2[kLength], output[kLength]; in main()
120 memset(output, 0, sizeof(output[0]) * kLength); in main()
124 // float mat1[kLength] = { 1.0f, 52.03f, 4.43f, ... }; in main()
/third_party/skia/third_party/externals/abseil-cpp/absl/memory/
H A Dmemory_exception_safety_test.cc28 constexpr int kLength = 50; member
49 static_cast<void>(absl::make_unique<Thrower[]>(kLength)); in TEST()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dcord_test.cc1127 constexpr size_t kLength = 256;
1128 std::string data = RandomLowercaseString(&rng, kLength);
1129 std::array<char, kLength> data_array;
1130 for (size_t i = 0; i < kLength; ++i) data_array[i] = data[i];
1290 static const int kLength = 1000;
1292 AddExternalMemory(std::string(kLength, 'x'), &cord);
1293 EXPECT_GT(cord.EstimatedMemoryUsage(), kLength);
1294 EXPECT_LE(cord.EstimatedMemoryUsage(), kLength * 1.5);
1298 static const int kLength = 125;
1299 absl::Cord a(std::string(kLength, '
[all...]
/third_party/skia/modules/svg/include/
H A DSkSVGValue.h23 kLength, member in SkSVGValue::Type
72 using SkSVGLengthValue = SkSVGWrapperValue<SkSVGLength , SkSVGValue::Type::kLength >;
H A DSkSVGTypes.h489 kLength, member in SkSVGFontSize::Type
495 : fType(Type::kLength) in SkSVGFontSize()
/third_party/vixl/test/aarch64/examples/
H A Dtest-examples.cc248 const int kLength = kRowSize * kColSize; in TEST() local
250 float mat1[kLength], mat2[kLength], expected[kLength], output[kLength]; in TEST()
297 for (int i = 0; i < kLength; i++) { in TEST()
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-async-gen.cc20 enum Fields { kDoneSlot = Context::MIN_CONTEXT_SLOTS, kLength }; enumerator
204 native_context, ValueUnwrapContext::kLength); in AllocateAsyncIteratorValueUnwrapContext()
H A Dbuiltins-definitions.h369 TFS(ArrayIncludesSmiOrObject, kElements, kSearchElement, kLength, \
371 TFS(ArrayIncludesPackedDoubles, kElements, kSearchElement, kLength, \
373 TFS(ArrayIncludesHoleyDoubles, kElements, kSearchElement, kLength, \
377 TFS(ArrayIndexOfSmiOrObject, kElements, kSearchElement, kLength, kFromIndex) \
378 TFS(ArrayIndexOfPackedDoubles, kElements, kSearchElement, kLength, \
380 TFS(ArrayIndexOfHoleyDoubles, kElements, kSearchElement, kLength, \
H A Dbuiltins-array-gen.cc1105 auto array_length = Parameter<Smi>(Descriptor::kLength); in TF_BUILTIN()
1115 auto array_length = Parameter<Smi>(Descriptor::kLength); in TF_BUILTIN()
1126 auto array_length = Parameter<Smi>(Descriptor::kLength); in TF_BUILTIN()
1146 auto array_length = Parameter<Smi>(Descriptor::kLength); in TF_BUILTIN()
1156 auto array_length = Parameter<Smi>(Descriptor::kLength); in TF_BUILTIN()
1167 auto array_length = Parameter<Smi>(Descriptor::kLength); in TF_BUILTIN()
/third_party/skia/third_party/externals/tint/src/sem/
H A Dintrinsic_type.h77 kLength, member in tint::sem::IntrinsicType
H A Dintrinsic_type.cc154 return IntrinsicType::kLength; in ParseIntrinsicType()
423 case IntrinsicType::kLength: in str()
H A Dintrinsic_test.cc83 IntrinsicData{"length", IntrinsicType::kLength},
/third_party/node/src/
H A Dmodule_wrap.h30 kLength = 9,
/third_party/node/deps/v8/src/heap/
H A Dmarking.h105 static const size_t kLength = ((1 << kPageSizeBits) >> kTaggedSizeLog2) + 1; member in v8::internal::Bitmap
113 static constexpr size_t CellsCount() { return CellsForLength(kLength); } in CellsCount()
/third_party/skia/third_party/externals/tint/src/writer/msl/
H A Dgenerator_impl_intrinsic_test.cc87 case IntrinsicType::kLength: in GenerateCall()
244 IntrinsicData{IntrinsicType::kLength, ParamType::kF32, "length"},
/third_party/skia/third_party/externals/tint/src/writer/hlsl/
H A Dgenerator_impl_intrinsic_test.cc91 case IntrinsicType::kLength: in GenerateCall()
231 IntrinsicData{IntrinsicType::kLength, ParamType::kF32, "length"},
/third_party/skia/third_party/externals/tint/src/writer/glsl/
H A Dgenerator_impl_intrinsic_test.cc91 case IntrinsicType::kLength: in GenerateCall()
231 IntrinsicData{IntrinsicType::kLength, ParamType::kF32, "length"},
/third_party/node/deps/v8/src/debug/
H A Ddebug-wasm-objects.cc840 static const int kLength = 3; member
844 Handle<FixedArray> data = isolate->factory()->NewFixedArray(kLength); in Create()
886 static const int kLength = 2; member
890 Handle<FixedArray> data = isolate->factory()->NewFixedArray(kLength); in Create()

Completed in 20 milliseconds

12