HomeSort by relevance Sort by last modified time
    Searched full:sindex (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/third_party/angle_dx11/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 31 size_t sIndex; // String index;
34 Location() : sIndex(0), cIndex(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/chromium_org/third_party/skia/src/pathops/
SkOpContour.h 98 for (int sIndex = 0; sIndex < segmentCount; ++sIndex) {
99 SkOpSegment* segment = &fSegments[sIndex];
103 fSegments[sIndex].checkEnds();
136 for (int sIndex = 0; sIndex < segmentCount; ++sIndex) {
137 fSegments[sIndex].findTooCloseToCall();
143 for (int sIndex = 0; sIndex < segmentCount; ++sIndex)
    [all...]
SkPathOpsCommon.cpp 514 int sIndex = sLink[rIndex];
515 SkASSERT(sIndex != SK_MaxS32);
518 if (sIndex < 0) {
519 eIndex = sLink[~sIndex];
520 sLink[~sIndex] = SK_MaxS32;
522 eIndex = eLink[sIndex];
523 eLink[sIndex] = SK_MaxS32;
527 SkDebugf("%s sIndex=%c%d eIndex=%c%d\n", __FUNCTION__, sIndex < 0 ? 's' : 'e',
528 sIndex < 0 ? ~sIndex : sIndex, eIndex < 0 ? 's' : 'e'
    [all...]
  /external/skia/src/pathops/
SkOpContour.h 98 for (int sIndex = 0; sIndex < segmentCount; ++sIndex) {
99 SkOpSegment* segment = &fSegments[sIndex];
103 fSegments[sIndex].checkEnds();
136 for (int sIndex = 0; sIndex < segmentCount; ++sIndex) {
137 fSegments[sIndex].findTooCloseToCall();
143 for (int sIndex = 0; sIndex < segmentCount; ++sIndex)
    [all...]
SkPathOpsCommon.cpp 514 int sIndex = sLink[rIndex];
515 SkASSERT(sIndex != SK_MaxS32);
518 if (sIndex < 0) {
519 eIndex = sLink[~sIndex];
520 sLink[~sIndex] = SK_MaxS32;
522 eIndex = eLink[sIndex];
523 eLink[sIndex] = SK_MaxS32;
527 SkDebugf("%s sIndex=%c%d eIndex=%c%d\n", __FUNCTION__, sIndex < 0 ? 's' : 'e',
528 sIndex < 0 ? ~sIndex : sIndex, eIndex < 0 ? 's' : 'e'
    [all...]
  /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/icu4c/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/grub/stage2/
fsys_jfs.c 39 int sindex; member in struct:jfs_info
137 if (jfs.sindex < jfs.slastindex) {
138 return (ldtentry_t *)&dtroot->slot[(int)dtroot->header.stbl[jfs.sindex++]];
143 if (jfs.sindex < jfs.slastindex) {
144 return &de[(int)stbl[jfs.sindex++]];
149 jfs.sindex = 1;
165 jfs.sindex = 0;
  /external/iptables/extensions/
libxt_string.c 93 int i=0, slen, sindex=0, schar; local
130 info->pattern[sindex] = s[i+1];
152 info->pattern[sindex] = (char) schar;
158 info->pattern[sindex] = s[i];
161 if (sindex > XT_STRING_MAX_PATTERN_SIZE)
163 sindex++;
165 info->patlen = sindex;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf-objfmt.c 69 unsigned long sindex; member in struct:__anon16377
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)
elf.h 485 elf_section_index sindex);
517 elf_section_index sindex);
elf-x86-amd64.c 114 elf_section_index sindex)
  /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" },
proto.h 170 extern Cell *sindex(Node **, int);
  /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...]
  /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...]
  /external/icu4c/i18n/
ucol.cpp     [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
trie2test.c 279 int32_t i, length, sIndex, countValues;
304 sIndex=(int32_t)(p-s);
305 U16_NEXT(s, sIndex, length, c2);
329 sIndex=(int32_t)(p-s);
330 U16_PREV(s, 0, sIndex, c2);
    [all...]
  /external/icu4c/test/cintltst/
trie2test.c 279 int32_t i, length, sIndex, countValues;
304 sIndex=(int32_t)(p-s);
305 U16_NEXT(s, sIndex, length, c2);
329 sIndex=(int32_t)(p-s);
330 U16_PREV(s, 0, sIndex, c2);
    [all...]

Completed in 2386 milliseconds

1 2