HomeSort by relevance Sort by last modified time
    Searched refs:start (Results 251 - 275 of 18938) sorted by null

<<11121314151617181920>>

  /hardware/qcom/gps/msm8998/utils/
LocThread.h 68 typedef pthread_t (*tCreate)(const char* name, void* (*start)(void*), void* arg);
75 // The obj will be deleted by LocThread if start()
79 bool start(tCreate creator, const char* threadName, LocRunnable* runnable, bool joinable = true);
80 inline bool start(const char* threadName, LocRunnable* runnable, bool joinable = true) { function in class:LocThread
81 return start(NULL, threadName, runnable, joinable);
  /hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_stub/include/
loc_stub_android_runtime.h 40 static pthread_t createJavaThread(const char* name, void (*start)(void *),
  /system/core/libsysutils/include/sysutils/
ServiceManager.h 25 int start(const char *name);
  /system/libhidl/transport/memory/1.0/
IMemory.hal 29 * start + length must be < size
31 * @param start Offset from start of buffer about to be updated.
34 updateRange(uint64_t start, uint64_t length);
37 * Notify that you are about to start reading all of this memory.
44 * @param start Offset from start of buffer about to be read.
47 readRange(uint64_t start, uint64_t length);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
shexpr-1.d 6 0+ <start>:
7 [ ]+0:[ ]+6f6e 286f ff0b[ ]+move\.d bff6f28 <start\+0xbff6f28>,\$?r6
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/
dv-srlz.s 5 start: label
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ppc/
e500-ill.s 3 start: label
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
abi-32.s 6 start: label
err-abi-32.s 9 start: label
err-abi-64.s 9 start: label
ptc-1.s 4 start: label
syntax-2.s 2 start: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
loc5.d 2 #source: start.s
6 #error: multiple definition of `__\.MMIX\.start\.\.text'
loc5m.d 2 #source: start.s
6 #error: multiple definition of `__\.MMIX\.start\.\.text'
loc7.d 2 #source: start.s
6 #error: multiple definition of `__\.MMIX\.start\.\.data'
loc7m.d 2 #source: start.s
6 #error: multiple definition of `__\.MMIX\.start\.\.data'
start.s 1 * Just a start symbol and some non-NOP padding.
  /external/smali/util/src/main/java/org/jf/util/
IndentingWriter.java 68 private void writeLine(char[] chars, int start, int len) throws IOException {
73 writer.write(chars, start, len);
80 private void writeLine(String str, int start, int len) throws IOException {
85 writer.write(str, start, len);
94 public void write(char[] chars, int start, int len) throws IOException {
95 final int end = start+len;
96 int pos = start;
99 writeLine(chars, start, pos-start);
104 start = pos
    [all...]
  /external/icu/icu4c/source/common/unicode/
unistr.h 381 * [<TT>start</TT>, <TT>start + length</TT>) with the characters
383 * (The parameters "start" and "length" are not applied to the other text "text".)
384 * @param start the offset at which the compare operation begins
394 inline int8_t compare(int32_t start,
400 * [<TT>start</TT>, <TT>start + length</TT>) with the characters
403 * @param start the offset at which the compare operation begins
406 * @param srcStart the offset into <TT>srcText</TT> to start comparison
415 inline int8_t compare(int32_t start,
    [all...]
  /frameworks/base/core/java/android/text/
AlteredCharSequence.java 66 public <T> T[] getSpans(int start, int end, Class<T> kind) {
67 return mSpanned.getSpans(start, end, kind);
82 public int nextSpanTransition(int start, int end, Class kind) {
83 return mSpanned.nextSpanTransition(start, end, kind);
100 public CharSequence subSequence(int start, int end) {
101 return AlteredCharSequence.make(mSource.subSequence(start, end),
102 mChars, mStart - start, mEnd - start);
105 public void getChars(int start, int end, char[] dest, int off) {
106 TextUtils.getChars(mSource, start, end, dest, off)
    [all...]
  /external/adhd/cras/src/dsp/tests/
crossover2_test.c 32 int start; local
33 for (start = 0; start < count; start += 2048)
34 crossover2_process(xo2, min(2048, count - start),
35 data0L + start, data0R + start,
36 data1L + start, data1R + start,
37 data2L + start, data2R + start)
    [all...]
  /external/swiftshader/third_party/subzero/crosstest/
test_stacksave.c 23 uint32_t test_basic_vla(uint32_t size, uint32_t start, uint32_t inc) {
25 uint32_t mid = start + ((size - start) / 2);
26 for (uint32_t i = start; i < size; ++i) {
29 return (vla[start] << 2) + (vla[mid] << 1) + vla[size - 1];
37 uint32_t test_vla_in_loop(uint32_t size, uint32_t start, uint32_t inc) {
39 for (uint32_t i = start; i < size; ++i) {
44 vla[j] = foo(start * j + inc);
53 uint32_t test_two_vlas_in_loops(uint32_t size, uint32_t start, uint32_t inc) {
55 for (uint32_t i = start; i < size; ++i)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveIntervalUnion.cpp 36 SegmentIter SegPos = Segments.find(RegPos->start);
39 SegPos.insert(RegPos->start, RegPos->end, &VirtReg);
42 SegPos.advanceTo(RegPos->start);
49 SegPos.insert(RegEnd->start, RegEnd->end, &VirtReg);
51 SegPos.insert(RegPos->start, RegPos->end, &VirtReg);
63 SegmentIter SegPos = Segments.find(RegPos->start);
72 RegPos = VirtReg.advanceTo(RegPos, SegPos.start());
76 SegPos.advanceTo(RegPos->start);
88 OS << " [" << SI.start() << ' ' << SI.stop() << "):"
135 // In most cases, the union will start before VirtReg
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_er_ssdp.c 26 char buf[MULTICAST_MAX_READ], *pos, *pos2, *start; local
59 for (start = buf; start && *start; start = pos) {
60 pos = os_strchr(start, '\n');
66 if (os_strstr(start, "schemas-wifialliance-org:device:"
69 if (os_strstr(start, "schemas-wifialliance-org:service:"
72 if (os_strncasecmp(start, "LOCATION:", 9) == 0) {
73 start += 9
    [all...]
  /external/skia/tests/
RRectInPathTest.cpp 15 SkPath::Direction* dir, unsigned* start) {
17 REPORTER_ASSERT(reporter, SkPathPriv::IsRRect(path, &out, dir, start));
19 recreatedPath.addRRect(out, *dir, *start);
44 SkPath::Direction dir, unsigned start) {
54 path.addRRect(in, dir, start);
58 REPORTER_ASSERT(reporter, outDir == dir && outStart == start);
63 SkPath::Direction dir, unsigned start) {
64 SkRRect out = inner_path_contains_rrect(reporter, in, dir, start);
72 SkPath::Direction dir, unsigned start) {
73 SkRRect out = inner_path_contains_rrect(reporter, in, dir, start);
    [all...]

Completed in 951 milliseconds

<<11121314151617181920>>