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

  /external/v8/src/
regexp-stack.cc 76 DeleteArray(thread_local_.memory_);
84 DeleteArray(memory_);
99 reinterpret_cast<void*>(thread_local_.memory_),
101 DeleteArray(thread_local_.memory_);
103 thread_local_.memory_ = new_memory;
107 return thread_local_.memory_ + thread_local_.memory_size_;
regexp-stack.h 68 return thread_local_.memory_ + thread_local_.memory_size_;
108 // If memory_size_ > 0 then memory_ must be non-NULL.
109 Address memory_; member in struct:v8::internal::RegExpStack::ThreadLocal
113 memory_ = NULL;
122 return reinterpret_cast<Address>(&thread_local_.memory_);
platform-openbsd.cc 213 : file_(file), memory_(memory), size_(size) { }
215 virtual void* memory() { return memory_; }
219 void* memory_; member in class:v8::internal::PosixMemoryMappedFile
253 if (memory_) munmap(memory_, size_);
platform-cygwin.cc 206 : file_(file), memory_(memory), size_(size) { }
208 virtual void* memory() { return memory_; }
212 void* memory_; member in class:v8::internal::PosixMemoryMappedFile
246 if (memory_) munmap(memory_, size_);
platform-freebsd.cc 223 : file_(file), memory_(memory), size_(size) { }
225 virtual void* memory() { return memory_; }
229 void* memory_; member in class:v8::internal::PosixMemoryMappedFile
263 if (memory_) munmap(memory_, size_);
platform-macos.cc 205 : file_(file), memory_(memory), size_(size) { }
207 virtual void* memory() { return memory_; }
211 void* memory_; member in class:v8::internal::PosixMemoryMappedFile
245 if (memory_) munmap(memory_, size_);
platform-solaris.cc 227 : file_(file), memory_(memory), size_(size) { }
229 virtual void* memory() { return memory_; }
233 void* memory_; member in class:v8::internal::PosixMemoryMappedFile
267 if (memory_) munmap(memory_, size_);
platform-linux.cc 383 : file_(file), memory_(memory), size_(size) { }
385 virtual void* memory() { return memory_; }
389 void* memory_; member in class:v8::internal::PosixMemoryMappedFile
423 if (memory_) munmap(memory_, size_);
platform-win32.cc 971 memory_(memory),
974 virtual void* memory() { return memory_; }
979 void* memory_; member in class:v8::internal::Win32MemoryMappedFile
1021 if (memory_ != NULL)
1022 UnmapViewOfFile(memory_);
    [all...]
  /external/chromium/base/
shared_memory_win.cc 14 memory_(NULL),
22 memory_(NULL),
31 memory_(NULL),
40 memory_(NULL),
140 memory_ = MapViewOfFile(mapped_file_,
142 if (memory_ != NULL) {
149 if (memory_ == NULL)
152 UnmapViewOfFile(memory_);
153 memory_ = NULL;
188 if (memory_ != NULL)
    [all...]
shared_memory_posix.cc 32 memory_(NULL),
41 memory_(NULL),
57 memory_(NULL),
204 memory_ = mmap(NULL, bytes, PROT_READ | (read_only_ ? 0 : PROT_WRITE),
207 if (memory_)
210 bool mmap_succeeded = (memory_ != (void*)-1);
216 if (memory_ == NULL)
219 munmap(memory_, mapped_size_);
220 memory_ = NULL;
shared_memory.h 124 void *memory() const { return memory_; }
205 void* memory_; member in class:base::SharedMemory

Completed in 104 milliseconds