Searched defs:didx (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DBase64.cpp83 unsigned didx = 0; local
100 out[didx++] = '\n';
103 out[didx++] = base64EncMap[(data[sidx] >> 2) & 077];
104 out[didx++] = base64EncMap[((data[sidx + 1] >> 4) & 017) | ((data[sidx] << 4) & 077)];
105 out[didx++] = base64EncMap[((data[sidx + 2] >> 6) & 003) | ((data[sidx + 1] << 2) & 077)];
106 out[didx++] = base64EncMap[data[sidx + 2] & 077];
113 out[didx++] = '\n';
115 out[didx++] = base64EncMap[(data[sidx] >> 2) & 077];
117 out[didx++] = base64EncMap[((data[sidx + 1] >> 4) & 017) | ((data[sidx] << 4) & 077)];
118 out[didx
198 unsigned didx = 0; local
[all...]
/external/genext2fs/
H A Dgenext2fs.c2430 populate_fs(filesystem *fs, char **dopt, int didx, int squash_uids, int squash_perms, int fixstats, uint32 fs_timestamp, struct stats *stats) argument
2433 for(i = 0; i < didx; i++)
2526 int didx = 0; local
2580 dopt[didx++] = optarg;
2670 populate_fs(NULL, dopt, didx, squash_uids, squash_perms, 0, fs_timestamp, &stats);
2691 populate_fs(fs, dopt, didx, squash_uids, squash_perms, fix_android_stats, fs_timestamp, NULL);

Completed in 91 milliseconds