HomeSort by relevance Sort by last modified time
    Searched defs:last (Results 1 - 25 of 2704) 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
  /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);
  /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;
  /external/curl/src/
slist_wc.h 28 /* linked-list structure with last node cache for easysrc */
31 struct curl_slist *last; member in struct:slist_wc
tool_cfgable.c 27 #include "memdebug.h" /* keep this as LAST include */
163 struct OperationConfig *last = config; local
166 while(last) {
167 struct OperationConfig *prev = last->prev;
169 free_config_fields(last);
170 free(last);
172 last = prev;
  /external/valgrind/none/tests/amd64-linux/
map_32bits.c 10 void *last; local
26 fprintf(stderr, "last mmap ok: %p\n", last);
29 last = res;
  /system/core/libpixelflinger/arch-arm64/
t32cb16blend.S 166 last: label
210 b last
  /system/core/libpixelflinger/
t32cb16blend.S 153 last: label
203 b last
  /external/libcap-ng/libcap-ng-0.7/bindings/python/test/
capng-test.py 11 last = capng.CAP_LAST_CAP variable
26 if len < 80 and last > 30:
27 last = 30 variable
29 print("Doing advanced bit tests for %d capabilities...\n" % (last))
30 for i in range(last+1):
  /external/syslinux/core/fs/xfs/
xfs_dir2.h 46 uint64_t last = 0; local
51 last = irec.br_startoff + irec.br_blockcount;
53 return (last == XFS_INFO(fs)->dirleafblk + (1 << XFS_INFO(fs)->dirblklog));
  /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...]
  /art/libdexfile/dex/
primitive_test.cc 28 int last = static_cast<int>(Primitive::Type::kPrimLast); local
29 for (int i = 0; i <= 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/compiler-rt/lib/sanitizer_common/
sanitizer_procmaps_linux.cc 32 char *last = proc_self_maps_.data + proc_self_maps_.len; local
33 if (current_ >= last) return false;
39 char *next_line = (char*)internal_memchr(current_, '\n', last - current_);
41 next_line = last;
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_erase/
iter_iter.pass.cpp 12 // iterator erase(const_iterator first, const_iterator last);
25 typename S::const_iterator last = s.cbegin() + pos + n; local
26 typename S::iterator i = s.erase(first, 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;
  /external/mesa3d/src/compiler/glsl/
ir_basic_block.cpp 52 ir_instruction *last,
57 ir_instruction *last = NULL; local
94 last = ir;
97 callback(leader, last, data);
ir_function_can_inline.cpp 30 * than as the last instruction. In lower_jumps.cpp, we can lower return
67 /* If the function is empty (no last instruction) or does not end with a
70 ir_instruction *last = (ir_instruction *)callee->body.get_tail(); local
71 if (last == NULL || !last->as_return())
  /external/parameter-framework/upstream/test/test-subsystem/
TESTSubsystemString.cpp 60 auto last = std::copy(begin(strValue), end(strValue), destination); local
63 *last = 0;
  /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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.modifiers/string_erase/
iter_iter.pass.cpp 12 // iterator erase(const_iterator first, const_iterator last);
25 typename S::const_iterator last = s.cbegin() + pos + n; local
26 typename S::iterator i = s.erase(first, last);
  /system/core/logcat/
logcatd_main.cpp 32 // Save and detect presence of -L or --last flag
34 bool last = false; local
38 if (!strcmp(argv[i], "-L") || !strcmp(argv[i], "--last")) last = true;
47 if (last) {
51 // Remove -L and --last flags from argument list
54 if (!*it || (strcmp(*it, "-L") && strcmp(*it, "--last"))) {
  /toolchain/binutils/binutils-2.27/gold/testsuite/
script_test_12a.c 59 int last = 0; local
66 if (next <= last)
68 last = next;

Completed in 580 milliseconds

1 2 3 4 5 6 7 8 91011>>