Home
last modified time | relevance | path

Searched refs:slot_count (Results 1 – 19 of 19) sorted by relevance

/external/valgrind/memcheck/tests/solaris/
Dpkcs11.c15 CK_ULONG slot_count; in main() local
16 ret = C_GetSlotList(0, NULL, &slot_count); in main()
22 CK_SLOT_ID_PTR slots = malloc(slot_count * sizeof(CK_SLOT_ID)); in main()
28 ret = C_GetSlotList(0, slots, &slot_count); in main()
35 for (i = 0; i < slot_count; i++) { in main()
/external/v8/test/cctest/
Dtest-feedback-vector.h20 int slot_count = vector->slot_count(); in FeedbackVectorHelper() local
21 slots_.reserve(slot_count); in FeedbackVectorHelper()
35 int slot_count() const { return static_cast<int>(slots_.size()); } in slot_count() function
Dtest-feedback-vector.cc54 CHECK_EQ(1, helper.slot_count()); in TEST()
62 CHECK_EQ(1, helper.slot_count()); in TEST()
75 CHECK_EQ(8, helper.slot_count()); in TEST()
129 CHECK_EQ(40, helper.slot_count()); in TEST()
313 CHECK_EQ(1, helper.slot_count()); in TEST()
402 CHECK_EQ(4, helper.slot_count()); in TEST()
421 CHECK_EQ(2, helper.slot_count()); in TEST()
438 CHECK_EQ(5, helper.slot_count()); in TEST()
460 CHECK_EQ(3, helper.slot_count()); in TEST()
479 CHECK_EQ(6, helper.slot_count()); in TEST()
[all …]
/external/v8/src/compiler/
Dframe.h160 int ReserveSpillSlots(size_t slot_count) { in ReserveSpillSlots() argument
164 spill_slot_count_ += static_cast<int>(slot_count); in ReserveSpillSlots()
165 frame_slot_count_ += static_cast<int>(slot_count); in ReserveSpillSlots()
Djs-operator.cc970 const Operator* JSOperatorBuilder::CreateFunctionContext(int slot_count) { in CreateFunctionContext() argument
975 slot_count); // parameter in CreateFunctionContext()
Djs-operator.h575 const Operator* CreateFunctionContext(int slot_count);
Djs-typed-lowering.cc1946 int slot_count = OpParameter<int>(node->op()); in ReduceJSCreateFunctionContext() local
1950 if (slot_count < kFunctionContextAllocationLimit) { in ReduceJSCreateFunctionContext()
1961 int context_length = slot_count + Context::MIN_CONTEXT_SLOTS; in ReduceJSCreateFunctionContext()
1977 if (slot_count <= FastNewContextStub::kMaximumSlots) { in ReduceJSCreateFunctionContext()
1979 Callable callable = CodeFactory::FastNewContext(isolate, slot_count); in ReduceJSCreateFunctionContext()
Dast-graph-builder.cc3174 int slot_count = scope->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; in BuildLocalFunctionContext() local
3175 const Operator* op = javascript()->CreateFunctionContext(slot_count); in BuildLocalFunctionContext()
/external/v8/src/
Dtype-feedback-vector.cc55 const int slot_count = spec->slots(); in New() local
56 const int slot_kinds_length = VectorICComputer::word_count(slot_count); in New()
63 for (int i = 0; i < slot_count;) { in New()
75 array->set(kSlotsCountIndex, Smi::FromInt(slot_count)); in New()
83 for (int i = 0; i < slot_count; i++) { in New()
92 if (other_spec->slots() != slot_count()) { in SpecDiffersFrom()
96 int slots = slot_count(); in SpecDiffersFrom()
135 const int slot_count = metadata->slot_count(); in New() local
136 const int length = slot_count + kReservedIndexCount; in New()
Dtype-feedback-vector-inl.h36 int TypeFeedbackMetadata::slot_count() const { in slot_count() function
64 int TypeFeedbackVector::slot_count() const { in slot_count() function
85 DCHECK(slot.ToInt() < slot_count()); in GetIndex()
Dtype-feedback-vector.h140 inline int slot_count() const;
192 inline int slot_count() const;
291 bool HasNext() const { return slot_.ToInt() < metadata()->slot_count(); } in HasNext()
Dcode-factory.cc258 Callable CodeFactory::FastNewContext(Isolate* isolate, int slot_count) { in FastNewContext() argument
259 FastNewContextStub stub(isolate, slot_count); in FastNewContext()
Dcode-factory.h91 static Callable FastNewContext(Isolate* isolate, int slot_count);
/external/libchrome/crypto/
Dnss_key_util.cc134 int slot_count = item->module->loaded ? item->module->slotCount : 0; in FindNSSKeyFromPublicKeyInfo() local
135 for (int i = 0; i < slot_count; i++) { in FindNSSKeyFromPublicKeyInfo()
/external/vulkan-validation-layers/tests/
Dvktestbinding.h352 uint32_t slot_count);
758 uint32_t slot_count) { in create_info() argument
762 info.queryCount = slot_count; in create_info()
/external/v8/src/mips/
Dassembler-mips.h1361 Trampoline(int start, int slot_count) { in Trampoline() argument
1364 free_slot_count_ = slot_count; in Trampoline()
1365 end_ = start + slot_count * kTrampolineSlotsSize; in Trampoline()
/external/v8/src/mips64/
Dassembler-mips64.h1428 Trampoline(int start, int slot_count) { in Trampoline() argument
1431 free_slot_count_ = slot_count; in Trampoline()
1432 end_ = start + slot_count * kTrampolineSlotsSize; in Trampoline()
/external/v8/src/ppc/
Dassembler-ppc.h1417 Trampoline(int start, int slot_count) { in Trampoline() argument
1419 free_slot_count_ = slot_count; in Trampoline()
/external/v8/test/cctest/heap/
Dtest-heap.cc3634 CHECK_EQ(expected_slots, feedback_helper.slot_count()); in TEST()