OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:allocations_
(Results
1 - 7
of
7
) sorted by null
/system/core/libmemunreachable/
HeapWalker.cpp
36
auto inserted =
allocations_
.insert(std::pair<Range, AllocationInfo>(range, AllocationInfo{}));
63
AllocationMap::iterator it =
allocations_
.find(Range{value, value + 1});
64
if (it !=
allocations_
.end()) {
97
return
allocations_
.size();
125
for (auto it =
allocations_
.begin(); it !=
allocations_
.end(); it++) {
133
for (auto it =
allocations_
.begin(); it !=
allocations_
.end(); it++) {
HeapWalker.h
52
allocations_
(allocator), allocation_bytes_(0),
95
AllocationMap
allocations_
;
123
for (auto& it :
allocations_
) {
/external/v8/src/compiler/
greedy-allocator.h
105
return
allocations_
[i];
109
return
allocations_
[i];
190
ZoneVector<CoalescedLiveRanges*>
allocations_
;
member in class:v8::internal::compiler::final
greedy-allocator.cc
79
allocations_
(local_zone),
100
allocations_
.resize(num_registers());
102
allocations_
[i] = new (local_zone()) CoalescedLiveRanges(local_zone());
366
CHECK(
allocations_
.empty());
380
for (size_t i = 0; i <
allocations_
.size(); ++i) {
381
if (!
allocations_
[i]->empty()) {
385
allocations_
.clear();
/external/webrtc/webrtc/p2p/base/
turnserver.cc
127
for (AllocationMap::iterator it =
allocations_
.begin();
128
it !=
allocations_
.end(); ++it) {
431
AllocationMap::const_iterator it =
allocations_
.find(*conn);
432
return (it !=
allocations_
.end()) ? it->second : NULL;
448
allocations_
[*conn] = allocation;
513
AllocationMap::iterator it =
allocations_
.find(*(allocation->conn()));
514
if (it !=
allocations_
.end())
515
allocations_
.erase(it);
turnserver.h
175
const AllocationMap& allocations() const { return
allocations_
; }
271
AllocationMap
allocations_
;
member in class:cricket::TurnServer
/external/protobuf/src/google/protobuf/
descriptor.cc
461
vector<void*>
allocations_
; // All other memory allocated in the pool.
member in class:google::protobuf::DescriptorPool::Tables
472
allocations_before_checkpoint(tables->
allocations_
.size()),
588
// messages may refer to objects in
allocations_
.
590
for (int i = 0; i <
allocations_
.size(); i++) {
591
operator delete(
allocations_
[i]);
661
i <
allocations_
.size();
663
operator delete(
allocations_
[i]);
669
allocations_
.resize(checkpoint.allocations_before_checkpoint);
[
all
...]
Completed in 105 milliseconds