Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DNucleus.hpp243 static Value *createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex);
DReactor.cpp182 Value *Variable::getElementPointer(Value *index, bool unsignedIndex) const in getElementPointer()
184 return Nucleus::createGEP(getBaseAddress(), getType(), index, unsignedIndex); in getElementPointer()
DLLVMReactor.cpp1277 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()
DSubzeroReactor.cpp1529 Value *Nucleus::createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex) in createGEP() argument
1553 if(unsignedIndex) in createGEP()
DReactor.hpp143 Value *getElementPointer(Value *index, bool unsignedIndex) const;