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

  /external/v8/src/
code-stubs.h 345 explicit FastNewContextStub(int slots) : slots_(slots) {
346 ASSERT(slots_ > 0 && slots_ <= kMaximumSlots);
352 int slots_; member in class:v8::internal::FastNewContextStub
355 int MinorKey() { return slots_; }
363 explicit FastNewBlockContextStub(int slots) : slots_(slots) {
364 ASSERT(slots_ > 0 && slots_ <= kMaximumSlots);
370 int slots_; member in class:v8::internal::FastNewBlockContextStub
373 int MinorKey() { return slots_; }
    [all...]
mark-compact.h 294 slots_[idx_++] = slot;
382 ObjectSlot slots_[kNumberOfElements]; member in class:v8::internal::SlotsBuffer
mark-compact.cc     [all...]
  /external/v8/src/x64/
code-stubs-x64.cc 120 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
166 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
208 for (int i = 0; i < slots_; i++) {
    [all...]
  /external/v8/src/ia32/
code-stubs-ia32.cc 124 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
172 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
215 if (slots_ == 1) {
220 for (int i = 0; i < slots_; i++) {
    [all...]
  /external/v8/src/arm/
code-stubs-arm.cc 145 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
197 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
238 for (int i = 0; i < slots_; i++) {
    [all...]
  /external/v8/src/mips/
code-stubs-mips.cc 147 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
198 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
238 for (int i = 0; i < slots_; i++) {
    [all...]

Completed in 362 milliseconds