Home
last modified time | relevance | path

Searched refs:BType (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
DProfileVerifierPass.cpp34 template<class FType, class BType>
38 const BType *BB;
46 ProfileInfoT<FType, BType> *PI;
47 std::set<const BType*> BBisVisited;
55 std::set<const BType*> BBisPrinted;
57 void printDebugInfo(const BType *BB);
73 AU.addRequired<ProfileInfoT<FType, BType> >(); in getAnalysisUsage()
82 void recurseBasicBlock(const BType*);
85 double ReadOrAssert(typename ProfileInfoT<FType, BType>::Edge);
91 template<class FType, class BType>
[all …]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DRepeatedFieldBuilder.java68 BType extends GeneratedMessage.Builder,
84 private List<SingleFieldBuilder<MType, BType, IType>> builders;
108 private MessageExternalList<MType, BType, IType> externalMessageList;
114 private BuilderExternalList<MType, BType, IType> externalBuilderList;
121 private MessageOrBuilderExternalList<MType, BType, IType>
167 new ArrayList<SingleFieldBuilder<MType, BType, IType>>( in ensureBuilders()
223 SingleFieldBuilder<MType, BType, IType> builder = builders.get(index); in getMessage()
243 public BType getBuilder(int index) { in getBuilder()
245 SingleFieldBuilder<MType, BType, IType> builder = builders.get(index); in getBuilder()
248 builder = new SingleFieldBuilder<MType, BType, IType>( in getBuilder()
[all …]
DSingleFieldBuilder.java61 BType extends GeneratedMessage.Builder,
73 private BType builder;
136 public BType getBuilder() { in getBuilder()
142 builder = (BType) message.newBuilderForType(this); in getBuilder()
170 public SingleFieldBuilder<MType, BType, IType> setMessage( in setMessage()
190 public SingleFieldBuilder<MType, BType, IType> mergeFrom( in mergeFrom()
207 public SingleFieldBuilder<MType, BType, IType> clear() { in clear()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DProfileInfo.h53 template<class FType, class BType>
57 typedef std::pair<const BType*, const BType*> Edge;
60 typedef std::map<const BType*, double> BlockCounts;
61 typedef std::map<const BType*, const BType*> Path;
98 static Edge getEdge(const BType *Src, const BType *Dest) { in getEdge()
107 double getExecutionCount(const BType *BB);
109 void setExecutionCount(const BType *BB, double w);
111 void addExecutionCount(const BType *BB, double w);
140 void removeBlock(const BType *BB);
153 const BType *GetPath(const BType *Src, const BType *Dest,
[all …]
/external/clang/test/CodeGen/
D2008-03-24-BitField-And-Alloca.c43 unsigned int BType : 4; member
/external/abi-dumper/
Dabi-dumper.pl3590 if(my $BType = $TInfo{"BaseType"})
3592 if(my $BSize = $TypeInfo{$BType}{"Size"})
3609 if(my $BType = $TInfo{"BaseType"})
3611 if($TypeInfo{$BType}{"Type"}=~/MethodPtr|FuncPtr/)
/external/abi-compliance-checker/
Dabi-compliance-checker.pl20685 my $BType = lc($TypeInfo{$LibVersion}{$BaseId}{"Type"});
20686 if($BType=~/Struct|Union|Enum/i)
20689 $TypeInfo{$LibVersion}{$TypeId}{"Name"}=~s/\A\Q$BName\E\b/$BType $BName/g;
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1024 TargetLowering::BooleanContent BType = TLI->getBooleanContents(OpVT); in getBoolExtOrTrunc() local
1025 return getNode(TLI->getExtendForContent(BType), SL, VT, Op); in getBoolExtOrTrunc()
/external/llvm/tools/llvm-objdump/
DMachODump.cpp205 SymbolRef::Type BType = *BTypeOrErr; in operator ()() local
207 uint64_t BAddr = (BType != SymbolRef::ST_Function) ? 0 : B.getValue(); in operator ()()