HomeSort by relevance Sort by last modified time
    Searched defs:EI (Results 1 - 15 of 15) sorted by null

  /frameworks/compile/slang/
slang_rs_export_element.cpp 59 ElementInfo *EI = new ElementInfo;
60 EI->type = DataElementInfoTable[i].dataType;
61 EI->normalized = DataElementInfoTable[i].normalized;
62 EI->vsize = DataElementInfoTable[i].vsize;
65 Name, ElementInfoMap.getAllocator(), EI));
73 const ElementInfo *EI) {
82 slangAssert(EI != nullptr && "Element info not found");
91 slangAssert(EI->vsize == 1 && "Element not a primitive class (please "
97 EI->normalized);
99 slangAssert(EI->type == EPT->getType() && "Element has unexpected type")
    [all...]
  /external/llvm/include/llvm/Support/
GraphWriter.h 70 child_iterator EI = GTraits::child_begin(Node);
74 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) {
75 std::string label = DTraits.getEdgeSourceLabel(Node, EI);
88 if (EI != EE && hasEdgeSourceLabels)
230 child_iterator EI = GTraits::child_begin(Node);
232 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i)
233 if (!DTraits.isNodeHidden(*EI))
234 writeEdge(Node, i, EI);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocStream.h 115 size_t EI = getIndex(E);
117 .slice(Entries[EI].ByteOffset, getNumBytes(EI));
120 size_t EI = getIndex(E);
122 .slice(Entries[EI].CommentOffset, getNumComments(EI));
141 size_t getNumBytes(size_t EI) const {
142 if (EI + 1 == Entries.size())
143 return DWARFBytes.size() - Entries[EI].ByteOffset;
144 return Entries[EI + 1].ByteOffset - Entries[EI].ByteOffset
    [all...]
  /external/llvm/lib/CodeGen/
Analysis.cpp 49 EI = EB,
51 EI != EE; ++EI) {
52 if (Indices && *Indices == unsigned(EI - EB))
53 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex);
54 CurIndex = ComputeLinearIndex(*EI, nullptr, nullptr, CurIndex);
94 EI = EB,
96 EI != EE; ++EI)
97 ComputeValueVTs(TLI, DL, *EI, ValueVTs, Offsets
    [all...]
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 687 BasicBlock::iterator EI;
691 EI = SecondBBI;
696 EI = B->end();
698 for (; BI != EI; ++BI) {
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 614 StructType::element_iterator EI = ST->element_begin();
616 for (; EI != EE; ++EI) {
617 Type* fieldTy = static_cast<Type*>(*EI);
    [all...]
  /external/clang/lib/AST/
ASTDumper.cpp 314 auto EI = T->getExtInfo();
315 if (EI.getNoReturn()) OS << " noreturn";
316 if (EI.getProducesResult()) OS << " produces_result";
317 if (EI.getHasRegParm()) OS << " regparm " << EI.getRegParm();
318 OS << " " << FunctionType::getNameForCallConv(EI.getCC());
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 780 llvm::Function::arg_iterator EI = CurFn->arg_end();
781 --EI;
782 llvm::Value *Addr = Builder.CreateStructGEP(nullptr, &*EI, Idx);
    [all...]
CGExprScalar.cpp     [all...]
CGOpenMPRuntime.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 1084 EncodingInfo EI = getUnicodeEncoding(currentInput());
1088 T.Range = StringRef(Current, EI.second);
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 701 EnumValsTy::iterator &EI,
718 while (EI != EIEnd && EI->first < Val)
719 EI++;
721 if (EI != EIEnd && EI->first == Val)
    [all...]
SemaType.cpp     [all...]
  /external/llvm/lib/IR/
Verifier.cpp 373 void visitExtractElementInst(ExtractElementInst &EI);
374 void visitInsertElementInst(InsertElementInst &EI);
375 void visitShuffleVectorInst(ShuffleVectorInst &EI);
    [all...]

Completed in 240 milliseconds