HomeSort by relevance Sort by last modified time
    Searched refs:last (Results 26 - 50 of 728) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/opencore/codecs_v2/video/m4v_h263/enc/src/
vlc_encode.h 24 Int PutCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
25 Int PutCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
33 Int PutCoeff_Inter_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
34 Int PutCoeff_Intra_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
35 Int PutRunCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
36 Int PutRunCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
37 Int PutLevelCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
38 Int PutLevelCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
  /external/opencore/oscl/oscl/osclutil/src/
oscl_priqueue.cpp 29 OSCL_EXPORT_REF void OsclPriorityQueueBase::push_heap(OsclAny* first, OsclAny* last)
32 * The task of the push_heap function is to take the last
37 * first and last arguments should be the begin() and end() iterators
41 int index = delta_T(first, last) - 1;
52 OSCL_EXPORT_REF void OsclPriorityQueueBase::pop_heap(OsclAny* first, OsclAny* last)
55 /* This function works by swapping the first and last values in
61 // swap the first and last values
62 pOpaqueType->swap(first, pVec->increment_T(last, -1));
66 int new_last_index = delta_T(first, last) - 1;
91 OSCL_EXPORT_REF OsclAny* OsclPriorityQueueBase::find_heap(const OsclAny* input, OsclAny* first, OsclAny* last)
    [all...]
oscl_priqueue.h 69 OSCL_IMPORT_REF void push_heap(OsclAny* first, OsclAny* last) ;
71 OSCL_IMPORT_REF void pop_heap(OsclAny* first, OsclAny* last) ;
73 OSCL_IMPORT_REF OsclAny* find_heap(const OsclAny* input, OsclAny* first, OsclAny* last) ;
85 //return delta from "first" to "last" expressed as a number of T elements.
86 int delta_T(OsclAny*first, OsclAny*last)
88 return ((int)last - (int)first) / pVec->sizeof_T;
182 void push_heap(iterator first, iterator last)
184 OsclPriorityQueueBase::push_heap(first, last);
187 void pop_heap(iterator first, iterator last)
189 OsclPriorityQueueBase::pop_heap(first, last);
    [all...]
  /frameworks/base/core/java/android/os/
FileUtils.java 168 } else if (max < 0) { // "tail" mode: keep the last N
171 byte[] last = null, data = 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...]
  /external/webkit/WebCore/rendering/
RenderTableRow.cpp 72 RenderObject* last = beforeChild; local
73 if (!last)
74 last = lastChild();
75 if (last && last->isAnonymous() && last->isTableCell()) {
76 last->addChild(child);
81 if (last && !last->isTableCell() && last->parent() && last->parent()->isAnonymous())
    [all...]
  /external/webkit/WebKit/chromium/src/
WebPluginListBuilderImpl.cpp 56 m_results->last()->mimes.append(info);
61 MimeClassInfo* info = m_results->last()->mimes.last();
  /dalvik/libcore/archive/src/main/native/
zip.h 31 struct JCLZipFile *last; member in struct:JCLZipFile
40 /* Fake JCLZipFile entry. last, next must be in the same position as JCLZipFile */
43 JCLZipFile *last; member in struct:JCLZipFileLink
  /external/clearsilver/util/
wildmat.c 22 ** '\0'.) The last return has ABORT instead of FALSE to avoid quadratic
25 ** only the last one does.
61 register int last; local
100 for (last = *p; *++p && *p != ']'; last = *p)
103 ? *text <= *++p && *text >= last : *text == *p)
125 register int last; local
164 for (last = toupper(*p); *++p && *p != ']'; last = toupper(*p))
167 ? toupper(*text) <= toupper(*++p) && toupper(*text) >= last : toupper(*text) == toupper(*p)
    [all...]
  /external/bluetooth/glib/glib/
glist.c 120 GList *last; local
128 last = g_list_last (list);
129 /* g_assert (last != NULL); */
130 last->next = new_list;
131 new_list->prev = last;
157 * list = g_list_prepend (list, "last");
274 GList *last; local
276 last = list;
277 while (last->next)
278 last = last->next
479 GList *last; local
512 GList *last; local
    [all...]
  /external/stlport/src/
num_put.cpp 27 // We assume, without checking, that *last is null and that there is enough
28 // space in the buffer to extend the number past [first, last).
31 __insert_grouping_aux(Char* first, Char* last, const string& grouping,
36 if (first == last)
47 Char* cur_group = last; // Points immediately beyond the rightmost
63 ++last;
64 copy_backward(cur_group, last, last + 1);
68 return (last - first) + sign + basechars;
135 __insert_grouping(char * first, char * last, const string& grouping
    [all...]
  /external/quake/quake/src/WinQuake/
gl_mesh.cpp 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]
202 mtriangle_t *last, *check; local
    [all...]
  /external/webkit/WebCore/platform/text/
BidiResolver.h 60 , last(WTF::Unicode::OtherNeutral)
67 , last(lastDir)
74 WTF::Unicode::Direction last; member in struct:WebCore::BidiStatus
80 return status1.eor == status2.eor && status1.last == status2.last && status1.lastStrong == status2.lastStrong && *(status1.context) == *(status2.context);
150 void setLastDir(WTF::Unicode::Direction lastDir) { m_status.last = lastDir; }
187 Iterator last; member in class:WebCore::BidiResolver
315 if (!emptyRun && eor != last) {
317 // bidi.sor ... bidi.eor ... bidi.last eor; need to append the bidi.sor-bidi.eor run or extend it through bidi.last
    [all...]
  /dalvik/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
  /external/apache-http/src/org/apache/commons/codec/language/
RefinedSoundex.java 168 char last, current; local
169 last = '*';
174 if (current == last) {
180 last = current;
  /external/openssl/apps/
app_rand.c 168 int last; local
174 last=0;
176 if (*p == '\0') last=1;
187 if (last) break;
  /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/WebKitTools/Scripts/
update-javascriptcore-test-results 43 last if /failures reported\.$/;
56 last if /failures reported\.$/;
  /external/v8/test/cctest/
test-ast.cc 46 CHECK_EQ(node, list->last());
65 CHECK_EQ(1, list.last());
71 CHECK_EQ(3, list.last());
74 CHECK_EQ(2, list.last());
82 CHECK_EQ(j, list.last());
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
ualgobase.h 49 /// Copy copies elements from the range [first, last) to the range
50 /// [result, result + (last - first)). That is, it performs the assignments
52 /// for every integer n from 0 to last - first, copy performs the assignment
58 inline OutputIterator copy (InputIterator first, InputIterator last, OutputIterator result)
60 for (; first != last; ++result, ++first)
81 /// \brief Copy copies elements from the range (last, first] to result.
83 /// Copies elements starting at last, decrementing both last and result.
86 inline OutputIterator copy_backward (InputIterator first, InputIterator last, OutputIterator result)
88 while (first != last)
    [all...]
ulist.h 49 void splice (iterator ip, list<T>& l, iterator first = NULL, iterator last = NULL);
61 /// Moves the range [first, last) from \p l to this list at \p ip.
63 void list<T>::splice (iterator ip, list<T>& l, iterator first, iterator last)
67 if (!last)
68 last = l.end();
69 insert (ip, first, last);
70 l.erase (first, last);
  /dalvik/libcore/luni/src/main/java/java/net/
HttpURLConnection.java 371 int last = mark + 3; local
372 if (last > response.length()) {
373 last = response.length();
375 responseCode = Integer.parseInt(response.substring(mark, last));
376 if (last + 1 <= response.length()) {
377 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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasSelection.java 142 int last = fqcn.lastIndexOf('.'); local
143 if (last > first) {
144 name = fqcn.substring(0, first) + ".." + fqcn.substring(last); // $NON-NLS-1$
151 int last = fqcn.lastIndexOf('.'); local
152 if (last > first) {
153 name = fqcn.substring(0, first) + ".." + fqcn.substring(last); // $NON-NLS-1$
  /external/zlib/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...]
  /external/opencore/oscl/oscl/osclbase/src/
oscl_vector.cpp 155 OSCL_EXPORT_REF OsclAny* Oscl_Vector_Base::erase(OsclAny* first, OsclAny* last)
160 destroy(first, last);
161 move(last, end(), first);
162 numelems -= (((uint32)last - (uint32)first) / sizeof_T);
204 OsclAny* Oscl_Vector_Base::move(OsclAny* first, OsclAny* last, OsclAny* result)
206 oscl_memmove(result, first, (uint32)last - (uint32)first);
207 return last;
210 OsclAny* Oscl_Vector_Base::copy(OsclAny* first, OsclAny* last, OsclAny* result)
212 while (first != last)
222 OsclAny* Oscl_Vector_Base::uninitialized_copy(OsclAny* first, OsclAny* last, OsclAny* result
    [all...]

Completed in 1664 milliseconds

12 3 4 5 6 7 8 91011>>