Searched defs:memory_ (Results 1 - 7 of 7) sorted by relevance

/external/v8/src/
H A Dregexp-stack.h53 return thread_local_.memory_ + thread_local_.memory_size_;
91 : memory_(NULL),
94 // If memory_size_ > 0 then memory_ must be non-NULL.
95 Address memory_; member in struct:v8::internal::RegExpStack::ThreadLocal
103 return reinterpret_cast<Address>(&thread_local_.memory_);
H A Dplatform-freebsd.cc207 : file_(file), memory_(memory), size_(size) { }
209 virtual void* memory() { return memory_; }
212 void* memory_; member in class:v8::internal::PosixMemoryMappedFile
233 if (memory_) munmap(memory_, size_);
H A Dplatform-macos.cc194 : file_(file), memory_(memory), size_(size) { }
196 virtual void* memory() { return memory_; }
199 void* memory_; member in class:v8::internal::PosixMemoryMappedFile
216 if (memory_) munmap(memory_, size_);
H A Dplatform-openbsd.cc205 : file_(file), memory_(memory), size_(size) { }
207 virtual void* memory() { return memory_; }
210 void* memory_; member in class:v8::internal::PosixMemoryMappedFile
231 if (memory_) munmap(memory_, size_);
H A Dplatform-solaris.cc199 : file_(file), memory_(memory), size_(size) { }
201 virtual void* memory() { return memory_; }
204 void* memory_; member in class:v8::internal::PosixMemoryMappedFile
225 if (memory_) munmap(memory_, size_);
H A Dplatform-linux.cc283 : file_(file), memory_(memory), size_(size) { }
285 virtual void* memory() { return memory_; }
288 void* memory_; member in class:v8::internal::PosixMemoryMappedFile
309 if (memory_) munmap(memory_, size_);
H A Dplatform-win32.cc917 : file_(file), file_mapping_(file_mapping), memory_(memory) { }
919 virtual void* memory() { return memory_; }
923 void* memory_; member in class:v8::internal::Win32MemoryMappedFile
945 if (memory_ != NULL)
946 UnmapViewOfFile(memory_);

Completed in 73 milliseconds