Home
last modified time | relevance | path

Searched refs:didx (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/platform/text/
DBase64.cpp84 unsigned didx = 0; in base64Encode() local
101 out[didx++] = '\n'; in base64Encode()
104 out[didx++] = base64EncMap[(data[sidx] >> 2) & 077]; in base64Encode()
105 out[didx++] = base64EncMap[((data[sidx + 1] >> 4) & 017) | ((data[sidx] << 4) & 077)]; in base64Encode()
106 … out[didx++] = base64EncMap[((data[sidx + 2] >> 6) & 003) | ((data[sidx + 1] << 2) & 077)]; in base64Encode()
107 out[didx++] = base64EncMap[data[sidx + 2] & 077]; in base64Encode()
114 out[didx++] = '\n'; in base64Encode()
116 out[didx++] = base64EncMap[(data[sidx] >> 2) & 077]; in base64Encode()
118 out[didx++] = base64EncMap[((data[sidx + 1] >> 4) & 017) | ((data[sidx] << 4) & 077)]; in base64Encode()
119 out[didx++] = base64EncMap[(data[sidx + 1] << 2) & 077]; in base64Encode()
[all …]
/external/icu4c/i18n/
Dnfsubs.cpp1050 for (int32_t didx = dl.getCount()-1; didx>=dl.getDecimalAt(); didx--) { in doSubstitution() local
1059 int64_t digit = didx>=0 ? dl.getDigit(didx) - '0' : 0; in doSubstitution()
/external/genext2fs/
Dgenext2fs.c2429 populate_fs(filesystem *fs, char **dopt, int didx, int squash_uids, int squash_perms, int fixstats,… in populate_fs() argument
2432 for(i = 0; i < didx; i++) in populate_fs()
2525 int didx = 0; local
2579 dopt[didx++] = optarg;
2669 populate_fs(NULL, dopt, didx, squash_uids, squash_perms, 0, fs_timestamp, &stats);
2690 populate_fs(fs, dopt, didx, squash_uids, squash_perms, fix_android_stats, fs_timestamp, NULL);