HomeSort by relevance Sort by last modified time
    Searched refs:STy (Results 1 - 25 of 238) sorted by null

1 2 3 4 5 6 7 8 910

  /external/llvm/lib/Transforms/Utils/
MetaRenamer.cpp 104 for (StructType *STy : StructTypes) {
105 if (STy->isLiteral() || STy->getName().empty()) continue;
108 STy->setName((Twine("struct.") +
  /external/swiftshader/third_party/LLVM/lib/Target/
Target.cpp 96 StructType *STy = unwrap<StructType>(StructTy);
97 return unwrap(TD)->getStructLayout(STy)->getElementContainingOffset(Offset);
102 StructType *STy = unwrap<StructType>(StructTy);
103 return unwrap(TD)->getStructLayout(STy)->getElementOffset(Element);
  /external/llvm/lib/IR/
Operator.cpp 36 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
38 const StructLayout *SL = DL.getStructLayout(STy);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
GetElementPtrTypeIterator.h 77 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
78 CurTy = STy->getElementType();
79 NumElements = STy->getNumElements();
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
GetElementPtrTypeIterator.h 79 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
80 CurTy = STy->getElementType();
81 NumElements = STy->getNumElements();
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
GetElementPtrTypeIterator.h 79 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
80 CurTy = STy->getElementType();
81 NumElements = STy->getNumElements();
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
GetElementPtrTypeIterator.h 79 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
80 CurTy = STy->getElementType();
81 NumElements = STy->getNumElements();
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/IR/
GetElementPtrTypeIterator.h 79 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
80 CurTy = STy->getElementType();
81 NumElements = STy->getNumElements();
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/IR/
GetElementPtrTypeIterator.h 79 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
80 CurTy = STy->getElementType();
81 NumElements = STy->getNumElements();
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/IR/
GetElementPtrTypeIterator.h 79 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
80 CurTy = STy->getElementType();
81 NumElements = STy->getNumElements();
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
GetElementPtrTypeIterator.h 77 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
78 CurTy = STy->getElementType();
79 NumElements = STy->getNumElements();
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/IR/
GetElementPtrTypeIterator.h 79 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
80 CurTy = STy->getElementType();
81 NumElements = STy->getNumElements();
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/IR/
GetElementPtrTypeIterator.h 79 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
80 CurTy = STy->getElementType();
81 NumElements = STy->getNumElements();
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/IR/
GetElementPtrTypeIterator.h 79 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
80 CurTy = STy->getElementType();
81 NumElements = STy->getNumElements();
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/IR/
GetElementPtrTypeIterator.h 79 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
80 CurTy = STy->getElementType();
81 NumElements = STy->getNumElements();
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
GetElementPtrTypeIterator.h 79 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
80 CurTy = STy->getElementType();
81 NumElements = STy->getNumElements();
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/IR/
GetElementPtrTypeIterator.h 79 if (auto *STy = dyn_cast<SequentialType>(Ty)) {
80 CurTy = STy->getElementType();
81 NumElements = STy->getNumElements();
  /external/llvm/lib/Target/
Target.cpp 133 StructType *STy = unwrap<StructType>(StructTy);
134 return unwrap(TD)->getStructLayout(STy)->getElementContainingOffset(Offset);
139 StructType *STy = unwrap<StructType>(StructTy);
140 return unwrap(TD)->getStructLayout(STy)->getElementOffset(Element);
  /external/llvm/include/llvm/ADT/
SetVector.h 233 template <class STy>
234 bool set_union(const STy &S) {
237 for (typename STy::const_iterator SI = S.begin(), SE = S.end(); SI != SE;
248 template <class STy>
249 void set_subtract(const STy &S) {
250 for (typename STy::const_iterator SI = S.begin(), SE = S.end(); SI != SE;
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 142 StructType *STy = dyn_cast<StructType>(F.getReturnType());
143 if (STy)
144 for (unsigned i = 0, e = STy->getNumElements(); i < e; ++i)
145 RetVals.push_back(UndefValue::get(STy->getElementType(i)));
160 if (!STy)
210 if (!STy) {
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
IPConstantPropagation.cpp 170 StructType *STy = dyn_cast<StructType>(F.getReturnType());
171 if (STy)
172 for (unsigned i = 0, e = STy->getNumElements(); i < e; ++i)
173 RetVals.push_back(UndefValue::get(STy->getElementType(i)));
188 if (!STy)
238 if (STy == 0) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
SetVector.h 245 template <class STy>
246 bool set_union(const STy &S) {
249 for (typename STy::const_iterator SI = S.begin(), SE = S.end(); SI != SE;
260 template <class STy>
261 void set_subtract(const STy &S) {
262 for (typename STy::const_iterator SI = S.begin(), SE = S.end(); SI != SE;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
SetVector.h 245 template <class STy>
246 bool set_union(const STy &S) {
249 for (typename STy::const_iterator SI = S.begin(), SE = S.end(); SI != SE;
260 template <class STy>
261 void set_subtract(const STy &S) {
262 for (typename STy::const_iterator SI = S.begin(), SE = S.end(); SI != SE;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
SetVector.h 245 template <class STy>
246 bool set_union(const STy &S) {
249 for (typename STy::const_iterator SI = S.begin(), SE = S.end(); SI != SE;
260 template <class STy>
261 void set_subtract(const STy &S) {
262 for (typename STy::const_iterator SI = S.begin(), SE = S.end(); SI != SE;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
SetVector.h 245 template <class STy>
246 bool set_union(const STy &S) {
249 for (typename STy::const_iterator SI = S.begin(), SE = S.end(); SI != SE;
260 template <class STy>
261 void set_subtract(const STy &S) {
262 for (typename STy::const_iterator SI = S.begin(), SE = S.end(); SI != SE;

Completed in 430 milliseconds

1 2 3 4 5 6 7 8 910