HomeSort by relevance Sort by last modified time
    Searched refs:sIndex (Results 1 - 25 of 33) sorted by null

1 2

  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Input.cpp 46 assert(mReadLoc.cIndex < mLength[mReadLoc.sIndex]);
48 if (mReadLoc.cIndex == mLength[mReadLoc.sIndex])
50 ++mReadLoc.sIndex;
53 if (mReadLoc.sIndex >= mCount)
57 return mString[mReadLoc.sIndex] + mReadLoc.cIndex;
65 if (mReadLoc.sIndex < mCount && maxSize > 0)
67 const char *c = mString[mReadLoc.sIndex] + mReadLoc.cIndex;
107 while ((nRead < maxRead) && (mReadLoc.sIndex < mCount))
109 size_t size = mLength[mReadLoc.sIndex] - mReadLoc.cIndex;
116 if (*(mString[mReadLoc.sIndex] + mReadLoc.cIndex + i) == '\\'
    [all...]
Input.h 41 size_t sIndex; // String index;
44 Location() : sIndex(0), cIndex(0) {}
Tokenizer.l 84 while ((scanLoc->sIndex < input->count()) && \
85 (scanLoc->cIndex >= input->length(scanLoc->sIndex))) \
87 scanLoc->cIndex -= input->length(scanLoc->sIndex++); \
284 if (scanLoc->sIndex != sIndexMax)
288 scanLoc->sIndex = sIndexMax; scanLoc->cIndex = 0;
Tokenizer.cpp 957 while ((scanLoc->sIndex < input->count()) && \
958 (scanLoc->cIndex >= input->length(scanLoc->sIndex))) \
960 scanLoc->cIndex -= input->length(scanLoc->sIndex++); \
    [all...]
  /external/skia/src/pathops/
SkPathWriter.cpp 285 int sIndex = sLink[rIndex];
286 SkASSERT(sIndex != SK_MaxS32);
289 if (sIndex < 0) {
290 eIndex = sLink[~sIndex];
291 sLink[~sIndex] = SK_MaxS32;
293 eIndex = eLink[sIndex];
294 eLink[sIndex] = SK_MaxS32;
298 SkDebugf("%s sIndex=%c%d eIndex=%c%d\n", __FUNCTION__, sIndex < 0 ? 's' : 'e',
299 sIndex < 0 ? ~sIndex : sIndex, eIndex < 0 ? 's' : 'e'
    [all...]
SkOpAngle.cpp 466 int sIndex = -1;
496 sIndex = index;
517 sIndex = index;
521 const SkDCurve& curve = sIndex ? rh->fPart.fCurve : this->fPart.fCurve;
522 const SkOpSegment& segment = sIndex ? *rh->segment() : *this->segment();
523 double tStart = sIndex ? rh->fStart->t() : fStart->t();
529 return sRayLonger ^ (sIndex == 0) ^ (septDir < 0);
    [all...]
  /external/skqp/src/pathops/
SkPathWriter.cpp 285 int sIndex = sLink[rIndex];
286 SkASSERT(sIndex != SK_MaxS32);
289 if (sIndex < 0) {
290 eIndex = sLink[~sIndex];
291 sLink[~sIndex] = SK_MaxS32;
293 eIndex = eLink[sIndex];
294 eLink[sIndex] = SK_MaxS32;
298 SkDebugf("%s sIndex=%c%d eIndex=%c%d\n", __FUNCTION__, sIndex < 0 ? 's' : 'e',
299 sIndex < 0 ? ~sIndex : sIndex, eIndex < 0 ? 's' : 'e'
    [all...]
SkOpAngle.cpp 466 int sIndex = -1;
496 sIndex = index;
517 sIndex = index;
521 const SkDCurve& curve = sIndex ? rh->fPart.fCurve : this->fPart.fCurve;
522 const SkOpSegment& segment = sIndex ? *rh->segment() : *this->segment();
523 double tStart = sIndex ? rh->fStart->t() : fStart->t();
529 return sRayLonger ^ (sIndex == 0) ^ (septDir < 0);
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
FDBigInteger.java 602 for (int sIndex = 0, tIndex = tStart; tIndex < this.nWords; sIndex++, tIndex++) {
603 sum += (td[tIndex] & LONG_MASK) + (sd[sIndex] & LONG_MASK);
811 for (int sIndex = 0; sIndex < subLen && mIndex < minLen; sIndex++, mIndex++) {
812 long diff = (mData[mIndex] & LONG_MASK) - (sData[sIndex] & LONG_MASK) + borrow;
    [all...]
  /external/icu/icu4c/source/i18n/
collationfastlatin.cpp 814 const uint8_t *s8, int32_t &sIndex, int32_t sLength) {
817 int32_t i2 = sIndex + 1;
819 uint8_t t1 = s8[sIndex];
821 sIndex += 2;
    [all...]
collationfastlatin.h 224 const uint8_t *s8, int32_t &sIndex, int32_t sLength);
226 const uint8_t *s8, int32_t &sIndex);
229 const UChar *s16, const uint8_t *s8, int32_t &sIndex, int32_t &sLength);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
histogram.cpp 117 int sIndex = s * saturationBins / 256;
122 index = sIndex * hueBins + hIndex;
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BytesTrie.java 248 * @param sIndex The start index of the byte sequence in s.
252 public Result next(byte[] s, int sIndex, int sLimit) {
253 if(sIndex>=sLimit) {
267 if(sIndex==sLimit) {
274 inByte=s[sIndex++];
294 if(sIndex==sLimit) {
302 inByte=s[sIndex++];
    [all...]
CharsTrie.java 216 * @param sIndex The start index of the string in s.
220 public Result next(CharSequence s, int sIndex, int sLimit) {
221 if(sIndex>=sLimit) {
235 if(sIndex==sLimit) {
242 inUnit=s.charAt(sIndex++);
262 if(sIndex==sLimit) {
270 inUnit=s.charAt(sIndex++);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BytesTrie.java 265 * @param sIndex The start index of the byte sequence in s.
270 public Result next(byte[] s, int sIndex, int sLimit) {
271 if(sIndex>=sLimit) {
285 if(sIndex==sLimit) {
292 inByte=s[sIndex++];
312 if(sIndex==sLimit) {
320 inByte=s[sIndex++];
    [all...]
CharsTrie.java 227 * @param sIndex The start index of the string in s.
232 public Result next(CharSequence s, int sIndex, int sLimit) {
233 if(sIndex>=sLimit) {
247 if(sIndex==sLimit) {
254 inUnit=s.charAt(sIndex++);
274 if(sIndex==sLimit) {
282 inUnit=s.charAt(sIndex++);
    [all...]
  /external/skia/tests/
PathOpsAngleIdeas.cpp 529 int sIndex = (int) (smallestTs[1] < 1);
530 REPORTER_ASSERT(reporter, smallestTs[sIndex ^ 1] == 1);
531 double t = smallestTs[sIndex];
532 const SkDQuad& q = *quads[sIndex];
534 SkDVector end = rays[sIndex][1] - origin;
540 SkDebugf("rayDist>endDist:%d sIndex==0:%d vDir[sIndex]<0:%d midXray<0:%d\n",
541 rayDist > endDist, sIndex == 0, vDir[sIndex] < 0, midXray < 0);
544 == SkScalarSignAsInt(SkDoubleToScalar(vDir[sIndex])));
    [all...]
  /external/skqp/tests/
PathOpsAngleIdeas.cpp 529 int sIndex = (int) (smallestTs[1] < 1);
530 REPORTER_ASSERT(reporter, smallestTs[sIndex ^ 1] == 1);
531 double t = smallestTs[sIndex];
532 const SkDQuad& q = *quads[sIndex];
534 SkDVector end = rays[sIndex][1] - origin;
540 SkDebugf("rayDist>endDist:%d sIndex==0:%d vDir[sIndex]<0:%d midXray<0:%d\n",
541 rayDist > endDist, sIndex == 0, vDir[sIndex] < 0, midXray < 0);
544 == SkScalarSignAsInt(SkDoubleToScalar(vDir[sIndex])));
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationFastLatin.java 686 * Java returns a negative result (use the '~' operator) if sIndex is to be incremented.
687 * C++ modifies sIndex.
689 private static long nextPair(char[] table, int c, int ce, CharSequence s16, int sIndex) {
700 if(sIndex != s16.length()) {
703 int nextIndex = sIndex;
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationFastLatin.java 682 * Java returns a negative result (use the '~' operator) if sIndex is to be incremented.
683 * C++ modifies sIndex.
685 private static long nextPair(char[] table, int c, int ce, CharSequence s16, int sIndex) {
696 if(sIndex != s16.length()) {
699 int nextIndex = sIndex;
    [all...]
  /external/skia/samplecode/
SamplePathFuzz.cpp 367 for (uint32_t sIndex = 0; sIndex < segments; ++sIndex) {
  /external/skqp/samplecode/
SamplePathFuzz.cpp 367 for (uint32_t sIndex = 0; sIndex < segments; ++sIndex) {
  /external/icu/icu4c/source/test/cintltst/
trie2test.c 280 int32_t i, length, sIndex, countValues;
305 sIndex=(int32_t)(p-s);
306 U16_NEXT(s, sIndex, length, c2);
330 sIndex=(int32_t)(p-s);
331 U16_PREV(s, 0, sIndex, c2);
    [all...]
cnumtst.c     [all...]
  /external/icu/icu4c/source/common/
uresbund.cpp     [all...]

Completed in 679 milliseconds

1 2