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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/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.25/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.25/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/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
  /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;
  /development/tools/yuv420sp2rgb/
debug.c 9 int i, last; local
13 for (i = last = 0; i < len; i++) {
22 while (last < i) {
23 if (isprint(pchr[last]))
24 fputc(pchr[last], s);
29 last++;
  /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);
  /development/perftests/panorama/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...]
  /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/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/utils/
OrthoCamController.java 26 final Vector3 last = new Vector3(-1, -1, -1); field in class:OrthoCamController
36 if (!(last.x == -1 && last.y == -1 && last.z == -1)) {
37 camera.unproject(delta.set(last.x, last.y, 0));
41 last.set(x, y, 0);
47 last.set(-1, -1, -1);
  /external/valgrind/none/tests/amd64-linux/
map_32bits.stderr.exp 2 last mmap ok: 0x........
  /external/google-breakpad/src/common/linux/
linux_libc_support_unittest.cc 171 const char* last; local
173 last = my_read_hex_ptr(&result, "");
175 ASSERT_EQ(*last, 0);
177 last = my_read_hex_ptr(&result, "0");
179 ASSERT_EQ(*last, 0);
181 last = my_read_hex_ptr(&result, "0123");
183 ASSERT_EQ(*last, 0);
185 last = my_read_hex_ptr(&result, "0123a");
187 ASSERT_EQ(*last, 0);
189 last = my_read_hex_ptr(&result, "0123a-")
196 const char* last; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/
max_element.pass.cpp 15 // max_element(Iter first, Iter last);
24 test(Iter first, Iter last)
26 Iter i = std::max_element(first, last);
27 if (first != last)
29 for (Iter j = first; j != last; ++j)
33 assert(i == last);
min_element.pass.cpp 15 // min_element(Iter first, Iter last);
24 test(Iter first, Iter last)
26 Iter i = std::min_element(first, last);
27 if (first != last)
29 for (Iter j = first; j != last; ++j)
33 assert(i == last);
max_element_comp.pass.cpp 15 // max_element(Iter first, Iter last, Compare comp);
25 test(Iter first, Iter last)
27 Iter i = std::max_element(first, last, std::greater<int>());
28 if (first != last)
30 for (Iter j = first; j != last; ++j)
34 assert(i == last);
62 void test_eq0(Iter first, Iter last, Pred p)
64 assert(first == std::max_element(first, last, p));
  /external/curl/tests/unit/
unit1308.c 46 struct curl_httppost* last = NULL; variable in typeref:struct:curl_httppost
50 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
57 fail_unless(post == last, "post and last weren't the same");
59 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
65 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
79 post = last = NULL;
81 rc = curl_formadd(&post, &last,
  /external/libcxx/test/std/experimental/string.view/string.view.iterators/
rbegin.pass.cpp 27 const size_t last = s.size() - 1; local
28 assert( *b == s[last]);
29 assert( &*b == &s[last]);
30 assert( *cb1 == s[last]);
31 assert(&*cb1 == &s[last]);
32 assert( *cb2 == s[last]);
33 assert(&*cb2 == &s[last]);

Completed in 553 milliseconds

1 2 3 4 5 6 7 8 91011>>