Searched defs:Zone (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Dblock-in-ctor-dtor.cpp7 class Zone { class
9 Zone();
10 ~Zone();
13 Zone::Zone() { function in class:Zone
18 Zone::~Zone() {
23 class X : public virtual Zone {
/external/v8/src/
H A Dzone.cc37 Zone::Zone() function in class:v8::internal::Zone
45 unsigned Zone::allocation_size_ = 0;
81 friend class Zone;
87 Segment* Zone::NewSegment(int size) {
100 void Zone::DeleteSegment(Segment* segment, int size) {
106 void Zone::DeleteAll() {
158 Address Zone::NewExpand(int size) {
160 // there isn't enough room in the Zone to satisfy the request.
183 V8::FatalProcessOutOfMemory("Zone");
[all...]
H A Dzone.h35 // Zone scopes are in one of two modes. Either they delete the zone
44 // The Zone supports very fast allocation of small chunks of
46 // the Zone supports deallocating all chunks in one fast
47 // operation. The Zone is used to hold temporary data structures like
50 // Note: There is no need to initialize the Zone; the first time an
57 class Zone { class in namespace:v8::internal
59 // Allocate 'size' bytes of memory in the Zone; expands the Zone by
66 // Delete all objects and free all memory allocated in the Zone.
102 Zone();
[all...]
/external/chromium/net/base/
H A Ddnssec_chain_verifier.cc170 struct DNSSECChainVerifier::Zone { struct in class:net::DNSSECChainVerifier
176 Zone* prev;
196 Zone* next;
197 for (Zone* cur = current_zone_; cur; cur = next) {
581 Zone* prev = current_zone_;
582 current_zone_ = new Zone;
695 Zone* prev = current_zone_->prev;

Completed in 140 milliseconds