HomeSort by: relevance | last modified time | path
    Searched refs:EType (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
RISCVCompressInstEmitter.cpp 119 void emitCompressInstEmitter(raw_ostream &o, EmitterType EType);
552 EmitterType EType) {
566 llvm::stable_sort(CompressPatterns, [EType](const CompressPat &LHS,
568 if (EType == EmitterType::Compress || EType == EmitterType::CheckCompress)
587 if (EType == EmitterType::Compress)
590 else if (EType == EmitterType::Uncompress)
593 else if (EType == EmitterType::CheckCompress)
597 if (EType == EmitterType::Compress) {
602 } else if (EType == EmitterType::Uncompress)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/
GVNExpression.h 62 ExpressionType EType;
68 : EType(ET), Opcode(O) {}
110 ExpressionType getExpressionType() const { return EType; }
118 OS << "etype = " << getExpressionType() << ",";
273 MemoryExpression(unsigned NumOperands, enum ExpressionType EType,
275 : BasicExpression(NumOperands, EType), MemoryLeader(MemoryLeader) {}
337 LoadExpression(enum ExpressionType EType, unsigned NumOperands, LoadInst *L,
339 : MemoryExpression(NumOperands, EType, MemoryLeader), Load(L) {}
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/
hash.d 83 static if (is(T EType == enum))
84 enum canBitwiseHash = .canBitwiseHash!EType;
135 static if (is(T EType == enum)) {} //for EType
136 return hashOf(cast(EType) val, seed);
258 else static if (is(T EType == enum) && is(typeof(val[0])))
261 return hashOf(cast(EType) val);
303 else static if (is(T EType == enum) && is(typeof(val[0])))
306 return hashOf(cast(EType) val, seed);
convert.d 659 static if (is(T EType == enum)) // Odd style is to avoid template instantiation in most cases.
660 alias E = OriginalType!EType;
789 static if (is(typeof(cur) EType == enum)) // Odd style is to avoid template instantiation in most cases.
790 alias CurType = OriginalType!EType;
819 static if (is(T EType == enum))
820 alias OriginalType = .OriginalType!EType;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmtAsm.cpp 169 } EType = ExprSafeType;
174 EType = ExprBitfield;
176 EType = ExprVectorElt;
178 EType = ExprGlobalRegVar;
180 if (EType != ExprSafeType) {
182 << EType << is_input_expr << Info.getConstraintStr()
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULibFunc.h 252 enum EType {
AMDGPULibFunc.cpp 605 res.ArgType = StringSwitch<AMDGPULibFunc::EType>
723 static const char *getItaniumTypeName(AMDGPULibFunc::EType T) {
840 os << getItaniumTypeName((AMDGPULibFunc::EType)p.ArgType);
AMDGPULibCalls.cpp 456 static inline AMDGPULibFunc::EType getArgType(const AMDGPULibFunc& FInfo) {
457 return (AMDGPULibFunc::EType)FInfo.getLeads()[0].ArgType;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
searching.d 1591 alias EType = ElementType!R;
1683 static if (isDefaultPred && isIntegral!EType && EType.sizeof == 1 && isIntegralNeedle)
1691 EType* ptr = null;
1693 if (min(EType.min, needle) == EType.min &&
1694 max(EType.max, needle) == EType.max)
1696 ptr = cast(EType*) memchr(haystack.ptr, needle,

Completed in 25 milliseconds