Searched defs:Block (Results 1 - 25 of 136) sorted by relevance

123456

/external/skia/src/sksl/ir/
H A DSkSLBlock.h19 struct Block : public Statement { struct in namespace:SkSL
20 Block(Position position, std::vector<std::unique_ptr<Statement>> statements, function in struct:SkSL::Block
/external/llvm/lib/Support/
H A DScopedPrinter.cpp24 ArrayRef<uint8_t> Data, bool Block) {
26 Block = true;
28 if (Block) {
23 printBinaryImpl(StringRef Label, StringRef Str, ArrayRef<uint8_t> Data, bool Block) argument
/external/skia/src/core/
H A DSkVarAlloc.cpp12 struct SkVarAlloc::Block { struct in class:SkVarAlloc
13 Block* prev;
16 static Block* Alloc(Block* prev, size_t size) {
17 SkASSERT(size >= sizeof(Block));
18 Block* b = (Block*)sk_malloc_throw(size);
39 Block* b = fBlock;
41 Block* prev = b->prev;
51 while (alloc < bytes + sizeof(Block)) {
[all...]
H A DSkDeque.cpp11 struct SkDeque::Block { struct in class:SkDeque
12 Block* fNext;
13 Block* fPrev;
46 if (storageSize >= sizeof(Block) + elemSize) {
47 fFrontBlock = (Block*)storage;
57 Block* head = fFrontBlock;
58 Block* initialHead = (Block*)fInitialStorage;
61 Block* next = head->fNext;
77 Block* firs
[all...]
/external/valgrind/none/tests/amd64/
H A Dmovbe.c13 typedef struct { UChar cs[40]; } Block; typedef in typeref:struct:__anon23647
15 void showBlock ( char* msg, Block* b )
31 void randBlock ( Block* b )
35 for (i = 0; i < sizeof(Block); i++)
46 Block* b = memalign32(sizeof(Block)); \
H A Davx-1.c16 typedef struct { YMM a1; YMM a2; YMM a3; YMM a4; ULong u64; } Block; typedef in typeref:struct:__anon23643
28 void showBlock ( char* msg, Block* block )
45 void randBlock ( Block* b )
49 for (i = 0; i < sizeof(Block); i++)
66 Block* b = memalign32(sizeof(Block)); \
H A Davx2-1.c22 typedef struct { YMM a1; YMM a2; YMM a3; YMM a4; ULong u64; } Block; typedef in typeref:struct:__anon23645
34 void showBlock ( char* msg, Block* block )
51 void randBlock ( Block* b )
55 for (i = 0; i < sizeof(Block); i++)
72 Block* b = memalign32(sizeof(Block)); \
/external/valgrind/none/tests/x86/
H A Dmovbe.c13 typedef struct { UChar cs[40]; } Block; typedef in typeref:struct:__anon23798
15 void showBlock ( char* msg, Block* b )
31 void randBlock ( Block* b )
35 for (i = 0; i < sizeof(Block); i++)
46 Block* b = memalign32(sizeof(Block)); \
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DSerializedGrammar.java49 Block block;
50 public Rule(String name, Block block) {
59 class Block { class in class:SerializedGrammar
61 public Block(List[] alts) { method in class:SerializedGrammar.Block
127 Block b = readBlock(in);
133 protected Block readBlock(DataInputStream in) throws IOException {
142 return new Block(alts);
172 Block b = readBlock(in);
/external/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h50 std::pair<llvm::NoneType, bool> insert(const CFGBlock *Block) { argument
52 // make sure that Block is non-null. Moreover, the CFGBlock iterator will
55 if (!Block)
57 if (VisitedBlockIDs.test(Block->getBlockID()))
59 VisitedBlockIDs.set(Block->getBlockID());
65 /// loop. Block must not be null.
66 bool alreadySet(const CFGBlock *Block) { argument
67 return VisitedBlockIDs.test(Block->getBlockID());
/external/deqp/framework/delibs/decpp/
H A DdeAppendList.hpp68 struct Block struct in class:de::AppendList
72 Block* volatile next;
74 Block (size_t blockNdx_, size_t size) function in struct:de::AppendList::Block
82 ~Block (void)
90 Block* m_first;
91 Block* volatile m_last;
98 Iterator (Block* curBlock_, size_t blockSize_, size_t slotNdx_)
148 Block* m_curBlock;
167 , m_first (new Block(0, blockSize))
176 Block* curBloc
[all...]
/external/llvm/lib/IR/
H A DGCOV.cpp154 errs() << "Block tag not found.\n";
162 return false; // Block flags;
209 GCOVBlock &Block = *Blocks[BlockNo]; local
234 Block.addLine(Line);
317 GCOVBlock &Block = *Blocks[BlockNo]; local
318 for (size_t EdgeNo = 0, End = Block.getNumDstEdges(); EdgeNo < End;
327 Block.addCount(EdgeNo, ArcCount);
330 Block.sortDstEdges();
351 for (const auto &Block : Blocks)
352 Block
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DBranchFolding.h35 MachineBasicBlock *Block; member in class:llvm::BranchFolder::MergePotentialsElt
38 : Hash(h), Block(b) {}
41 MachineBasicBlock *getBlock() const { return Block; }
44 Block = MBB;
/external/clang/lib/CodeGen/
H A DCGCleanup.h161 llvm::BasicBlock *Block; member in struct:clang::CodeGen::EHCatchScope::Handler
193 void setCatchAllHandler(unsigned I, llvm::BasicBlock *Block) { argument
194 setHandler(I, CatchTypeInfo{nullptr, 0}, Block);
197 void setHandler(unsigned I, llvm::Constant *Type, llvm::BasicBlock *Block) { argument
200 getHandlers()[I].Block = Block;
203 void setHandler(unsigned I, CatchTypeInfo Type, llvm::BasicBlock *Block) {
206 getHandlers()[I].Block = Block;
220 delete getHandler(I).Block;
[all...]
/external/eigen/Eigen/src/Core/
H A DBlock.h18 struct traits<Block<XprType, BlockRows, BlockCols, InnerPanel> > : traits<XprType>
69 /** \class Block
103 template<typename XprType, int BlockRows, int BlockCols, bool InnerPanel> class Block class in namespace:Eigen
110 EIGEN_GENERIC_PUBLIC_INTERFACE(Block)
111 EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Block)
118 inline Block(XprType& xpr, Index i) : Impl(xpr,i) function in class:Eigen::Block
128 inline Block(XprType& xpr, Index startRow, Index startCol) function in class:Eigen::Block
139 inline Block(XprType& xpr, function in class:Eigen::Block
173 : public internal::dense_xpr_base<Block<XprType, BlockRows, BlockCols, InnerPanel> >::type
175 typedef Block<XprTyp
[all...]
/external/google-breakpad/src/common/dwarf/
H A Dcfi_assembler.h166 CFISection &Block(const string &block) { function in class:google_breakpad::CFISection
/external/llvm/include/llvm/Analysis/
H A DLoopInfoImpl.h419 void insertIntoLoop(BlockT *Block);
429 /// Add a single Block to its ancestor loops in PostOrder. If the block is a
431 /// Block and Subloop vectors of the now complete subloop to achieve RPO.
433 void PopulateLoopsDFS<BlockT, LoopT>::insertIntoLoop(BlockT *Block) { argument
434 LoopT *Subloop = LI->getLoopFor(Block);
435 if (Subloop && Block == Subloop->getHeader()) {
452 Subloop->addBlockEntry(Block);
459 /// Block vectors are then populated during a single forward CFG traversal
467 /// The Block vectors are inclusive, so step 3 requires loop-depth number of
H A DScalarEvolutionExpander.h93 AssertingVH<BasicBlock> Block; member in class:llvm::SCEVExpander::SCEVInsertPointGuard
103 : Builder(B), Block(B.GetInsertBlock()), Point(B.GetInsertPoint()),
114 Builder.restoreIP(IRBuilderBase::InsertPoint(Block, Point));
/external/llvm/lib/CodeGen/
H A DBranchFolding.h44 MachineBasicBlock *Block; member in class:llvm::BranchFolder::MergePotentialsElt
47 : Hash(h), Block(b) {}
50 MachineBasicBlock *getBlock() const { return Block; }
53 Block = MBB;
H A DShrinkWrap.cpp259 MachineBasicBlock *FindIDom(MachineBasicBlock &Block, ListOfBBs BBs, argument
261 MachineBasicBlock *IDom = &Block;
267 if (IDom == &Block)
/external/llvm/lib/DebugInfo/PDB/Raw/
H A DPDBFile.cpp157 for (uint32_t Block : Blocks) {
158 uint64_t BlockEndOffset = (uint64_t)(Block + 1) * SB->BlockSize;
296 Error PDBFile::setSuperBlock(const SuperBlock *Block) { argument
297 SB = Block;
307 "Block size is not multiple of 4.");
/external/llvm/lib/Target/Hexagon/
H A DHexagonBlockRanges.h123 MachineBasicBlock &getBlock() const { return Block; }
132 MachineBasicBlock &Block; member in class:llvm::HexagonBlockRanges::IndexType::InstrIndexMap
/external/llvm/lib/Target/SystemZ/
H A DSystemZLongBranch.cpp147 void skipNonTerminators(BlockPosition &Position, MBBInfo &Block);
176 // Position describes the state immediately before Block. Update Block
180 MBBInfo &Block) {
181 if (Block.Alignment > Position.KnownBits) {
182 // When calculating the address of Block, we need to conservatively
183 // assume that Block had the worst possible misalignment.
184 Position.Address += ((uint64_t(1) << Block.Alignment) -
186 Position.KnownBits = Block.Alignment;
190 uint64_t AlignMask = (uint64_t(1) << Block
179 skipNonTerminators(BlockPosition &Position, MBBInfo &Block) argument
277 MBBInfo &Block = MBBs[I]; local
[all...]
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixIrreducibleControlFlow.cpp83 MachineBasicBlock *Block; member in class:__anon13188::MetaBlock
89 : Block(MBB), Preds(MBB->pred_begin(), MBB->pred_end()),
92 explicit MetaBlock(MachineLoop *Loop) : Block(Loop->getHeader()) {
94 for (MachineBasicBlock *Pred : Block->predecessors())
99 MachineBasicBlock *getBlock() const { return Block; }
108 bool operator==(const MetaBlock &MBB) { return Block == MBB.Block; }
109 bool operator!=(const MetaBlock &MBB) { return Block != MBB.Block; }
/external/llvm/unittests/DebugInfo/PDB/
H A DPDBApiTest.cpp333 InsertItemWithTag(PDB_SymType::Block); variable
395 VerifyDyncast<PDBSymbolBlock>(PDB_SymType::Block);

Completed in 681 milliseconds

123456