Searched refs:unsignedIndex (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/src/Reactor/ |
D | Nucleus.hpp | 245 static Value *createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex);
|
D | Reactor.cpp | 186 Value *Variable::getElementPointer(Value *index, bool unsignedIndex) const in getElementPointer() 188 return Nucleus::createGEP(getBaseAddress(), getType(), index, unsignedIndex); in getElementPointer()
|
D | SubzeroReactor.cpp | 1530 Value *Nucleus::createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex) in createGEP() argument 1554 if(unsignedIndex) in createGEP()
|
D | LLVMReactor.cpp | 1257 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()
|
D | Reactor.hpp | 142 Value *getElementPointer(Value *index, bool unsignedIndex) const;
|
/external/llvm-project/mlir/lib/Dialect/StandardOps/IR/ |
D | Ops.cpp | 1422 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()
|