Searched refs:last (Results 251 - 275 of 742) sorted by relevance

<<11121314151617181920>>

/external/zlib/examples/
H A Dzran.c143 off_t last; /* totout value of last access point */ local
162 totin = totout = last = 0;
207 access point after the last block by checking bit 6 of data_type
210 (totout == 0 || totout - last > span)) {
217 last = totout;
301 else if (offset != 0) { /* last skip */
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DBreakIteratorTest.java127 assertEquals(0, iterator.last());
129 assertEquals(TEXT.length(), iterator.last());
172 iterator.last();
/external/bluetooth/glib/glib/
H A Dgmessages.c198 register GLogDomain *last, *work; local
200 last = NULL;
207 if (last)
208 last->next = domain->next;
215 last = work;
216 work = last->next;
364 GLogHandler *work, *last; local
366 last = NULL;
372 if (last)
373 last
[all...]
/external/chromium/base/
H A Dstring_piece.cc62 const char* last = ptr_ + std::min(length_ - s.length_, pos) + s.length_; local
63 const char* result = std::find_end(ptr_, last, s.ptr_, s.ptr_ + s.length_);
64 return result != last ? static_cast<size_t>(result - ptr_) : npos;
/external/dropbear/
H A Dscp.c600 char *last, *name, buf[2048]; local
633 if ((last = strrchr(name, '/')) == NULL)
634 last = name;
636 ++last;
637 curfile = last;
653 (long long)stb.st_size, last);
717 char *last, *vect[1], path[1100]; local
723 last = strrchr(name, '/');
724 if (last == 0)
725 last
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DDataCommandConsolidator.java63 * Data consolidation barrier: consolidates all data contents into the last data command in the
64 * datas list, replacing all but the last node with no-ops.
68 // Put aside the last data command for later, then remove all the other
69 // data commands, coalescing their contents into the last command.
70 ADataCommand last = datas.remove(datas.size() - 1);
78 sb.append(last.getData().getText());
79 last.replaceBy(new ADataCommand(new TData(sb.toString())));
/external/kernel-headers/original/linux/
H A Ddmaengine.h85 * @cookie: last cookie value returned to client
199 dma_cookie_t cookie, dma_cookie_t *last,
302 * @last: returns last completed cookie, can be NULL
303 * @used: returns last issued cookie, can be NULL
305 * If @last and @used are passed in, upon return they reflect the driver
310 dma_cookie_t cookie, dma_cookie_t *last, dma_cookie_t *used)
312 return chan->device->device_memcpy_complete(chan, cookie, last, used);
318 * @last_complete: last know completed transaction
319 * @last_used: last cooki
309 dma_async_memcpy_complete(struct dma_chan *chan, dma_cookie_t cookie, dma_cookie_t *last, dma_cookie_t *used) argument
[all...]
/external/mksh/src/
H A Dhistrap.c78 const char *first = NULL, *last = NULL; local
122 else if (!last)
123 last = p;
153 if (last || *wp) {
172 if (!last && (last = *wp))
186 /* POSIX says not an error if first/last out of bounds
190 hfirst = hist_get(first, (lflag || last) ? true : false, lflag);
193 hlast = last ? hist_get(last, tru
459 int last = histptr - history; local
[all...]
/external/v8/tools/oom_dump/
H A Doom_dump.cc142 const u_int64_t last = memory_region->GetBase() + memory_region->GetSize(); local
145 for (u_int64_t addr = esp; addr < last; addr += 4) {
148 if (value >= esp && value < last) {
/external/webkit/Source/JavaScriptCore/parser/
H A DNodes.cpp124 ASSERT(node->data()->m_arena.last() == node);
142 ASSERT(node->data()->m_arena.last() == node);
189 ASSERT(node->data()->m_arena.last() == node);
/external/webkit/Tools/Scripts/
H A Dcommit-log-editor163 last if $contents;
227 $sortKey = lc "~, LayoutTests last";
321 last if substr($string, 0, $prefixLength) eq $prefix;
325 last unless $prefixLength;
/external/libxml2/
H A Dxpointer.c1433 xmlNodePtr list = NULL, last = NULL, parent = NULL, tmp; local
1476 if (last != NULL)
1477 xmlAddNextSibling(last, tmp);
1486 if (last != NULL)
1487 xmlAddNextSibling(last, tmp);
1491 last = NULL;
1523 last = list = tmp;
1529 last = NULL;
1540 last = tmp;
1567 if ((list == NULL) || ((last
1603 xmlNodePtr list = NULL, last = NULL; local
[all...]
H A Dentities.c324 if (dtd->last == NULL) {
325 dtd->children = dtd->last = (xmlNodePtr) ret;
327 dtd->last->next = (xmlNodePtr) ret;
328 ret->prev = dtd->last;
329 dtd->last = (xmlNodePtr) ret;
373 if (dtd->last == NULL) {
374 dtd->children = dtd->last = (xmlNodePtr) ret;
376 dtd->last->next = (xmlNodePtr) ret;
377 ret->prev = dtd->last;
378 dtd->last
[all...]
/external/stlport/src/details/
H A Dfstream_win32io.cpp407 char *last = from + numberOfBytesRead - 1; local
408 for (; from <= last && *from != _STLP_CTRLZ; ++from) {
412 if (from < last) { // not at buffer end
416 else { // last char is CR, peek for LF
439 * get a <LF>. Doing so would make all files with a <CR> last an invalid file
451 if (from <= last) { // terminated due to CTRLZ
452 SetFilePointer(_M_file_id, -(LONG)((last + 1) - from), 0, FILE_CURRENT);
/external/zlib/contrib/inflate86/
H A Dinffas86.c82 /* 24 12 */ unsigned char FAR *last; /* r9 while in < last */ member in struct:inffast_ar
111 ar.last = ar.in + (strm->avail_in - PAD_AVAIL_IN);
142 " movq 24(%%rsp), %%r9\n" /* r9 = last */
489 " cmpl %%esi, 12(%%esp)\n" /* in < last */
1147 strm->avail_in = (unsigned)(ar.in < ar.last ?
1148 PAD_AVAIL_IN + (ar.last - ar.in) :
1149 PAD_AVAIL_IN - (ar.in - ar.last));
H A Dinffast.S42 * have less latency than MMX ops. Added code to buffer the last 11 bytes of
51 * structure offsets which are hard coded in this file. This was last tested
181 #define last 20 /* unsigned char* */ define
244 * last = in + strm->avail_in - 11;
255 movl %edx, last(%esp)
320 movl last(%esp), %ecx
322 ja .L_align_long /* if in < last */
334 movl in_r, last(%esp) /* last = in, do just one iteration */
426 /* while (in < last
[all...]
/external/opencv/cxcore/src/
H A Dcxswitcher.cpp349 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/valgrind/main/coregrind/m_debuginfo/
H A Dreadxcoff.c372 Addr last; /* last address; may be an overestimate */ member in struct:__anon10933
387 sym->last = 0;
411 if (s1->last < s2->first) return -1;
412 if (s2->last < s1->first) return 1;
430 and assign them to *first and *last, and return True; else return
463 /*OUT*/UChar** first, /*OUT*/UChar** last )
488 *last = *first + CSECT_LEN(csaux)-1;
627 (according to IBM docs) the csect entry is the last
644 cand.last
[all...]
/external/valgrind/main/memcheck/tests/
H A Dunit_oset.c340 Addr last; member in struct:__anon11380
350 sprintf(buf, "<(%d) %lu..%lu (%d)>", b->b1, b->first, b->last, b->b2);
359 assert(elem->first <= elem->last);
361 if (key > elem->last) return 1;
392 vs[i]->last = vs[i]->first + 2;
442 prev.last = 0;
446 assert(prev.last < curr.first);
/external/wpa_supplicant_6/wpa_supplicant/
H A Dconfig.c419 int val = 0, last, errors = 0; local
435 last = *end == '\0';
448 if (last)
503 int val = 0, last, errors = 0; local
519 last = *end == '\0';
553 if (last)
666 int val = 0, last; local
682 last = *end == '\0';
701 if (last)
845 int val = 0, last, error local
945 int last, errors = 0; local
1667 struct wpa_ssid *ssid, *last = NULL; local
[all...]
/external/freetype/src/autofit/
H A Dafcjk.c359 FT_Int last = -1; local
364 first = last + 1, nn++ )
369 last = glyph->outline.contours[nn];
375 if ( last <= first )
381 for ( pp = first; pp <= last; pp++ )
390 for ( pp = first; pp <= last; pp++ )
399 for ( pp = first; pp <= last; pp++ )
408 for ( pp = first; pp <= last; pp++ )
701 AF_Point last = seg->last; local
[all...]
/external/icu4c/test/perf/collperf/
H A Dcollperf.cpp44 UNIT * last(){return data + index[count - 1];} \
748 memcpy(icu_data->last(), line, len * sizeof(UChar));
749 icu_data->last()[len -1] = NULL;
790 t = ucol_getSortKey(col, icu_data->dataOf(i), -1,icu_key->last(), s);
801 t = ucnv_fromUChars(conv,posix_data->last(), s, icu_data->dataOf(i), icu_data->lengthOf(i), &status);
804 posix_data->last()[s] = 0;
810 t = strxfrm(posix_key->last(), posix_data->dataOf(i), s);
816 memcpy(win_data->last(), icu_data->dataOf(i), sizeof(WCHAR) * s);
822 t = LCMapStringW(win_langid, LCMAP_SORTKEY, win_data->dataOf(i), win_data->lengthOf(i), (WCHAR *)(win_key->last()),s);
832 rnd_index[i].posix_key = posix_key->last();
[all...]
/external/llvm/lib/Support/Windows/
H A DPath.inc334 // Find the last slash
350 // Find the last slash
421 // Find the last slash
428 // If the last character is a slash, we have a root directory
432 // Return everything after the last slash
566 size_t last = path.size() - 1;
567 if (path[last] != '/')
/external/skia/src/animator/
H A DSkDisplayApply.cpp472 SkOperand* last = new SkOperand[count]; local
473 SkAutoTDelete<SkOperand> autoLast(last);
475 info->getValue(target, last, count);
483 last[0] = scriptValue.fOperand;
489 memcpy(save, last, count * sizeof(SkOperand));
757 SkTDOperandArray last; local
762 last.setCount(count);
763 memcpy(last.begin(), fActive->fSaveRestore[activeIndex], count * sizeof(SkOperand));
768 info->setValue(target, last.begin(), count);
778 scriptValue.fOperand = last[
[all...]
/external/webkit/Source/WebKit/android/nav/
H A DCacheBuilder.cpp902 // Tracker object is the last thing in the dom, checking for null in the
954 CachedColor& newColor = colorTracker.last();
974 // (which only requires retrieving the last parent on the stack)
975 // when the parent's last child is found, pop the stack
1041 FocusTracker* last = &tracker.last(); local
1043 while (node == last->mLastChild) {
1044 if (CleanUpContainedNodes(cachedRoot, cachedFrame, last, lastChildIndex))
1047 lastChildIndex = last->mCachedNodeIndex;
1048 last
1454 FocusTracker* last = &tracker.last(); local
1462 CleanUpContainedNodes(CachedRoot* cachedRoot, CachedFrame* cachedFrame, const FocusTracker* last, int lastChildIndex) argument
3041 Node* last = NULL; local
3165 ConstructTextRects(Text* node, int start, Text* last, int end, int x, int y, IntRect* focusBounds, const IntRect& clipBounds, WTF::Vector<IntRect>* result) argument
[all...]

Completed in 1352 milliseconds

<<11121314151617181920>>