Home
last modified time | relevance | path

Searched refs:allocated_ (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-register-allocator.cc16 allocated_(builder->zone()), in BytecodeRegisterAllocator()
22 for (auto i = allocated_.rbegin(); i != allocated_.rend(); i++) { in ~BytecodeRegisterAllocator()
25 allocated_.clear(); in ~BytecodeRegisterAllocator()
38 allocated_.push_back(allocated); in NewRegister()
45 for (auto i = allocated_.begin(); i != allocated_.end(); i++) { in RegisterIsAllocatedInThisScope()
65 allocated_.push_back(next_consecutive_register_); in NextConsecutiveRegister()
Dbytecode-register-allocator.h37 ZoneVector<int> allocated_; variable
/external/google-breakpad/src/testing/gtest/samples/
Dsample10_unittest.cc57 allocated_++; in operator new()
62 allocated_--; in operator delete()
66 static int allocated() { return allocated_; } in allocated()
69 static int allocated_; member in __anonc39d625d0111::Water
72 int Water::allocated_ = 0; member in __anonc39d625d0111::Water
/external/protobuf/gtest/samples/
Dsample10_unittest.cc57 allocated_++; in operator new()
62 allocated_--; in operator delete()
66 static int allocated() { return allocated_; } in allocated()
69 static int allocated_; member in __anon1c945ea60111::Water
72 int Water::allocated_ = 0; member in __anon1c945ea60111::Water
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
Dsample10_unittest.cc57 allocated_++; in operator new()
62 allocated_--; in operator delete()
66 static int allocated() { return allocated_; } in allocated()
69 static int allocated_; member in __anon36c5fa3e0111::Water
72 int Water::allocated_ = 0; member in __anon36c5fa3e0111::Water
/external/sfntly/cpp/src/sfntly/data/
Dmemory_byte_array.cc24 : ByteArray(0, length), b_(NULL), allocated_(true) { in MemoryByteArray()
28 : ByteArray(filled_length, filled_length), b_(b), allocated_(false) { in MemoryByteArray()
45 if (allocated_ && b_ == NULL) { in Init()
82 if (allocated_ && b_) { in Close()
Dmemory_byte_array.h76 bool allocated_; variable
/external/jsoncpp/src/lib_json/
Djson_value.cpp325 : type_(other.type_), allocated_(false) in Value()
343 allocated_ = true; in Value()
346 allocated_ = false; in Value()
384 if (allocated_) in ~Value()
418 int temp2 = allocated_; in swap()
419 allocated_ = other.allocated_; in swap()
420 other.allocated_ = temp2; in swap()
898 allocated_ = allocated; in initBasic()
/external/v8/src/heap/
Dincremental-marking.cc39 allocated_(0), in IncrementalMarking()
1142 allocated_ += allocated_bytes; in Step()
1144 if (marking == DO_NOT_FORCE_MARKING && allocated_ < kAllocatedThreshold && in Step()
1174 Max(allocated_, write_barriers_invoked_since_last_step_); in Step()
1175 allocated_ = 0; in Step()
Dincremental-marking.h283 intptr_t allocated_; variable
/external/jsoncpp/
DNEWS.txt59 - Patch #15: Copy constructor does not initialize allocated_ for stringValue
/external/jsoncpp/include/json/
Dvalue.h492 int allocated_ : 1; // Notes: if declared as bool, bitfield is useless. variable