Searched refs:last (Results 276 - 300 of 1039) sorted by relevance

<<11121314151617181920>>

/external/skia/src/core/
H A DSkScan_Path.cpp379 static SkEdge* sort_edges(SkEdge* list[], int count, SkEdge** last) { argument
388 *last = list[count - 1];
436 SkEdge headEdge, tailEdge, *last; local
437 // this returns the first and last edge after they're sorted into a dlink list
438 SkEdge* edge = sort_edges(list, count, &last);
446 tailEdge.fPrev = last;
449 last->fNext = &tailEdge;
651 SkEdge headEdge, tailEdge, *last; local
653 // this returns the first and last edge after they're sorted into a dlink list
654 SkEdge* edge = sort_edges(list, count, &last);
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Ddblist.c396 struct ext2_db_entry2 *last; local
406 last = dblist->list + dblist->count -1;
408 ret_entry.ino = last->ino;
409 ret_entry.blk = last->blk;
410 ret_entry.blockcnt = last->blockcnt;
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-sea.cc338 unsigned int last = 0; local
342 initial_reordering_syllable (plan, font->face, buffer, last, i);
343 last = i;
344 last_syllable = info[last].syllable();
346 initial_reordering_syllable (plan, font->face, buffer, last, count);
/external/mesa3d/scons/
H A Dgallium.py72 last = env.InstallAs(os.path.join(target_dir, target_name), source)
73 targets += last
78 last = env.Command(os.path.join(target_dir, target_name), last, action)
79 targets += last
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp98 // Detach comment handler once last active source file completed.
103 // Check diagnostics once last file completed.
548 for (size_t last = 0;; loc = C.find('\\', last)) {
550 C2 += C.substr(last);
553 C2 += C.substr(last, loc-last);
554 last = loc + 1;
556 if (C[last] == '\n' || C[last]
[all...]
/external/libpcap/
H A Doptimize.c658 struct slist *next, *last; local
665 last = s;
681 last = next;
771 * it is defined by the last stmt of this sequence
772 * (i.e., the last statement of the sequence loads
796 if (last->s.code == (BPF_ALU|BPF_SUB|BPF_X)) {
809 last->s.code = NOP;
821 last->s.code = NOP;
832 else if (last->s.code == (BPF_ALU|BPF_SUB|BPF_K)) {
833 last
1103 deadstmt(register struct stmt *s, register struct stmt *last[]) argument
1131 struct stmt *last[N_ATOMS]; local
[all...]
/external/libxml2/
H A Dxinclude.c847 xmlNodePtr cur, res, result = NULL, last = NULL; local
857 result = last = res;
859 last->next = res;
860 res->prev = last;
861 last = res;
913 xmlNodePtr list = NULL, last = NULL, listParent = NULL; local
943 * last is a pointer to the last node added to the output tree
944 * lastLevel is the depth of last (relative to the root)
959 last
1126 xmlNodePtr list = NULL, last = NULL; local
[all...]
/external/llvm/include/llvm/ADT/
H A DHashing.h404 hash_code hash_combine_range_impl(InputIteratorT first, InputIteratorT last) { argument
408 while (first != last && store_and_advance(buffer_ptr, buffer_end,
411 if (first == last)
417 while (first != last) {
418 // Fill up the buffer. We don't clear it, which re-mixes the last round
421 while (first != last && store_and_advance(buffer_ptr, buffer_end,
426 // a mix of the last 64-bytes. That is how the algorithm works when we
448 hash_combine_range_impl(ValueT *first, ValueT *last) { argument
451 const char *s_end = reinterpret_cast<const char *>(last);
480 hash_code hash_combine_range(InputIteratorT first, InputIteratorT last) { argument
[all...]
/external/libvorbis/doc/
H A Da1-encapsulation-ogg.tex103 The last page is marked 'end of stream' in the page flags.
118 position of the last packet \emph{completed} on that
119 page. The 'last PCM sample' is the last complete sample returned by
126 Note that the last decoded (fully lapped) PCM sample from a packet
129 packet encodes a "short block", the last decodable sample from the
137 position belongs to the last completed packet on the page and a
/external/skia/tests/
H A DPathOpsSkpClipTest.cpp114 int last = (int) path.size(); local
116 while (last > 0 && pathStr[--last] != PATH_SLASH[0])
118 SkASSERT(last > 0);
119 SkString shorter(pathStr, last);
125 while (last < (int) path.size() && pathStr[++last] != PATH_SLASH[0])
127 SkString shorter(pathStr, last);
129 } while (last < (int) path.size());
562 int last() cons function in class:Dirs
1076 int last = dash ? atoi(dash + 1) : first; local
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Dtncc.c885 struct tnc_if_imc *imc, *last; local
888 last = tncc->imc;
889 while (last && last->next)
890 last = last->next;
979 if (last == NULL)
982 last->next = imc;
983 last = imc;
1072 struct tnc_if_imc *imc, *last; local
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Dtncc.c885 struct tnc_if_imc *imc, *last; local
888 last = tncc->imc;
889 while (last && last->next)
890 last = last->next;
979 if (last == NULL)
982 last->next = imc;
983 last = imc;
1072 struct tnc_if_imc *imc, *last; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Dtncc.c885 struct tnc_if_imc *imc, *last; local
888 last = tncc->imc;
889 while (last && last->next)
890 last = last->next;
979 if (last == NULL)
982 last->next = imc;
983 last = imc;
1072 struct tnc_if_imc *imc, *last; local
[all...]
/external/e2fsprogs/e2fsck/
H A Dprofile.c94 time_t timestamp; /* time tree was last updated from file */
130 * Check if a filespec is last in a list (NULL on UNIX, invalid FSSpec on MacOS
306 prf_file_t new_file, *last; local
315 last = &profile->first_file;
332 *last = new_file;
333 last = &new_file->next;
346 *last = new_file;
347 last = &new_file->next;
1119 struct profile_node *p, *last; local
1127 last
1152 struct profile_node *p, *last, *new; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DWNafUtil.java427 ECPoint twiceP = wnafPreCompInfo.getTwice(), last = preComp[curPreCompLen - 1];
456 last = last.scaleX(iso2).scaleY(iso3);
460 preComp[0] = last;
474 preComp[curPreCompLen++] = last = last.add(twiceP);
/external/chromium-trace/trace-viewer/third_party/Paste/paste/debug/
H A Dfsdiff.py71 last = ''
73 t = ' %s' % _space_prefix(last, path, indent=4,
75 last = path
332 last = ''
334 t = _space_prefix(last, path, indent=4, include_sep=False)
337 last = path
/external/guava/guava/src/com/google/common/collect/
H A DConcurrentHashMultiset.java515 private Entry<E> last;
522 last = super.next();
523 return last;
527 checkRemove(last != null);
528 ConcurrentHashMultiset.this.setCount(last.getElement(), 0);
529 last = null;
/external/libvorbis/lib/
H A Dsharedbook.c14 last mod: $Id: sharedbook.c 17030 2010-03-25 06:52:55Z xiphmont $
218 float last=0.f; local
223 val=fabs(val)*delta+mindel+last;
224 if(b->q_sequencep)last=val;
239 float last=0.f; local
243 val=fabs(val)*delta+mindel+last;
244 if(b->q_sequencep)last=val;
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_scene.c345 struct resource_ref *ref, **last = &scene->resources; local
351 last = &ref->next;
369 assert(*last == NULL);
370 *last = lp_scene_alloc(scene, sizeof *ref);
371 if (*last == NULL)
374 ref = *last;
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_g_l_y_f.py36 last = int(loca[0])
47 glyphdata = data[last:next]
48 if len(glyphdata) != (next - last):
52 last = next
268 last = 0
272 for j in range(last, self.endPtsOfContours[i] + 1):
278 last = self.endPtsOfContours[i] + 1
571 last = end
573 if not ((flags[j] | flags[last]) & flagOnCurve):
574 x = (coords[last][
[all...]
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_g_l_y_f.py36 last = int(loca[0])
47 glyphdata = data[last:next]
48 if len(glyphdata) != (next - last):
52 last = next
268 last = 0
272 for j in range(last, self.endPtsOfContours[i] + 1):
278 last = self.endPtsOfContours[i] + 1
571 last = end
573 if not ((flags[j] | flags[last]) & flagOnCurve):
574 x = (coords[last][
[all...]
/external/tcpdump/
H A Dprint-rx.c78 { RX_LAST_PACKET, 0, "last-pckt" },
639 /* Start the search where we last left off */
2612 int i, start, last; local
2675 for (i = 0, start = last = -2; i < rxa->nAcks; i++)
2685 if (last == -2) {
2696 * seperated from the last number by
2700 else if (last != i - 1) {
2706 * We always set last to the value of
2707 * the last ack we saw. Conversely, start
2712 last
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py90 last symbol has been read. The index is the symbol about to be
108 Rewind to the input position of the last marker.
114 like invoking rewind(last marker) but it should not "pop"
115 the marker off. It's like seek(last marker's input position).
432 last symbol has been read. The index is the index of char to
652 # Remember last marked position
1000 def __init__(self, stream, first, last, text):
1002 self.lastIndex = last
1172 last = args[0]
1178 last
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_report.cc70 const char *last = last_frame->info.function; local
77 } else if (last && 0 == internal_strcmp(last, "__tsan_thread_start_func")) {
81 } else if (last && 0 == internal_strcmp(last, "__do_global_ctors_aux")) {
85 } else if (last || last2) {
93 // The last frame always point into runtime (gosched0, goexit0, runtime.main).
121 SymbolizedStack *last = ent; local
122 while (last->next) {
123 last
[all...]
/external/skia/src/pathops/
H A DSkPathOpsTSect.h250 SkTSpan<TCurve, OppCurve>* last);
252 SkTSpan<TCurve, OppCurve>** last) const;
265 SkTSpan<TCurve, OppCurve>* last);
284 void removeSpanRange(SkTSpan<TCurve, OppCurve>* first, SkTSpan<TCurve, OppCurve>* last);
290 bool updateBounded(SkTSpan<TCurve, OppCurve>* first, SkTSpan<TCurve, OppCurve>* last,
853 SkDPoint last = fCurve.ptAtT(tStart); local
869 if (last.approximatelyEqual(work.fPart[0])) {
872 last = work.fPart[0];
873 work.fCoinStart.setPerp(fCurve, work.fStartT, last, opp);
890 if (last
926 SkTSpan<TCurve, OppCurve>* last, * next; local
972 computePerpendiculars(SkTSect<OppCurve, TCurve>* sect2, SkTSpan<TCurve, OppCurve>* first, SkTSpan<TCurve, OppCurve>* last) argument
1016 SkTSpan<TCurve, OppCurve>* last = first; local
1059 extractCoincident( SkTSect<OppCurve, TCurve>* sect2, SkTSpan<TCurve, OppCurve>* first, SkTSpan<TCurve, OppCurve>* last) argument
1550 removeSpanRange(SkTSpan<TCurve, OppCurve>* first, SkTSpan<TCurve, OppCurve>* last) argument
1663 updateBounded(SkTSpan<TCurve, OppCurve>* first, SkTSpan<TCurve, OppCurve>* last, SkTSpan<OppCurve, TCurve>* oppFirst) argument
2068 int last = intersections->used() - 1; local
[all...]

Completed in 869 milliseconds

<<11121314151617181920>>