Searched refs:double_type (Results 1 – 20 of 20) sorted by relevance
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
D | codegen.ml | 13 let double_type = double_type context var 16 | Ast.Number n -> const_float double_type n 31 build_uitofp i double_type "booltmp" builder 52 let doubles = Array.make (Array.length args) double_type in 53 let ft = function_type double_type doubles in
|
D | toplevel.ml | 41 print_float (GenericValue.as_float Codegen.double_type result);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
D | codegen.ml | 13 let double_type = double_type context var 16 | Ast.Number n -> const_float double_type n 31 build_uitofp i double_type "booltmp" builder 52 let doubles = Array.make (Array.length args) double_type in 53 let ft = function_type double_type doubles in
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
D | codegen.ml | 13 let double_type = double_type context var 16 | Ast.Number n -> const_float double_type n 31 build_uitofp i double_type "booltmp" builder 52 let zero = const_float double_type 0.0 in 137 | None -> const_float double_type 1.0 146 let zero = const_float double_type 0.0 in 169 const_null double_type 174 let doubles = Array.make (Array.length args) double_type in 175 let ft = function_type double_type doubles in
|
D | toplevel.ml | 41 print_float (GenericValue.as_float Codegen.double_type result);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
D | codegen.ml | 13 let double_type = double_type context var 16 | Ast.Number n -> const_float double_type n 40 build_uitofp i double_type "booltmp" builder 70 let zero = const_float double_type 0.0 in 155 | None -> const_float double_type 1.0 164 let zero = const_float double_type 0.0 in 187 const_null double_type 192 let doubles = Array.make (Array.length args) double_type in 193 let ft = function_type double_type doubles in
|
D | toplevel.ml | 41 print_float (GenericValue.as_float Codegen.double_type result);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
D | codegen.ml | 13 let double_type = double_type context var 19 build_alloca double_type var_name builder 22 | Ast.Number n -> const_float double_type n 69 build_uitofp i double_type "booltmp" builder 100 let zero = const_float double_type 0.0 in 208 | None -> const_float double_type 1.0 221 let zero = const_float double_type 0.0 in 240 const_null double_type 257 | None -> const_float double_type 0.0 290 let doubles = Array.make (Array.length args) double_type in [all …]
|
D | toplevel.ml | 41 print_float (GenericValue.as_float Codegen.double_type result);
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_swizzle.c | 522 LLVMTypeRef double_type; in lp_build_transpose_aos() local 528 double_type = lp_build_vec_type(gallivm, double_type_lp); in lp_build_transpose_aos() 538 t0 = LLVMBuildBitCast(gallivm->builder, t0, double_type, "t0"); in lp_build_transpose_aos() 539 t1 = LLVMBuildBitCast(gallivm->builder, t1, double_type, "t1"); in lp_build_transpose_aos() 540 t2 = LLVMBuildBitCast(gallivm->builder, t2, double_type, "t2"); in lp_build_transpose_aos() 541 t3 = LLVMBuildBitCast(gallivm->builder, t3, double_type, "t3"); in lp_build_transpose_aos()
|
/external/llvm/test/Bindings/OCaml/ |
D | executionengine.ml | 21 let double_type = Llvm.double_type context var
|
D | core.ml | 35 let double_type = Llvm.double_type context var 176 let cd = const_float double_type 3.1459 in 178 insist (double_type = type_of cd); 181 let cd = const_float_of_string double_type "2" in 183 insist (double_type = type_of cd); 231 double_type |]) in 288 let ffive = const_uitofp five double_type in 291 let ffoldbomb = const_uitofp foldbomb double_type in 344 ignore (define_global "const_uitofp" (const_uitofp foldbomb double_type) m); 345 ignore (define_global "const_sitofp" (const_sitofp foldbomb double_type) m); [all …]
|
/external/llvm/docs/tutorial/ |
D | OCamlLangImpl3.rst | 59 let double_type = double_type context 94 | Ast.Number n -> const_float double_type n 133 build_uitofp i double_type "booltmp" builder 225 let doubles = Array.make (Array.length args) double_type in 226 let ft = function_type double_type doubles in 798 let double_type = double_type context 801 | Ast.Number n -> const_float double_type n 816 build_uitofp i double_type "booltmp" builder 837 let doubles = Array.make (Array.length args) double_type in 838 let ft = function_type double_type doubles in
|
D | OCamlLangImpl5.rst | 256 let zero = const_float double_type 0.0 in 621 | None -> const_float double_type 1.0 637 let zero = const_float double_type 0.0 in 676 const_null double_type 1025 let double_type = double_type context 1028 | Ast.Number n -> const_float double_type n 1043 build_uitofp i double_type "booltmp" builder 1064 let zero = const_float double_type 0.0 in 1149 | None -> const_float double_type 1.0 1158 let zero = const_float double_type 0.0 in [all …]
|
D | OCamlLangImpl6.rst | 215 build_uitofp i double_type "booltmp" builder 1072 let double_type = double_type context 1075 | Ast.Number n -> const_float double_type n 1099 build_uitofp i double_type "booltmp" builder 1129 let zero = const_float double_type 0.0 in 1214 | None -> const_float double_type 1.0 1223 let zero = const_float double_type 0.0 in 1246 const_null double_type 1251 let doubles = Array.make (Array.length args) double_type in 1252 let ft = function_type double_type doubles in [all …]
|
D | OCamlLangImpl7.rst | 345 build_alloca double_type var_name builder 768 | None -> const_float double_type 0.0 1232 let double_type = double_type context 1238 build_alloca double_type var_name builder 1241 | Ast.Number n -> const_float double_type n 1288 build_uitofp i double_type "booltmp" builder 1319 let zero = const_float double_type 0.0 in 1427 | None -> const_float double_type 1.0 1440 let zero = const_float double_type 0.0 in 1459 const_null double_type [all …]
|
D | OCamlLangImpl4.rst | 285 print_float (GenericValue.as_float Codegen.double_type result); 701 let double_type = double_type context 704 | Ast.Number n -> const_float double_type n 719 build_uitofp i double_type "booltmp" builder 740 let doubles = Array.make (Array.length args) double_type in 741 let ft = function_type double_type doubles in 836 print_float (GenericValue.as_float Codegen.double_type result);
|
/external/lldb/docs/testsuite/ |
D | best-practices.txt | 57 self.double_type()
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm.ml | 350 external double_type : llcontext -> lltype = "llvm_double_type"
|
D | llvm.mli | 532 (** [double_type c] returns the IEEE 64-bit floating point type in the context 534 val double_type : llcontext -> lltype val
|