Searched refs:Block (Results 176 - 200 of 418) sorted by relevance

1234567891011>>

/external/eigen/test/
H A Dumeyama.cpp148 Block<MatrixX, Dimension, Dynamic> src_block(src,0,0,dim,num_elements);
149 Block<MatrixX, Dimension, Dynamic> dst_block(dst,0,0,dim,num_elements);
/external/llvm/lib/DebugInfo/CodeView/
H A DSymbolDumper.cpp88 void CVSymbolDumperImpl::visitBlockSym(SymbolKind Kind, BlockSym &Block) { argument
92 W.printHex("PtrParent", Block.Header.PtrParent);
93 W.printHex("PtrEnd", Block.Header.PtrEnd);
94 W.printHex("CodeSize", Block.Header.CodeSize);
96 ObjDelegate->printRelocatedField("CodeOffset", Block.getRelocationOffset(),
97 Block.Header.CodeOffset, &LinkageName);
99 W.printHex("Segment", Block.Header.Segment);
100 W.printString("BlockName", Block.Name);
/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/python/cpython2/Lib/compiler/
H A Dpyassem.py13 self.current = self.entry = Block()
14 self.exit = Block("exit")
54 b = Block()
72 if len(inst) == 2 and isinstance(inst[1], Block):
165 class Block: class in inherits:
172 self.bid = Block._count
175 Block._count = Block._count + 1
/external/python/cpython3/Lib/turtledemo/
H A Dsorting_animate.py22 class Block(Turtle): class in inherits:Turtle
39 return "Block size: {0}".format(self.size)
174 s.push(Block(i))
/external/llvm/lib/CodeGen/
H A DInlineSpiller.cpp1115 MachineBasicBlock *Block = CurrentSpill->getParent(); local
1116 MachineDomTreeNode *Node = MDT.DT->getNode(Block);
1124 SpillBBToSpill[MDT.DT->getNode(Block)] = SpillToKeep;
1126 SpillBBToSpill[MDT.DT->getNode(Block)] = CurrentSpill;
1165 MachineBasicBlock *Block = Spill->getParent(); local
1166 MachineDomTreeNode *Node = MDT[Block];
1169 // If Node dominates Block, and it already contains a spill, the spill in
1170 // Block will be redundant.
1171 if (Node != MDT[Block] && SpillBBToSpill[Node]) {
1172 SpillToRm = SpillBBToSpill[MDT[Block]];
1262 MachineBasicBlock *Block = (*RIt)->getBlock(); local
[all...]
H A DMachineTraceMetrics.cpp1312 const MachineTraceMetrics::TraceBlockInfo *Block = &TBI;
1314 while (Block->hasValidDepth() && Block->Pred) {
1315 unsigned Num = Block->Pred->getNumber();
1317 Block = &TE.BlockInfo[Num];
1320 Block = &TBI;
1322 while (Block->hasValidHeight() && Block->Succ) {
1323 unsigned Num = Block->Succ->getNumber();
1325 Block
[all...]
/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
/external/clang/lib/AST/
H A DStmt.cpp934 Stmt *Block)
939 Children[BLOCK] = Block;
943 Expr *FilterExpr, Stmt *Block) {
944 return new(C) SEHExceptStmt(Loc,FilterExpr,Block);
948 Stmt *Block)
951 Block(Block)
955 Stmt *Block) {
956 return new(C)SEHFinallyStmt(Loc,Block);
932 SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block) argument
942 Create(const ASTContext &C, SourceLocation Loc, Expr *FilterExpr, Stmt *Block) argument
947 SEHFinallyStmt(SourceLocation Loc, Stmt *Block) argument
954 Create(const ASTContext &C, SourceLocation Loc, Stmt *Block) argument
/external/clang/lib/Analysis/
H A DBodyFarm.cpp187 const ParmVarDecl *Block = D->getParamDecl(1); local
188 QualType Ty = Block->getType();
205 DeclRefExpr *DR = M.makeDeclRefExpr(Block);
/external/clang/lib/Parse/
H A DParseStmt.cpp1 //===--- ParseStmt.cpp - Statement and Block Parser -----------------------===//
10 // This file implements the Statement and Block portions of the Parser
515 StmtResult Block(ParseCompoundStatement());
517 if(Block.isInvalid())
518 return Block;
520 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.get(), Block.get());
539 StmtResult Block(ParseCompoundStatement());
540 if(Block.isInvalid()) {
542 return Block;
545 return Actions.ActOnFinishSEHFinallyBlock(FinallyLoc, Block
[all...]
/external/clang/lib/Sema/
H A DSemaLambda.cpp1672 BlockDecl *Block = BlockDecl::Create(Context, CurContext, ConvLocation);
1675 Block->setSignatureAsWritten(CallOperator->getTypeSourceInfo());
1676 Block->setIsVariadic(CallOperator->isVariadic());
1677 Block->setBlockMissingReturnType(false);
1683 BlockParams.push_back(ParmVarDecl::Create(Context, Block,
1692 Block->setParams(BlockParams);
1694 Block->setIsConversionFromLambda(true);
1701 VarDecl *CapVar = VarDecl::Create(Context, Block, ConvLocation,
1707 Block->setCaptures(Context, Capture, /*CapturesCXXThis=*/false);
1711 Block
[all...]
/external/eigen/Eigen/src/Geometry/
H A DTransform.h223 typedef Block<MatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> LinearPart;
225 typedef const Block<ConstMatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> ConstLinearPart;
229 Block<MatrixType,Dim,HDim> >::type AffinePart;
233 const Block<const MatrixType,Dim,HDim> >::type ConstAffinePart;
237 typedef Block<MatrixType,Dim,1,!(internal::traits<MatrixType>::Flags & RowMajorBit)> TranslationPart;
239 typedef const Block<ConstMatrixType,Dim,1,!(internal::traits<MatrixType>::Flags & RowMajorBit)> ConstTranslationPart;
661 EIGEN_DEVICE_FUNC inline Block<MatrixType,int(Mode)==int(Projective)?HDim:Dim,Dim> linearExt()
667 EIGEN_DEVICE_FUNC inline const Block<MatrixType,int(Mode)==int(Projective)?HDim:Dim,Dim> linearExt() const
674 EIGEN_DEVICE_FUNC inline Block<MatrixType,int(Mode)==int(Projective)?HDim:Dim,1> translationExt()
680 EIGEN_DEVICE_FUNC inline const Block<MatrixTyp
[all...]
/external/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h90 // Block Manipulation
421 struct Block { struct in class:llvm::BitstreamCursor
424 explicit Block(unsigned PCS) : PrevCodeSize(PCS) {} function in struct:llvm::BitstreamCursor::Block
428 SmallVector<Block, 8> BlockScope;
518 // Block header:
552 // Block tail:
/external/skia/include/core/
H A DSkStream.h471 struct Block;
472 Block* fHead;
473 Block* fTail;
482 // For access to the Block type.
/external/skqp/include/core/
H A DSkStream.h469 struct Block;
470 Block* fHead;
471 Block* fTail;
480 // For access to the Block type.
/external/v8/src/inspector/
H A Ddebugger-script.js43 DebuggerScript._scopeTypeNames.set(ScopeType.Block, "block");
464 case ScopeType.Block:
474 // Also drop empty Block, Eval and Script scopes, should we get any.
476 scopeType === ScopeType.Block ||
/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/DebugInfo/PDB/Raw/
H A DPDBFile.h125 Error setSuperBlock(const SuperBlock *Block);
/external/llvm/lib/DebugInfo/PDB/
H A DPDBSymbol.cpp74 FACTORY_SYMTAG_CASE(Block, PDBSymbolBlock)
/external/skia/src/sksl/
H A DSkSLGLSLCodeGenerator.h179 void writeBlock(const Block& b);
H A DSkSLMetalCodeGenerator.h175 void writeBlock(const Block& b);
/external/skqp/src/sksl/
H A DSkSLGLSLCodeGenerator.h179 void writeBlock(const Block& b);
H A DSkSLMetalCodeGenerator.h175 void writeBlock(const Block& b);
/external/swiftshader/third_party/LLVM/lib/TableGen/
H A DTGLexer.cpp403 return ReturnError(CodeStart-2, "Unterminated Code Block");

Completed in 1564 milliseconds

1234567891011>>