HomeSort by relevance Sort by last modified time
    Searched refs:FC (Results 51 - 75 of 114) sorted by null

1 23 4 5

  /external/clang/lib/AST/
ASTDumper.cpp 120 const FullComment *FC;
141 const FullComment *OrigFC = FC;
166 FC = OrigFC;
207 LastLocFilename(""), LastLocLine(~0U), FC(nullptr),
    [all...]
CommentSema.cpp 546 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo);
547 resolveParamCommandIndexes(FC);
560 return FC;
711 void Sema::resolveParamCommandIndexes(const FullComment *FC) {
728 for (Comment::child_iterator I = FC->child_begin(), E = FC->child_end();
    [all...]
  /external/v8/src/ia32/
sse-instr.h 12 V(paddb, 66, 0F, FC) \
  /external/v8/src/x64/
sse-instr.h 21 V(paddb, 66, 0F, FC) \
  /external/llvm/tools/sancov/
sancov.cc 910 std::pair<size_t, size_t> FC = FileCoverage[FileName];
911 if (FC.first == 0) {
915 size_t CovPct = FC.second == 0 ? 100 : 100 * FC.first / FC.second;
920 << "<td>" << FC.first << " (" << FC.second << ")"
931 std::pair<size_t, size_t> FC = FileCoverage[FileName];
932 if (FC.first == 0)
943 std::pair<size_t, size_t> FC = FileCoverage[FileName]
    [all...]
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp     [all...]
  /external/llvm/lib/IR/
Constants.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
Constants.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
GCOV.cpp 803 for (const auto &FC : FuncCoverages) {
804 const GCOVCoverage &Coverage = FC.second;
813 for (const auto &FC : FileCoverages) {
814 const std::string &Filename = FC.first;
815 const GCOVCoverage &Coverage = FC.second;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
MinimalSymbolDumper.cpp 606 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, FrameCookieSym &FC) {
609 FC.CodeOffset, FC.Register, formatCookieKind(FC.CookieKind),
610 FC.Flags);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 568 FindClosure FC(Pred);
569 visitAll(Root, FC);
570 return FC.Found;
  /external/tensorflow/tensorflow/core/kernels/
eigen_spatial_convolutions_test.cc     [all...]
  /external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas     [all...]
  /external/cblas/testing/
Makefile 132 $(FC) $(FFLAGS) -c $*.f
  /external/clang/include/clang/AST/
CommentSema.h 203 void resolveParamCommandIndexes(const FullComment *FC);
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/MCTargetDesc/
MBlazeBaseInfo.h 53 FC,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DWARFFormValue.h 75 bool isFormClass(FormClass FC) const;
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
X86RecognizableInstr.h 88 MAP(FC, 124) \
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Verifier.cpp 272 void visitFCmpInst(FCmpInst &FC);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ScalarEvolutionExpander.cpp 206 if (const SCEVConstant *FC = dyn_cast<SCEVConstant>(Factor)) {
210 FC->getValue()->getValue()));
220 FC->getValue()->getValue())));
233 const SCEVConstant *FC = cast<SCEVConstant>(Factor);
235 if (!C->getValue()->getValue().srem(FC->getValue()->getValue())) {
239 FC->getValue()->getValue()));
    [all...]
  /external/cblas/src/
Makefile 247 $(FC) $(FFLAGS) -c $*.f
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 88 /// select (icmp eq (and X, C1)), TC, FC
89 /// iff C1 is a power 2 and the difference between TC and FC is a power-of-2.
91 /// (shr (and (X, C1)), (log2(C1) - log2(TC-FC))) + FC
93 /// (shl (and (X, C1)), (log2(TC-FC) - log2(C1))) + FC
94 /// With some variations depending if FC is larger than TC, or the shift
138 APInt FC = *SelFC;
139 if (!TC.isNullValue() && !FC.isNullValue()) {
143 if (TC.getBitWidth() != AndMask.getBitWidth() || (TC ^ FC) != AndMask
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 245 if (const SCEVConstant *FC = dyn_cast<SCEVConstant>(Factor)) {
247 ConstantInt::get(SE.getContext(), C->getAPInt().sdiv(FC->getAPInt()));
255 Remainder, SE.getConstant(C->getAPInt().srem(FC->getAPInt())));
266 const SCEVConstant *FC = cast<SCEVConstant>(Factor);
268 if (!C->getAPInt().srem(FC->getAPInt())) {
270 NewMulOps[0] = SE.getConstant(C->getAPInt().sdiv(FC->getAPInt()));
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 258 if (const SCEVConstant *FC = dyn_cast<SCEVConstant>(Factor)) {
260 ConstantInt::get(SE.getContext(), C->getAPInt().sdiv(FC->getAPInt()));
268 Remainder, SE.getConstant(C->getAPInt().srem(FC->getAPInt())));
279 const SCEVConstant *FC = cast<SCEVConstant>(Factor);
281 if (!C->getAPInt().srem(FC->getAPInt())) {
283 NewMulOps[0] = SE.getConstant(C->getAPInt().sdiv(FC->getAPInt()));
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
COFFDumper.cpp     [all...]

Completed in 1057 milliseconds

1 23 4 5