HomeSort by relevance Sort by last modified time
    Searched refs:blocks_ (Results 1 - 25 of 26) sorted by null

1 2

  /frameworks/base/tools/aapt2/util/
BigBuffer.cpp 28 if (!blocks_.empty()) {
29 Block& block = blocks_.back();
49 blocks_.push_back(std::move(block));
51 return blocks_.back().buffer.get();
55 if (!blocks_.empty()) {
56 Block& block = blocks_.back();
73 blocks_.push_back(std::move(block));
76 return blocks_.back().buffer.get();
81 for (const Block& block : blocks_) {
BigBuffer.h 133 std::vector<Block> blocks_; member in class:aapt::BigBuffer
142 blocks_(std::move(rhs.blocks_)) {}
157 Block& block = blocks_.back();
163 std::move(buffer.blocks_.begin(), buffer.blocks_.end(),
164 std::back_inserter(blocks_));
166 buffer.blocks_.clear();
180 return blocks_.begin();
184 return blocks_.end()
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
function.h 55 void AddBasicBlock(BasicBlock&& b) { blocks_.push_back(std::move(b)); }
57 const std::vector<BasicBlock>& basic_blocks() const { return blocks_; }
58 std::vector<BasicBlock>& basic_blocks() { return blocks_; }
71 std::vector<BasicBlock> blocks_; // All basic blocks inside this function. member in class:spvtools::ir::Function
function.cpp 35 for (auto& bb : blocks_) bb.ForEachInst(f);
42 for (const auto& bb : blocks_) bb.ToBinary(binary, skip_nop);
  /system/update_engine/payload_generator/
extent_ranges.h 49 ExtentRanges() : blocks_(0) {}
72 uint64_t blocks() const { return blocks_; }
83 uint64_t blocks_; member in class:chromeos_update_engine::ExtentRanges
extent_ranges.cc 100 blocks_ -= del_blocks;
101 blocks_ += extent.num_blocks();
151 blocks_ -= del_blocks;
214 LOG(INFO) << "ExtentRanges Dump. blocks: " << blocks_;
235 CHECK(count <= blocks_);
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/val/
Function.cpp 73 blocks_(),
106 BasicBlock& merge_block = blocks_.at(merge_id);
107 BasicBlock& continue_block = blocks_.at(continue_id);
127 BasicBlock& merge_block = blocks_.at(merge_id);
149 for (const auto& block : blocks_) {
175 blocks_.insert({block_id, BasicBlock(block_id)});
208 blocks_.insert({successor_id, BasicBlock(successor_id)});
238 size_t Function::block_count() const { return blocks_.size(); }
285 const auto b = blocks_.find(block_id);
286 if (b != end(blocks_)) {
    [all...]
Function.h 210 std::unordered_map<uint32_t, BasicBlock> blocks_; member in class:libspirv::Function
  /bootable/recovery/updater/include/updater/
rangeset.h 33 RangeSet() : blocks_(0) {}
49 blocks_ = result;
79 CHECK_LT(idx, blocks_) << "Out of bound index " << idx << " (total blocks: " << blocks_ << ")"; local
117 return blocks_;
163 size_t blocks_; member in class:RangeSet
  /external/protobuf/src/google/protobuf/
arena.cc 60 blocks_ = 0;
157 b->next = reinterpret_cast<Block*>(google::protobuf::internal::NoBarrier_Load(&blocks_));
158 google::protobuf::internal::Release_Store(&blocks_, reinterpret_cast<google::protobuf::internal::AtomicWord>(b));
234 Block* b = reinterpret_cast<Block*>(google::protobuf::internal::NoBarrier_Load(&blocks_));
244 Block* b = reinterpret_cast<Block*>(google::protobuf::internal::NoBarrier_Load(&blocks_));
256 Block* b = reinterpret_cast<Block*>(google::protobuf::internal::NoBarrier_Load(&blocks_));
267 Block* b = reinterpret_cast<Block*>(google::protobuf::internal::NoBarrier_Load(&blocks_));
284 blocks_ = 0;
313 Block* b = reinterpret_cast<Block*>(google::protobuf::internal::Acquire_Load(&blocks_));
arena.h 881 google::protobuf::internal::AtomicWord blocks_; \/\/ Head of linked list of all allocated blocks member in class:google::protobuf::final
    [all...]
  /external/v8/src/compiler/
liveness-analyzer.cc 19 blocks_(zone),
25 for (auto block : blocks_) {
35 blocks_.size(), local_count_, has_accumulator_, zone());
36 blocks_.push_back(result);
65 for (auto block : blocks_) {
85 for (auto block : blocks_) {
liveness-analyzer.h 77 ZoneDeque<LivenessAnalyzerBlock*> blocks_; member in class:v8::internal::compiler::LivenessAnalyzer
  /art/compiler/optimizing/
optimizing_cfi_test.cc 54 blocks_(allocator_.Adapter()) {}
85 code_gen_->block_order_ = &blocks_;
150 ArenaVector<HBasicBlock*> blocks_; member in class:art::OptimizingCFITest
nodes.cc 50 block->SetBlockId(blocks_.size());
51 blocks_.push_back(block);
59 ArenaBitVector visiting(arena_, blocks_.size(), false, kArenaAllocGraphBuilder);
61 ArenaVector<size_t> successors_visited(blocks_.size(),
111 for (size_t i = 0; i < blocks_.size(); ++i) {
113 HBasicBlock* block = blocks_[i];
124 for (size_t i = 0; i < blocks_.size(); ++i) {
126 HBasicBlock* block = blocks_[i];
134 blocks_[i] = nullptr;
146 ArenaBitVector visited(arena_, blocks_.size(), false, kArenaAllocGraphBuilder)
    [all...]
nodes.h 317 blocks_(arena->Adapter(kArenaAllocBlockList)),
349 blocks_.reserve(kDefaultNumberOfBlocks);
356 const ArenaVector<HBasicBlock*>& GetBlocks() const { return blocks_; }
634 ArenaVector<HBasicBlock*> blocks_; member in class:art::HGraph
755 blocks_(graph->GetArena(), graph->GetBlocks().size(), true, kArenaAllocLoopInfoBackEdges) {
820 const ArenaBitVector& GetBlocks() const { return blocks_; }
826 blocks_.ClearAllBits();
832 return blocks_.GetHighestBitSet() != -1;
849 ArenaBitVector blocks_; member in class:art::HLoopInformation
    [all...]
  /external/v8/src/
api.h 368 List<Object**> blocks_; member in class:v8::internal::DeferredHandles
392 blocks_(0),
476 inline List<internal::Object**>* blocks() { return &blocks_; }
487 blocks_.Initialize(0);
498 DCHECK(blocks_.length() == 0);
502 blocks_.Free();
516 List<internal::Object**> blocks_; member in class:v8::internal::HandleScopeImplementer
623 while (!blocks_.is_empty()) {
624 internal::Object** block_start = blocks_.last();
635 blocks_.RemoveLast()
    [all...]
global-handles.h 452 return &blocks_[index >> kShift][index & kMask];
456 List<Object**> blocks_; member in class:v8::internal::EternalHandles
global-handles.cc     [all...]
api.cc     [all...]
  /external/v8/src/wasm/
wasm-interpreter.cc 927 blocks_(zone) {}
944 blocks_.push_back(
1044 ZoneVector<Block> blocks_; member in class:v8::internal::wasm::__anon36209::ThreadImpl
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc 683 blocks_.Add(block, block->zone());
744 for (int i = 0; i < blocks_.length(); i++) {
745 HBasicBlock* block = blocks_.at(i);
794 DCHECK(blocks_.at(0)->predecessors()->is_empty());
798 ReachabilityAnalyzer analyzer(entry_block_, blocks_.length(), NULL);
799 DCHECK(analyzer.visited_count() == blocks_.length());
805 for (int i = 0; i < blocks_.length(); ++i) {
806 HBasicBlock* block = blocks_.at(i);
813 blocks_.length(),
    [all...]
hydrogen.h 282 blocks_(8, zone),
284 blocks_.Add(loop_header, zone);
289 const ZoneList<HBasicBlock*>* blocks() const { return &blocks_; }
318 ZoneList<HBasicBlock*> blocks_; member in class:v8::internal::final
331 const ZoneList<HBasicBlock*>* blocks() const { return &blocks_; }
482 ZoneList<HBasicBlock*> blocks_; member in class:v8::internal::final
    [all...]
  /external/protobuf/js/binary/
writer.js 83 this.blocks_ = [];
86 * Total number of bytes in the blocks_ array. Does _not_ include bytes in
119 this.blocks_.push(temp);
120 this.blocks_.push(arr);
135 this.blocks_.push(bookmark);
196 this.blocks_ = [];
212 var blocks = this.blocks_;
231 this.blocks_ = [flat];
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
arena.h 881 google::protobuf::internal::AtomicWord blocks_; \/\/ Head of linked list of all allocated blocks member in class:google::protobuf::final
    [all...]

Completed in 445 milliseconds

1 2