HomeSort by relevance Sort by last modified time
    Searched refs:last (Results 51 - 75 of 1662) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/quake/quake/src/QW/client/
gl_mesh.c 62 mtriangle_t *last, *check; local
67 last = &triangles[starttri];
69 stripverts[0] = last->vertindex[(startv)%3];
70 stripverts[1] = last->vertindex[(startv+1)%3];
71 stripverts[2] = last->vertindex[(startv+2)%3];
76 m1 = last->vertindex[(startv+2)%3];
77 m2 = last->vertindex[(startv+1)%3];
83 if (check->facesfront != last->facesfront)
131 mtriangle_t *last, *check; local
136 last = &triangles[starttri];
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
BlockStack.h 81 ASSERT(newEnd != m_blocks.last() + blockLength);
82 m_spareBlock = m_blocks.last();
85 while (m_blocks.last() + blockLength != newEnd) {
86 free(m_blocks.last());
  /external/webkit/Source/WebCore/rendering/
RenderTableRow.cpp 90 RenderObject* last = beforeChild; local
91 if (!last)
92 last = lastChild();
93 if (last && last->isAnonymous() && last->isTableCell() && !last->isBeforeOrAfterContent()) {
94 if (beforeChild == last)
95 beforeChild = last->firstChild();
96 last->addChild(child, beforeChild)
    [all...]
  /external/webkit/Tools/Scripts/
update-javascriptcore-test-results 43 last if /failures reported\.$/;
56 last if /failures reported\.$/;
  /libcore/luni/src/main/java/java/util/
SortedSet.java 69 * Returns the last element in this {@code SortedSet}. The last element is
72 * @return the last element.
76 public E last(); method in interface:SortedSet
  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.sorting/alg.binary.search/equal.range/
equal_range.pass.cpp 16 // equal_range(Iter first, Iter last, const T& value);
26 test(Iter first, Iter last, const T& value)
28 std::pair<Iter, Iter> i = std::equal_range(first, last, value);
31 for (Iter j = i.first; j != last; ++j)
35 for (Iter j = i.second; j != last; ++j)
  /external/chromium/base/memory/
scoped_vector.h 65 // Lets the ScopedVector take ownership of elements in [first,last).
67 void insert(iterator position, InputIterator first, InputIterator last) {
68 v.insert(position, first, last);
76 iterator erase(iterator first, iterator last) {
77 STLDeleteContainerPointers(first, last);
78 return v.erase(first, last);
86 // Like |erase()|, but doesn't delete the elements in [first, last).
87 iterator weak_erase(iterator first, iterator last) {
88 return v.erase(first, last);
  /external/libcap-ng/libcap-ng-0.7/bindings/python/test/
capng-test.py 11 last = capng.CAP_LAST_CAP variable
26 if len < 80 and last > 30:
27 last = 30 variable
29 print("Doing advanced bit tests for %d capabilities...\n" % (last))
30 for i in range(last+1):
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_PutVLCBits.c 45 * [in] maxStoreRunL0 Max store possible (considering last and inter/intra)
46 * for last = 0
47 * [in] maxStoreRunL1 Max store possible (considering last and inter/intra)
48 * for last = 1
52 * (considering last and inter/intra status) for last = 0
56 * (considering last and inter/intra status) for last = 1
58 * armVCM4P2_Huff_Tables_VLC.c for last == 0
59 * [in] pVlcTableL0 VLC table for last ==
108 OMX_U8 last = 0, first = 1, fMode; local
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_result_unittest.cc 42 // Creates an AutocompleteResult from |last| and |current|. The two are
44 void RunCopyOldMatchesTest(const TestData* last, size_t last_size,
92 const TestData* last, size_t last_size,
99 PopulateAutocompleteMatches(last, last_size, &last_matches);
143 // Tests that if the new results have a lower max relevance score than last,
146 TestData last[] = { local
159 RunCopyOldMatchesTest(last, ARRAYSIZE_UNSAFE(last),
166 TestData last[] = { local
184 RunCopyOldMatchesTest(last, ARRAYSIZE_UNSAFE(last)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
RegularContiguousSet.java 68 final C last = last();
72 return equalsOrThrow(previous, last) ? null : domain.next(previous);
89 @Override public C last() { method
94 long distance = domain.distance(first(), last());
135 C upperEndpoint = Ordering.natural().min(this.last(), other.last());
158 && this.last().equals(that.last());
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
VariableTranslator.java 124 JavaExpression last = null; local
126 if (last == null) {
127 last = current;
130 if (current instanceof StringExpression && last instanceof StringExpression) {
131 // Last and current are both strings - combine them.
133 StringExpression lastString = (StringExpression) last;
134 last = new StringExpression(lastString.getValue() + currentString.getValue());
136 out.add(last);
137 last = current;
140 out.add(last);
    [all...]
  /external/valgrind/main/coregrind/
m_options.c 300 HChar const* last = VG_(clo_trace_children_skip); local
302 while (*last) {
305 HChar const* first = consume_commas(last);
306 last = consume_field(first);
307 if (first == last)
309 vg_assert(last > first);
312 patt = VG_(calloc)("m_options.swttc.1", last - first + 1, 1);
313 VG_(memcpy)(patt, first, last - first);
314 vg_assert(patt[last-first] == 0);
325 HChar const* last = VG_(clo_trace_children_skip_by_arg) local
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGRootInlineBox.cpp 232 static inline void swapItemsInVector(Vector<float>& firstVector, Vector<float>& lastVector, unsigned first, unsigned last)
235 firstVector.at(first) = lastVector.at(last);
236 lastVector.at(last) = temp;
249 SVGTextLayoutAttributes*& first, SVGTextLayoutAttributes*& last)
252 last = 0;
259 if (!last && lastContext == current.context())
260 last = &current;
261 if (first && last)
266 ASSERT(last);
269 static inline void reverseInlineBoxRangeAndValueListsIfNeeded(void* userData, Vector<InlineBox*>::iterator first, Vector<InlineBox*>::iterator last)
    [all...]
  /external/harfbuzz_ng/src/
hb-set.cc 129 hb_codepoint_t last)
131 set->add_range (first, last);
144 hb_codepoint_t last)
146 set->del_range (first, last);
225 hb_codepoint_t *last)
227 return set->next_range (first, last);
  /libcore/luni/src/main/java/java/net/
HttpURLConnection.java 614 int last = mark + 3; local
615 if (last > response.length()) {
616 last = response.length();
618 responseCode = Integer.parseInt(response.substring(mark, last));
619 if (last + 1 <= response.length()) {
620 responseMessage = response.substring(last + 1);
  /external/v8/test/mjsunit/
cyrillic.js 35 LAST: "\u042f", // YA
36 last: "\u044f", // ya
50 LAST: "\u03a9", // OMEGA
51 last: "\u03c9", // omega
71 var last = lc ? chars.last : chars.LAST;
74 var last_other_case = lc ? chars.LAST : chars.last;
76 assertTrue(Range(first, last).test(first), 1)
    [all...]
  /external/zlib/src/examples/
gzjoin.c 271 /* Copy the compressed data from name, zeroing the last block bit of the last
273 boundary. If clr is false, then the last block becomes the last block of
282 int pos; /* where the "last block" bit is in byte */
283 int last; /* true if processing the last block */ local
308 /* inflate and copy compressed data, clear last-block bit if requested */
312 last = start[0] & 1;
313 if (last && clr
    [all...]
  /frameworks/base/core/java/android/os/
FileUtils.java 167 } else if (max < 0) { // "tail" mode: keep the last N
170 byte[] last = null;
173 if (last != null) rolled = true;
174 byte[] tmp = last; last = data; data = tmp;
179 if (last == null && len <= 0) return "";
180 if (last == null) return new String(data, 0, len);
183 System.arraycopy(last, len, last, 0, last.length - len)
    [all...]
  /bionic/libc/kernel/arch-mips/asm/
system.h 34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
  /development/ndk/platforms/android-9/arch-mips/include/asm/
system.h 34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
  /external/antlr/antlr-3.4/runtime/Perl5/examples/zero-one/
t-error.pl 22 last if $token->get_type() == $TLexer::EOF;
t.pl 17 last if $token->get_type() == $TLexer::EOF;
  /external/doclava/res/assets/templates/
jd_lists.cs 6 tags:[<?cs var:page.tags ?>], type:"<?cs var:page.type ?>" }<?cs if:!last(page) ?>,<?cs /if ?><?cs
lists.cs 3 ?> { id:<?cs var: page.id ?>, label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>", type:"<?cs var:page.type ?>", deprecated:"<?cs var:page.deprecated ?>" }<?cs if:!last(page) ?>,<?cs /if ?>

Completed in 2159 milliseconds

1 23 4 5 6 7 8 91011>>