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.cc70 Zone::Zone() function in class:v8::internal::Zone
78 unsigned Zone::allocation_size_ = 0;
89 Segment* Zone::NewSegment(int size) {
101 void Zone::DeleteSegment(Segment* segment, int size) {
107 void Zone::DeleteAll() {
159 void Zone::DeleteKeptSegment() {
167 Address Zone::NewExpand(int size) {
169 // there isn't enough room in the Zone to satisfy the request.
184 V8::FatalProcessOutOfMemory("Zone");
[all...]
H A Dzone.h42 // Zone scopes are in one of two modes. Either they delete the zone
52 // The Zone supports very fast allocation of small chunks of
54 // the Zone supports deallocating all chunks in one fast
55 // operation. The Zone is used to hold temporary data structures like
58 // Note: There is no need to initialize the Zone; the first time an
65 class Zone { class in namespace:v8::internal
67 // Allocate 'size' bytes of memory in the Zone; expands the Zone by
74 // Deletes all objects and free all memory allocated in the Zone. Keeps one
118 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 132 milliseconds