Home | History | Annotate | Download | only in include

Lines Matching defs:result

17         var result = '';
24 result += toBase64Table[data[i] >> 2];
25 result += toBase64Table[((data[i] & 0x03) << 4) + (data[i + 1] >> 4)];
26 result += toBase64Table[((data[i + 1] & 0x0f) << 2) + (data[i + 2] >> 6)];
27 result += toBase64Table[data[i + 2] & 0x3f];
34 result += toBase64Table[data[j] >> 2];
35 result += toBase64Table[((data[j] & 0x03) << 4) + (data[j + 1] >> 4)];
36 result += toBase64Table[(data[j + 1] & 0x0f) << 2];
37 result += toBase64Table[64];
40 result += toBase64Table[data[j] >> 2];
41 result += toBase64Table[(data[j] & 0x03) << 4];
42 result += toBase64Table[64];
43 result += toBase64Table[64];
46 return result;
68 var result, result_length;
77 result = new Array(result_length);
93 // If we have 8 or more bits, append 8 bits to the result
98 result[idx++] = (leftdata >> leftbits) & 0xff;
111 return result;