HomeSort by relevance Sort by last modified time
    Searched refs:Memory (Results 1 - 25 of 37) sorted by null

1 2

  /external/v8/src/
frames-inl.h 56 return FromAddress(Memory::Address_at(address() + offset));
80 return static_cast<State>(Memory::int_at(address() + offset));
86 return Memory::Address_at(address() + offset);
92 Memory::Address_at(address() + offset) = value;
102 return Memory::Object_at(GetExpressionAddress(index));
107 Memory::Object_at(GetExpressionAddress(index)) = value;
113 return Memory::Object_at(fp() + offset);
118 return Memory::Address_at(fp() + StandardFrameConstants::kCallerFPOffset);
123 return Memory::Address_at(ComputePCAddress(fp()));
134 Memory::Object_at(fp + StandardFrameConstants::kContextOffset)
    [all...]
memory.h 34 // Memory provides an interface to 'raw' memory. It encapsulates the casts
37 class Memory {
frames.cc 256 Address caller_fp = Memory::Address_at(
396 Address fp = Memory::Address_at(this->fp() + offset);
408 return Memory::Object_at(fp() + offset);
420 state->fp = Memory::Address_at(fp() + ExitFrameConstants::kCallerFPOffset);
467 return Memory::Object_at(caller_sp() + offset - (index * kPointerSize));
482 fp = Memory::Address_at(fp + StandardFrameConstants::kCallerFPOffset);
501 Object* code = Memory::Object_at(fp() + offset);
673 Object** base = &Memory::Object_at(sp());
674 Object** limit = &Memory::Object_at(fp() + offset) + 1;
696 Object** base = &Memory::Object_at(fp() + kBaseOffset)
    [all...]
spaces-inl.h 31 #include "memory.h"
114 FixedArray::SizeFor(Memory::int_at(page->ObjectAreaStart()
125 Memory::uint32_at(rset_address) |= bitmask;
135 Memory::uint32_at(rset_address) &= ~bitmask;
144 return (Memory::uint32_at(rset_address) & bitmask) != 0;
scopeinfo.cc 255 Object** p0 = &Memory::Object_at(code->sinfo_start());
326 Object** p0 = &Memory::Object_at(code->sinfo_start());
342 Object** start = &Memory::Object_at(code->sinfo_start());
343 Object** end = &Memory::Object_at(code->sinfo_start() + code->sinfo_size());
351 return &Memory::Object_at(code->sinfo_start()) + 2;
377 Object** p = &Memory::Object_at(code->sinfo_start()) + 1;
495 Object** p = &Memory::Object_at(code->sinfo_start());
mark-compact.cc 868 Memory::uint32_at(free_start) = kSingleFreeEncoding;
871 Memory::uint32_at(free_start) = kMultiFreeEncoding;
872 Memory::int_at(free_start + kIntSize) = free_size;
881 Memory::Address_at(free_start + offset) = kZapValue;
    [all...]
spaces.cc 235 // Commit the requested memory at the start of the current allocation block.
263 delete code_range_; // Frees all memory in the virtual memory range.
502 Memory::Address_at(start + s) = kZapValue;
578 // memory.
648 // Try to use the virtual memory range passed to us. If it is too small to
1002 // Setup new space based on the preallocated memory block defined by
    [all...]
  /external/v8/src/x64/
assembler-x64-inl.h 32 #include "memory.h"
48 Memory::uint32_at(pc_) = x;
54 Memory::uint64_at(pc_) = x;
63 Memory::uint16_at(pc_) = x;
174 return Memory::int32_at(pc) + pc + 4;
179 Memory::int32_at(pc) = static_cast<int32_t>(target - pc - 4);
184 return code_targets_[Memory::int32_at(pc)];
194 Memory::Address_at(pc_) += static_cast<int32_t>(delta);
196 Memory::int32_at(pc_) -= static_cast<int32_t>(delta);
200 Memory::int32_at(pc_ + 1) -= static_cast<int32_t>(delta); // relocate entr
    [all...]
frames-x64.cc 45 Object* marker = Memory::Object_at(state->fp + offset);
54 Address sp = Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
frames-x64.h 116 return Memory::Object_at(fp() + offset);
  /external/v8/src/arm/
assembler-arm-inl.h 84 return Memory::Object_at(Assembler::target_address_address_at(pc_));
90 return Memory::Object_Handle_at(Assembler::target_address_address_at(pc_));
116 return Memory::Address_at(pc_ + 2 * Assembler::kInstrSize);
124 Memory::Address_at(pc_ + 2 * Assembler::kInstrSize) = target;
219 Instr instr = Memory::int32_at(target_pc);
226 instr = Memory::int32_at(target_pc);
240 return Memory::Address_at(target_address_address_at(pc));
246 Memory::Address_at(constant_pool_entry) = target;
251 Memory::Address_at(target_address_address_at(pc)) = target;
assembler-thumb2-inl.h 84 return Memory::Object_at(Assembler::target_address_address_at(pc_));
90 return Memory::Object_Handle_at(Assembler::target_address_address_at(pc_));
116 return Memory::Address_at(pc_ + 2 * Assembler::kInstrSize);
124 Memory::Address_at(pc_ + 2 * Assembler::kInstrSize) = target;
219 Instr instr = Memory::int32_at(target_pc);
226 instr = Memory::int32_at(target_pc);
240 return Memory::Address_at(target_address_address_at(pc));
246 Memory::Address_at(constant_pool_entry) = target;
251 Memory::Address_at(target_address_address_at(pc)) = target;
frames-arm.cc 51 Object* marker = Memory::Object_at(state->fp + offset);
62 Object* code = Memory::Object_at(fp + offset);
frames-arm.h 156 return Memory::Object_at(fp() + offset);
  /external/v8/src/ia32/
frames-ia32.cc 45 Object* marker = Memory::Object_at(state->fp + offset);
54 Address sp = Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
frames-ia32.h 129 return Memory::Object_at(fp() + offset);
assembler-ia32-inl.h 88 return Memory::Object_at(pc_);
94 return Memory::Object_Handle_at(pc_);
100 return &Memory::Object_at(pc_);
106 Memory::Object_at(pc_) = target;
  /external/v8/src/mips/
frames-mips.cc 47 Object* marker = Memory::Object_at(state->fp + offset);
58 Object* code = Memory::Object_at(fp + offset);
frames-mips.h 159 return Memory::Object_at(fp() + offset);
assembler-mips-inl.h 154 return Memory::Address_at(pc_ + 2 * Assembler::kInstrSize);
162 Memory::Address_at(pc_ + 2 * Assembler::kInstrSize) = target;
  /external/openssl/crypto/des/times/
aix.cc 10 Memory : 96 MB
  /frameworks/base/include/binder/
IMemory.h 72 DECLARE_META_INTERFACE(Memory);
  /external/jpeg/
jmemmac.c 9 * dependent portion of the JPEG memory manager.
16 * memory available by using CompactMem. Notice that if left to its
61 #include <Memory.h> /* we use the MacOS memory manager */
75 * Memory allocation and freeing are controlled by the MacOS library
115 * This routine computes the total memory space available for allocation.
132 * We add some slop to ensure we don't use up all available memory.
149 * with these routines if you have plenty of virtual memory; see jmemnobs.c.
  /external/neven/
Android.mk 38 Embedded/common/src/b_BasicEm/Memory.c \
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
Memory.java 57 public class Memory extends PreferenceActivity implements OnCancelListener {
58 private static final String TAG = "Memory";

Completed in 1657 milliseconds

1 2