Home
last modified time | relevance | path

Searched refs:iset (Results 1 – 24 of 24) sorted by relevance

/external/fec/
Dsim.c12 static int iset; in normal_rand() local
14 if(iset){ in normal_rand()
16 iset = 0; in normal_rand()
29 iset++; in normal_rand()
/external/skia/tests/
DInterpolatorTest.cpp12 static SkScalar* iset(SkScalar array[3], int a, int b, int c) { in iset() function
24 inter.setKeyFrame(0, 100, iset(v1, 10, 20, 30), 0); in DEF_TEST()
25 inter.setKeyFrame(1, 200, iset(v2, 110, 220, 330)); in DEF_TEST()
53 REPORTER_ASSERT(reporter, memcmp(v, iset(vv, 60, 120, 180), sizeof(v)) == 0); in DEF_TEST()
DShaderOpacityTest.cpp57 pts[0].iset(0, 0); in test_gradient()
58 pts[1].iset(1, 0); in test_gradient()
DClipStackTest.cpp230 rectA.iset(10, 10, 50, 50); in test_bounds()
231 rectB.iset(40, 40, 80, 80); in test_bounds()
311 rectA.iset(10, 10, 40, 40); in test_isWideOpen()
312 rectB.iset(50, 50, 80, 80); in test_isWideOpen()
1192 answer.iset(25, 25, 75, 75); in DEF_TEST()
/external/skia/src/gpu/
DGrSoftwarePathRenderer.cpp93 rect.iset(devClipBounds.fLeft, devClipBounds.fTop, in draw_around_inv_path()
98 rect.iset(devClipBounds.fLeft, devPathBounds.fTop, in draw_around_inv_path()
103 rect.iset(devPathBounds.fRight, devPathBounds.fTop, in draw_around_inv_path()
108 rect.iset(devClipBounds.fLeft, devPathBounds.fBottom, in draw_around_inv_path()
/external/skia/src/animator/
DSkOperandIterpolator.cpp97 static SkOperand* iset(SkOperand array[3], int a, int b, int c) in iset() function
113 inter.setKeyFrame(0, 100, iset(v1, 10, 20, 30), 0); in UnitTest()
114 inter.setKeyFrame(1, 200, iset(v2, 110, 220, 330)); in UnitTest()
138 SkASSERT(memcmp(v, iset(vv, 60, 120, 180), sizeof(v)) == 0); in UnitTest()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
DUnicodeSetTest.java671 UnicodeSetIterator iset = new UnicodeSetIterator(set); in TestAPI() local
672 if (!iset.next() || iset.codepoint != UnicodeSetIterator.IS_STRING) { in TestAPI()
674 } else if (!iset.string.equals("ab")) { in TestAPI()
832 SortedSet iset = new TreeSet(); in TestSetRelation() local
836 pick(i, choices, iset); in TestSetRelation()
839 checkSetRelation(iset, jset, "(" + i + ")"); in TestSetRelation()
854 SortedSet iset = new TreeSet(); in SetSpeed2() local
858 iset.add(new Integer(i)); in SetSpeed2()
867 CheckSpeed(iset, jset, "when a = b", iterations); in SetSpeed2()
869 iset.add(new Integer(size + 1)); // add odd value in middle in SetSpeed2()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DUnicodeSetTest.java667 UnicodeSetIterator iset = new UnicodeSetIterator(set); in TestAPI() local
668 if (!iset.next() || iset.codepoint != UnicodeSetIterator.IS_STRING) { in TestAPI()
670 } else if (!iset.string.equals("ab")) { in TestAPI()
828 SortedSet iset = new TreeSet(); in TestSetRelation() local
832 pick(i, choices, iset); in TestSetRelation()
835 checkSetRelation(iset, jset, "(" + i + ")"); in TestSetRelation()
850 SortedSet iset = new TreeSet(); in SetSpeed2() local
854 iset.add(new Integer(i)); in SetSpeed2()
863 CheckSpeed(iset, jset, "when a = b", iterations); in SetSpeed2()
865 iset.add(new Integer(size + 1)); // add odd value in middle in SetSpeed2()
[all …]
/external/clang/test/Rewriter/
Dobjc-modern-StretAPI-2.mm23 - (NSArray *)objectsAtIndexes:(NSIndexSet *)iset {
26 NSRange range = [iset rangeAtIndex:ridx];
/external/skia/bench/
DBitmapRectBench.cpp76 fSrcR.iset(0, 0, kWidth, kHeight); in onDelayedSetup()
77 fDstR.iset(0, 0, kWidth, kHeight); in onDelayedSetup()
/external/icu/icu4c/source/data/region/
Dfi.txt136 GS{"Etelä-Georgia ja Eteläiset Sandwichsaaret"}
265 TF{"Ranskan eteläiset alueet"}
288 VG{"Brittiläiset Neitsytsaaret"}
/external/skia/samplecode/
DSampleBitmapRect.cpp194 fSrcR.iset(0, 0, fBitmap.height() * 3, fBitmap.height()); in resetBounce()
206 fLimitR.iset(0, 0, fBitmap.width(), fBitmap.height()); in BitmapRectView2()
/external/skia/gm/
Dimage.cpp85 src1.iset(0, 0, surf->width(), surf->height()); in test_surface()
86 src2.iset(-surf->width() / 2, -surf->height() / 2, in test_surface()
88 src3.iset(0, 0, surf->width() / 2, surf->height() / 2); in test_surface()
Dgradients.cpp285 c0.iset(-80, 25); in onDraw()
288 c1.iset(0, 25); in onDraw()
333 center.iset(0, 300); in onDraw()
/external/skia/src/views/
DSkView.cpp386 click->fOrig.iset(x, y); in DoClickDown()
410 click->fCurr.iset(x, y); in DoClickMoved()
433 click->fCurr.iset(x, y); in DoClickUp()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
DCodeGenerator.java762 IntervalSet iset = (IntervalSet)set; in genSetExpr() local
763 if ( iset.getIntervals()==null || iset.getIntervals().size()==0 ) { in genSetExpr()
775 Iterator iter = iset.getIntervals().iterator(); in genSetExpr()
/external/skia/include/core/
DSkPoint.h179 void iset(int32_t x, int32_t y) { in iset() function
187 void iset(const SkIPoint& p) { in iset() function
DSkRect.h532 void iset(int left, int top, int right, int bottom) { in iset() function
/external/icu/icu4c/source/data/lang/
Dfi.txt690 Egyp{"egyptiläiset hieroglyfit"}
964 khmr{"khmeriläiset numerot"}
994 tibt{"tiibetiläiset numerot"}
/external/clang/include/clang/Basic/
DBuiltinsHexagon.def17 // The builtins below are not autogenerated from iset.py.
23 // The builtins above are not autogenerated from iset.py.
/external/icu/icu4c/source/test/intltest/
Dusettest.cpp642 UnicodeSetIterator iset(set); in TestAPI() local
643 if (!iset.next() || !iset.isString()) { in TestAPI()
645 } else if (iset.getString() != "ab") { in TestAPI()
/external/skia/src/pdf/
DSkPDFDevice.cpp1583 translation.iset(this->getOrigin()); in copyContentEntriesToData()
/external/skia/src/core/
DSkCanvas.cpp1783 r.iset(ibounds.fLeft - inset, ibounds.fTop - inset, in getClipBounds()
/external/antlr/antlr-3.4/lib/
Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/ ...