HomeSort by relevance Sort by last modified time
    Searched refs:last (Results 1 - 25 of 5110) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
finin.s 3 .type last,%function
4 last: label
6 .size last,.-last
foon.s 3 .type last,%function
4 last: label
6 .size last,.-last
initn.s 3 .type last,%function
4 last: label
6 .size last,.-last
  /development/tools/idegen/src/
Stopwatch.java 22 long last = System.currentTimeMillis(); field in class:Stopwatch
26 Log.info(label + ": " + (now - last) + "ms");
27 last = now;
  /toolchain/binutils/binutils-2.27/binutils/
bfdtest1.c 35 bfd *last, *next; local
50 for (last = bfd_openr_next_archived_file (archive, NULL);
51 last;
52 last = next)
54 next = bfd_openr_next_archived_file (archive, last);
55 bfd_close (last);
58 for (last = bfd_openr_next_archived_file (archive, NULL);
59 last;
60 last = next)
62 next = bfd_openr_next_archived_file (archive, last);
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcsrchr.c 35 const wchar_t *last; local
37 last = NULL;
40 last = s;
46 return ((wchar_t *)last);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/
last.l 2 .*:4: Error: .* must be last in instruction group
3 .*:10: Error: .* must be last in instruction group
slot2.l 2 .*:11: Error: .* must be last in bundle
3 .*:16: Error: .* must be last in bundle
  /external/mesa3d/src/compiler/glsl/
ir_basic_block.h 26 ir_instruction *last,
  /external/valgrind/memcheck/tests/
sbfragment.stdout.exp 1 after 3000 loops, last size block requested 96032008
  /external/tensorflow/tensorflow/core/kernels/
fractional_pool_common.h 27 static inline void RandomShuffle(Iter first, Iter last, const Random& uniform) {
28 if (first == last) {
31 const auto stop = last - 1;
34 iter_swap(i, i + uniform(last - i));
  /bionic/libc/upstream-openbsd/lib/libc/string/
strtok.c 35 static char *last; local
37 return strtok_r(s, delim, &last);
42 strtok_r(char *s, const char *delim, char **last)
48 if (s == NULL && (s = *last) == NULL)
62 *last = NULL;
80 *last = s;
  /external/libexif/test/
test-sorted.c 33 ExifTag last = 0, current; local
34 num = exif_tag_table_count() - 1; /* last entry is a NULL terminator */
37 if (current < last) {
46 last = current;
  /frameworks/base/core/java/android/content/
ContentUris.java 73 * Converts the last path segment to a long.
76 * stored in the last segment.
79 * @throws NumberFormatException if the last segment isn't a number
81 * @return the long conversion of the last segment or -1 if the path is
85 String last = contentUri.getLastPathSegment(); local
86 return last == null ? -1 : Long.parseLong(last);
  /external/curl/lib/
strtok.h 28 char *Curl_strtok_r(char *s, const char *delim, char **last);
  /external/curl/src/
slist_wc.c 29 /* The last #include files should be: */
53 list->last = new_item;
57 list->last->next = new_item;
58 list->last = list->last->next;
slist_wc.h 28 /* linked-list structure with last node cache for easysrc */
31 struct curl_slist *last; member in struct:slist_wc
  /external/libpcap/missing/
strtok_r.c 44 pcap_strtok_r(char *s, const char *delim, char **last)
49 if (s == NULL && (s = *last) == NULL)
63 *last = NULL;
81 *last = s;
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_indexing.cpp 36 void db_LeanPartitionOnPivot(double pivot,double *dest,const double *source,long first,long last,long *first_equal,long *last_equal)
45 s_top=source+last;
47 d_top=dest+last;
62 long last=nr_elements-1; local
76 for(;last-first>2;)
78 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2]);
79 db_LeanPartitionOnPivot(pivot,dest,source,first,last,&first_equal,&last_equal);
81 if(first_equal>pos) last=first_equal-1;
95 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2])
    [all...]
  /external/syslinux/gpxe/src/include/
stdarg.h 7 #define va_start( ap, last ) __builtin_va_start ( ap, last )
  /external/valgrind/none/tests/amd64-linux/
map_32bits.stderr.exp 2 last mmap ok: 0x........
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
PlaybackSeekProviderSample.java 27 public PlaybackSeekProviderSample(long first, long last, int numSeekPositions) {
30 mSeekPositions[i] = first + i * (last - first) / (numSeekPositions - 1);
  /external/python/cpython2/Doc/includes/
noddy2.c 7 PyObject *last; /* last name */ member in struct:__anon32490
15 Py_XDECREF(self->last);
33 self->last = PyString_FromString("");
34 if (self->last == NULL)
49 PyObject *first=NULL, *last=NULL, *tmp; local
51 static char *kwlist[] = {"first", "last", "number", NULL};
54 &first, &last,
65 if (last) {
66 tmp = self->last;
    [all...]
  /external/python/cpython3/Doc/includes/
noddy2.c 7 PyObject *last; /* last name */ member in struct:__anon33043
15 Py_XDECREF(self->last);
32 self->last = PyUnicode_FromString("");
33 if (self->last == NULL) {
47 PyObject *first=NULL, *last=NULL, *tmp; local
49 static char *kwlist[] = {"first", "last", "number", NULL};
52 &first, &last,
63 if (last) {
64 tmp = self->last;
    [all...]
  /external/skia/src/core/
SkEdgeBuilder.cpp 21 SkEdgeBuilder::Combine SkEdgeBuilder::CombineVertical(const SkEdge* edge, SkEdge* last) {
22 if (last->fCurveCount || last->fDX || edge->fX != last->fX) {
25 if (edge->fWinding == last->fWinding) {
26 if (edge->fLastY + 1 == last->fFirstY) {
27 last->fFirstY = edge->fFirstY;
30 if (edge->fFirstY == last->fLastY + 1) {
31 last->fLastY = edge->fLastY;
36 if (edge->fFirstY == last->fFirstY)
    [all...]

Completed in 659 milliseconds

1 2 3 4 5 6 7 8 91011>>