HomeSort by relevance Sort by last modified time
    Searched defs:uch (Results 1 - 14 of 14) sorted by null

  /bionic/libc/regex/
utils.h 42 typedef unsigned char uch; typedef
  /external/chromium/googleurl/src/
url_canon_mailtourl.cc 72 UCHAR uch = static_cast<UCHAR>(source.path[i]); local
73 if (uch < 0x20 || uch >= 0x80)
76 output->push_back(static_cast<char>(uch));
url_canon_pathurl.cc 64 UCHAR uch = static_cast<UCHAR>(source.path[i]); local
65 if (uch < 0x20 || uch >= 0x80)
68 output->push_back(static_cast<char>(uch));
url_canon_internal.cc 54 unsigned char uch = static_cast<unsigned char>(source[i]); local
55 if (!IsCharOfType(uch, type))
56 AppendEscapedChar(uch, output);
58 output->push_back(uch);
69 UCHAR uch = static_cast<UCHAR>(spec[i]); local
70 if (uch >= 0x80) {
74 } else if (uch <= ' ' || uch == 0x7f) {
78 AppendEscapedChar(static_cast<unsigned char>(uch), output);
80 output->push_back(static_cast<char>(uch));
    [all...]
url_canon_path.cc 213 UCHAR uch = static_cast<UCHAR>(spec[i]); local
214 if (sizeof(CHAR) > sizeof(char) && uch >= 0x80) {
223 unsigned char out_ch = static_cast<unsigned char>(uch);
  /external/libpng/contrib/gregbook/
readpng.h 72 typedef unsigned char uch; typedef
83 int readpng_get_bgcolor(uch *bg_red, uch *bg_green, uch *bg_blue);
85 uch *readpng_get_image(double display_exponent, int *pChannels,
readpng2.h 78 typedef unsigned char uch; typedef
91 uch *image_data;
92 uch **row_pointers;
105 uch bg_red;
106 uch bg_green;
107 uch bg_blue;
115 int readpng2_check_sig(uch *sig, int num);
119 int readpng2_decode_data(mainprog_info *mainprog_ptr, uch *rawbuf, ulg length);
writepng.h 86 typedef unsigned char uch; typedef
99 uch *image_data;
100 uch **row_pointers;
115 uch bg_red;
116 uch bg_green;
117 uch bg_blue;
  /external/zlib/
zutil.h 37 typedef unsigned char uch; typedef
38 typedef uch FAR uchf;
  /frameworks/base/media/libmedia/
MediaScannerClient.cpp 163 uint8_t uch; local
164 while ((uch = *src++)) {
165 if (uch & 0x80)
166 *dest++ = ((uch << 6) & 0xC0) | (*src++ & 0x3F);
168 *dest++ = uch;
  /external/chromium/third_party/zlib/
zutil.h 47 typedef unsigned char uch; typedef
48 typedef uch FAR uchf;
  /external/qemu/distrib/zlib-1.2.3/
zutil.h 47 typedef unsigned char uch; typedef
48 typedef uch FAR uchf;
  /external/webkit/WebCore/platform/
KURLGoogle.cpp 932 unsigned char uch = static_cast<unsigned char>(unescaped.at(i)); local
933 if (uch < 0x80) {
935 utf16.push_back(uch);
    [all...]
  /external/grub/stage2/
gunzip.c 254 typedef unsigned char uch; typedef
345 uch e; /* number of extra bits or operation */
346 uch b; /* number of bits in this code or subcode */
361 to be usable as if it were declared "uch slide[32768];" or as just
362 "uch *slide;" and then malloc'ed in the latter case. The definition
367 static uch slide[WSIZE];
488 static uch inbuf[INBUFSIZ];
660 r.b = (uch) l; /* bits to dump before this table */
661 r.e = (uch) (16 + j); /* bits in this table */
669 r.b = (uch) (k - w)
    [all...]

Completed in 351 milliseconds