HomeSort by relevance Sort by last modified time
    Searched defs:start (Results 451 - 475 of 4947) sorted by null

<<11121314151617181920>>

  /art/runtime/
memory_region.h 44 byte* start() const { return reinterpret_cast<byte*>(pointer_); } function in class:art::MemoryRegion
45 byte* end() const { return start() + size_; }
65 pointer_ = reinterpret_cast<void*>(from.start() + offset);
79 return reinterpret_cast<T*>(start() + offset);
  /art/test/036-finalizer/src/
Main.java 50 t.start();
78 t.start();
  /art/test/054-uncaught/src/
Main.java 31 t.start();
  /bionic/libc/kernel/common/linux/
android_pmem.h 36 unsigned long start; member in struct:android_pmem_platform_data
blkpg.h 39 long long start; member in struct:blkpg_partition
  /bionic/libc/upstream-freebsd/lib/libc/stdio/
mktemp.c 95 char *start, *trv, *suffp, *carryp; local
126 start = trv + 1;
129 memcpy(carrybuf, start, suffp - start);
167 for (trv = start, carryp = carrybuf;;) {
  /bootable/recovery/minzip/
SysUtil.c 49 off_t start, end; local
55 start = lseek(fd, 0L, SEEK_CUR);
57 (void) lseek(fd, start, SEEK_SET);
59 if (start == (off_t) -1 || end == (off_t) -1) {
64 length = end - start;
70 *start_ = start;
85 off_t start; local
91 if (getFileStartAndLength(fd, &start, &length) < 0)
120 off_t start; local
126 if (getFileStartAndLength(fd, &start, &length) < 0
    [all...]
  /bootable/recovery/tools/ota/
check-lost+found.c 57 time_t start = time(NULL); local
58 fprintf(out, "*** check-lost+found ***\nStarted: %s", ctime(&start));
  /cts/suite/audio_quality/lib/src/
FileUtil.cpp 115 int start = 0; local
119 start = 2;
122 size = vsnprintf(mBuffer + start, mBufferSize - start - 2, fmt, ap); // 2 for \n\0
127 if ((size + start + 2) > mBufferSize) {
139 size += start;
  /cts/tests/src/android/os/cts/
TestThread.java 48 start(); method
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
PlanetsSurfaceView.java 43 mWatchDog.start();
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
HtmlReport.java 58 t.start();
  /dalvik/dexgen/src/com/android/dexgen/rop/
ByteBlock.java 30 /** {@code >= 0;} bytecode offset (inclusive) of the start of the block */
31 private final int start; field in class:ByteBlock
33 /** {@code > start;} bytecode offset (exclusive) of the end of the block */
46 * @param start {@code >= 0;} bytecode offset (inclusive) of the start
48 * @param end {@code > start;} bytecode offset (exclusive) of the end
55 public ByteBlock(int label, int start, int end, IntList successors,
61 if (start < 0) {
62 throw new IllegalArgumentException("start < 0");
65 if (end <= start) {
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlock.java 30 /** {@code >= 0;} bytecode offset (inclusive) of the start of the block */
31 private final int start; field in class:ByteBlock
33 /** {@code > start;} bytecode offset (exclusive) of the end of the block */
46 * @param start {@code >= 0;} bytecode offset (inclusive) of the start
48 * @param end {@code > start;} bytecode offset (exclusive) of the end
55 public ByteBlock(int label, int start, int end, IntList successors,
61 if (start < 0) {
62 throw new IllegalArgumentException("start < 0");
65 if (end <= start) {
    [all...]
  /dalvik/libdex/
DexCatch.h 132 u4 start = tries[0].startAddr; local
134 if (address < start) {
138 u4 end = start + tries[0].insnCount;
  /dalvik/tests/036-finalizer/src/
Main.java 36 t.start();
64 t.start();
  /dalvik/tests/054-uncaught/src/
Main.java 17 t.start();
  /development/ndk/platforms/android-3/include/linux/
blkpg.h 34 long long start; member in struct:blkpg_partition
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ContactsFilterInstrumentation.java 37 // When this instrumentation is created, we simply want to start
40 start(); method
46 // First start the activity we are instrumenting -- the contacts
ContactsSelectInstrumentation.java 39 // When this instrumentation is created, we simply want to start
42 start(); method
48 // First start the activity we are instrumenting -- the contacts
59 // Monitor for the expected start activity call.
  /development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
ExpandingListView.java 321 s.start();
514 s.start();
  /external/apache-harmony/security/src/test/api/java/tests/api/java/security/
AccessControlContextTest.java 62 th.start();
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
LoadLocaleProviderTestHelper.java 31 thread.start();
  /external/apache-xml/src/main/java/org/apache/xml/utils/
ThreadControllerWrapper.java 71 t.start();
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSubstring.java 50 double start = m_arg1.execute(xctxt).num(); local
60 if (Double.isNaN(start))
65 start = -1000000;
70 start = Math.round(start);
71 startIndex = (start > 0) ? (int) start - 1 : 0;
77 int end = (int) (Math.round(len) + start) - 1;

Completed in 741 milliseconds

<<11121314151617181920>>