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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/netbsd/inet/
nsap_addr.c 51 inet_nsap_addr(const char *ascii, u_char *binary, int maxlen) {
55 assert(ascii != NULL);
58 if (ascii[0] != '0' || (ascii[1] != 'x' && ascii[1] != 'X'))
60 ascii += 2;
62 while ((c = *ascii++) != '\0' && len < (u_int)maxlen) {
71 c = *ascii++;
90 inet_nsap_ntoa(int binlen, const u_char *binary, char *ascii) {
98 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 73 * Converts an array of raw binary data into an array of ascii 0 and 1 characters.
77 * @return 0 and 1 ascii character bytes one for each bit of the argument
85 * Converts an array of raw binary data into an array of ascii 0 and 1 chars.
89 * @return 0 and 1 ascii character chars one for each bit of the argument
102 * Decodes a byte array where each byte represents an ascii '0' or '1'.
104 * @param ascii
105 * each byte represents an ascii '0' or '1'
111 public Object decode(Object ascii) throws DecoderException {
112 if (ascii == null) {
115 if (ascii instanceof byte[])
    [all...]
  /external/llvm/test/MC/AsmParser/
directive_incbin.s 6 # CHECK: .ascii "abcd\n"
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\\\""
  /external/llvm/test/MC/AArch64/
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/chromium_org/base/strings/
utf_string_conversions.cc 175 std::wstring ASCIIToWide(const StringPiece& ascii) {
176 DCHECK(IsStringASCII(ascii)) << ascii;
177 return std::wstring(ascii.begin(), ascii.end());
180 string16 ASCIIToUTF16(const StringPiece& ascii) {
181 DCHECK(IsStringASCII(ascii)) << ascii;
182 return string16(ascii.begin(), ascii.end())
    [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/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...]
  /external/chromium/base/
utf_string_conversions.cc 178 std::wstring ASCIIToWide(const base::StringPiece& ascii) {
179 DCHECK(IsStringASCII(ascii)) << ascii;
180 return std::wstring(ascii.begin(), ascii.end());
183 string16 ASCIIToUTF16(const base::StringPiece& ascii) {
184 DCHECK(IsStringASCII(ascii)) << ascii;
185 return string16(ascii.begin(), ascii.end())
    [all...]
  /external/stlport/src/
string.cpp 10 wstring __ASCIIToWide(const char *ascii) {
11 size_t size = strlen(ascii);
13 mbstowcs(buff, ascii, size);

Completed in 754 milliseconds

1 2 3 4 5 6 7 8 91011>>