HomeSort by relevance Sort by last modified time
    Searched refs:OP (Results 26 - 50 of 228) sorted by null

12 3 4 5 6 7 8 910

  /toolchain/binutils/binutils-2.25/bfd/
m88kmach3.c 38 #define MY(OP) CONCAT2 (m88k_aout_mach3_,OP)
newsos3.c 28 #define MY(OP) CONCAT2 (m68k_aout_newsos3_,OP)
vax1knetbsd.c 33 #define MY(OP) CONCAT2 (vax_aout_1knbsd_,OP)
vaxbsd.c 31 #define MY(OP) CONCAT2 (vax_aout_bsd_,OP)
vaxnetbsd.c 33 #define MY(OP) CONCAT2 (vax_aout_nbsd_,OP)
i386bsd.c 42 #define MY(OP) CONCAT2 (i386_aout_bsd_,OP)
i386mach3.c 50 #define MY(OP) CONCAT2 (i386_aout_mach3_,OP)
ns32knetbsd.c 33 #define MY(OP) CONCAT2 (ns32k_aout_pc532nbsd_,OP)
  /external/compiler-rt/test/ubsan/TestCases/Integer/
incdec-overflow.cpp 13 OP;
uincdec-overflow.cpp 15 OP;
  /toolchain/binutils/binutils-2.25/opcodes/
m32c-opc.c     [all...]
ip2k-opc.c 128 #define OPERAND(op) IP2K_OPERAND_##op
130 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
143 { { MNEM, ' ', OP (ADDR16CJP), 0 } },
149 { { MNEM, ' ', OP (ADDR16CJP), 0 } },
155 { { MNEM, ' ', OP (FR), ',', OP (BITNO), 0 } },
161 { { MNEM, ' ', OP (FR), ',', OP (BITNO), 0 } },
167 { { MNEM, ' ', OP (FR), ',', OP (BITNO), 0 } }
    [all...]
  /external/valgrind/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...]
  /external/elfutils/lib/
md5.c 321 #define OP(a, b, c, d, s, T) \
342 OP (A, B, C, D, 7, 0xd76aa478);
343 OP (D, A, B, C, 12, 0xe8c7b756);
344 OP (C, D, A, B, 17, 0x242070db);
345 OP (B, C, D, A, 22, 0xc1bdceee);
346 OP (A, B, C, D, 7, 0xf57c0faf);
347 OP (D, A, B, C, 12, 0x4787c62a);
348 OP (C, D, A, B, 17, 0xa8304613);
349 OP (B, C, D, A, 22, 0xfd469501);
350 OP (A, B, C, D, 7, 0x698098d8)
    [all...]
sha1.c 251 #define OP(i, a, b, c, d, e) \
262 OP (0, A, B, C, D, E);
263 OP (1, E, A, B, C, D);
264 OP (2, D, E, A, B, C);
265 OP (3, C, D, E, A, B);
266 OP (4, B, C, D, E, A);
267 OP (5, A, B, C, D, E);
268 OP (6, E, A, B, C, D);
269 OP (7, D, E, A, B, C);
270 OP (8, C, D, E, A, B)
    [all...]
  /external/skia/src/core/
SkNx.h 46 #define OP(op) SkNx operator op(const SkNx& o) const { return {fLo op o.fLo, fHi op o.fHi}; }
47 OP(+) OP(-) OP(*) OP(/)
48 OP(&) OP(|) OP(^
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_tokenize.py 12 OP '+' (1, 2) (1, 3)
20 OP ':' (1, 8) (1, 9)
26 OP '=' (3, 9) (3, 10)
127 OP '<=' (1, 5) (1, 7)
131 OP '<=' (1, 5) (1, 7)
135 OP '<=' (1, 6) (1, 8)
139 OP '>' (1, 9) (1, 10)
140 OP '~' (1, 11) (1, 12)
144 OP '!=' (1, 8) (1, 10)
147 OP '(' (1, 0) (1, 1
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_tokenize.py 12 OP '+' (1, 2) (1, 3)
20 OP ':' (1, 8) (1, 9)
26 OP '=' (3, 9) (3, 10)
127 OP '<=' (1, 5) (1, 7)
131 OP '<=' (1, 5) (1, 7)
135 OP '<=' (1, 6) (1, 8)
139 OP '>' (1, 9) (1, 10)
140 OP '~' (1, 11) (1, 12)
144 OP '!=' (1, 8) (1, 10)
147 OP '(' (1, 0) (1, 1
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tokenize.py 12 OP '+' (1, 2) (1, 3)
20 OP ':' (1, 8) (1, 9)
26 OP '=' (3, 9) (3, 10)
127 OP '<=' (1, 5) (1, 7)
131 OP '<=' (1, 5) (1, 7)
135 OP '<=' (1, 6) (1, 8)
139 OP '>' (1, 9) (1, 10)
140 OP '~' (1, 11) (1, 12)
144 OP '!=' (1, 8) (1, 10)
147 OP '(' (1, 0) (1, 1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tokenize.py 12 OP '+' (1, 2) (1, 3)
20 OP ':' (1, 8) (1, 9)
26 OP '=' (3, 9) (3, 10)
127 OP '<=' (1, 5) (1, 7)
131 OP '<=' (1, 5) (1, 7)
135 OP '<=' (1, 6) (1, 8)
139 OP '>' (1, 9) (1, 10)
140 OP '~' (1, 11) (1, 12)
144 OP '!=' (1, 8) (1, 10)
147 OP '(' (1, 0) (1, 1
    [all...]
  /external/libvncserver/common/
md5.c 335 #define OP(a, b, c, d, s, T) \
356 OP (A, B, C, D, 7, 0xd76aa478);
357 OP (D, A, B, C, 12, 0xe8c7b756);
358 OP (C, D, A, B, 17, 0x242070db);
359 OP (B, C, D, A, 22, 0xc1bdceee);
360 OP (A, B, C, D, 7, 0xf57c0faf);
361 OP (D, A, B, C, 12, 0x4787c62a);
362 OP (C, D, A, B, 17, 0xa8304613);
363 OP (B, C, D, A, 22, 0xfd469501);
364 OP (A, B, C, D, 7, 0x698098d8)
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
md5.c 315 #define OP(a, b, c, d, s, T) \
336 OP (A, B, C, D, 7, (md5_uint32) 0xd76aa478);
337 OP (D, A, B, C, 12, (md5_uint32) 0xe8c7b756);
338 OP (C, D, A, B, 17, (md5_uint32) 0x242070db);
339 OP (B, C, D, A, 22, (md5_uint32) 0xc1bdceee);
340 OP (A, B, C, D, 7, (md5_uint32) 0xf57c0faf);
341 OP (D, A, B, C, 12, (md5_uint32) 0x4787c62a);
342 OP (C, D, A, B, 17, (md5_uint32) 0xa8304613);
343 OP (B, C, D, A, 22, (md5_uint32) 0xfd469501);
344 OP (A, B, C, D, 7, (md5_uint32) 0x698098d8)
    [all...]
  /external/clang/test/SemaCXX/
warn-self-assign.cpp 20 #define OP =
25 a OP a;
28 LHS OP RHS;
29 #undef OP

Completed in 447 milliseconds

12 3 4 5 6 7 8 910