Searched refs:unsignedIndex (Results 1 - 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | Nucleus.hpp | 243 static Value *createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex);
|
H A D | Reactor.cpp | 182 Value *Variable::getElementPointer(Value *index, bool unsignedIndex) const in getElementPointer() 184 return Nucleus::createGEP(getBaseAddress(), getType(), index, unsignedIndex); in getElementPointer()
|
H A 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()
|
H A D | SubzeroReactor.cpp | 1529 Value *Nucleus::createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex) 1553 if(unsignedIndex)
|
H A D | Reactor.hpp | 143 Value *getElementPointer(Value *index, bool unsignedIndex) const;
|
Completed in 23 milliseconds