HomeSort by relevance Sort by last modified time
    Searched defs:DO (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/valgrind/main/none/tests/
fdleak.h 7 #define DO(op) \
  /external/valgrind/main/none/tests/mips32/
bug320057-mips32.c 12 #define DO(cmd) printf(#cmd "; status: %s\n", strerror(errno))
21 DO(shm_open());
25 DO(ftruncate(fd, SZ));
28 DO(mmap());
31 DO(munmap());
34 DO(shm_unlink());
  /external/smack/src/org/xbill/DNS/
ExtendedFlags.java 17 public static final int DO = 0x8000;
24 extflags.add(DO, "do");
Flags.java 38 public static final int DO = ExtendedFlags.DO;
  /external/valgrind/main/memcheck/tests/
sh-mem.c 22 // a[] is the array in which we do our loads and stores.
23 // b[] is another one in which we do some copying.
134 #define DO(NNN, Ty, ITy, isF4) \
137 /* For all of the alignments from (0..NNN-1), eg. if NNN==4, we do */ \
206 // For sizes 4 and 8 we do both integer and floating-point types. The
210 DO(1, U1, U1, /*isF4*/0);
211 DO(2, U2, U2, /*isF4*/0);
212 DO(4, U4, U4, /*isF4*/0);
213 DO(4, F4, U4, /*isF4*/1);
214 DO(8, U8, U8, /*isF4*/0)
    [all...]
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-ppc32-linux.c 123 do { tst->arch.vex.guest_LR = (zzval); \
130 do { tst->arch.vex.guest_GPR##zzn = (zzval); \
146 # define DO(gpr) mc->mc_gregs[VKI_PT_R0+gpr] = tst->arch.vex.guest_GPR##gpr
147 DO(0); DO(1); DO(2); DO(3); DO(4); DO(5); DO(6); DO(7)
    [all...]
sigframe-ppc64-linux.c 121 do { tst->arch.vex.guest_LR = (zzval); \
128 do { tst->arch.vex.guest_GPR##zzn = (zzval); \
246 # define DO(gpr) frame->uc.uc_mcontext.gp_regs[VKI_PT_R0+gpr] \
248 DO(0); DO(1); DO(2); DO(3); DO(4); DO(5); DO(6); DO(7)
    [all...]
  /external/valgrind/main/coregrind/m_coredump/
coredump-elf.c 293 # define DO(n) regs->gpr[n] = arch->vex.guest_GPR##n
294 DO(0); DO(1); DO(2); DO(3); DO(4); DO(5); DO(6); DO(7);
295 DO(8); DO(9); DO(10); DO(11); DO(12); DO(13); DO(14); DO(15)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 89 // Makes code slightly more readable. The meaning of "DO(foo)" is
92 #define DO(STATEMENT) if (STATEMENT) {} else return false
347 DO(Consume("syntax", "File must begin with 'syntax = \"proto2\";'."));
348 DO(Consume("="));
351 DO(ConsumeString(&syntax, "Expected syntax identifier."));
352 DO(Consume(";"));
395 DO(Consume("message"));
397 DO(ConsumeIdentifier(message->mutable_name(), "Expected message name."));
398 DO(ParseMessageBlock(message));
403 DO(Consume("{"))
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
parser.cc 89 // Makes code slightly more readable. The meaning of "DO(foo)" is
92 #define DO(STATEMENT) if (STATEMENT) {} else return false
185 DO(ConsumeInteger64(max_value, &value, error));
465 DO(Consume("syntax", "File must begin with 'syntax = \"proto2\";'."));
466 DO(Consume("="));
469 DO(ConsumeString(&syntax, "Expected syntax identifier."));
470 DO(ConsumeEndOfDeclaration(";", NULL));
531 DO(Consume("message"));
537 DO(ConsumeIdentifier(message->mutable_name(), "Expected message name."));
539 DO(ParseMessageBlock(message, message_location))
    [all...]
  /external/deqp/framework/randomshaders/
rsgToken.hpp 45 DO,
  /external/javassist/src/main/javassist/compiler/
TokenId.java 30 int DO = 311;
  /external/protobuf/src/google/protobuf/
text_format.cc 102 // Makes code slightly more readable. The meaning of "DO(foo)" is
105 #define DO(STATEMENT) if (STATEMENT) {} else return false
145 // Consume fields until we cannot do so anymore.
151 DO(ConsumeField(output));
222 DO(ConsumeField(message));
226 DO(Consume(delimeter));
243 DO(ConsumeIdentifier(&field_name));
246 DO(ConsumeIdentifier(&part));
250 DO(Consume("]"));
261 DO(ConsumeIdentifier(&field_name))
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
glslang_tab.h 70 DO = 271,
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
text_format.cc 172 // Makes code slightly more readable. The meaning of "DO(foo)" is
175 #define DO(STATEMENT) if (STATEMENT) {} else return false
221 // Consume fields until we cannot do so anymore.
227 DO(ConsumeField(output));
298 DO(ConsumeField(message));
302 DO(Consume(delimeter));
321 DO(ConsumeIdentifier(&field_name));
324 DO(ConsumeIdentifier(&part));
328 DO(Consume("]"));
347 DO(ConsumeIdentifier(&field_name))
    [all...]
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
rfc2217.py 29 # - run a server: while true; do nc -l -p 7000 -c "sredird debug /dev/ttyUSB0 /var/lock/sredir"; done
55 # - "ign_set_control": do not look at the answers to SET_CONTROL
58 # automatically on change (which most servers do and is according to the
87 DO = to_bytes([253])
226 """Manage a single telnet option, keeps track of DO/DONT WILL/WONT."""
256 """A DO/DONT/WILL/WONT was received for this option, update state and
399 TelnetOption(self, 'we-BINARY', BINARY, WILL, WONT, DO, DONT, INACTIVE),
400 TelnetOption(self, 'we-RFC2217', COM_PORT_OPTION, WILL, WONT, DO, DONT, REQUESTED),
404 TelnetOption(self, 'ECHO', ECHO, DO, DONT, WILL, WONT, REQUESTED),
405 TelnetOption(self, 'we-SGA', SGA, WILL, WONT, DO, DONT, REQUESTED)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
telnetlib.py 28 To do:
53 DO = chr(253)
493 # 'IAC: IAC CMD [OPTION only for WILL/WONT/DO/DONT]'
494 if c in (DO, DONT, WILL, WONT):
516 # unless we did a WILL/DO before.
522 if cmd in (DO, DONT):
524 cmd == DO and 'DO' or 'DONT', ord(opt))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
telnetlib.py 28 To do:
53 DO = chr(253)
493 # 'IAC: IAC CMD [OPTION only for WILL/WONT/DO/DONT]'
494 if c in (DO, DONT, WILL, WONT):
516 # unless we did a WILL/DO before.
522 if cmd in (DO, DONT):
524 cmd == DO and 'DO' or 'DONT', ord(opt))
  /bionic/libc/include/arpa/
telnet.h 40 #define DO 253 /* please, you use option */
65 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
  /development/ndk/platforms/android-9/include/arpa/
telnet.h 40 #define DO 253 /* please, you use option */
65 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
  /development/ndk/platforms/android-L/include/arpa/
telnet.h 40 #define DO 253 /* please, you use option */
65 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glsl_parser.h 48 DO = 266,
249 #define DO 266
  /external/tcpdump/
telnet.h 48 #define DO 253 /* please, you use option */
73 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/arpa/
telnet.h 40 #define DO 253 /* please, you use option */
65 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/arpa/
telnet.h 40 #define DO 253 /* please, you use option */
65 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,

Completed in 1217 milliseconds

1 2 3 4