/external/chromium_org/third_party/skia/src/pathops/ |
SkOpContour.h | 101 for (int sIndex = 0; sIndex < segmentCount; ++sIndex) { 102 SkOpSegment& segment = fSegments[sIndex]; 122 for (int sIndex = 0; sIndex < segmentCount; ++sIndex) { 123 SkOpSegment& segment = fSegments[sIndex]; 135 for (int sIndex = 0; sIndex < segmentCount; ++sIndex) [all...] |
SkPathOpsCommon.cpp | 616 int sIndex = sLink[rIndex]; 617 SkASSERT(sIndex != SK_MaxS32); 620 if (sIndex < 0) { 621 eIndex = sLink[~sIndex]; 622 sLink[~sIndex] = SK_MaxS32; 624 eIndex = eLink[sIndex]; 625 eLink[sIndex] = SK_MaxS32; 629 SkDebugf("%s sIndex=%c%d eIndex=%c%d\n", __FUNCTION__, sIndex < 0 ? 's' : 'e', 630 sIndex < 0 ? ~sIndex : sIndex, eIndex < 0 ? 's' : 'e' [all...] |
SkOpAngle.cpp | 462 int sIndex = -1; 492 sIndex = index; 513 sIndex = index; 517 const SkDCubic& curve = sIndex ? rh.fCurvePart : fCurvePart; 518 const SkOpSegment& segment = sIndex ? *rh.fSegment : *fSegment; 519 double tStart = segment.t(sIndex ? rh.fStart : fStart); 525 return sRayLonger ^ (sIndex == 0) ^ (septDir < 0); [all...] |
/external/skia/src/pathops/ |
SkOpContour.h | 101 for (int sIndex = 0; sIndex < segmentCount; ++sIndex) { 102 SkOpSegment& segment = fSegments[sIndex]; 122 for (int sIndex = 0; sIndex < segmentCount; ++sIndex) { 123 SkOpSegment& segment = fSegments[sIndex]; 135 for (int sIndex = 0; sIndex < segmentCount; ++sIndex) [all...] |
SkPathOpsCommon.cpp | 616 int sIndex = sLink[rIndex]; 617 SkASSERT(sIndex != SK_MaxS32); 620 if (sIndex < 0) { 621 eIndex = sLink[~sIndex]; 622 sLink[~sIndex] = SK_MaxS32; 624 eIndex = eLink[sIndex]; 625 eLink[sIndex] = SK_MaxS32; 629 SkDebugf("%s sIndex=%c%d eIndex=%c%d\n", __FUNCTION__, sIndex < 0 ? 's' : 'e', 630 sIndex < 0 ? ~sIndex : sIndex, eIndex < 0 ? 's' : 'e' [all...] |
SkOpAngle.cpp | 462 int sIndex = -1; 492 sIndex = index; 513 sIndex = index; 517 const SkDCubic& curve = sIndex ? rh.fCurvePart : fCurvePart; 518 const SkOpSegment& segment = sIndex ? *rh.fSegment : *fSegment; 519 double tStart = segment.t(sIndex ? rh.fStart : fStart); 525 return sRayLonger ^ (sIndex == 0) ^ (septDir < 0); [all...] |
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
Input.cpp | 35 while ((nRead < maxSize) && (mReadLoc.sIndex < mCount)) 37 size_t size = mLength[mReadLoc.sIndex] - mReadLoc.cIndex; 39 std::memcpy(buf + nRead, mString[mReadLoc.sIndex] + mReadLoc.cIndex, size); 44 if (mReadLoc.cIndex == mLength[mReadLoc.sIndex]) 46 ++mReadLoc.sIndex;
|
Input.h | 40 size_t sIndex; // String index; 44 : sIndex(0),
|
Tokenizer.l | 55 while ((scanLoc->sIndex < input->count()) && \ 56 (scanLoc->cIndex >= input->length(scanLoc->sIndex))) \ 58 scanLoc->cIndex -= input->length(scanLoc->sIndex++); \ 245 if (scanLoc->sIndex != sIndexMax) 249 scanLoc->sIndex = sIndexMax; scanLoc->cIndex = 0;
|
/external/clang/test/Analysis/ |
CFContainers.mm | 148 CFIndex sIndex; 149 for (sIndex = 0 ; sIndex <= 5 ; sIndex += 3 ) { 150 const void *s = CFArrayGetValueAtIndex(array, sIndex); 161 void TestGetCount(CFArrayRef A, CFIndex sIndex) { 163 if (sCount > sIndex) 164 const void *s1 = CFArrayGetValueAtIndex(A, sIndex); 187 void TestUndef(CFArrayRef A, CFIndex sIndex, void* x[]) { 196 void TestConst(CFArrayRef A, CFIndex sIndex, void* x[]) [all...] |
/external/icu/icu4c/source/layout/ |
HangulLayoutEngine.cpp | 134 le_int32 sIndex = syllable - HSYL_FIRST; 136 if (sIndex < 0 || sIndex >= HSYL_COUNT) { 140 lead = LJMO_FIRST + (sIndex / HSYL_LVCNT); 141 vowel = VJMO_FIRST + (sIndex % HSYL_LVCNT) / TJMO_COUNT; 142 trail = TJMO_FIRST + (sIndex % TJMO_COUNT);
|
/external/iptables/extensions/ |
libxt_string.c | 94 int i=0, slen, sindex=0, schar; local 131 info->pattern[sindex] = s[i+1]; 153 info->pattern[sindex] = (char) schar; 159 info->pattern[sindex] = s[i]; 162 if (sindex > XT_STRING_MAX_PATTERN_SIZE) 164 sindex++; 166 info->patlen = sindex;
|
/external/icu/icu4c/source/i18n/ |
collationfastlatin.cpp | 798 const uint8_t *s8, int32_t &sIndex, int32_t sLength) { 801 int32_t i2 = sIndex + 1; 803 uint8_t t1 = s8[sIndex]; 805 sIndex += 2; 821 const uint8_t *s8, int32_t &sIndex) { 826 return table[((c - 0xc2) << 6) + s8[sIndex++]]; // 0080..017F 828 uint8_t t2 = s8[sIndex + 1]; 829 sIndex += 2; [all...] |
collationfastlatin.h | 222 const uint8_t *s8, int32_t &sIndex, int32_t sLength); 224 const uint8_t *s8, int32_t &sIndex); 227 const UChar *s16, const uint8_t *s8, int32_t &sIndex, int32_t &sLength);
|
/external/chromium_org/third_party/skia/tests/ |
PathOpsAngleIdeas.cpp | 524 int sIndex = (int) (smallestTs[1] < 1); 525 REPORTER_ASSERT(reporter, smallestTs[sIndex ^ 1] == 1); 526 double t = smallestTs[sIndex]; 527 const SkDQuad& q = *quads[sIndex]; 529 SkDVector end = rays[sIndex][1] - origin; 535 SkDebugf("rayDist>endDist:%d sIndex==0:%d vDir[sIndex]<0:%d midXray<0:%d\n", 536 rayDist > endDist, sIndex == 0, vDir[sIndex] < 0, midXray < 0); 539 == SkScalarSignAsInt(SkDoubleToScalar(vDir[sIndex]))); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/ |
elf-objfmt.c | 69 unsigned long sindex; member in struct:__anon20239 663 elf_secthead_set_index(shead, ++info->sindex); 683 elf_secthead_set_index(shead, ++info->sindex); 689 elf_secthead_set_rel_index(shead, ++info->sindex); 713 if(elf_secthead_write_to_file(info->f, shead, info->sindex+1)) 714 info->sindex++; 720 info->sindex+1)) 721 info->sindex++; 770 info.sindex = 3; 832 info.sindex = 0 [all...] |
elf-machine.h | 56 elf_section_index sindex);
|
elf.c | 649 fprintf(f, "%*sindex=0x%x\n", indent_level, "", sect->index); 669 elf_section_index sindex) 672 shead->index = sindex; 732 elf_section_index sindex) 742 shead->rel_index = sindex; 746 elf_march->write_secthead_rel(bufp, shead, symtab_idx, sindex);
|
elf-x86-x86.c | 121 elf_section_index sindex)
|
/external/skia/tests/ |
PathOpsAngleIdeas.cpp | 524 int sIndex = (int) (smallestTs[1] < 1); 525 REPORTER_ASSERT(reporter, smallestTs[sIndex ^ 1] == 1); 526 double t = smallestTs[sIndex]; 527 const SkDQuad& q = *quads[sIndex]; 529 SkDVector end = rays[sIndex][1] - origin; 535 SkDebugf("rayDist>endDist:%d sIndex==0:%d vDir[sIndex]<0:%d midXray<0:%d\n", 536 rayDist > endDist, sIndex == 0, vDir[sIndex] < 0, midXray < 0); 539 == SkScalarSignAsInt(SkDoubleToScalar(vDir[sIndex]))); [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/ |
histogram.cpp | 117 int sIndex = s * saturationBins / 256; 122 index = sIndex * hueBins + hIndex;
|
/ndk/sources/host-tools/nawk-20071023/ |
maketab.c | 57 { INDEX, "sindex", "sindex" },
|
/external/tcpdump/ |
print-smb.c | 71 int sindex; local 73 for (sindex = 0; list[sindex].name; sindex++) 74 if (list[sindex].id == id) 75 return(&list[sindex]); 83 int sindex; local 85 for (sindex = 0; list[sindex].name; sindex++ [all...] |
/hardware/intel/common/libmix/videoencoder/ |
IntelMetadataBuffer.h | 131 static uint32_t MakeSessionFlag(bool romoteProvider, bool remoteConsumer, uint16_t sindex);
|
/external/emma/core/java12/com/vladium/util/args/ |
OptsParser.java | 474 int sindex = Integer.MAX_VALUE; local 479 if ((index > 0) && (index < sindex)) 482 sindex = index; 488 nv [0] = name.substring (0, sindex); 489 nv [1] = name.substring (sindex + 1); [all...] |