Searched refs:unsignedIndex (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | Nucleus.hpp | 243 static Value *createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex);
|
D | Reactor.cpp | 182 Value *Variable::getElementPointer(Value *index, bool unsignedIndex) const in getElementPointer() 184 return Nucleus::createGEP(getBaseAddress(), getType(), index, unsignedIndex); in getElementPointer()
|
D | LLVMReactor.cpp | 1277 Value *Nucleus::createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex) in createGEP() argument 1296 index = unsignedIndex ? createZExt(index, Long::type()) : createSExt(index, Long::type()); in createGEP()
|
D | SubzeroReactor.cpp | 1529 Value *Nucleus::createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex) in createGEP() argument 1553 if(unsignedIndex) in createGEP()
|
D | Reactor.hpp | 143 Value *getElementPointer(Value *index, bool unsignedIndex) const;
|