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

1 2 3 4 5 6 7

  /external/valgrind/none/tests/
fdleak.h 7 #define DO(op) \
  /external/valgrind/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());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
telnet.py 25 DO = chr(253)
87 elif c in (DO, DONT):
88 if c == DO: print '(DO)',
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
flags.py 30 DO = 0x8000
43 'DO' : DO
  /external/valgrind/coregrind/m_sigframe/
sigframe-ppc64-linux.c 120 do { tst->arch.vex.guest_LR = (zzval); \
127 do { tst->arch.vex.guest_GPR##zzn = (zzval); \
203 # define DO(gpr) frame->uc.uc_mcontext.gp_regs[VKI_PT_R0+gpr] \
205 DO(0); DO(1); DO(2); DO(3); DO(4); DO(5); DO(6); DO(7)
    [all...]
sigframe-ppc32-linux.c 122 do { tst->arch.vex.guest_LR = (zzval); \
129 do { tst->arch.vex.guest_GPR##zzn = (zzval); \
145 # define DO(gpr) mc->mc_gregs[VKI_PT_R0+gpr] = tst->arch.vex.guest_GPR##gpr
146 DO(0); DO(1); DO(2); DO(3); DO(4); DO(5); DO(6); DO(7)
    [all...]
  /external/valgrind/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/coregrind/m_coredump/
coredump-elf.c 283 # define DO(n) regs->gpr[n] = arch->vex.guest_GPR##n
284 DO(0); DO(1); DO(2); DO(3); DO(4); DO(5); DO(6); DO(7);
285 DO(8); DO(9); DO(10); DO(11); DO(12); DO(13); DO(14); DO(15)
    [all...]
  /external/toybox/toys/pending/
telnetd.c 42 # define DO 253 /* please, you use option */
187 char intial_iacs[] = {IAC, DO, TELOPT_ECHO, IAC, DO, TELOPT_NAWS,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
telnetlib.py 28 To do:
52 DO = chr(253)
436 # 'IAC: IAC CMD [OPTION only for WILL/WONT/DO/DONT]'
437 if c in (DO, DONT, WILL, WONT):
459 # unless we did a WILL/DO before.
465 if cmd in (DO, DONT):
467 cmd == DO and 'DO' or 'DONT', ord(opt))
  /external/deqp/framework/randomshaders/
rsgToken.hpp 45 DO,
  /external/javassist/src/main/javassist/compiler/
TokenId.java 30 int DO = 311;
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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))
  /external/chromium-trace/catapult/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...]
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 99 // Note: Do not use ctype.h due to locales.
116 // Makes code slightly more readable. The meaning of "DO(foo)" is
119 #define DO(STATEMENT) if (STATEMENT) {} else return false
212 DO(ConsumeInteger64(max_value, &value, error));
581 DO(Consume(
584 DO(Consume("="));
587 DO(ConsumeString(&syntax, "Expected syntax identifier."));
588 DO(ConsumeEndOfDeclaration(";", &syntax_location));
653 DO(Consume("message"));
659 DO(ConsumeIdentifier(message->mutable_name(), "Expected message name."))
    [all...]
  /external/skia/src/sksl/
SkSLToken.h 84 DO,
  /external/swiftshader/src/OpenGL/compiler/
glslang_tab.h 68 DO = 271,
  /system/tpm/trunks/ftdi/
mpsse.h 97 DO = 2,
123 /* SK/DO/CS and GPIOs are outputs, DI is an input */
124 #define DEFAULT_TRIS (SK | DO | CS | GPIO0 | GPIO1 | GPIO2 | GPIO3)
  /bionic/libc/include/arpa/
telnet.h 42 #define DO 253 /* please, you use option */
67 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
  /development/ndk/platforms/android-21/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,
  /device/linaro/bootloader/edk2/StdLib/Include/arpa/
telnet.h 44 #define DO 253 /* please, you use option */
69 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC",

Completed in 2429 milliseconds

1 2 3 4 5 6 7