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

1 2 3 4 5 6 7 8 91011

  /bionic/libc/upstream-netbsd/lib/libc/inet/
nsap_addr.c 58 inet_nsap_addr(const char *ascii, u_char *binary, int maxlen) {
62 _DIAGASSERT(ascii != NULL);
65 if (ascii[0] != '0' || (ascii[1] != 'x' && ascii[1] != 'X'))
67 ascii += 2;
69 while ((c = *ascii++) != '\0' && len < (u_int)maxlen) {
78 c = *ascii++;
97 inet_nsap_ntoa(int binlen, const u_char *binary, char *ascii) {
105 if (ascii)
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
MessageDigestHashFunctionTest.java 17 assertMessageDigestHashing(HashTestUtils.ascii(""), "MD5");
18 assertMessageDigestHashing(HashTestUtils.ascii("Z"), "MD5");
19 assertMessageDigestHashing(HashTestUtils.ascii("foobar"), "MD5");
23 assertMessageDigestHashing(HashTestUtils.ascii(""), "SHA1");
24 assertMessageDigestHashing(HashTestUtils.ascii("Z"), "SHA1");
25 assertMessageDigestHashing(HashTestUtils.ascii("foobar"), "SHA1");
Murmur3Hash128Test.java 19 import static com.google.common.hash.HashTestUtils.ascii;
37 ascii("hell"));
39 ascii("hello"));
41 ascii("hello "));
43 ascii("hello w"));
45 ascii("hello wo"));
47 ascii("hello wor"));
49 ascii("The quick brown fox jumps over the lazy dog"));
51 ascii("The quick brown fox jumps over the lazy cog"));
  /external/llvm/test/MC/MachO/
indirect-symbols.s 10 .ascii "\364\364\364\364\364"
12 .ascii "\364\364\364\364\364"
14 .ascii "\364\364\364\364\364"
data.s 4 .ascii "hello"
  /external/apache-http/src/org/apache/commons/codec/binary/
BinaryCodec.java 78 * Converts an array of raw binary data into an array of ascii 0 and 1 characters.
82 * @return 0 and 1 ascii character bytes one for each bit of the argument
90 * Converts an array of raw binary data into an array of ascii 0 and 1 chars.
94 * @return 0 and 1 ascii character chars one for each bit of the argument
107 * Decodes a byte array where each byte represents an ascii '0' or '1'.
109 * @param ascii
110 * each byte represents an ascii '0' or '1'
116 public Object decode(Object ascii) throws DecoderException {
117 if (ascii == null) {
120 if (ascii instanceof byte[])
    [all...]
  /external/llvm/test/MC/AsmParser/
directive_ascii.s 6 .ascii
15 .ascii "A"
28 .ascii "\1\01\07\08\001\0001\200\0"
31 # CHECK: .ascii "\b\f\n\r\t\\\""
33 .ascii "\b\f\n\r\t\\\""
directive_incbin.s 6 # CHECK: .ascii "abcd\n"
macros-gas.s 29 .ascii "\_a \_b \_c \\_c"
32 // CHECK: .ascii "1 2 3 \003"
35 // CHECK: .ascii "1 2 3 \003"
39 .ascii "\_a \_b \_c"
42 // CHECK: .ascii "1 (23) "
45 // CHECK: .ascii "1 (23) "
48 // CHECK: .ascii "1 2 "
73 .ascii "\_a,\_b,\_c"
77 .ascii "\_a \_b \_c"
80 // CHECK: .ascii "a,b,c
    [all...]
  /external/llvm/test/MC/AArch64/
arm64-mapping-within-section.s 7 .ascii "012"
mapping-within-section.s 7 .ascii "012"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multifile.py 16 Content-Type: text/plain; charset="us-ascii"; format=flowed
20 Content-Type: text/html; charset="us-ascii"
28 Content-Type: text/plain; charset="us-ascii"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multifile.py 16 Content-Type: text/plain; charset="us-ascii"; format=flowed
20 Content-Type: text/html; charset="us-ascii"
28 Content-Type: text/plain; charset="us-ascii"
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
ll.S 382 # ebx is 4-char ascii string to look for
539 add $0x30, %al # convert to ASCII
549 ver_string: .ascii " Version \0"
550 compiled_string: .ascii ", Compiled \0"
551 processor: .ascii " Processor\0"
552 s_comma: .ascii "s, \0"
553 ram_comma: .ascii "M RAM, \0"
554 bogo_total: .ascii " Bogomips Total\n\0"
556 default_colors: .ascii "\033[0m\n\n\0"
558 cpuinfo: .ascii "/proc/cpuinfo\0
    [all...]
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
ChunkHandler.java 127 char[] ascii = new char[4]; local
129 ascii[0] = (char) ((type >> 24) & 0xff);
130 ascii[1] = (char) ((type >> 16) & 0xff);
131 ascii[2] = (char) ((type >> 8) & 0xff);
132 ascii[3] = (char) (type & 0xff);
134 return new String(ascii);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
textpad.py 4 import curses.ascii namespace
58 if curses.ascii.ascii(self.win.inch(y, last)) != curses.ascii.SP:
80 if curses.ascii.isprint(oldch):
88 if curses.ascii.isprint(ch):
91 elif ch == curses.ascii.SOH: # ^a
93 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE):
102 if ch in (curses.ascii.BS, curses.KEY_BACKSPACE)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
textpad.py 4 import curses.ascii namespace
58 if curses.ascii.ascii(self.win.inch(y, last)) != curses.ascii.SP:
80 if curses.ascii.isprint(oldch):
88 if curses.ascii.isprint(ch):
91 elif ch == curses.ascii.SOH: # ^a
93 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE):
102 if ch in (curses.ascii.BS, curses.KEY_BACKSPACE)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Base64.java 50 private static byte[] ascii = new byte[255]; field in class:Base64
56 ascii[idx] = INVALID;
61 ascii[base64[idx]] = (byte) idx;
64 ascii[0x09] = WHITESPACE;
65 ascii[0x0A] = WHITESPACE;
66 ascii[0x0D] = WHITESPACE;
67 ascii[0x20] = WHITESPACE;
70 ascii[0x3d] = EQUAL;
114 // Do 3-byte to 4-byte conversion + 0-63 to ascii printable conversion
188 // Do ascii printable to 0-63 conversion
    [all...]
  /external/valgrind/main/exp-bbv/tests/arm-linux/
ll.S 386 add r8,r8,#0x30 @ convert to ascii
438 ver_string: .ascii " Version \0"
439 compiled_string: .ascii ", Compiled \0"
440 processor: .ascii " Processor, \0"
441 ram_comma: .ascii "M RAM, \0"
442 bogo_total: .ascii " Bogomips Total\n\0"
444 default_colors: .ascii "\033[0m\n\n\0"
445 escape: .ascii "\033[\0"
446 C: .ascii "C\0"
448 one: .ascii "One \0
    [all...]
  /external/chromium_org/third_party/icu/scripts/
sjis_gen.sh 31 <icu:charsetFamily> "ASCII"
41 # 0x80. So, this is one character more than ASCII up to 128 (0x80).
42 function ascii { function
111 ascii
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
bitvect_test.c 41 const char *ascii; member in struct:Val_s
89 unsigned char ascii[64], *result; local
94 strcpy((char *)ascii, val->ascii);
96 if(BitVector_from_Oct(testval, ascii) != ErrCode_Ok)
106 strcpy(result_msg, val->ascii);
108 sprintf((char *)ascii+3*i, "%02x ", result[i]);
110 strcat(result_msg, (char *)ascii);
  /external/llvm/test/MC/ELF/
subsection.s 26 .ascii "test"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
26 header. This defaults to "us-ascii". Note that as a side-effect, the
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
26 header. This defaults to "us-ascii". Note that as a side-effect, the
  /external/valgrind/main/exp-bbv/tests/x86-linux/
ll.S 380 # ebx is 4-char ascii string to look for
539 add $0x30, %al # convert to ASCII
549 ver_string: .ascii " Version \0"
550 compiled_string: .ascii ", Compiled \0"
551 processor: .ascii " Processor\0"
552 s_comma: .ascii "s, \0"
553 ram_comma: .ascii "M RAM, \0"
554 bogo_total: .ascii " Bogomips Total\n\0"
556 default_colors: .ascii "\033[0m\n\n\0"
558 cpuinfo: .ascii "/proc/cpuinfo\0
    [all...]

Completed in 1000 milliseconds

1 2 3 4 5 6 7 8 91011