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

<<11121314151617181920>>

  /sdk/emulator/opengl/tests/ut_renderer/
RenderingThread.cpp 357 size_t last = m_glDec.decode(readBuf.buf(), readBuf.validData(), m_stream); local
358 if (last > 0) {
360 readBuf.consume(last);
365 size_t last = m_gl2Dec.decode(readBuf.buf(), readBuf.validData(), m_stream); local
366 if (last > 0) {
367 readBuf.consume(last);
373 size_t last = m_utDec.decode(readBuf.buf(), readBuf.validData(), m_stream); local
374 if (last > 0) {
375 readBuf.consume(last);
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 228 SsaBasicBlock last = wParentBucket.remove(lastItem); local
229 SsaBasicBlock U = eval(last);
231 < info[last.getIndex()].semidom) {
232 domInfos[last.getIndex()].idom = U.getIndex();
234 domInfos[last.getIndex()].idom = wInfo.parent.getIndex();
  /dalvik/vm/jdwp/
JdwpMain.cpp 423 * Return the time, in milliseconds, since the last debugger activity.
435 s8 last = dvmQuasiAtomicRead64(&state->lastActivityWhen); local
438 if (last == 0) {
439 ALOGV("+++ last=busy");
445 assert(now >= last);
447 ALOGV("+++ debugger interval=%lld", now - last);
448 return now - last;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
Dominators.java 228 SsaBasicBlock last = wParentBucket.remove(lastItem); local
229 SsaBasicBlock U = eval(last);
231 < info[last.getIndex()].semidom) {
232 domInfos[last.getIndex()].idom = U.getIndex();
234 domInfos[last.getIndex()].idom = wInfo.parent.getIndex();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
ChangeTimeScaleTrack.java 166 TimeToSampleBox.Entry last = entries2.peekLast(); local
177 if (last == null) {
179 } else if (last.getDelta() != x) {
182 last.setCount(last.getCount() + 1);
  /external/openssl/crypto/ocsp/
ocsp_cl.c 235 int OCSP_resp_find(OCSP_BASICRESP *bs, OCSP_CERTID *id, int last)
241 if (last < 0) last = 0;
242 else last++;
244 for (i = last; i < sk_OCSP_SINGLERESP_num(sresp); i++)
  /external/oprofile/libregex/
op_regex.cpp 117 string last, expanded(input); local
120 last = expanded;
121 expanded = substitute_definition(last);
122 if (expanded == last)
129 return last;
  /external/quake/quake/src/QW/qwfwd/
qwfwd.c 68 time_t last; member in struct:peer
220 time(&p->last);
231 time(&p->last);
240 time(&p->last);
251 if (time(NULL) - p->last > 300) {
  /external/valgrind/main/coregrind/m_initimg/
simple_huffman.c 157 last byte in the stream may look partially undefined. */
226 UInt last )
231 if( first == last )
250 for( k = first; k <= last; ++ k )
257 for( k = first; size_a < ((size+1)>>1) && k < last; ++ k )
295 first_b, last );
  /external/webkit/Source/WebCore/platform/graphics/
Gradient.cpp 158 if (value >= 1 || value >= m_stops.last().stop) {
159 *r = m_stops.last().red;
160 *g = m_stops.last().green;
161 *b = m_stops.last().blue;
162 *a = m_stops.last().alpha;
  /external/webkit/Source/WebKit2/UIProcess/
WebBackForwardList.cpp 75 m_page->backForwardRemovedItem(m_entries.last()->itemID());
76 removedItems.append(m_entries.last().release());
204 unsigned last = m_current + size; local
205 ASSERT(last < m_entries.size());
206 for (unsigned i = m_current + 1; i <= last; ++i)
  /bionic/tests/
benchmark_main.cpp 133 int last = iterations; local
139 iterations = std::max(last + 1, std::min(iterations + iterations/2, 100*last));
  /dalvik/vm/
PointerSet.cpp 36 const void* last = NULL; local
41 if (cur < last)
43 last = cur;
  /external/blktrace/btt/
list.h 195 struct list_head *last = list->prev; local
201 last->next = at;
202 at->prev = last;
  /external/chromium/base/
time_win_unittest.cc 49 TimeTicks last = TimeTicks::Now(); local
52 int64 milliseconds = (now - last).InMilliseconds();
57 last = now;
  /external/e2fsprogs/misc/
findsuper.c 80 * has the last time e2fsck or tune2fs wrote to the filesystem.
119 time_t tm, last = time(0); local
198 diff = now - last;
211 last = now;
  /external/eigen/Eigen/src/OrderingMethods/
Amd.h 122 Index* last = perm.indices().data(); /* use P as workspace for last */ local
135 last[i] = -1;
169 if(head[d] != -1) last[head[d]] = i;
179 if(next[k] != -1) last[next[k]] = -1;
235 if(next[i] != -1) last[next[i]] = last[i];
236 if(last[i] != -1) /* remove i from degree list */
238 next[last[i]] = next[i];
336 last[i] = h; /* save hash of i in last[i] *
    [all...]
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 825 * Returns the index of the last matching character in a character sequence, or {@code -1} if no
1005 int last;
1012 for (last = len - 1; last > first; last--) {
1013 if (!matches(sequence.charAt(last))) {
1018 return sequence.subSequence(first, last + 1).toString();
    [all...]
  /external/libppp/src/
hdlc.c 144 struct mbuf *last; local
152 for (last = bp; last->m_next; last = last->m_next)
155 if (last->m_size - last->m_offset - last->m_len >= 2) {
156 cp = MBUF_CTOP(last) + last->m_len
    [all...]
  /external/yaffs2/yaffs2/
devextras.h 167 struct list_head *last = list->prev; local
173 last->next = at;
174 at->prev = last;
  /libcore/luni/src/main/java/java/lang/reflect/
Proxy.java 120 int last = name.lastIndexOf('.'); local
121 String p = last == -1 ? "" : name.substring(0, last);
  /system/core/libcutils/tests/memset_mips/
memset_omips.S 61 addu a3, a0 # a3 is last loop address +1
77 blez a2, .Lexit # Handle last 8 bytes (if cnt>0)
78 addu a3, a2, a0 # a3 is last address +1
  /external/zlib/src/
inflate.c 46 * - Unroll last copy for window match in inflate_fast()
115 state->last = 0;
365 Update the window with the last wsize (normally 32K) bytes written before
373 advantage, since only the last 32K of output is copied to the sliding window
588 When there is a window, goto inf_leave will update the window with the last
618 code last; /* parent table entry */ local
828 if (state->last) {
834 state->last = BITS(1);
839 state->last ? " (last)" : ""))
    [all...]
  /libcore/luni/src/main/java/java/util/
HugeEnumSet.java 69 private E last; field in class:HugeEnumSet.HugeEnumSetIterator
102 last = enums[ordinal];
107 return last;
111 if (last == null) {
115 HugeEnumSet.this.remove(last);
116 last = null;
179 // zero out unused bits on the last element
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchHandlerList.java 110 Entry last = get(size - 1); local
111 return last.getExceptionType().equals(CstType.OBJECT);

Completed in 922 milliseconds

<<11121314151617181920>>