HomeSort by relevance Sort by last modified time
    Searched full:const_int (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/clang/test/Parser/
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 qualified type 'const_int' (aka 'const int')}}
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Token.cpp 66 assert(type == CONST_INT);
72 assert(type == CONST_INT);
Token.h 36 CONST_INT,
91 // Converts text into numeric value for CONST_INT and CONST_FLOAT token.
Macro.cpp 39 token.type = Token::CONST_INT;
MacroExpander.cpp 164 // Convert the current token into a CONST_INT token.
165 token->type = Token::CONST_INT;
DirectiveParser.cpp 198 // Convert the current token into a CONST_INT token.
199 token->type = Token::CONST_INT;
788 if (token->type != Token::CONST_INT)
Tokenizer.l 155 return pp::Token::CONST_INT;
ExpressionParser.y 363 case pp::Token::CONST_INT: {
  /external/llvm/test/Bindings/OCaml/
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 i
    [all...]
irreader.ml 41 insist ((global_initializer foo) = (const_int (i32_type context) 42))
executionengine.ml 56 ignore (define_global "globvar" (const_int i32_type 23) m);
ipo.ml 44 ignore (build_ret (const_int i8_type 4) (builder_at_end context (entry_block fn)));
  /external/clang/test/Sema/
conditional-expr.c 63 const int *const_int; local
65 *(test0 ? const_int : nonconst_int) = 42; // expected-error {{read-only variable is not assignable}}
66 *(test0 ? nonconst_int : const_int) = 42; // expected-error {{read-only variable is not assignable}}
  /external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
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...]
executionengine.ml 30 ignore (build_ret (const_int i32_type retval) b);
ipo_opts.ml 41 ignore (build_ret (const_int i8_type 4) (builder_at_end context (entry_block fn)));
  /external/mesa3d/src/compiler/glsl/
ast_type.cpp 808 ir_constant *const const_int = ir->constant_expression_value(); local
809 if (const_int == NULL || !const_int->type->is_integer()) {
816 if (const_int->value.i[0] < min_value) {
820 const_int->value.i[0], min_value);
824 if (!first_pass && *value != const_int->value.u[0]) {
828 qual_indentifier, *value, const_int->value.i[0]);
832 *value = const_int->value.u[0];
863 ir_constant *const const_int = ir->constant_expression_value(); local
864 if (const_int == NULL || !const_int->type->is_integer())
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
rtl.def 49 (e.g, CONST_INT)
310 For an unconditional trap, make the condition (const_int 1). */
318 DEF_RTL_EXPR(CONST_INT, "const_int", "w", RTX_CONST_OBJ)
338 (such as the sum of a SYMBOL_REF and a CONST_INT) so that it will be
509 form (plus (reg) (reg)) and (plus (reg) (const_int)), where
671 a CONST_INT for each of the subparts of the result vector, giving the
    [all...]
reg-notes.def 131 the form (SET new-cfa-reg (PLUS old-cfa-reg const_int)). If the note
rtl.h 403 case CONST_INT: \
408 case CONST_INT: \
414 case CONST_INT: \
420 #define CONST_INT_P(X) (GET_CODE (X) == CONST_INT)
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
check_ops_test.py     [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersNarrowingTest.cpp     [all...]
  /external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
llvm.mli 711 (** [const_int ty i] returns the integer constant of type [ty] and value [i].
713 val const_int : lltype -> int -> llvalue var
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.
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopToDop.java 73 MAP.put(Rops.CONST_INT, Dops.CONST_4);
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 250 MAP.put(Rops.CONST_INT, Dops.CONST_4);

Completed in 464 milliseconds

1 2 3