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

/external/webkit/Source/WebCore/platform/text/
H A DBase64.cpp84 unsigned didx = 0; local
101 out[didx++] = '\n';
104 out[didx++] = base64EncMap[(data[sidx] >> 2) & 077];
105 out[didx++] = base64EncMap[((data[sidx + 1] >> 4) & 017) | ((data[sidx] << 4) & 077)];
106 out[didx++] = base64EncMap[((data[sidx + 2] >> 6) & 003) | ((data[sidx + 1] << 2) & 077)];
107 out[didx++] = base64EncMap[data[sidx + 2] & 077];
114 out[didx++] = '\n';
116 out[didx++] = base64EncMap[(data[sidx] >> 2) & 077];
118 out[didx++] = base64EncMap[((data[sidx + 1] >> 4) & 017) | ((data[sidx] << 4) & 077)];
119 out[didx
179 unsigned didx = 0; local
[all...]
/external/genext2fs/
H A Dgenext2fs.c2429 populate_fs(filesystem *fs, char **dopt, int didx, int squash_uids, int squash_perms, int fixstats, uint32 fs_timestamp, struct stats *stats) argument
2432 for(i = 0; i < didx; i++)
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);

Completed in 111 milliseconds