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

  /external/llvm/include/llvm/Support/
Memory.h 29 class MemoryBlock {
31 MemoryBlock() : Address(nullptr), Size(0) { }
32 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
42 /// MemoryBlock instances.
66 /// MemoryBlock.
73 /// \r a non-null MemoryBlock if the function was successful,
74 /// otherwise a null MemoryBlock is with \p EC describing the error.
77 static MemoryBlock allocateMappedMemory(size_t NumBytes,
78 const MemoryBlock *const NearBlock,
91 static std::error_code releaseMappedMemory(MemoryBlock &Block)
    [all...]
  /libcore/luni/src/main/java/java/nio/
DirectByteBuffer.java 32 protected DirectByteBuffer(MemoryBlock block, int capacity, int offset, boolean isReadOnly, MapMode mapMode) {
49 this(MemoryBlock.wrapFromJni(address, capacity), capacity, 0, false, null);
MemoryBlock.java 33 class MemoryBlock {
37 private static class MemoryMappedBlock extends MemoryBlock {
67 private static class NonMovableHeapBlock extends MemoryBlock {
89 private static class UnmanagedBlock extends MemoryBlock {
100 public static MemoryBlock mmap(FileDescriptor fd, long offset, long size, MapMode mapMode) throws IOException {
103 return new MemoryBlock(0, 0);
129 public static MemoryBlock allocate(int byteCount) {
136 public static MemoryBlock wrapFromJni(long address, long byteCount) {
140 private MemoryBlock(long address, long size) {
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmscgats.c 171 char* MemoryBlock; // The stream if holded in memory
1040 if (it8->MemoryBlock)
1041 _cmsFree(it8 ->ContextID, it8->MemoryBlock);
    [all...]

Completed in 360 milliseconds