/third_party/jerryscript/tests/jerry/es2015/ |
H A D | array-prototype-fill.js | 79 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 D | blob.js | 72 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 D | lookup-cache.h | 37 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 D | lookup-cache.cc | 11 for (int index = 0; index < kLength; index++) keys_[index].source = Map(); in Clear()
|
H A D | lookup-cache-inl.h | 21 return (source_hash ^ name_hash) % kLength; in Hash()
|
H A D | source-text-module.h | 251 kLength
|
/third_party/skia/gm/ |
H A D | convexpaths.cpp | 78 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 D | neon-matrix-multiply.cc | 115 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 D | memory_exception_safety_test.cc | 28 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 D | cord_test.cc | 1127 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 D | SkSVGValue.h | 23 kLength, member in SkSVGValue::Type 72 using SkSVGLengthValue = SkSVGWrapperValue<SkSVGLength , SkSVGValue::Type::kLength >;
|
H A D | SkSVGTypes.h | 489 kLength, member in SkSVGFontSize::Type 495 : fType(Type::kLength) in SkSVGFontSize()
|
/third_party/vixl/test/aarch64/examples/ |
H A D | test-examples.cc | 248 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 D | builtins-async-gen.cc | 20 enum Fields { kDoneSlot = Context::MIN_CONTEXT_SLOTS, kLength }; enumerator 204 native_context, ValueUnwrapContext::kLength); in AllocateAsyncIteratorValueUnwrapContext()
|
H A D | builtins-definitions.h | 369 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 D | builtins-array-gen.cc | 1105 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 D | intrinsic_type.h | 77 kLength, member in tint::sem::IntrinsicType
|
H A D | intrinsic_type.cc | 154 return IntrinsicType::kLength; in ParseIntrinsicType() 423 case IntrinsicType::kLength: in str()
|
H A D | intrinsic_test.cc | 83 IntrinsicData{"length", IntrinsicType::kLength},
|
/third_party/node/src/ |
H A D | module_wrap.h | 30 kLength = 9,
|
/third_party/node/deps/v8/src/heap/ |
H A D | marking.h | 105 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 D | generator_impl_intrinsic_test.cc | 87 case IntrinsicType::kLength: in GenerateCall() 244 IntrinsicData{IntrinsicType::kLength, ParamType::kF32, "length"},
|
/third_party/skia/third_party/externals/tint/src/writer/hlsl/ |
H A D | generator_impl_intrinsic_test.cc | 91 case IntrinsicType::kLength: in GenerateCall() 231 IntrinsicData{IntrinsicType::kLength, ParamType::kF32, "length"},
|
/third_party/skia/third_party/externals/tint/src/writer/glsl/ |
H A D | generator_impl_intrinsic_test.cc | 91 case IntrinsicType::kLength: in GenerateCall() 231 IntrinsicData{IntrinsicType::kLength, ParamType::kF32, "length"},
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-wasm-objects.cc | 840 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()
|