HomeSort by relevance Sort by last modified time
    Searched defs:last (Results 526 - 550 of 1933) sorted by null

<<21222324252627282930>>

  /external/elfutils/src/
ar.c 1043 struct armem *last = to_copy; local
1045 last->next = NULL;
1055 /* Write the last part. */
    [all...]
elfcmp.c 626 GElf_Off last = phdr1->p_offset; local
630 if (last < regionsarr[cnt].from)
632 /* Compare the [LAST,FROM) region. */
634 if (unlikely (memcmp (raw1 + last, raw2 + last,
635 regionsarr[cnt].from - last) != 0))
646 last = regionsarr[cnt].to;
650 if (cnt == nregions && last < end)
ld.c 232 /* The last file we processed. */
371 /* Process the last file. */
424 struct scninfo *runp = h->last;
434 while ((runp = runp->next) != h->last);
849 pointer in the record for the last object of the group. If
1104 struct file_list *last = input_file_list local
    [all...]
  /external/freetype/src/autofit/
afhints.c 330 AF_INDEX_NUM( seg->last, points ),
1045 AF_Point point, first, last; local
1052 last = seg->last;
1059 if ( point == last )
1071 AF_Point point, first, last; local
1078 last = seg->last;
1085 if ( point == last )
1165 /* is the point after the last edge? *
    [all...]
afhints.h 274 AF_Point last; /* last point in edge segment */ member in struct:AF_SegmentRec_
296 AF_Segment last; /* last segment in edge */ member in struct:AF_EdgeRec_
361 /* The `embedded' structure must be the last element! */
aftypes.h 319 FT_UInt32 last; member in struct:AF_Script_UniRangeRec_
332 AF_Script_UniRange script_uni_ranges; /* last must be { 0, 0 } */
  /external/fsck_msdos/
dir.c 447 int last; local
461 last = boot->RootDirEnts * 32;
464 last = boot->SecPerClust * boot->BytesPerSec;
469 buf = malloc(last);
480 if (read(f, buf, last) != last) {
485 last /= 32;
531 int i, j, k, last; local
555 last = boot->RootDirEnts * 32;
558 last = boot->SecPerClust * boot->BytesPerSec
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationKeys.java 233 // Appends all but the last byte to the sink. The last byte should be the 01 terminator.
514 int last = secondaries.length() - 1; local
515 while (secSegmentStart < last) {
517 secs[secSegmentStart++] = secs[last];
518 secs[last--] = b;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RuleBasedBreakIterator.java 339 public int last() { method in class:RuleBasedBreakIterator
350 // t.last() returns the offset of the last character,
352 // so a loop like for(p=it.last(); p!=DONE; p=it.previous()) ...
459 // Back up to the last dictionary character
476 // Back up to the last dictionary character
529 // If we found breaks, build a new break cache. The first and last entries must
571 * Moves the iterator backwards, to the last boundary preceding this one.
572 * @return The position of the last boundary position preceding this one.
621 // the current position), but not necessarily the last one befor
704 last(); method
901 last(); \/\/ For side effects on current position, tag values. method
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneAliasTest.java 89 Zone last = null; local
93 if (last != null) {
94 String common = testZone + "\tvs " + last + ":\t";
95 int diff = testZone.findOffsetOrdering(last, diffDate);
99 } else if (testZone.isRealAlias(last)) {
105 last = testZone;
179 Zone last = null; typedefs
184 if (last == null) {
188 int diff = testZone.findOffsetOrdering(last, diffDate);
201 last = testZone
    [all...]
  /external/icu/icu4c/source/common/
filteredbrk.cpp 199 virtual int32_t last(void);
445 SimpleFilteredSentenceBreakIterator::last(void) { function in class:SimpleFilteredSentenceBreakIterator
447 return fDelegate->last();
rbbi.cpp 539 int32_t RuleBasedBreakIterator::last(void) { function in class:RuleBasedBreakIterator
604 * Advances the iterator backwards, to the last boundary preceding this one.
605 * @return The position of the last boundary position preceding this one.
649 // the current position), but not necessarily the last one before
665 // starting point. The last break position before the starting
685 // Set the current iteration position to be the last break position
708 last();
789 // we don't back up at all). This may or may not be the last break
810 * Sets the iterator to refer to the last boundary position before the
813 * @return The position of the last boundary before the starting position
    [all...]
  /external/icu/icu4c/source/test/cintltst/
custrtst.c 713 const UChar *first, *last; local
749 last=s+7;
762 last!=u_memrchr(s+1, a, 9) ||
763 last!=u_memrchr32(s+1, a, 9) ||
767 last!=u_strFindLast(s+1, 9, sub_a, -1) ||
768 last!=u_strFindLast(s+1, 9, &a, 1)
859 last=s+8;
868 last!=u_strrchr32(s+1, supp) ||
869 last!=u_memrchr32(s+1, supp, 9) ||
870 last!=u_strrstr(s+1, sub_supp) |
    [all...]
  /external/icu/icu4c/source/test/intltest/
citrtest.cpp 69 virtual UChar last(){return DONE;}; function in class:SCharacterIterator
424 c = iter.last();
522 c = iter.last();
1097 virtual UChar last() { function in class:SubCharIter
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationKeys.java 229 // Appends all but the last byte to the sink. The last byte should be the 01 terminator.
510 int last = secondaries.length() - 1; local
511 while (secSegmentStart < last) {
513 secs[secSegmentStart++] = secs[last];
514 secs[last--] = b;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneAliasTest.java 85 Zone last = null; local
89 if (last != null) {
90 String common = testZone + "\tvs " + last + ":\t";
91 int diff = testZone.findOffsetOrdering(last, diffDate);
95 } else if (testZone.isRealAlias(last)) {
101 last = testZone;
175 Zone last = null; typedefs
180 if (last == null) {
184 int diff = testZone.findOffsetOrdering(last, diffDate);
197 last = testZone
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
CheckTags.java 116 DocNode last = stack[ix]; local
118 last.errorCount += 1;
121 boolean show = !brief || last.reportError;
123 // System.out.println(">>> " + last + " error: " + error + " show: " + show + " nomsg: " + nomsg);
132 if (msg != null || !last.printed) { // since index > 0 last is not null
  /external/jetty/src/java/org/eclipse/jetty/servlets/
CGI.java 184 String last = ""; local
193 last = both.substring(index,both.length());
206 LOG.debug("CGI: pathInfo is " + last);
208 exec(exe,last,req,res);
  /external/libxml2/
SAX2.c 1148 * Do the last stage of the attribute normalization
2210 xmlNsPtr last = NULL, ns; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_text.c 561 uint last; member in struct:parsed_dcl_bracket
579 bracket->last = ctx->implied_array_size - 1;
598 bracket->last = (int) uindex;
602 bracket->last = bracket->first;
1092 decl.Range.Last = brackets[0].last;
1095 decl.Range.Last = brackets[1].last;
1268 (decl.Range.Last + 1));
1270 for (i = 0; i <= decl.Range.Last; ++i)
    [all...]
  /external/opencv/cv/src/
cvsegmentation.cpp 59 CvWSNode* last; member in struct:CvWSQueue
124 if( q[idx].last ) \
125 q[idx].last->next=node; \
128 q[idx].last = node; \
136 q[idx].last = 0; \
  /external/opencv/cxcore/src/
cxswitcher.cpp 349 CvModuleInfo *CvModule::first = 0, *CvModule::last = 0; member in class:CvModule
354 info = last;
368 if( last == info )
369 last = p;
519 CvModule::last->next = module_copy;
520 CvModule::last = module_copy; member in class:CvModule
522 if( CvModule::first == CvModule::last )
  /external/opencv3/3rdparty/libwebp/dec/
io.c 59 const int last = io->mb_h - 1; local
61 for (j = 0; j < last; j += 2) {
69 if (j == last) { // Just do the last line twice
88 const int last = io->mb_h;
90 for (j = 0; j < last; ++j) {
141 // move to last row
149 // (except for the very last row)
152 // Process the very last row of even-sized picture
198 // We don't process the last row yet. It'll be done during the next call
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfOutputFile.cpp 330 int startY, endY; // The first and last scanlines in
950 int last = (_data->currentScanLine + (numScanLines - 1) - local
957 last - first + 1),
968 stop = last + 1;
973 int last = (_data->currentScanLine - (numScanLines - 1) - local
980 first - last + 1),
991 stop = last - 1;
1057 // If this was the last line buffer in the scanline range
    [all...]
  /external/opencv3/modules/imgproc/src/
segmentation.cpp 62 WSQueue() { first = last = 0; }
63 int first, last; member in struct:cv::WSQueue
128 if( q[idx].last ) \
129 storage[q[idx].last].next=node; \
132 q[idx].last = node; \
141 q[idx].last = 0; \

Completed in 1064 milliseconds

<<21222324252627282930>>