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

  /external/spirv-llvm/lib/SPIRV/
SPIRVUtil.cpp 277 /// \param BaseTyName is the type name as in spirv.BaseTyName.Postfixes
278 /// \param Postfix contains postfixes extracted from the SPIR-V image
279 /// type name as spirv.BaseTyName.Postfixes.
    [all...]
SPIRVWriter.cpp 384 /// Decode SPIR-V type name in the format spirv.{TypeName}._{Postfixes}
385 /// where Postfixes are strings separated by underscores.
387 /// \param Ops contains the integers decoded from postfixes.
400 SmallVector<StringRef, 4> Postfixes;
401 SubStrs[2].split(Postfixes, PostDelim, -1, true);
402 assert(Postfixes.size() > 1 && Postfixes[0].empty() && "Invalid postfix");
403 for (unsigned I = 1, E = Postfixes.size(); I != E; ++I)
404 Strs.push_back(std::string(Postfixes[I]).c_str());
594 SmallVector<std::string, 8> Postfixes;
    [all...]

Completed in 809 milliseconds