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

  /external/v8/src/
regexp-stack.h 53 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_);
platform-macos.cc 194 : 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_);
platform-openbsd.cc 205 : 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_);
platform-solaris.cc 199 : 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_);
platform-freebsd.cc 207 : 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_);
platform-linux.cc 283 : 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_);
platform-win32.cc 917 : 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_);
    [all...]

Completed in 85 milliseconds