Searched refs:kElementCount (Results 1 – 17 of 17) sorted by relevance
/external/v8/test/mjsunit/ |
D | typed-array-slice.js | 41 const kElementCount = 40; constant 49 var a = new type(kElementCount); 50 for (var i = 0; i < kElementCount; ++i ) {
|
D | external-array.js | 209 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/ |
D | full-codegen.h | 206 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 …]
|
D | full-codegen.cc | 1402 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/ |
D | runtime-generator.cc | 69 int handler_depth = operands_count - TryBlockConstant::kElementCount; in RUNTIME_FUNCTION()
|
/external/v8/src/ |
D | frames.h | 72 static const int kElementCount = 1;
|
D | isolate.cc | 1131 STATIC_ASSERT(TryBlockConstant::kElementCount == 1); in UnwindAndFindHandler()
|
/external/v8/test/cctest/ |
D | test-api.cc | 15723 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/ |
D | ast-graph-builder.cc | 1418 STATIC_ASSERT(TryBlockConstant::kElementCount == 1); in VisitTryCatchStatement() 1470 STATIC_ASSERT(TryBlockConstant::kElementCount == 1); in VisitTryFinallyStatement()
|
/external/v8/src/full-codegen/x87/ |
D | full-codegen-x87.cc | 1913 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
|
/external/v8/src/full-codegen/arm64/ |
D | full-codegen-arm64.cc | 4457 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
|
/external/v8/src/full-codegen/mips/ |
D | full-codegen-mips.cc | 2007 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
|
/external/v8/src/full-codegen/ia32/ |
D | full-codegen-ia32.cc | 1921 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
|
/external/v8/src/full-codegen/x64/ |
D | full-codegen-x64.cc | 1946 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
|
/external/v8/src/full-codegen/arm/ |
D | full-codegen-arm.cc | 2012 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
|
/external/v8/src/full-codegen/mips64/ |
D | full-codegen-mips64.cc | 2005 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
|
/external/v8/src/full-codegen/ppc/ |
D | full-codegen-ppc.cc | 1968 const int try_block_size = TryCatch::kElementCount * kPointerSize; in VisitYield()
|