HomeSort by relevance Sort by last modified time
    Searched refs:slot_count (Results 1 - 23 of 23) sorted by null

  /external/v8/test/cctest/
test-feedback-vector.h 20 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
test-feedback-vector.cc 54 CHECK_EQ(1, helper.slot_count());
62 CHECK_EQ(1, helper.slot_count());
75 CHECK_EQ(8, helper.slot_count());
129 CHECK_EQ(40, helper.slot_count());
348 CHECK_EQ(1, helper.slot_count());
437 CHECK_EQ(4, helper.slot_count());
456 CHECK_EQ(2, helper.slot_count());
476 CHECK_EQ(5, helper.slot_count());
498 CHECK_EQ(3, helper.slot_count());
518 CHECK_EQ(6, helper.slot_count());
    [all...]
  /external/valgrind/memcheck/tests/solaris/
pkcs11.c 15 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/src/compiler/
frame.h 123 int ReserveSpillSlots(size_t slot_count) {
125 spill_slot_count_ += static_cast<int>(slot_count);
126 frame_slot_count_ += static_cast<int>(slot_count);
js-generic-lowering.cc 481 int const slot_count = OpParameter<int>(node->op()); local
485 if (slot_count <= FastNewContextStub::kMaximumSlots) {
486 Callable callable = CodeFactory::FastNewContext(isolate(), slot_count);
js-operator.h 484 const Operator* CreateFunctionContext(int slot_count);
js-operator.cc     [all...]
js-create-lowering.cc 651 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;
    [all...]
ast-graph-builder.cc 3235 int slot_count = scope->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
    [all...]
  /external/libchrome/crypto/
nss_key_util.cc 134 int slot_count = item->module->loaded ? item->module->slotCount : 0; local
135 for (int i = 0; i < slot_count; i++) {
  /external/v8/src/
type-feedback-vector-inl.h 38 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();
type-feedback-vector.cc 79 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...]
code-factory.h 122 static Callable FastNewContext(Isolate* isolate, int slot_count);
objects-printer.cc 596 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();
    [all...]
code-factory.cc 456 Callable CodeFactory::FastNewContext(Isolate* isolate, int slot_count) {
457 FastNewContextStub stub(isolate, slot_count);
type-feedback-vector.h 159 // 0: slot_count
189 inline int slot_count() const;
229 // 3 + slot_count - 1: feedback slot #(slot_count-1)
244 inline int slot_count() const;
  /hardware/qcom/bootctrl/
boot_control.cpp 254 unsigned slot_count = 0; local
271 slot_count++;
274 return slot_count;
  /external/vulkan-validation-layers/tests/
vktestbinding.h 352 uint32_t slot_count);
758 uint32_t slot_count) {
762 info.queryCount = slot_count;
    [all...]
  /external/v8/src/mips/
assembler-mips.h     [all...]
  /external/v8/src/mips64/
assembler-mips64.h     [all...]
  /external/v8/src/ppc/
assembler-ppc.h     [all...]
  /art/runtime/
debugger.cc 2543 int32_t slot_count = request->ReadSigned32("slot count"); local
2714 int32_t slot_count = request->ReadSigned32("slot count"); local
    [all...]
  /external/v8/test/cctest/heap/
test-heap.cc     [all...]

Completed in 748 milliseconds