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

12 3 4 5 6 7 8 91011>>

  /external/openssl/apps/
app_rand.c 168 int last; local
174 last=0;
176 if (*p == '\0') last=1;
187 if (last) break;
  /external/oprofile/libpp/
symbol_container.cpp 72 it last = symbols_by_loc.upper_bound(&symbol); local
75 for ( ; first != last ; ++first)
symbol_sort.h 30 last enumerator in enum:sort_options::sort_order
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-fasta.js 6 var last = 42, A = 3877, C = 29573, M = 139968; variable
9 last = (last * A + C) % M;
10 return max * last / M;
37 var last = null;
39 if (last) table[c] += table[last];
40 last = c;
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-fasta.js 6 var last = 42, A = 3877, C = 29573, M = 139968; variable
9 last = (last * A + C) % M;
10 return max * last / M;
37 var last = null;
39 if (last) table[c] += table[last];
40 last = c;
  /external/webkit/Source/JavaScriptCore/parser/
ParserArena.cpp 74 ParserArenaRefCounted* ParserArena::last() const function in class:JSC::ParserArena
76 return m_refCountedObjects.last().get();
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_methods.c 113 struct eap_method *m, *last = NULL; local
124 last = m;
127 if (last)
128 last->next = method;
  /external/wpa_supplicant_8/src/eap_server/
eap_server_methods.c 113 struct eap_method *m, *last = NULL; local
124 last = m;
127 if (last)
128 last->next = method;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListScrollListener.java 66 int last = firstCell + cellCount - 1; local
67 mText.setText("Showing " + firstCell + "-" + last + "/" + itemCount);
  /frameworks/base/media/libmedia/
autodetect.cpp 21 uint16_t last; member in struct:CharRange
857 if (ch >= range->first && ch <= range->last)
859 if (ch > range->last)
  /frameworks/base/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...]
  /libcore/luni/src/main/java/java/text/
CharacterIterator.java 68 * @return the index one past the last character of the iteration.
85 public char last(); method in interface:CharacterIterator
  /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...]
  /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 LOGV("+++ last=busy");
445 assert(now > last);
447 LOGV("+++ debugger interval=%lld", now - last);
448 return now - last;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLFace.java 51 int last = mVertexList.size() - 1; local
52 if (last < 2) {
55 GLVertex vertex = mVertexList.get(last);
61 mVertexList.remove(last + 1);
62 vertex = mVertexList.get(last);
77 int last = mVertexList.size() - 1; local
80 GLVertex vn = mVertexList.get(last);
83 for (int i = 1; i < last; i++) {
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
RenderThread.cpp 113 size_t last = tInfo->m_glDec.decode(readBuf.buf(), readBuf.validData(), m_stream); local
114 if (last > 0) {
116 readBuf.consume(last);
122 last = tInfo->m_gl2Dec.decode(readBuf.buf(), readBuf.validData(), m_stream);
123 if (last > 0) {
125 readBuf.consume(last);
132 last = m_rcDec.decode(readBuf.buf(), readBuf.validData(), m_stream);
133 if (last > 0) {
134 readBuf.consume(last);
  /external/e2fsprogs/lib/ext2fs/
kernel-list.h 95 struct list_head *last = list->prev; local
101 last->next = at;
102 at->prev = last;
  /external/junit/src/junit/swingui/
TestHierarchyRunView.java 57 Object last= path[vpath.size()-1]; local
58 path[vpath.size()]= model.getChild(last, index);
  /external/skia/src/pdf/
SkPDFCatalog.cpp 102 int last = fCatalog.count() - 1; local
104 //int last = fCatalog.count() - fFirstPageCount - 1;
107 // last = fCatalog.count() - 1;
113 stream->writeDecAsText(last - first + 1);
120 for (int i = first; i <= last; i++) {
  /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()) {
94 if (beforeChild == last)
95 beforeChild = last->firstChild();
96 last->addChild(child, beforeChild);
101 if (last && !last->isTableCell() && last->parent() && last->parent()->isAnonymous())
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListGetSelectedViewTest.java 58 View last = mListView.getChildAt(1); local
59 TouchUtils.clickView(this, last);
  /hardware/invensense/mlsdk/mllite/
compass.h 59 float last; member in struct:yas_thresh_filter
  /build/tools/rgb2565/
to565.c 104 unsigned short last, color, count; local
111 if ((color == last) && (count != 65535)) {
116 write(1, &last, 2);
120 last = color;
125 write(1, &last, 2);
  /dalvik/vm/
PointerSet.cpp 36 const void* last = NULL; local
41 if (cur < last)
43 last = cur;
  /development/tools/emulator/opengl/host/tools/emugen/
TypeFactory.cpp 84 size_t pos = 0, last; local
86 name = getNextToken(str, pos, &last, WHITESPACE);
91 pos = last + 1;
93 size = getNextToken(str, pos, &last, WHITESPACE);
98 pos = last + 1;
100 printString = getNextToken(str, pos, &last, WHITESPACE);
106 pos = last + 1;
108 pointerDef = getNextToken(str, pos, &last, WHITESPACE);

Completed in 563 milliseconds

12 3 4 5 6 7 8 91011>>