HomeSort by relevance Sort by last modified time
    Searched refs:OP (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/compiler-rt/lib/ubsan/lit_tests/Integer/
shift.cpp 24 a OP 1;
29 a OP (-3);
35 a OP 32;
incdec-overflow.cpp 15 OP;
uincdec-overflow.cpp 15 OP;
  /external/valgrind/main/VEX/test/
test-i386-muldiv.h 2 void glue(glue(test_, OP), b)(int op0, int op1)
11 stringify(OP)"b %b2\n\t"
17 stringify(OP) "b", s0, s1, res, flags & CC_MASK);
20 void glue(glue(test_, OP), w)(int op0h, int op0, int op1)
29 stringify(OP) "w %w3\n\t"
35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK);
38 void glue(glue(test_, OP), l)(int op0h, int op0, int op1)
47 stringify(OP) "l %3\n\t"
53 stringify(OP) "l", op0h, op0, s1, resh, res, flags & CC_MASK);
56 #undef OP
    [all...]
test-amd64-muldiv.h 2 void glue(glue(test_, OP), b)(int64 op0, int64 op1)
11 stringify(OP)"b %b2\n\t"
17 stringify(OP) "b", s0, s1, res, flags & CC_MASK);
20 void glue(glue(test_, OP), w)(int64 op0h, int64 op0, int64 op1)
29 stringify(OP) "w %w3\n\t"
35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK);
38 void glue(glue(test_, OP), l)(int64 op0h, int64 op0, int64 op1)
47 stringify(OP) "l %3\n\t"
53 stringify(OP) "l", op0h, op0, s1, resh, res, flags & CC_MASK);
56 void glue(glue(test_, OP), q)(int64 op0h, int64 op0, int64 op1)
    [all...]
test-i386-shift.h 2 #define exec_op glue(exec_, OP)
3 #define exec_opl glue(glue(exec_, OP), l)
4 #define exec_opw glue(glue(exec_, OP), w)
5 #define exec_opb glue(glue(exec_, OP), b)
13 stringify(OP) size " %" size "2, %" size "0\n\t" \
22 stringify(OP) size " %%cl, %" size "0\n\t" \
39 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK);
52 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK);
59 stringify(OP) size " %%cl, %" size "5, %" size "0\n\t" \
75 stringify(OP) "l", s0, s2, s1, res, iflags, flags & CC_MASK)
    [all...]
test-amd64-shift.h 2 #define exec_op glue(exec_, OP)
3 #define exec_opq glue(glue(exec_, OP), q)
4 #define exec_opl glue(glue(exec_, OP), l)
5 #define exec_opw glue(glue(exec_, OP), w)
6 #define exec_opb glue(glue(exec_, OP), b)
14 stringify(OP) size " %" size "2, %" size "0\n\t" \
23 stringify(OP) size " %%cl, %" size "0\n\t" \
40 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK);
53 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK);
66 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK)
    [all...]
test-i386.h 4 #define exec_op glue(exec_, OP)
5 #define exec_opl glue(glue(exec_, OP), l)
6 #define exec_opw glue(glue(exec_, OP), w)
7 #define exec_opb glue(glue(exec_, OP), b)
12 stringify(OP) size " %" size "2, %" size "0\n\t" \
21 stringify(OP) size " %" size "0\n\t" \
36 stringify(OP) "l", s0, res, iflags, flags & CC_MASK);
50 stringify(OP) "w", s0, res, iflags, flags & CC_MASK);
64 stringify(OP) "b", s0, res, iflags, flags & CC_MASK);
79 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK)
    [all...]
test-amd64.h 2 #define exec_op glue(exec_, OP)
3 #define exec_opq glue(glue(exec_, OP), q)
4 #define exec_opl glue(glue(exec_, OP), l)
5 #define exec_opw glue(glue(exec_, OP), w)
6 #define exec_opb glue(glue(exec_, OP), b)
11 stringify(OP) size " %" size "2, %" size "0\n\t" \
20 stringify(OP) size " %" size "0\n\t" \
34 stringify(OP) "q", s0, res, iflags, flags & CC_MASK);
43 stringify(OP) "l", s0, res, iflags, flags & CC_MASK);
52 stringify(OP) "w", s0, res, iflags, flags & CC_MASK)
    [all...]
  /external/elfutils/lib/
sha1.c 257 #define OP(i, a, b, c, d, e) \
268 OP (0, A, B, C, D, E);
269 OP (1, E, A, B, C, D);
270 OP (2, D, E, A, B, C);
271 OP (3, C, D, E, A, B);
272 OP (4, B, C, D, E, A);
273 OP (5, A, B, C, D, E);
274 OP (6, E, A, B, C, D);
275 OP (7, D, E, A, B, C);
276 OP (8, C, D, E, A, B)
    [all...]
md5.c 329 #define OP(a, b, c, d, s, T) \
350 OP (A, B, C, D, 7, 0xd76aa478);
351 OP (D, A, B, C, 12, 0xe8c7b756);
352 OP (C, D, A, B, 17, 0x242070db);
353 OP (B, C, D, A, 22, 0xc1bdceee);
354 OP (A, B, C, D, 7, 0xf57c0faf);
355 OP (D, A, B, C, 12, 0x4787c62a);
356 OP (C, D, A, B, 17, 0xa8304613);
357 OP (B, C, D, A, 22, 0xfd469501);
358 OP (A, B, C, D, 7, 0x698098d8)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cpplib.h 56 OP(EQ, "=") \
57 OP(NOT, "!") \
58 OP(GREATER, ">") /* compare */ \
59 OP(LESS, "<") \
60 OP(PLUS, "+") /* math */ \
61 OP(MINUS, "-") \
62 OP(MULT, "*") \
63 OP(DIV, "/") \
64 OP(MOD, "%") \
65 OP(AND, "&") /* bit ops */
    [all...]
tree-ssa-operands.h 82 #define USE_OP_PTR(OP) (&((OP)->use_ptr))
83 #define USE_OP(OP) (USE_FROM_PTR (USE_OP_PTR (OP)))
85 #define DEF_OP_PTR(OP) ((OP)->def_ptr)
86 #define DEF_OP(OP) (DEF_FROM_PTR (DEF_OP_PTR (OP)))
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cpplib.h 56 OP(EQ, "=") \
57 OP(NOT, "!") \
58 OP(GREATER, ">") /* compare */ \
59 OP(LESS, "<") \
60 OP(PLUS, "+") /* math */ \
61 OP(MINUS, "-") \
62 OP(MULT, "*") \
63 OP(DIV, "/") \
64 OP(MOD, "%") \
65 OP(AND, "&") /* bit ops */
    [all...]
tree-ssa-operands.h 82 #define USE_OP_PTR(OP) (&((OP)->use_ptr))
83 #define USE_OP(OP) (USE_FROM_PTR (USE_OP_PTR (OP)))
85 #define DEF_OP_PTR(OP) ((OP)->def_ptr)
86 #define DEF_OP(OP) (DEF_FROM_PTR (DEF_OP_PTR (OP)))
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cpplib.h 56 OP(EQ, "=") \
57 OP(NOT, "!") \
58 OP(GREATER, ">") /* compare */ \
59 OP(LESS, "<") \
60 OP(PLUS, "+") /* math */ \
61 OP(MINUS, "-") \
62 OP(MULT, "*") \
63 OP(DIV, "/") \
64 OP(MOD, "%") \
65 OP(AND, "&") /* bit ops */
    [all...]
tree-ssa-operands.h 82 #define USE_OP_PTR(OP) (&((OP)->use_ptr))
83 #define USE_OP(OP) (USE_FROM_PTR (USE_OP_PTR (OP)))
85 #define DEF_OP_PTR(OP) ((OP)->def_ptr)
86 #define DEF_OP(OP) (DEF_FROM_PTR (DEF_OP_PTR (OP)))
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cpplib.h 56 OP(EQ, "=") \
57 OP(NOT, "!") \
58 OP(GREATER, ">") /* compare */ \
59 OP(LESS, "<") \
60 OP(PLUS, "+") /* math */ \
61 OP(MINUS, "-") \
62 OP(MULT, "*") \
63 OP(DIV, "/") \
64 OP(MOD, "%") \
65 OP(AND, "&") /* bit ops */
    [all...]
  /external/clang/test/SemaCXX/
warn-self-assign.cpp 17 #define OP =
22 a OP a;
25 LHS OP RHS;
26 #undef OP
  /external/eigen/test/
exceptions.cpp 76 #define CHECK_MEMLEAK(OP) { \
80 try { OP; } \
83 VERIFY(ScalarWithExceptions::instances==before && "memory leak detected in " && EIGEN_MAKESTRING(OP)); \
85 VERIFY(exception_thrown && " no exception thrown in " && EIGEN_MAKESTRING(OP)); \
103 VERIFY(ScalarWithExceptions::instances==0 && "global memory leak detected in " && EIGEN_MAKESTRING(OP)); \
  /external/qemu/audio/
rate_template.h 54 OP (obuf[i].l, ibuf[i].l);
55 OP (obuf[i].r, ibuf[i].r);
98 OP (obuf->l, out.l);
99 OP (obuf->r, out.r);
111 #undef OP
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
main-scripts.rb 105 r: ID OP^ ID EOF!;
108 OP: '+';
129 r: ID OP^ ID EOF!;
132 OP: '+';
142 r returns [res]: ^(OP a=ID b=ID)
143 { $res = "\%s \%s \%s" \% [$a.text, $OP.text, $b.text] }
166 r: ID OP^ ID EOF!;
169 OP: '+';
181 r: ^(OP a=ID b=ID) -> ^(OP ^(ARG ID) ^(ARG ID))
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
Cwise.h 18 #define EIGEN_CWISE_BINOP_RETURN_TYPE(OP) \
19 CwiseBinaryOp<OP<typename internal::traits<ExpressionType>::Scalar>, ExpressionType, OtherDerived>
23 #define EIGEN_CWISE_UNOP_RETURN_TYPE(OP) \
24 CwiseUnaryOp<OP<typename internal::traits<ExpressionType>::Scalar>, ExpressionType>
28 #define EIGEN_CWISE_COMP_TO_SCALAR_RETURN_TYPE(OP) \
29 CwiseBinaryOp<OP<typename internal::traits<ExpressionType>::Scalar>, ExpressionType, \
  /external/eigen/lapack/
lu.cpp 49 if(OP(*trans)==INVALID) *info = -1;
67 if(OP(*trans)==NOTR)
73 else if(OP(*trans)==TR)
79 else if(OP(*trans)==ADJ)
  /external/openssh/
ttymodes.c 321 #define TTYCHAR(NAME, OP) \
322 buffer_put_char(&buf, OP); \
325 #define TTYMODE(NAME, FIELD, OP) \
326 buffer_put_char(&buf, OP); \
406 #define TTYCHAR(NAME, OP) \
407 case OP: \
411 #define TTYMODE(NAME, FIELD, OP) \
412 case OP: \

Completed in 1146 milliseconds

1 2 3 4