Home
last modified time | relevance | path

Searched refs:unsignedIndex (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/src/Reactor/
DNucleus.hpp245 static Value *createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex);
DReactor.cpp186 Value *Variable::getElementPointer(Value *index, bool unsignedIndex) const in getElementPointer()
188 return Nucleus::createGEP(getBaseAddress(), getType(), index, unsignedIndex); in getElementPointer()
DSubzeroReactor.cpp1530 Value *Nucleus::createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex) in createGEP() argument
1554 if(unsignedIndex) in createGEP()
DLLVMReactor.cpp1257 Value *Nucleus::createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex) in createGEP() argument
1276 index = unsignedIndex ? createZExt(index, Long::type()) : createSExt(index, Long::type()); in createGEP()
DReactor.hpp142 Value *getElementPointer(Value *index, bool unsignedIndex) const;
/external/llvm-project/mlir/lib/Dialect/StandardOps/IR/
DOps.cpp1422 unsigned unsignedIndex = index.getValue().getZExtValue(); in fold() local
1425 memrefType.getDynamicDimIndex(unsignedIndex)); in fold()
1429 memrefType.getDynamicDimIndex(unsignedIndex)); in fold()
1432 assert(subview.isDynamicSize(unsignedIndex) && in fold()
1434 return subview.getDynamicSize(unsignedIndex); in fold()