Searched refs:base64Value (Results 1 - 2 of 2) sorted by relevance

/external/icu4c/common/
H A Ducnv_u7.c224 int8_t base64Value; local
312 base64Value = -3; /* initialize as illegal */
313 if(b>=126 || (base64Value=fromBase64[b])==-3 || base64Value==-1) {
315 * base64Value==-1 for any legal character except base64 and minus sign, or
316 * base64Value==-3 for illegal characters:
345 if(base64Value==-3) {
356 } else if(base64Value>=0) {
361 bits=base64Value;
368 bits=(uint16_t)((bits<<6)|base64Value);
906 int8_t base64Value; local
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Ducnv_u7.c223 int8_t base64Value; local
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);
880 int8_t base64Value; local
[all...]

Completed in 618 milliseconds