Home
last modified time | relevance | path

Searched refs:RType (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/Object/
DMachOObjectFile.cpp1026 unsigned RType = (RENext->Word1 >> 28) & 0xF; in getRelocationValueString() local
1027 if (RType != 0) in getRelocationValueString()
1074 unsigned RType; in getRelocationValueString() local
1076 RType = (RENext->Word0 >> 24) & 0xF; in getRelocationValueString()
1078 RType = (RENext->Word1 >> 28) & 0xF; in getRelocationValueString()
1079 if (RType != 1) in getRelocationValueString()
1104 unsigned RType; in getRelocationValueString() local
1106 RType = (RENext->Word0 >> 24) & 0xF; in getRelocationValueString()
1108 RType = (RENext->Word1 >> 28) & 0xF; in getRelocationValueString()
1109 if (RType != 1) in getRelocationValueString()
[all …]
/external/clang/test/CodeGen/
D2008-03-24-BitField-And-Alloca.c45 unsigned int RType : 4; member
/external/clang/lib/Sema/
DSemaInit.cpp361 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { in FillInValueInitializations() local
362 if (RType->getDecl()->isUnion() && in FillInValueInitializations()
369 Field = RType->getDecl()->field_begin(), in FillInValueInitializations()
370 FieldEnd = RType->getDecl()->field_end(); in FillInValueInitializations()
385 if (RType->getDecl()->isUnion()) in FillInValueInitializations()
2112 else if (const RecordType *RType = CurrentObjectType->getAs<RecordType>()) { in getStructuredSubobjectInit() local
2113 RecordDecl *RDecl = RType->getDecl(); in getStructuredSubobjectInit()
/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp2270 Type *RType = RVal->getType(); in isCompatibleIVType() local
2271 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy()); in isCompatibleIVType()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp470 unsigned LType = LHS->getSCEVType(), RType = RHS->getSCEVType(); in compare() local
471 if (LType != RType) in compare()
472 return (int)LType - (int)RType; in compare()