• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/

Lines Matching defs:Idx0

1815   Value *CreateConstGEP1_32(Value *Ptr, unsigned Idx0, const Twine &Name = "") {
1816 return CreateConstGEP1_32(nullptr, Ptr, Idx0, Name);
1819 Value *CreateConstGEP1_32(Type *Ty, Value *Ptr, unsigned Idx0,
1821 Value *Idx = ConstantInt::get(Type::getInt32Ty(Context), Idx0);
1829 Value *CreateConstInBoundsGEP1_32(Type *Ty, Value *Ptr, unsigned Idx0,
1831 Value *Idx = ConstantInt::get(Type::getInt32Ty(Context), Idx0);
1839 Value *CreateConstGEP2_32(Type *Ty, Value *Ptr, unsigned Idx0, unsigned Idx1,
1842 ConstantInt::get(Type::getInt32Ty(Context), Idx0),
1852 Value *CreateConstInBoundsGEP2_32(Type *Ty, Value *Ptr, unsigned Idx0,
1855 ConstantInt::get(Type::getInt32Ty(Context), Idx0),
1865 Value *CreateConstGEP1_64(Type *Ty, Value *Ptr, uint64_t Idx0,
1867 Value *Idx = ConstantInt::get(Type::getInt64Ty(Context), Idx0);
1875 Value *CreateConstGEP1_64(Value *Ptr, uint64_t Idx0, const Twine &Name = "") {
1876 return CreateConstGEP1_64(nullptr, Ptr, Idx0, Name);
1879 Value *CreateConstInBoundsGEP1_64(Type *Ty, Value *Ptr, uint64_t Idx0,
1881 Value *Idx = ConstantInt::get(Type::getInt64Ty(Context), Idx0);
1889 Value *CreateConstInBoundsGEP1_64(Value *Ptr, uint64_t Idx0,
1891 return CreateConstInBoundsGEP1_64(nullptr, Ptr, Idx0, Name);
1894 Value *CreateConstGEP2_64(Type *Ty, Value *Ptr, uint64_t Idx0, uint64_t Idx1,
1897 ConstantInt::get(Type::getInt64Ty(Context), Idx0),
1907 Value *CreateConstGEP2_64(Value *Ptr, uint64_t Idx0, uint64_t Idx1,
1909 return CreateConstGEP2_64(nullptr, Ptr, Idx0, Idx1, Name);
1912 Value *CreateConstInBoundsGEP2_64(Type *Ty, Value *Ptr, uint64_t Idx0,
1915 ConstantInt::get(Type::getInt64Ty(Context), Idx0),
1925 Value *CreateConstInBoundsGEP2_64(Value *Ptr, uint64_t Idx0, uint64_t Idx1,
1927 return CreateConstInBoundsGEP2_64(nullptr, Ptr, Idx0, Idx1, Name);