Home
last modified time | relevance | path

Searched refs:kElementCount (Results 1 – 17 of 17) sorted by relevance

/external/v8/test/mjsunit/
Dtyped-array-slice.js41 const kElementCount = 40; constant
49 var a = new type(kElementCount);
50 for (var i = 0; i < kElementCount; ++i ) {
Dexternal-array.js209 const kElementCount = 40; constant
212 for (var i = 0; i < kElementCount; i++) {
226 for (var i = 0; i < kElementCount; i++) {
308 assertEquals(undefined, a[kElementCount]);
309 a[kElementCount] = 456;
310 assertEquals(undefined, a[kElementCount]);
311 assertEquals(undefined, a[kElementCount+1]);
312 a[kElementCount+1] = 456;
313 assertEquals(undefined, a[kElementCount+1]);
318 var a = new type(kElementCount);
[all …]
/external/v8/src/full-codegen/
Dfull-codegen.h206 static const int kElementCount = TryBlockConstant::kElementCount;
211 *stack_depth += kElementCount; in Exit()
215 *stack_depth += kElementCount; in AccumulateDepth()
223 static const int kElementCount = TryBlockConstant::kElementCount;
231 *stack_depth += kElementCount; in AccumulateDepth()
242 static const int kElementCount = 3;
247 *stack_depth += kElementCount; in Exit()
251 *stack_depth += kElementCount; in AccumulateDepth()
259 static const int kElementCount = 5;
266 *stack_depth += kElementCount; in Exit()
[all …]
Dfull-codegen.cc1402 STATIC_ASSERT(TryBlockConstant::kElementCount == 1); in EnterTryBlock()
1412 __ Drop(TryBlockConstant::kElementCount); in ExitTryBlock()
1501 STATIC_ASSERT(TryFinally::kElementCount == 1); in Exit()
1507 __ Drop(*stack_depth + kElementCount); in Exit()
/external/v8/src/runtime/
Druntime-generator.cc69 int handler_depth = operands_count - TryBlockConstant::kElementCount; in RUNTIME_FUNCTION()
/external/v8/src/
Dframes.h72 static const int kElementCount = 1;
Disolate.cc1131 STATIC_ASSERT(TryBlockConstant::kElementCount == 1); in UnwindAndFindHandler()
/external/v8/test/cctest/
Dtest-api.cc15723 const int kElementCount = 260; in FixedTypedArrayTestHelper() local
15725 factory->NewJSTypedArray(elements_kind, kElementCount); in FixedTypedArrayTestHelper()
15730 CHECK_EQ(kElementCount, fixed_array->length()); in FixedTypedArrayTestHelper()
15732 for (int i = 0; i < kElementCount; i++) { in FixedTypedArrayTestHelper()
15737 for (int i = 0; i < kElementCount; i++) { in FixedTypedArrayTestHelper()
15744 context.local(), obj, kElementCount, array_type, in FixedTypedArrayTestHelper()
15809 const int kElementCount = 50; in TypedArrayTestHelper() local
15811 i::ScopedVector<ElementType> backing_store(kElementCount+2); in TypedArrayTestHelper()
15819 (kElementCount + 2) * sizeof(ElementType)); in TypedArrayTestHelper()
15821 TypedArray::New(ab, 2*sizeof(ElementType), kElementCount); in TypedArrayTestHelper()
[all …]
/external/v8/src/compiler/
Dast-graph-builder.cc1418 STATIC_ASSERT(TryBlockConstant::kElementCount == 1); in VisitTryCatchStatement()
1470 STATIC_ASSERT(TryBlockConstant::kElementCount == 1); in VisitTryFinallyStatement()
/external/v8/src/full-codegen/x87/
Dfull-codegen-x87.cc1913 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
/external/v8/src/full-codegen/arm64/
Dfull-codegen-arm64.cc4457 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
/external/v8/src/full-codegen/mips/
Dfull-codegen-mips.cc2007 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
/external/v8/src/full-codegen/ia32/
Dfull-codegen-ia32.cc1921 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
/external/v8/src/full-codegen/x64/
Dfull-codegen-x64.cc1946 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
/external/v8/src/full-codegen/arm/
Dfull-codegen-arm.cc2012 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
/external/v8/src/full-codegen/mips64/
Dfull-codegen-mips64.cc2005 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
/external/v8/src/full-codegen/ppc/
Dfull-codegen-ppc.cc1968 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()