Home | History | Annotate | Download | only in sunspider-0.9

Lines Matching refs:result

46     var result = '';
51 result += toBase64Table[data[i] >> 2];
52 result += toBase64Table[((data[i] & 0x03) << 4) + (data[i+1] >> 4)];
53 result += toBase64Table[((data[i+1] & 0x0f) << 2) + (data[i+2] >> 6)];
54 result += toBase64Table[data[i+2] & 0x3f];
60 result += toBase64Table[data[i] >> 2];
62 result += toBase64Table[((data[i] & 0x03) << 4) + (data[i+1] >> 4)];
63 result += toBase64Table[(data[i+1] & 0x0f) << 2];
64 result += base64Pad;
66 result += toBase64Table[(data[i] & 0x03) << 4];
67 result += base64Pad + base64Pad;
71 return result;
87 var result = '';
102 // If we have 8 or more bits, append 8 bits to the result
107 result += String.fromCharCode((leftdata >> leftbits) & 0xff);
116 return result;