Searched refs:idx2 (Results 1 - 5 of 5) sorted by relevance

/external/icu4c/tools/gencnval/
H A Dgencnval.c646 uint32_t idx, idx2; local
692 for (idx2 = 0; idx2 < tags[standard].aliasList[idx].aliasCount; idx2++) {
693 uint16_t aliasNum = tags[standard].aliasList[idx].aliases[idx2];
795 uint16_t idx, idx2, idx3; local
798 for (idx2 = 0; idx2 < converterCount; idx2++) {
799 for (idx3 = 0; idx3 < tags[idx].aliasList[idx2]
[all...]
/external/jdiff/src/jdiff/
H A DComments.java113 int idx2 = xsdFileName.lastIndexOf('/');
114 if (idx == -1 && idx2 == -1) {
116 } else if (idx == -1 && idx2 != -1) {
117 xsdFileName = xsdFileName.substring(0, idx2+1);
118 } else if (idx != -1 && idx2 == -1) {
120 } else if (idx != -1 && idx2 != -1) {
121 int max = idx2 > idx ? idx2 : idx;
H A DCommentsHandler.java71 int idx2 = JDiff.newFileName.lastIndexOf('.');
73 "_to_" + JDiff.newFileName.substring(0, idx2);
H A DRootDocToXML.java71 int idx2 = xsdFileName.lastIndexOf('/');
72 if (idx == -1 && idx2 == -1) {
74 } else if (idx == -1 && idx2 != -1) {
75 xsdFileName = xsdFileName.substring(0, idx2);
76 } else if (idx != -1 && idx2 == -1) {
78 } else if (idx != -1 && idx2 != -1) {
79 int max = idx2 > idx ? idx2 : idx;
/external/dropbear/libtomcrypt/src/math/fp/
H A Dltc_ecc_fp_mulmod.c902 static int accel_fp_mul2add(int idx1, int idx2, argument
1073 if ((err = ltc_mp.ecc_ptadd(R, fp_cache[idx2].LUT[zB], R, modulus, mp)) != CRYPT_OK) {
1086 if ((err = ltc_mp.ecc_ptadd(R, fp_cache[idx2].LUT[zB], R, modulus, mp)) != CRYPT_OK) {
1091 if ((mp_copy(fp_cache[idx2].LUT[zB]->x, R->x) != CRYPT_OK) ||
1092 (mp_copy(fp_cache[idx2].LUT[zB]->y, R->y) != CRYPT_OK) ||
1093 (mp_copy(fp_cache[idx2].mu, R->z) != CRYPT_OK)) { return CRYPT_MEM; }
1114 int idx1, idx2, err; local
1137 idx2 = find_base(B);
1140 if (idx2 == -1) {
1142 idx2
[all...]

Completed in 64 milliseconds