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

<<11121314151617181920>>

  /external/openssl/crypto/dso/
dso_win32.c 310 char last; local
341 last = filename[0];
342 switch(last)
416 while(last);
  /external/srec/srec/cfront/
sp_fft.c 241 when we compute two point butterflieswe at the last stage
550 /* Compute 2 point butterflies of the last stage */
603 ** queeze the real valued first and last component of
642 fftdata tr, ti, last; local
682 /* compute the real input fft, the real valued first and last component of
756 last = himul32(tr, tr);
757 maxval |= last;
772 data[n1] = last; /* now the Nyquist freq can be put in place */
  /external/v8/test/cctest/
cctest.h 61 static CcTest* last() { return last_; } function in class:CcTest
  /external/webkit/JavaScriptCore/
create_hash_table 141 last;
  /external/webkit/JavaScriptCore/runtime/
ArgList.h 131 JSValue last() function in class:JSC::MarkedArgumentBuffer
  /external/webkit/SunSpider/
sunspider-compare-results 93 last;
  /external/webkit/WebCore/inspector/front-end/
audits.css 87 #audit-result-view > .pane.expanded:nth-last-of-type(1) {
91 #audit-result-view .pane.expanded:nth-last-of-type(1) {
  /external/webkit/WebCore/platform/graphics/wince/
PlatformPathWince.h 146 FloatPoint lastPoint() const { return m_elements.isEmpty() ? FloatPoint(0, 0) : m_elements.last().lastPoint(); }
  /external/webkit/WebKitTools/Scripts/
parallelcl 49 # To find the start of the first filename, look for either the last space on the line.
50 # If the filename is quoted, the last character on the line will be a quote, so look for the quote before that.
52 print STDERR "Last character of first line = '" . substr($firstLine, -1, 1) . "'\n" if $debug;
210 last;
run-webkit-tests 576 last if /#EOF/;
579 last if /#EOF/;
728 last if /#EOF/;
767 last if /^error/ || /^diff:/;
    [all...]
  /frameworks/base/core/java/android/widget/
ExpandableListConnector.java 149 * last child's flat list position, so search right
563 /* Num children for this group is its last child's fl pos minus
795 // last position scanned so far
796 int last = seedGroupPosition; local
804 // True when we have looked at the last item in the data
821 hitLast = last == count - 1;
831 last++;
832 seedGroupPosition = last;
    [all...]
ListView.java 229 // It's OK to have some space below the last item if it is
776 * @param childrenBottom Last pixel where children can be drawn
881 * @param childrenBottom Last pixel where children can be drawn
2626 int last = firstPosition + getChildCount() - 1; local
    [all...]
  /dalvik/libcore/math/src/main/java/java/math/
BigDecimal.java 309 int last = offset + (len - 1); // last index to be copied local
317 if ((last >= in.length) || (offset < 0) || (len <= 0) || (last < 0)) {
323 if ((offset <= last) && (in[offset] == '+')) {
330 for (; (offset <= last) && (in[offset] != '.')
344 if ((offset <= last) && (in[offset] == '.')) {
348 for (; (offset <= last) && (in[offset] != 'e')
365 if ((offset <= last) && ((in[offset] == 'e') || (in[offset] == 'E'))) {
369 if ((offset <= last) && (in[offset] == '+'))
    [all...]
  /external/clearsilver/util/
neo_hdf.c 405 HDF_ATTR *attr, *last; local
414 last = attr;
426 last->next = attr->next;
436 last = attr;
439 last->next = (HDF_ATTR *) calloc(1, sizeof(HDF_ATTR));
440 if (last->next == NULL)
442 attr = last->next;
714 * at the last part of the HDF name) */
946 HDF *lp = NULL, *ln = NULL; /* last parent, last node *
1019 HDF_ATTR *copy, *last = NULL; local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/
NodeSetDTM.java 1135 * Return the last fetched node. Needed to support the UnionPathIterator.
1137 * @return the last fetched node.
    [all...]
  /external/opencore/tools_v2/build/make/
basic_defs.mk 37 # The last element is dropped.
  /external/qemu/
dcache.c 158 AddrRec *last = &trace_addr->buffer[kMaxNumAddrs]; local
159 for (ptr = trace_addr->buffer; ptr != last; ++ptr) {
  /external/v8/test/mjsunit/regress/
regress-326.js 36 assertEquals(42, nonArray[1], "sort largest last");
  /external/webkit/WebKit/android/nav/
CacheBuilder.h 219 const FocusTracker* last, int lastChildIndex);
224 Text* last, int end, int x, int y, IntRect* focusBounds,
  /frameworks/base/core/java/android/text/
TextUtils.java 130 public static int lastIndexOf(CharSequence s, char ch, int last) {
134 return ((String) s).lastIndexOf(ch, last);
136 return lastIndexOf(s, ch, 0, last);
140 int start, int last) {
141 if (last < 0)
143 if (last >= s.length())
144 last = s.length() - 1;
146 int end = last + 1;
838 // happens when ^ is the last character in the string.
    [all...]
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uspecial.h 234 string::const_pointer first (v), last (v + strlen(v));
237 for (; first < last; ++ first)
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 486 for (HashEntry<K,V> last = next;
487 last != null;
488 last = last.next) {
489 int k = last.hash & sizeMask;
492 lastRun = last;
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HttpURLConnectionImpl.java 1390 int last = mark + 3; local
    [all...]
  /external/bluetooth/glib/glib/
gutf8.c 245 /* only do the last len increment if we got a complete
292 * instead of forwards if @offset is in the last fourth of the string,
1597 const gchar *last; local
1666 const gchar *last; local
    [all...]
  /external/bluetooth/glib/gobject/
glib-mkenums.in 225 last if /^--$/;
238 last if not defined($ARGV[0]);
308 last;

Completed in 658 milliseconds

<<11121314151617181920>>