HomeSort by relevance Sort by last modified time
    Searched full:cb64 (Results 1 - 4 of 4) sorted by null

  /external/qemu/proxy/
proxy_common.c 465 static const char cb64[64]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; local
471 dst[result+0] = cb64[ src[0] >> 2 ];
472 dst[result+1] = cb64[ ((src[0] & 3) << 4) | ((src[1] & 0xf0) >> 4) ];
473 dst[result+2] = cb64[ ((src[1] & 0xf) << 2) | ((src[2] & 0xc0) >> 6) ];
474 dst[result+3] = cb64[ src[2] & 0x3f ];
489 dst[result+0] = cb64[ in[0] >> 2 ];
490 dst[result+1] = cb64[ ((in[0] & 3) << 4) | ((in[1] & 0xf0) >> 4) ];
491 dst[result+2] = (unsigned char) (src+1 < srcend ? cb64[ ((in[1] & 0xf) << 2) | ((in[2] & 0xc0) >> 6) ] : '=');
492 dst[result+3] = (unsigned char) (src+2 < srcend ? cb64[ in[2] & 0x3f ] : '=');
  /external/chromium_org/third_party/icu/source/data/unidata/
GraphemeBreakProperty.txt 723 CB64 ; LV
LineBreak.txt 1710 CB64;H2
  /external/harfbuzz/contrib/tables/
GraphemeBreakProperty.txt     [all...]

Completed in 881 milliseconds