/external/pigweed/pw_allocator/ |
D | block_test.cc | 26 TEST(Block, CanCreateSingleBlock) { in TEST() argument 28 alignas(Block*) byte bytes[kN]; in TEST() 30 Block* block = nullptr; in TEST() 31 auto status = Block::Init(std::span(bytes, kN), &block); in TEST() 36 kN - sizeof(Block) - 2 * PW_ALLOCATOR_POISON_OFFSET); in TEST() 38 EXPECT_EQ(block->Next(), (Block*)((uintptr_t)block + kN)); in TEST() 43 TEST(Block, CannotCreateUnalignedSingleBlock) { in TEST() argument 47 alignas(Block*) byte bytes[kN]; in TEST() 50 Block* block = nullptr; in TEST() 51 auto status = Block::Init(std::span(byte_ptr + 1, kN - 1), &block); in TEST() [all …]
|
D | block.cc | 21 Status Block::Init(const std::span<std::byte> region, Block** block) { in Init() 23 if (reinterpret_cast<uintptr_t>(region.data()) % alignof(Block) != 0) { in Init() 27 if (region.size() < sizeof(Block)) { in Init() 32 Block* block; in Init() 41 aliased.block->next_ = reinterpret_cast<Block*>(region.end()); in Init() 52 Status Block::Split(size_t head_block_inner_size, Block** new_block) { in Split() 67 auto align_bit_mask = alignof(Block) - 1; in Split() 71 (head_block_inner_size & ~align_bit_mask) + alignof(Block); in Split() 84 sizeof(Block) + 2 * PW_ALLOCATOR_POISON_OFFSET) { in Split() 89 Block* new_next = reinterpret_cast<Block*>( in Split() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/test/val/ |
D | val_cfg_test.cpp | 58 class Block { class 62 std::vector<Block> successors_; 69 explicit Block(std::string label, SpvOp type = SpvOpBranch) in Block() function in spvtools::val::__anon78e745a80111::Block 73 Block& SetBody(std::string body) { in SetBody() 78 Block& AppendBody(std::string body) { in AppendBody() 94 for (Block& b : successors_) { in operator std::string() 135 friend Block& operator>>(Block& curr, std::vector<Block> successors); 136 friend Block& operator>>(Block& lhs, Block& successor); 140 Block& operator>>(Block& lhs, std::vector<Block> successors) { in operator >>() 151 Block& operator>>(Block& lhs, Block& successor) { in operator >>() [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/val/ |
D | val_cfg_test.cpp | 58 class Block { class 62 std::vector<Block> successors_; 69 explicit Block(std::string label, SpvOp type = SpvOpBranch) in Block() function in spvtools::val::__anonc9b73c1b0111::Block 73 Block& SetBody(std::string body) { in SetBody() 78 Block& AppendBody(std::string body) { in AppendBody() 94 for (Block& b : successors_) { in operator std::string() 135 friend Block& operator>>(Block& curr, std::vector<Block> successors); 136 friend Block& operator>>(Block& lhs, Block& successor); 140 Block& operator>>(Block& lhs, std::vector<Block> successors) { in operator >>() 151 Block& operator>>(Block& lhs, Block& successor) { in operator >>() [all …]
|
/external/deqp-deps/SPIRV-Tools/test/val/ |
D | val_cfg_test.cpp | 58 class Block { class 62 std::vector<Block> successors_; 69 explicit Block(std::string label, SpvOp type = SpvOpBranch) in Block() function in spvtools::val::__anonb264a4ae0111::Block 73 Block& SetBody(std::string body) { in SetBody() 78 Block& AppendBody(std::string body) { in AppendBody() 94 for (Block& b : successors_) { in operator std::string() 135 friend Block& operator>>(Block& curr, std::vector<Block> successors); 136 friend Block& operator>>(Block& lhs, Block& successor); 140 Block& operator>>(Block& lhs, std::vector<Block> successors) { in operator >>() 151 Block& operator>>(Block& lhs, Block& successor) { in operator >>() [all …]
|
/external/pigweed/pw_allocator/public/pw_allocator/ |
D | block.h | 81 class Block final { 84 Block(const Block& other) = delete; 85 Block& operator=(const Block& other) = delete; 86 Block(Block&& other) = delete; 87 Block& operator=(Block&& other) = delete; 95 static Status Init(const std::span<std::byte> region, Block** block); 104 static Block* FromUsableSpace(std::byte* usable_space) { in FromUsableSpace() 105 return reinterpret_cast<Block*>(usable_space - sizeof(Block) - in FromUsableSpace() 143 Status Split(size_t head_block_inner_size, Block** new_block); 179 next_ = reinterpret_cast<Block*>((NextAsUIntPtr() | kInUseFlag)); in MarkUsed() [all …]
|
/external/llvm-project/mlir/lib/IR/ |
D | Block.cpp | 30 Block::~Block() { in ~Block() 37 Region *Block::getParent() const { return parentValidOpOrderPair.getPointer(); } in getParent() 41 Operation *Block::getParentOp() { in getParentOp() 46 bool Block::isEntryBlock() { return this == &getParent()->front(); } in isEntryBlock() 50 void Block::insertBefore(Block *block) { in insertBefore() 58 void Block::moveBefore(Block *block) { in moveBefore() 65 void Block::erase() { in erase() 73 Operation *Block::findAncestorOpInBlock(Operation &op) { in findAncestorOpInBlock() 88 void Block::dropAllReferences() { in dropAllReferences() 93 void Block::dropAllDefinedValueUses() { in dropAllDefinedValueUses() [all …]
|
/external/llvm-project/lldb/source/Symbol/ |
D | Block.cpp | 23 Block::Block(lldb::user_id_t uid) in Block() function in Block 28 Block::~Block() {} in ~Block() 30 void Block::GetDescription(Stream *s, Function *function, in GetDescription() 58 void Block::Dump(Stream *s, addr_t base_addr, int32_t depth, in Dump() 61 Block *parent = GetParent(); in Dump() 71 const Block *parent_block = GetParent(); in Dump() 111 Block *Block::FindBlockByID(user_id_t block_id) { in FindBlockByID() 115 Block *matching_block = nullptr; in FindBlockByID() 125 void Block::CalculateSymbolContext(SymbolContext *sc) { in CalculateSymbolContext() 131 lldb::ModuleSP Block::CalculateSymbolContextModule() { in CalculateSymbolContextModule() [all …]
|
/external/e2fsprogs/tests/r_move_itable/ |
D | expect | 26 Block count: 9985 31 Block size: 1024 50 Block bitmap at 130 (+129), Inode bitmap at 131 (+130) 58 Block bitmap at 386 (+129), Inode bitmap at 387 (+130) 64 Block bitmap at 513 (+0), Inode bitmap at 514 (+1) 72 Block bitmap at 898 (+129), Inode bitmap at 899 (+130) 78 Block bitmap at 1025 (+0), Inode bitmap at 1026 (+1) 86 Block bitmap at 1410 (+129), Inode bitmap at 1411 (+130) 92 Block bitmap at 1537 (+0), Inode bitmap at 1538 (+1) 100 Block bitmap at 1922 (+129), Inode bitmap at 1923 (+130) [all …]
|
/external/llvm-project/mlir/include/mlir/IR/ |
D | BlockSupport.h | 22 class Block; variable 34 Block *(*)(BlockOperand &)> { 35 static Block *unwrap(BlockOperand &value); 38 using reference = Block *; 43 Block *(*)(BlockOperand &)>(it, &unwrap) {} in PredecessorIterator() 58 SuccessorRange, BlockOperand *, Block *, Block *, Block *> { 62 SuccessorRange(Block *block); 71 static Block *dereference_iterator(BlockOperand *object, ptrdiff_t index) { in dereference_iterator() 90 BlockRange, llvm::PointerUnion<BlockOperand *, Block *const *>, 91 Block *, Block *, Block *> { [all …]
|
D | Dominance.h | 15 extern template class llvm::DominatorTreeBase<mlir::Block, false>; 16 extern template class llvm::DominatorTreeBase<mlir::Block, true>; 19 using DominanceInfoNode = llvm::DomTreeNodeBase<Block>; 24 using base = llvm::DominatorTreeBase<Block, IsPostDom>; 40 Block *findNearestCommonDominator(Block *a, Block *b) const; 54 DominanceInfoNode *getNode(Block *a); 60 bool properlyDominates(Block *a, Block *b) const; 64 bool isReachableFromEntry(Block *a) const; 82 bool isReachableFromEntry(Block *a) const { in isReachableFromEntry() 113 bool dominates(Block *a, Block *b) const { in dominates() [all …]
|
D | BlockAndValueMapping.h | 30 void map(Block *from, Block *to) { valueMap[from] = to; } in map() 38 !std::is_assignable<Block *, S>::value> * = nullptr> 45 void erase(Block *from) { valueMap.erase(from); } in erase() 49 bool contains(Block *from) const { return valueMap.count(from); } in contains() 56 Block *lookupOrNull(Block *from) const { in lookupOrNull() 57 return lookupOrValue(from, (Block *)nullptr); in lookupOrNull() 63 Block *lookupOrDefault(Block *from) const { in lookupOrDefault() 82 Block *lookupOrValue(Block *from, Block *value) const { in lookupOrValue() 84 return it != valueMap.end() ? reinterpret_cast<Block *>(it->second) : value; in lookupOrValue()
|
/external/e2fsprogs/tests/m_meta_bg/ |
D | expect.1 | 27 Block count: 131072 32 Block size: 1024 49 Block bitmap at 3 (+2), Inode bitmap at 4 (+3) 56 Block bitmap at 1027 (+2), Inode bitmap at 1028 (+3) 62 Block bitmap at 2049 (+0), Inode bitmap at 2050 (+1) 69 Block bitmap at 3074 (+1), Inode bitmap at 3075 (+2) 75 Block bitmap at 4097 (+0), Inode bitmap at 4098 (+1) 82 Block bitmap at 5122 (+1), Inode bitmap at 5123 (+2) 88 Block bitmap at 6145 (+0), Inode bitmap at 6146 (+1) 95 Block bitmap at 7170 (+1), Inode bitmap at 7171 (+2) [all …]
|
/external/e2fsprogs/tests/m_desc_size_128/ |
D | expect.1 | 27 Block count: 131072 32 Block size: 1024 52 Block bitmap at 274 (+273), Inode bitmap at 275 (+274) 60 Block bitmap at 1298 (+273), Inode bitmap at 1299 (+274) 66 Block bitmap at 2049 (+0), Inode bitmap at 2050 (+1) 74 Block bitmap at 3346 (+273), Inode bitmap at 3347 (+274) 80 Block bitmap at 4097 (+0), Inode bitmap at 4098 (+1) 88 Block bitmap at 5394 (+273), Inode bitmap at 5395 (+274) 94 Block bitmap at 6145 (+0), Inode bitmap at 6146 (+1) 102 Block bitmap at 7442 (+273), Inode bitmap at 7443 (+274) [all …]
|
/external/e2fsprogs/tests/m_raid_opt/ |
D | expect.1 | 27 Block count: 131072 32 Block size: 1024 52 Block bitmap at 294 (+293), Inode bitmap at 295 (+294) 60 Block bitmap at 1331 (+306), Inode bitmap at 1332 (+307) 66 Block bitmap at 2107 (+58), Inode bitmap at 2108 (+59) 74 Block bitmap at 3405 (+332), Inode bitmap at 3406 (+333) 80 Block bitmap at 4181 (+84), Inode bitmap at 4182 (+85) 88 Block bitmap at 5479 (+358), Inode bitmap at 5480 (+359) 94 Block bitmap at 6255 (+110), Inode bitmap at 6256 (+111) 102 Block bitmap at 7553 (+384), Inode bitmap at 7554 (+385) [all …]
|
/external/llvm-project/mlir/test/Analysis/ |
D | test-number-of-block-executions.mlir | 8 // CHECK: Block: 0 17 // CHECK: Block: 0 21 // CHECK: Block: 1 25 // CHECK: Block: 2 34 // CHECK: Block: 0 38 // CHECK: Block: 1 42 // CHECK: Block: 2 46 // CHECK: Block: 3 50 // CHECK: Block: 4 59 // CHECK: Block: 0 [all …]
|
/external/e2fsprogs/tests/r_resize_inode/ |
D | expect | 24 Block count: 65536 29 Block size: 1024 48 Block bitmap at 259 (+258), Inode bitmap at 260 (+259) 56 Block bitmap at 1283 (+258), Inode bitmap at 1284 (+259) 62 Block bitmap at 2049 (+0), Inode bitmap at 2050 (+1) 70 Block bitmap at 3331 (+258), Inode bitmap at 3332 (+259) 76 Block bitmap at 4097 (+0), Inode bitmap at 4098 (+1) 84 Block bitmap at 5379 (+258), Inode bitmap at 5380 (+259) 90 Block bitmap at 6145 (+0), Inode bitmap at 6146 (+1) 98 Block bitmap at 7427 (+258), Inode bitmap at 7428 (+259) [all …]
|
/external/libgav1/libgav1/src/ |
D | tile.h | 97 struct Block; // Defined after this class. 320 bool ReadSegmentId(const Block& block); // 5.11.9. 321 bool ReadIntraSegmentId(const Block& block); // 5.11.8. 322 void ReadSkip(const Block& block); // 5.11.11. 323 void ReadSkipMode(const Block& block); // 5.11.10. 324 void ReadCdef(const Block& block); // 5.11.56. 328 void ReadQuantizerIndexDelta(const Block& block); // 5.11.12. 329 void ReadLoopFilterDelta(const Block& block); // 5.11.13. 332 void PopulateDeblockFilterLevel(const Block& block); 333 void ReadPredictionModeY(const Block& block, bool intra_y_mode); [all …]
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | Block.h | 41 class Block : public UserID, public SymbolContextScope { 61 Block(lldb::user_id_t uid); 64 ~Block() override; 89 Block *CalculateSymbolContextBlock() override; 119 bool Contains(const Block *block) const; 156 Block *GetParent() const; 165 Block *GetContainingInlinedBlock(); 172 Block *GetInlinedParent(); 187 Block * 195 Block *GetSibling() const; [all …]
|
/external/llvm-project/llvm/unittests/XRay/ |
D | ProfileTest.cpp | 56 Profile::Block{Profile::ThreadID{1}, in TEST() 66 Profile::Block{Profile::ThreadID{1}, in TEST() 74 Field(&Profile::Block::Thread, Eq(Profile::ThreadID{1})), in TEST() 75 Field(&Profile::Block::PathData, in TEST() 90 Profile::Block{Profile::ThreadID{1}, in TEST() 98 Field(&Profile::Block::Thread, Eq(Profile::ThreadID{1})), in TEST() 99 Field(&Profile::Block::PathData, in TEST() 117 Profile::Block{Profile::ThreadID{1}, in TEST() 121 Profile::Block{Profile::ThreadID{2}, in TEST() 126 Profile::Block{Profile::ThreadID{1}, in TEST() [all …]
|
/external/deqp-deps/glslang/SPIRV/ |
D | InReadableOrder.cpp | 56 using spv::Block; 64 ReadableOrderTraverser(std::function<void(Block*, spv::ReachReason, Block*)> callback) in ReadableOrderTraverser() argument 71 void visit(Block* block, spv::ReachReason why, Block* header) in visit() 81 Block* mergeBlock = nullptr; in visit() 82 Block* continueBlock = nullptr; in visit() 119 std::function<void(Block*, spv::ReachReason, Block*)> callback_; 121 std::unordered_set<Block *> visited_, delayed_; 124 std::unordered_set<Block *> reachableViaControlFlow_; 128 void spv::inReadableOrder(Block* root, std::function<void(Block*, spv::ReachReason, Block*)> callba… in inReadableOrder() argument
|
/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/ |
D | InReadableOrder.cpp | 56 using spv::Block; 64 ReadableOrderTraverser(std::function<void(Block*, spv::ReachReason, Block*)> callback) in ReadableOrderTraverser() argument 71 void visit(Block* block, spv::ReachReason why, Block* header) in visit() 81 Block* mergeBlock = nullptr; in visit() 82 Block* continueBlock = nullptr; in visit() 119 std::function<void(Block*, spv::ReachReason, Block*)> callback_; 121 std::unordered_set<Block *> visited_, delayed_; 124 std::unordered_set<Block *> reachableViaControlFlow_; 128 void spv::inReadableOrder(Block* root, std::function<void(Block*, spv::ReachReason, Block*)> callba… in inReadableOrder() argument
|
/external/swiftshader/src/Pipeline/ |
D | SpirvShaderControlFlow.cpp | 31 SpirvShader::Block::Block(InsnIterator begin, InsnIterator end) in Block() function in sw::SpirvShader::Block 36 kind = Block::Simple; in Block() 50 outs.emplace(Block::ID(branchInstruction.word(1))); in Block() 57 mergeBlock = Block::ID(mergeInstruction.word(1)); in Block() 58 continueTarget = Block::ID(mergeInstruction.word(2)); in Block() 62 kind = Block::Simple; in Block() 69 outs.emplace(Block::ID(branchInstruction.word(2))); in Block() 70 outs.emplace(Block::ID(branchInstruction.word(3))); in Block() 77 mergeBlock = Block::ID(mergeInstruction.word(1)); in Block() 83 mergeBlock = Block::ID(mergeInstruction.word(1)); in Block() [all …]
|
/external/e2fsprogs/tests/m_bigjournal/ |
D | expect.1 | 19 Block count: 2750000 24 Block size: 4096 53 Block bitmap at 673 (+673), Inode bitmap at 757 (+757) 61 Block bitmap at 674 (bg #0 + 674), Inode bitmap at 758 (bg #0 + 758) 67 Block bitmap at 675 (bg #0 + 675), Inode bitmap at 759 (bg #0 + 759) 75 Block bitmap at 676 (bg #0 + 676), Inode bitmap at 760 (bg #0 + 760) 81 Block bitmap at 677 (bg #0 + 677), Inode bitmap at 761 (bg #0 + 761) 89 Block bitmap at 678 (bg #0 + 678), Inode bitmap at 762 (bg #0 + 762) 95 Block bitmap at 679 (bg #0 + 679), Inode bitmap at 763 (bg #0 + 763) 103 Block bitmap at 680 (bg #0 + 680), Inode bitmap at 764 (bg #0 + 764) [all …]
|
/external/llvm-project/llvm/test/Analysis/IRSimilarityIdentifier/ |
D | basic.ll | 7 ; CHECK-NEXT: Function: cat, Basic Block: entry 8 ; CHECK-NEXT: Function: fish, Basic Block: entry 9 ; CHECK-NEXT: Function: dog, Basic Block: entry 10 ; CHECK-NEXT: Function: turtle, Basic Block: (unnamed) 12 ; CHECK-NEXT: Function: cat, Basic Block: entry 13 ; CHECK-NEXT: Function: fish, Basic Block: entry 14 ; CHECK-NEXT: Function: dog, Basic Block: entry 15 ; CHECK-NEXT: Function: turtle, Basic Block: (unnamed) 17 ; CHECK-NEXT: Function: cat, Basic Block: entry 18 ; CHECK-NEXT: Function: fish, Basic Block: entry [all …]
|