/external/clang/test/Parser/ |
D | atomic.c | 7 typedef const int const_int; typedef 14 typedef _Atomic const_int const_atomic_int; 15 typedef _Atomic(const_int) const_atomic_int; // expected-error {{_Atomic cannot be applied to quali…
|
/external/mesa3d/src/compiler/glsl/ |
D | ast_type.cpp | 866 ir_constant *const const_int = in process_qualifier_constant() local 869 if (const_int == NULL || !const_int->type->is_integer()) { in process_qualifier_constant() 876 if (const_int->value.i[0] < min_value) { in process_qualifier_constant() 880 const_int->value.i[0], min_value); in process_qualifier_constant() 884 if (!first_pass && *value != const_int->value.u[0]) { in process_qualifier_constant() 888 qual_indentifier, *value, const_int->value.i[0]); in process_qualifier_constant() 892 *value = const_int->value.u[0]; in process_qualifier_constant() 923 ir_constant *const const_int = in process_qualifier_constant() local 925 if (const_int == NULL || !const_int->type->is_integer()) { in process_qualifier_constant() 931 if (const_int->value.i[0] < 0) { in process_qualifier_constant() [all …]
|
/external/clang/test/Sema/ |
D | conditional-expr.c | 63 const int *const_int; in foo() local 65 …*(test0 ? const_int : nonconst_int) = 42; // expected-error {{read-only variable is not assignable… in foo() 66 …*(test0 ? nonconst_int : const_int) = 42; // expected-error {{read-only variable is not assignable… in foo()
|
/external/llvm/test/Bindings/OCaml/ |
D | core.ml | 74 let c = const_int i32_type 42 in 100 (* CHECK: const_int{{.*}}i32{{.*}}-1 103 let c = const_int i32_type (-1) in 104 ignore (define_global "const_int" c m); 112 let c = const_int i64_type (-1) in 145 let c = const_int i64_type (1 lsl 61) in 197 let one = const_int i16_type 1 in 198 let two = const_int i16_type 2 in 199 let three = const_int i32_type 3 in 200 let four = const_int i32_type 4 in [all …]
|
D | irreader.ml | 41 insist ((global_initializer foo) = (const_int (i32_type context) 42))
|
D | ipo.ml | 44 ignore (build_ret (const_int i8_type 4) (builder_at_end context (entry_block fn)));
|
D | executionengine.ml | 56 ignore (define_global "globvar" (const_int i32_type 23) m);
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bindings/OCaml/ |
D | core.ml | 84 let c = const_int i32_type 42 in 110 (* CHECK: const_int{{.*}}i32{{.*}}-1 113 let c = const_int i32_type (-1) in 114 ignore (define_global "const_int" c m); 122 let c = const_int i64_type (-1) in 155 let c = const_int i64_type (1 lsl 61) in 207 let one = const_int i16_type 1 in 208 let two = const_int i16_type 2 in 209 let three = const_int i32_type 3 in 210 let four = const_int i32_type 4 in [all …]
|
D | irreader.ml | 41 insist ((global_initializer foo) = (const_int (i32_type context) 42))
|
D | ipo.ml | 44 ignore (build_ret (const_int i8_type 4) (builder_at_end context (entry_block fn)));
|
D | executionengine.ml | 56 ignore (define_global "globvar" (const_int i32_type 23) m);
|
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/ |
D | vmcore.ml | 87 (* RUN: grep {const_int.*i32.*-1} < %t.ll 90 let c = const_int i32_type (-1) in 91 ignore (define_global "const_int" c m); 98 let c = const_int i64_type (-1) in 148 let one = const_int i16_type 1 in 149 let two = const_int i16_type 2 in 150 let three = const_int i32_type 3 in 151 let four = const_int i32_type 4 in 236 let five = const_int i64_type 5 in 298 [| const_int i32_type 1 |]) [all …]
|
D | ipo_opts.ml | 41 ignore (build_ret (const_int i8_type 4) (builder_at_end context (entry_block fn)));
|
D | executionengine.ml | 30 ignore (build_ret (const_int i32_type retval) b);
|
/external/bcc/src/cc/frontends/b/ |
D | codegen_llvm.h | 92 llvm::Constant * const_int(uint64_t val, unsigned bits = 64, bool is_signed = false);
|
D | codegen_llvm.cc | 287 vector<Value *> indices({const_int(0), const_int(n->sub_decl_->slot_, 32)}); in visit_ident_expr_node() 1307 Constant * CodegenLLVM::const_int(uint64_t val, unsigned bits, bool is_signed) { in const_int() function in ebpf::cc::CodegenLLVM
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | check_ops_test.py | 1570 const_int = constant_op.constant(3, dtype=dtypes.int32) 1572 [sparse_float, const_int]) 1574 [sparse_float, const_int], dtypes.int32) 1576 [sparse_float, const_int], dtypes.float32) 1578 [const_int])
|
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/ |
D | llvm.mli | 711 (** [const_int ty i] returns the integer constant of type [ty] and value [i]. 713 val const_int : lltype -> int -> llvalue val 790 (const_int i32_type 0) (const_int i32_type 1)) i32_type], but considerably 796 (const_int i32_type 1)) i64_type], but considerably more readable.
|
D | llvm.ml | 396 external const_int : lltype -> int -> llvalue = "llvm_const_int"
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_tgsi_insn.c | 1931 struct src_register const_int = get_loop_const( emit ); in emit_bgnloop() local 1937 emit_src( emit, const_int ) ); in emit_bgnloop()
|
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/ocaml/llvm/ |
D | llvm.mli | 898 (** [const_int ty i] returns the integer constant of type [ty] and value [i]. 900 val const_int : lltype -> int -> llvalue val 986 (const_int i32_type 0) (const_int i32_type 1)) i32_type], but considerably 992 (const_int i32_type 1)) i64_type], but considerably more readable.
|
D | llvm.ml | 562 external const_int : lltype -> int -> llvalue = "llvm_const_int"
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm.mli | 874 (** [const_int ty i] returns the integer constant of type [ty] and value [i]. 876 val const_int : lltype -> int -> llvalue val 962 (const_int i32_type 0) (const_int i32_type 1)) i32_type], but considerably 968 (const_int i32_type 1)) i64_type], but considerably more readable.
|
D | llvm.ml | 494 external const_int : lltype -> int -> llvalue = "llvm_const_int"
|
/external/deqp/external/vulkancts/data/vulkan/glsl/es310/ |
D | functions.test | 1489 case const_int
|