HomeSort by relevance Sort by last modified time
    Searched refs:base64Value (Results 1 - 2 of 2) sorted by null

  /external/chromium/third_party/icu/source/common/
ucnv_u7.c 223 int8_t base64Value;
312 /* illegal - test other illegal US-ASCII values by base64Value==-3 */
316 } else if((base64Value=fromBase64[b])>=0) {
321 bits=base64Value;
328 bits=(uint16_t)((bits<<6)|base64Value);
332 *target++=(UChar)((bits<<4)|(base64Value>>2));
339 bits=(uint16_t)(base64Value&3);
343 *target++=(UChar)((bits<<2)|(base64Value>>4));
350 bits=(uint16_t)(base64Value&15);
354 *target++=(UChar)((bits<<6)|base64Value);
    [all...]
  /external/icu4c/common/
ucnv_u7.c 223 int8_t base64Value;
312 /* illegal - test other illegal US-ASCII values by base64Value==-3 */
316 } else if((base64Value=fromBase64[b])>=0) {
321 bits=base64Value;
328 bits=(uint16_t)((bits<<6)|base64Value);
332 *target++=(UChar)((bits<<4)|(base64Value>>2));
339 bits=(uint16_t)(base64Value&3);
343 *target++=(UChar)((bits<<2)|(base64Value>>4));
350 bits=(uint16_t)(base64Value&15);
354 *target++=(UChar)((bits<<6)|base64Value);
    [all...]

Completed in 34 milliseconds