Lines Matching defs:DestTy

4132                             LLVMTypeRef DestTy, const char *Name) {
4133 return wrap(unwrap(B)->CreateTrunc(unwrap(Val), unwrap(DestTy), Name));
4137 LLVMTypeRef DestTy, const char *Name) {
4138 return wrap(unwrap(B)->CreateZExt(unwrap(Val), unwrap(DestTy), Name));
4142 LLVMTypeRef DestTy, const char *Name) {
4143 return wrap(unwrap(B)->CreateSExt(unwrap(Val), unwrap(DestTy), Name));
4147 LLVMTypeRef DestTy, const char *Name) {
4148 return wrap(unwrap(B)->CreateFPToUI(unwrap(Val), unwrap(DestTy), Name));
4152 LLVMTypeRef DestTy, const char *Name) {
4153 return wrap(unwrap(B)->CreateFPToSI(unwrap(Val), unwrap(DestTy), Name));
4157 LLVMTypeRef DestTy, const char *Name) {
4158 return wrap(unwrap(B)->CreateUIToFP(unwrap(Val), unwrap(DestTy), Name));
4162 LLVMTypeRef DestTy, const char *Name) {
4163 return wrap(unwrap(B)->CreateSIToFP(unwrap(Val), unwrap(DestTy), Name));
4167 LLVMTypeRef DestTy, const char *Name) {
4168 return wrap(unwrap(B)->CreateFPTrunc(unwrap(Val), unwrap(DestTy), Name));
4172 LLVMTypeRef DestTy, const char *Name) {
4173 return wrap(unwrap(B)->CreateFPExt(unwrap(Val), unwrap(DestTy), Name));
4177 LLVMTypeRef DestTy, const char *Name) {
4178 return wrap(unwrap(B)->CreatePtrToInt(unwrap(Val), unwrap(DestTy), Name));
4182 LLVMTypeRef DestTy, const char *Name) {
4183 return wrap(unwrap(B)->CreateIntToPtr(unwrap(Val), unwrap(DestTy), Name));
4187 LLVMTypeRef DestTy, const char *Name) {
4188 return wrap(unwrap(B)->CreateBitCast(unwrap(Val), unwrap(DestTy), Name));
4192 LLVMTypeRef DestTy, const char *Name) {
4193 return wrap(unwrap(B)->CreateAddrSpaceCast(unwrap(Val), unwrap(DestTy), Name));
4197 LLVMTypeRef DestTy, const char *Name) {
4198 return wrap(unwrap(B)->CreateZExtOrBitCast(unwrap(Val), unwrap(DestTy),
4203 LLVMTypeRef DestTy, const char *Name) {
4204 return wrap(unwrap(B)->CreateSExtOrBitCast(unwrap(Val), unwrap(DestTy),
4209 LLVMTypeRef DestTy, const char *Name) {
4210 return wrap(unwrap(B)->CreateTruncOrBitCast(unwrap(Val), unwrap(DestTy),
4215 LLVMTypeRef DestTy, const char *Name) {
4217 unwrap(DestTy), Name));
4221 LLVMTypeRef DestTy, const char *Name) {
4222 return wrap(unwrap(B)->CreatePointerCast(unwrap(Val), unwrap(DestTy), Name));
4226 LLVMTypeRef DestTy, LLVMBool IsSigned,
4229 unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy), IsSigned, Name));
4233 LLVMTypeRef DestTy, const char *Name) {
4234 return wrap(unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy),
4239 LLVMTypeRef DestTy, const char *Name) {
4240 return wrap(unwrap(B)->CreateFPCast(unwrap(Val), unwrap(DestTy), Name));
4244 LLVMTypeRef DestTy, LLVMBool DestIsSigned) {
4246 unwrap(Src), SrcIsSigned, unwrap(DestTy), DestIsSigned));