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

  /frameworks/base/cmds/idmap2/include/idmap2/
ZipFile.h 29 struct MemoryChunk {
33 static std::unique_ptr<MemoryChunk> Allocate(size_t size);
36 MemoryChunk() {
44 std::unique_ptr<const MemoryChunk> Uncompress(const std::string& entryPath) const;
  /external/vulkan-validation-layers/layers/
gpu_validation.h 52 struct MemoryChunk {
63 std::list<MemoryChunk> chunk_list_;
66 VkResult AllocMemoryChunk(MemoryChunk &chunk);
67 void FreeMemoryChunk(MemoryChunk &chunk);
  /external/v8/src/heap/
heap-write-barrier-inl.h 24 struct MemoryChunk {
30 V8_INLINE static heap_internals::MemoryChunk* FromHeapObject(
32 return reinterpret_cast<MemoryChunk*>(reinterpret_cast<Address>(object) &
52 heap_internals::MemoryChunk* value_chunk =
53 heap_internals::MemoryChunk::FromHeapObject(value);
54 heap_internals::MemoryChunk* object_chunk =
55 heap_internals::MemoryChunk::FromHeapObject(object);
65 heap_internals::MemoryChunk* value_chunk =
66 heap_internals::MemoryChunk::FromHeapObject(value);
106 heap_internals::MemoryChunk* array_chunk
    [all...]
spaces.h 46 class MemoryChunk;
248 // MemoryChunk represents a memory region owned by a specific space.
252 class MemoryChunk {
256 size_t operator()(MemoryChunk* const chunk) const {
417 // Only works if the pointer is in the first kPageSize of the MemoryChunk.
418 static MemoryChunk* FromAddress(Address a) {
419 return reinterpret_cast<MemoryChunk*>(OffsetFrom(a) & ~kAlignmentMask);
421 // Only works if the object is in the first kPageSize of the MemoryChunk.
422 static MemoryChunk* FromHeapObject(const HeapObject* o) {
423 return reinterpret_cast<MemoryChunk*>(reinterpret_cast<Address>(o)
    [all...]

Completed in 239 milliseconds