Lines Matching defs:DestTy

4071                             LLVMTypeRef DestTy, const char *Name) {
4072 return wrap(unwrap(B)->CreateTrunc(unwrap(Val), unwrap(DestTy), Name));
4076 LLVMTypeRef DestTy, const char *Name) {
4077 return wrap(unwrap(B)->CreateZExt(unwrap(Val), unwrap(DestTy), Name));
4081 LLVMTypeRef DestTy, const char *Name) {
4082 return wrap(unwrap(B)->CreateSExt(unwrap(Val), unwrap(DestTy), Name));
4086 LLVMTypeRef DestTy, const char *Name) {
4087 return wrap(unwrap(B)->CreateFPToUI(unwrap(Val), unwrap(DestTy), Name));
4091 LLVMTypeRef DestTy, const char *Name) {
4092 return wrap(unwrap(B)->CreateFPToSI(unwrap(Val), unwrap(DestTy), Name));
4096 LLVMTypeRef DestTy, const char *Name) {
4097 return wrap(unwrap(B)->CreateUIToFP(unwrap(Val), unwrap(DestTy), Name));
4101 LLVMTypeRef DestTy, const char *Name) {
4102 return wrap(unwrap(B)->CreateSIToFP(unwrap(Val), unwrap(DestTy), Name));
4106 LLVMTypeRef DestTy, const char *Name) {
4107 return wrap(unwrap(B)->CreateFPTrunc(unwrap(Val), unwrap(DestTy), Name));
4111 LLVMTypeRef DestTy, const char *Name) {
4112 return wrap(unwrap(B)->CreateFPExt(unwrap(Val), unwrap(DestTy), Name));
4116 LLVMTypeRef DestTy, const char *Name) {
4117 return wrap(unwrap(B)->CreatePtrToInt(unwrap(Val), unwrap(DestTy), Name));
4121 LLVMTypeRef DestTy, const char *Name) {
4122 return wrap(unwrap(B)->CreateIntToPtr(unwrap(Val), unwrap(DestTy), Name));
4126 LLVMTypeRef DestTy, const char *Name) {
4127 return wrap(unwrap(B)->CreateBitCast(unwrap(Val), unwrap(DestTy), Name));
4131 LLVMTypeRef DestTy, const char *Name) {
4132 return wrap(unwrap(B)->CreateAddrSpaceCast(unwrap(Val), unwrap(DestTy), Name));
4136 LLVMTypeRef DestTy, const char *Name) {
4137 return wrap(unwrap(B)->CreateZExtOrBitCast(unwrap(Val), unwrap(DestTy),
4142 LLVMTypeRef DestTy, const char *Name) {
4143 return wrap(unwrap(B)->CreateSExtOrBitCast(unwrap(Val), unwrap(DestTy),
4148 LLVMTypeRef DestTy, const char *Name) {
4149 return wrap(unwrap(B)->CreateTruncOrBitCast(unwrap(Val), unwrap(DestTy),
4154 LLVMTypeRef DestTy, const char *Name) {
4156 unwrap(DestTy), Name));
4160 LLVMTypeRef DestTy, const char *Name) {
4161 return wrap(unwrap(B)->CreatePointerCast(unwrap(Val), unwrap(DestTy), Name));
4165 LLVMTypeRef DestTy, LLVMBool IsSigned,
4168 unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy), IsSigned, Name));
4172 LLVMTypeRef DestTy, const char *Name) {
4173 return wrap(unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy),
4178 LLVMTypeRef DestTy, const char *Name) {
4179 return wrap(unwrap(B)->CreateFPCast(unwrap(Val), unwrap(DestTy), Name));
4183 LLVMTypeRef DestTy, LLVMBool DestIsSigned) {
4185 unwrap(Src), SrcIsSigned, unwrap(DestTy), DestIsSigned));