uch               215 third_party/zlib/deflate.h     uch depth[2*L_CODES+1];
uch               317 third_party/zlib/deflate.h   extern uch ZLIB_INTERNAL _length_code[];
uch               318 third_party/zlib/deflate.h   extern uch ZLIB_INTERNAL _dist_code[];
uch               320 third_party/zlib/deflate.h   extern const uch ZLIB_INTERNAL _length_code[];
uch               321 third_party/zlib/deflate.h   extern const uch ZLIB_INTERNAL _dist_code[];
uch               325 third_party/zlib/deflate.h   { uch cc = (c); \
uch               332 third_party/zlib/deflate.h   { uch len = (length); \
uch                71 third_party/zlib/trees.c local const uch bl_order[BL_CODES]
uch               103 third_party/zlib/trees.c uch _dist_code[DIST_CODE_LEN];
uch               109 third_party/zlib/trees.c uch _length_code[MAX_MATCH-MIN_MATCH+1];
uch               182 third_party/zlib/trees.c     put_byte(s, (uch)((w) & 0xff)); \
uch               183 third_party/zlib/trees.c     put_byte(s, (uch)((ush)(w) >> 8)); \
uch               267 third_party/zlib/trees.c             _length_code[length++] = (uch)code;
uch               275 third_party/zlib/trees.c     _length_code[length-1] = (uch)code;
uch               282 third_party/zlib/trees.c             _dist_code[dist++] = (uch)code;
uch               290 third_party/zlib/trees.c             _dist_code[256 + dist++] = (uch)code;
uch               681 third_party/zlib/trees.c         s->depth[node] = (uch)((s->depth[n] >= s->depth[m] ?
uch              1032 third_party/zlib/trees.c     s->l_buf[s->last_lit++] = (uch)lc;
uch                73 third_party/zlib/trees.h const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = {
uch               102 third_party/zlib/trees.h const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
uch               234 third_party/zlib/zutil.c     *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
uch                53 third_party/zlib/zutil.h typedef uch FAR uchf;
uch                30 url/url_canon_internal.cc       unsigned char uch = static_cast<unsigned char>(source[i]);
uch                31 url/url_canon_internal.cc       if (!IsCharOfType(uch, type))
uch                32 url/url_canon_internal.cc         AppendEscapedChar(uch, output);
uch                34 url/url_canon_internal.cc         output->push_back(uch);
uch                45 url/url_canon_internal.cc     UCHAR uch = static_cast<UCHAR>(spec[i]);
uch                46 url/url_canon_internal.cc     if (uch >= 0x80) {
uch                50 url/url_canon_internal.cc     } else if (uch <= ' ' || uch == 0x7f) {
uch                54 url/url_canon_internal.cc       AppendEscapedChar(static_cast<unsigned char>(uch), output);
uch                56 url/url_canon_internal.cc       output->push_back(static_cast<char>(uch));
uch                47 url/url_canon_mailtourl.cc       UCHAR uch = static_cast<UCHAR>(source.path[i]);
uch                48 url/url_canon_mailtourl.cc       if (uch < 0x20 || uch >= 0x80)
uch                51 url/url_canon_mailtourl.cc         output->push_back(static_cast<char>(uch));
uch               187 url/url_canon_path.cc     UCHAR uch = static_cast<UCHAR>(spec[i]);
uch               188 url/url_canon_path.cc     if (sizeof(CHAR) > sizeof(char) && uch >= 0x80) {
uch               197 url/url_canon_path.cc       unsigned char out_ch = static_cast<unsigned char>(uch);
uch                35 url/url_canon_pathurl.cc       UCHAR uch = static_cast<UCHAR>(source[i]);
uch                36 url/url_canon_pathurl.cc       if (uch < 0x20 || uch >= 0x80)
uch                39 url/url_canon_pathurl.cc         output->push_back(static_cast<char>(uch));
uch               547 url/url_util.cc     unsigned char uch = static_cast<unsigned char>(unescaped_chars.at(i));
uch               548 url/url_util.cc     if (uch < 0x80) {
uch               550 url/url_util.cc       output->push_back(uch);