Home | History | Annotate | Download | only in IR

Lines Matching refs:Idx0

927   Value *CreateConstGEP1_32(Value *Ptr, unsigned Idx0, const Twine &Name = "") {
928 Value *Idx = ConstantInt::get(Type::getInt32Ty(Context), Idx0);
935 Value *CreateConstInBoundsGEP1_32(Value *Ptr, unsigned Idx0,
937 Value *Idx = ConstantInt::get(Type::getInt32Ty(Context), Idx0);
944 Value *CreateConstGEP2_32(Value *Ptr, unsigned Idx0, unsigned Idx1,
947 ConstantInt::get(Type::getInt32Ty(Context), Idx0),
956 Value *CreateConstInBoundsGEP2_32(Value *Ptr, unsigned Idx0, unsigned Idx1,
959 ConstantInt::get(Type::getInt32Ty(Context), Idx0),
968 Value *CreateConstGEP1_64(Value *Ptr, uint64_t Idx0, const Twine &Name = "") {
969 Value *Idx = ConstantInt::get(Type::getInt64Ty(Context), Idx0);
976 Value *CreateConstInBoundsGEP1_64(Value *Ptr, uint64_t Idx0,
978 Value *Idx = ConstantInt::get(Type::getInt64Ty(Context), Idx0);
985 Value *CreateConstGEP2_64(Value *Ptr, uint64_t Idx0, uint64_t Idx1,
988 ConstantInt::get(Type::getInt64Ty(Context), Idx0),
997 Value *CreateConstInBoundsGEP2_64(Value *Ptr, uint64_t Idx0, uint64_t Idx1,
1000 ConstantInt::get(Type::getInt64Ty(Context), Idx0),