Searched refs:aBytes (Results 1 – 2 of 2) sorted by relevance
/external/chromium-trace/trace-viewer/tracing/examples/ |
D | string_convert.js | 70 function base64EncArr (aBytes) { argument 74 for (var nLen = aBytes.length, nUint24 = 0, nIdx = 0; nIdx < nLen; nIdx++) { 76 nUint24 |= aBytes[nIdx] << (16 >>> nMod3 & 24); 77 if (nMod3 === 2 || aBytes.length - nIdx === 1) { 89 function UTF8ArrToStr (aBytes) { argument 93 for (var nPart, nLen = aBytes.length, nIdx = 0; nIdx < nLen; nIdx++) { 94 nPart = aBytes[nIdx]; 98 …73741824 + (aBytes[++nIdx] - 128 << 24) + (aBytes[++nIdx] - 128 << 18) + (aBytes[++nIdx] - 128 << … 100 …(nPart - 248 << 24) + (aBytes[++nIdx] - 128 << 18) + (aBytes[++nIdx] - 128 << 12) + (aBytes[++nIdx… 102 …(nPart - 240 << 18) + (aBytes[++nIdx] - 128 << 12) + (aBytes[++nIdx] - 128 << 6) + aBytes[++nIdx] … [all …]
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 3558 JNIEnv* env, jclass, jbyteArray pBytes, jbyteArray aBytes, argument 3580 !arrayToBignum(env, aBytes, &a) ||
|