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

  /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/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
  /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();
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...]
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...]
  /hardware/qcom/bootctrl/
boot_control.cpp 254 unsigned slot_count = 0; local
271 slot_count++;
274 return slot_count;
  /external/v8/src/compiler/
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-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...]
  /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...]

Completed in 551 milliseconds