Home
last modified time | relevance | path

Searched refs:i64_type (Results 1 – 12 of 12) sorted by relevance

/external/llvm-project/llvm/test/Bindings/OCaml/
Dtarget.ml19 let i64_type = Llvm.i64_type context var
46 let sty = struct_type context [| i32_type; i64_type |] in
Dexecutionengine.ml20 let i64_type = Llvm.i64_type context var
105 if ty != i32_type && ty != i64_type then bomb "target_data did not work";
Dcore.ml32 let i64_type = Llvm.i64_type context var
122 let c = const_int i64_type (-1) in
124 insist (i64_type = type_of c);
130 let c = const_of_int64 i64_type (Int64.of_string "4294967295") false in
132 insist (i64_type = type_of c);
148 let c = const_of_int64 i64_type 9223372036854775807L true in
150 insist (i64_type = type_of c);
155 let c = const_int i64_type (1 lsl 61) in
156 insist (c = const_of_int64 i64_type (Int64.of_int (1 lsl 61)) false)
240 let c = const_null (packed_struct_type context [| i1_type; i8_type; i64_type;
[all …]
/external/llvm/test/Bindings/OCaml/
Dtarget.ml19 let i64_type = Llvm.i64_type context var
46 let sty = struct_type context [| i32_type; i64_type |] in
Dexecutionengine.ml20 let i64_type = Llvm.i64_type context var
105 if ty != i32_type && ty != i64_type then bomb "target_data did not work";
Dcore.ml32 let i64_type = Llvm.i64_type context var
112 let c = const_int i64_type (-1) in
114 insist (i64_type = type_of c);
120 let c = const_of_int64 i64_type (Int64.of_string "4294967295") false in
122 insist (i64_type = type_of c);
138 let c = const_of_int64 i64_type 9223372036854775807L true in
140 insist (i64_type = type_of c);
145 let c = const_int i64_type (1 lsl 61) in
146 insist (c = const_of_int64 i64_type (Int64.of_int (1 lsl 61)) false)
230 let c = const_null (packed_struct_type context [| i1_type; i8_type; i64_type;
[all …]
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_executor.cc541 Type i64_type = parser.getBuilder().getIntegerType(64); in ParseSwitchNOp() local
543 parser.parseAttribute(num_outs, i64_type, "num_outs", in ParseSwitchNOp()
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml365 external i64_type : llcontext -> lltype = "llvm_i64_type"
Dllvm.mli539 (** [i64_type c] returns an integer type of bitwidth 64 in the context [c]. See
541 val i64_type : llcontext -> lltype val
968 (const_int i32_type 1)) i64_type], but considerably more readable.
/external/llvm-project/llvm/bindings/ocaml/llvm/
Dllvm.ml441 external i64_type : llcontext -> lltype = "llvm_i64_type"
Dllvm.mli570 (** [i64_type c] returns an integer type of bitwidth 64 in the context [c]. See
572 val i64_type : llcontext -> lltype val
1019 (const_int i32_type 1)) i64_type], but considerably more readable.
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/
Dlegalize_tf.cc4574 auto i64_type = rewriter.getIntegerType(64); in GetLayout() local
4590 elements.push_back(rewriter.getIntegerAttr(i64_type, i)); in GetLayout()