/external/valgrind/memcheck/tests/solaris/ |
D | pkcs11.c | 15 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/ |
D | test-feedback-vector.h | 20 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
|
D | test-feedback-vector.cc | 54 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/ |
D | frame.h | 160 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()
|
D | js-operator.cc | 970 const Operator* JSOperatorBuilder::CreateFunctionContext(int slot_count) { in CreateFunctionContext() argument 975 slot_count); // parameter in CreateFunctionContext()
|
D | js-operator.h | 575 const Operator* CreateFunctionContext(int slot_count);
|
D | js-typed-lowering.cc | 1946 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()
|
D | ast-graph-builder.cc | 3174 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/ |
D | type-feedback-vector.cc | 55 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()
|
D | type-feedback-vector-inl.h | 36 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()
|
D | type-feedback-vector.h | 140 inline int slot_count() const; 192 inline int slot_count() const; 291 bool HasNext() const { return slot_.ToInt() < metadata()->slot_count(); } in HasNext()
|
D | code-factory.cc | 258 Callable CodeFactory::FastNewContext(Isolate* isolate, int slot_count) { in FastNewContext() argument 259 FastNewContextStub stub(isolate, slot_count); in FastNewContext()
|
D | code-factory.h | 91 static Callable FastNewContext(Isolate* isolate, int slot_count);
|
/external/libchrome/crypto/ |
D | nss_key_util.cc | 134 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/ |
D | vktestbinding.h | 352 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/ |
D | assembler-mips.h | 1361 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/ |
D | assembler-mips64.h | 1428 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/ |
D | assembler-ppc.h | 1417 Trampoline(int start, int slot_count) { in Trampoline() argument 1419 free_slot_count_ = slot_count; in Trampoline()
|
/external/v8/test/cctest/heap/ |
D | test-heap.cc | 3634 CHECK_EQ(expected_slots, feedback_helper.slot_count()); in TEST()
|