HomeSort by relevance Sort by last modified time
    Searched full:i64_type (Results 1 - 5 of 5) sorted by null

  /external/llvm/test/Bindings/OCaml/
executionengine.ml 20 let i64_type = Llvm.i64_type context var
105 if ty != i32_type && ty != i64_type then bomb "target_data did not work";
target.ml 19 let i64_type = Llvm.i64_type context var
46 let sty = struct_type context [| i32_type; i64_type |] in
core.ml 32 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
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 513 (** [i64_type c] returns an integer type of bitwidth 64 in the context [c]. See
515 val i64_type : llcontext -> lltype var
938 (const_int i32_type 1)) i64_type], but considerably more readable.
    [all...]
llvm.ml 343 external i64_type : llcontext -> lltype = "llvm_i64_type"
    [all...]

Completed in 214 milliseconds