Searched defs:slot_count (Results 1 - 16 of 16) sorted by relevance

/external/valgrind/memcheck/tests/solaris/
H A Dpkcs11.c15 CK_ULONG slot_count; local
16 ret = C_GetSlotList(0, NULL, &slot_count);
22 CK_SLOT_ID_PTR slots = malloc(slot_count * sizeof(CK_SLOT_ID));
28 ret = C_GetSlotList(0, slots, &slot_count);
35 for (i = 0; i < slot_count; i++) {
/external/v8/test/cctest/
H A Dtest-feedback-vector.h20 int slot_count = vector->slot_count(); local
21 slots_.reserve(slot_count);
35 int slot_count() const { return static_cast<int>(slots_.size()); } function in class:v8::internal::FeedbackVectorHelper
/external/libchrome/crypto/
H A Dnss_key_util.cc134 int slot_count = item->module->loaded ? item->module->slotCount : 0; local
135 for (int i = 0; i < slot_count; i++) {
/external/v8/src/compiler/
H A Dframe.h123 int ReserveSpillSlots(size_t slot_count) { argument
125 spill_slot_count_ += static_cast<int>(slot_count);
126 frame_slot_count_ += static_cast<int>(slot_count);
H A Djs-generic-lowering.cc481 int const slot_count = OpParameter<int>(node->op()); local
485 if (slot_count <= FastNewContextStub::kMaximumSlots) {
486 Callable callable = CodeFactory::FastNewContext(isolate(), slot_count);
H A Djs-operator.cc885 const Operator* JSOperatorBuilder::CreateFunctionContext(int slot_count) { argument
890 slot_count); // parameter
H A Djs-create-lowering.cc651 int slot_count = OpParameter<int>(node->op()); local
655 if (slot_count < kFunctionContextAllocationLimit) {
656 // JSCreateFunctionContext[slot_count < limit]](fun)
666 int context_length = slot_count + Context::MIN_CONTEXT_SLOTS;
H A Dast-graph-builder.cc3235 int slot_count = scope->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
3236 const Operator* op = javascript()->CreateFunctionContext(slot_count);
/external/v8/src/
H A Dtype-feedback-vector-inl.h38 int TypeFeedbackMetadata::slot_count() const { function in class:v8::internal::TypeFeedbackMetadata
86 int TypeFeedbackVector::slot_count() const { function in class:v8::internal::TypeFeedbackVector
161 return next_slot_.ToInt() < metadata()->slot_count();
H A Dcode-factory.cc456 Callable CodeFactory::FastNewContext(Isolate* isolate, int slot_count) { argument
457 FastNewContextStub stub(isolate, slot_count);
H A Dtype-feedback-vector.cc79 const int slot_count = spec->slots(); local
80 const int slot_kinds_length = VectorICComputer::word_count(slot_count);
86 for (int i = 0; i < slot_count;) {
98 array->set(kSlotsCountIndex, Smi::FromInt(slot_count));
115 for (int i = 0; i < slot_count; i++) {
143 if (other_spec->slots() != slot_count()) {
147 int slots = slot_count();
172 if (other_metadata->slot_count() != slot_count()) {
176 int slots = slot_count();
235 const int slot_count = metadata->slot_count(); local
[all...]
H A Dobjects-printer.cc596 int slot_count = This()->slots(); local
597 os << " - slot_count: " << slot_count; local
598 if (slot_count == 0) {
603 for (int slot = 0, name_index = 0; slot < slot_count;) {
633 os << "\n - slot_count: " << slot_count();
/external/v8/src/mips/
H A Dassembler-mips.h1384 // Space for trampoline slots is equal to slot_count * 2 * kInstrSize.
1396 Trampoline(int start, int slot_count) { argument
1399 free_slot_count_ = slot_count;
1400 end_ = start + slot_count * kTrampolineSlotsSize;
/external/v8/src/mips64/
H A Dassembler-mips64.h1440 // Space for trampoline slots is equal to slot_count * 2 * kInstrSize.
1452 Trampoline(int start, int slot_count) { argument
1455 free_slot_count_ = slot_count;
1456 end_ = start + slot_count * kTrampolineSlotsSize;
/external/v8/src/ppc/
H A Dassembler-ppc.h1428 Trampoline(int start, int slot_count) { argument
1430 free_slot_count_ = slot_count;
/external/vulkan-validation-layers/tests/
H A Dvktestbinding.h352 uint32_t slot_count);
758 uint32_t slot_count) {
762 info.queryCount = slot_count;
757 create_info(VkQueryType type, uint32_t slot_count) argument

Completed in 276 milliseconds