Home
last modified time | relevance | path

Searched refs:rLen (Results 1 – 4 of 4) sorted by relevance

/external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR.xcodeproj/
Dacondit.pbxuser215 rLen = 0;
225 rLen = 0;
235 rLen = 15;
245 rLen = 0;
255 rLen = 0;
265 rLen = 0;
275 rLen = 0;
285 rLen = 18;
295 rLen = 18;
305 rLen = 0;
[all …]
/external/icu/icu4c/source/test/cintltst/
Dcmsccoll.c3586 int32_t rLen, tLen, ruleLen, sLen, kLen; in TestVI5913() local
3658 rLen = ucol_getSortKey(coll, tData[j], tLen, resColl, 100); in TestVI5913()
3659 for(i = 0; i<rLen; i++) { in TestVI5913()
3682 rLen = ucol_getSortKey(coll, tData[j], tLen, resColl, 100); in TestVI5913()
3683 for(i = 0; i<rLen; i++) { in TestVI5913()
3709 rLen = ucol_getSortKey(coll, tailorData[j], tLen, resColl, 100); in TestVI5913()
3710 if ( kLen!=rLen || uprv_memcmp(expColl, resColl, rLen*sizeof(uint8_t))!=0 ) { in TestVI5913()
3712 for(i = 0; i<rLen; i++) { in TestVI5913()
3726 rLen = ucol_getSortKey(coll, tailorData2[j], tLen, resColl, 100); in TestVI5913()
3727 if ( kLen!=rLen || uprv_memcmp(expColl, resColl, rLen*sizeof(uint8_t))!=0 ) { in TestVI5913()
[all …]
/external/deqp/framework/randomshaders/
DrsgBinaryOps.cpp496 T rLen = GetRandom()(rnd, T(0), T(8)); in operator ()() local
498 T rMax = rMin+rLen; in operator ()()
511 T aLen = GetRandom()(rnd, T(0), T(8)-rLen); in operator ()()
522 T aLen = GetRandom()(rnd, T(0), T(8)-rLen); in operator ()()
552 T rLen = GetRandom()(rnd, T(0), T(8)); in operator ()() local
554 T rMax = rMin+rLen; in operator ()()
567 T aLen = GetRandom()(rnd, T(0), T(8)-rLen); in operator ()()
578 T aLen = GetRandom()(rnd, T(0), T(8)-rLen); in operator ()()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DLongArray.java1342 int rLen = reduceInPlace(buf, 0, buf.length, m, ks); in modReduce() local
1343 return new LongArray(buf, 0, rLen); in modReduce()
1483 int rLen = reduceInPlace(buf, 0, buf.length, m, ks); in reduce() local
1484 if (rLen < buf.length) in reduce()
1486 m_ints = new long[rLen]; in reduce()
1487 System.arraycopy(buf, 0, m_ints, 0, rLen); in reduce()
1493 int rLen = reduceInPlace(buf, off, len, m, ks); in reduceResult() local
1494 return new LongArray(buf, off, rLen); in reduceResult()