HomeSort by relevance Sort by last modified time
    Searched refs:Memory (Results 51 - 75 of 124) sorted by null

1 23 4 5

  /external/v8/src/arm/
deoptimizer-arm.cc 125 ASSERT(Memory::int32_at(pc_after - kInstrSize) == kBlxIp);
130 Memory::int32_at(pc_after - 3 * kInstrSize));
133 Memory::int32_at(pc_after - 3 * kInstrSize));
150 uint32_t stack_check_address_offset = Memory::uint16_at(pc_after -
153 ASSERT(Memory::uint32_at(stack_check_address_pointer) ==
155 Memory::uint32_at(stack_check_address_pointer) =
168 ASSERT(Memory::int32_at(pc_after - kInstrSize) == kBlxIp);
177 Memory::int32_at(pc_after - 3 * kInstrSize));
181 Memory::int32_at(pc_after - 3 * kInstrSize));
186 uint32_t stack_check_address_offset = Memory::uint16_at(pc_after
    [all...]
  /external/mesa3d/docs/
MESA_agp_offset.spec 35 This extensions provides a way to convert pointers in an AGP memory
65 3.6 AGP Memory Access
67 On "PC" computers, AGP memory can be allocated with glXAllocateMemoryNV
69 block of AGP memory is located with respect to the start of the AGP
74 Returns the offset of the given memory block from the start of AGP
75 memory in basic machine units (i.e. bytes). If pointer is invalid
85 an AGP memory region.
  /libcore/luni/src/main/java/java/security/
SecureRandom.java 22 import libcore.io.Memory;
259 Memory.pokeLong(byteSeed, 0, seed, ByteOrder.BIG_ENDIAN);
  /external/v8/src/mips/
assembler-mips-inl.h 131 // serializer should not step forward in memory after a target is resolved
189 host(), &Memory::Object_at(pc_), HeapObject::cast(target));
203 Address address = Memory::Address_at(pc_);
211 Address address = Memory::Address_at(pc_);
222 Memory::Address_at(pc_) = address;
frames-mips.h 249 return Memory::Object_at(fp() + offset);
  /libcore/luni/src/main/java/java/nio/
MappedByteBuffer.java 22 import libcore.io.Memory;
27 * region of file to memory.
ByteBuffer.java 21 import libcore.io.Memory;
30 * <li>{@link #allocateDirect(int) Allocate} a memory block and create a direct
56 * Creates a direct byte buffer based on a newly allocated memory block.
785 Memory.memmove(dstObject, dstOffset, srcObject, srcOffset, srcByteCount);
    [all...]
ReadWriteDirectByteBuffer.java 21 import libcore.io.Memory;
25 * compose the implementation of platform memory based byte buffers.
65 Memory.memmove(this, 0, this, position, remaining());
  /libcore/luni/src/main/java/java/util/
UUID.java 27 import libcore.io.Memory;
156 long msb = Memory.peekLong(hash, 0, ByteOrder.BIG_ENDIAN);
157 long lsb = Memory.peekLong(hash, 8, ByteOrder.BIG_ENDIAN);
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 169 Memory
231 assert(Kind == Memory && "Invalid access!");
235 assert(Kind == Memory && "Invalid access!");
239 assert(Kind == Memory && "Invalid access!");
243 assert(Kind == Memory && "Invalid access!");
247 assert(Kind == Memory && "Invalid access!");
326 bool isMem() const { return Kind == Memory; }
328 return Kind == Memory && (!Mem.Size || Mem.Size == 8);
331 return Kind == Memory && (!Mem.Size || Mem.Size == 16);
334 return Kind == Memory && (!Mem.Size || Mem.Size == 32)
    [all...]
  /external/oprofile/events/x86-64/family10/
unit_masks 96 0x01 Memory controller high priority bypass
97 0x02 Memory controller medium priority bypass
113 0x04 Probe hit dirty without memory cancel
114 0x08 Probe hit dirty with memory cancel
145 0xa2 Requests Local I/O to Local Memory
149 0xa8 Requests Local CPU to Local Memory
150 0xaa Requests Local (CPU or I/O) to Local Memory
154 0x92 Requests Local I/O to Remote Memory
158 0x98 Requests Local CPU to Remote Memory
159 0x9a Requests Local (CPU or I/O) to Remote Memory
    [all...]
  /external/llvm/lib/Support/
MemoryBuffer.cpp 1 //===--- MemoryBuffer.cpp - Memory Buffer implementation ------------------===//
47 /// memory, memory that we know is already null terminated.
60 /// CopyStringRef - Copies contents of a StringRef into a block of memory and
62 static void CopyStringRef(char *Memory, StringRef Data) {
63 memcpy(Memory, Data.data(), Data.size());
64 Memory[Data.size()] = 0; // Null terminate string.
77 /// MemoryBufferMem - Named MemoryBuffer pointing to a block of memory.
95 /// getMemBuffer - Open the specified memory range as a MemoryBuffer. Note
104 /// getMemBufferCopy - Open the specified memory range as a MemoryBuffer
    [all...]
Android.mk 37 Memory.cpp \
Allocator.cpp 1 //===--- Allocator.cpp - Simple memory allocation abstraction -------------===//
18 #include "llvm/Support/Memory.h"
48 // to allocate more. Increase slab size to reduce mallocs and possibly memory
60 /// DeallocateSlabs - Deallocate all memory slabs after and including this
66 // Poison the memory so stale pointers crash sooner. Note we must
68 sys::Memory::setRangeWritable(Slab + 1, Slab->Size - sizeof(MemSlab));
77 /// to the beginning of it, freeing all memory allocated so far.
127 assert(CurPtr <= End && "Unable to allocate memory!");
155 errs() << "\nNumber of memory regions: " << NumSlabs << '\n'
  /external/v8/src/
safepoint-table.cc 65 length_ = Memory::uint32_at(header + kLengthOffset);
66 entry_size_ = Memory::uint32_at(header + kEntrySizeOffset);
  /libcore/luni/src/main/java/libcore/io/
Memory.java 26 * Unsafe access to memory.
28 public final class Memory {
29 private Memory() { }
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 1 //===-- JITMemoryManager.cpp - Memory Allocator for JIT'd code ------------===//
25 #include "llvm/Support/Memory.h"
44 STATISTIC(NumSlabs, "Number of slabs of memory allocated by the JIT");
49 // Memory Block Implementation.
53 /// MemoryRangeHeader - For a range of memory, this is the header that we put
54 /// on the block of memory. It is carefully crafted to be one word of memory.
68 /// BlockSize - This is the size in bytes of this memory block,
73 /// getBlockAfter - Return the memory block immediately after this one.
88 /// bits in the object headers, and adding an end of region memory block
    [all...]
  /libcore/luni/src/main/java/java/net/
InetAddress.java 40 import libcore.io.Memory;
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 521 /// such that the argument will be passed in memory.
869 // On Darwin, some vectors are passed in memory, we handle this by passing
    [all...]
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 33 char *Memory
35 memcpy(Memory, FileName.data(), FileName.size());
36 Memory[FileName.size()] = 0;
37 this->FileName = StringRef(Memory, FileName.size());
  /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/qemu/distrib/jpeg-6b/
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.
  /frameworks/compile/libbcc/lib/ExecutionEngine/
GDBJITRegistrar.cpp 19 //==----- GDBJITRegistrar.cpp - Notify GDB about in-memory object files ---==//
29 // register in-memory object files with GDB for debugging.
37 #include <llvm/Support/Memory.h>
72 // Buffer for an in-memory object file in executable memory
78 /// object files that are in executable memory managed by the client of this
81 /// A map of in-memory object files that have been registered with the GDB JIT interface.
93 /// which must contain an object file in executable memory with any
  /external/oprofile/events/i386/westmere/
events 16 event:0x0b counters:0,1,2,3 um:mem_inst_retired minimum:2000000 name:MEM_INST_RETIRED : Memory instructions retired above 0 clocks (Precise Event)
  /external/oprofile/events/x86-64/family11h/
events 54 event:0x65 counters:0,1,2,3 um:memreqtype minimum:500 name:MEMORY_REQUESTS : Memory requests by type
114 # Memory Controller events
117 event:0xe3 counters:0,1,2,3 um:turnaround minimum:500 name:MEMORY_CONTROLLER_TURNAROUNDS : Memory controller turnarounds
118 event:0xe4 counters:0,1,2,3 um:rbdqueue minimum:500 name:MEMORY_CONTROLLER_RBD_QUEUE_EVENTS : Memory controller RBD queue events
120 event:0xe9 counters:0,1,2,3 um:cpiorequests minimum:500 name:CPU_IO_REQUESTS_TO_MEMORY_IO : CPU/IO requests to memory/IO
127 event:0x1f0 counters:0,1,2,3 um:memory_controller_requests minimum:500 name:MEMORY_CONTROLLER_REQUESTS : Memory controller requests

Completed in 1670 milliseconds

1 23 4 5