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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-ifunc/
ifunc-9-x86.s 8 .type start,"function"
9 .global start
10 start: label
  /external/conscrypt/common/src/main/java/org/conscrypt/
Preconditions.java 70 * Ensures that {@code start} and {@code end} specify a valid <i>positions</i> in an array, list
74 * @param start a user-supplied index identifying a starting position in an array, list or string
78 * or if {@code end} is less than {@code start}
81 static void checkPositionIndexes(int start, int end, int size) {
83 if (start < 0 || end < start || end > size) {
84 throw new IndexOutOfBoundsException(badPositionIndexes(start, end, size));
88 private static String badPositionIndexes(int start, int end, int size) {
89 if (start < 0 || start > size)
    [all...]
  /external/guava/guava/src/com/google/common/io/
LineBuffer.java 59 int start = pos; local
63 line.append(cbuf, start, pos - start);
70 start = pos + 1;
74 line.append(cbuf, start, pos - start);
76 start = pos + 1;
83 line.append(cbuf, start, off + len - start);
  /external/toybox/toys/pending/
klogd.c 62 * "used" amount to track next read to start.
67 char *start, *line_start, msg_buffer[16348]; //LOG_LINE_LENGTH - Ring buffer size local
83 start = msg_buffer + used; //start updated for re-read.
85 size = klogctl(2, start, sizeof(msg_buffer) - used - 1);
87 size = xread(TT.fd, start, sizeof(msg_buffer) - used - 1);
90 start[size] = '\0'; //Ensure last line to be NUL terminated.
91 if (used) start = msg_buffer;
92 while(start) {
93 if ((line_start = strsep(&start, "\n")) != NULL && start != NULL) used = 0
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XMLStringFactoryImpl.java 66 * @param start The start position in the array.
71 public XMLString newstr(FastStringBuffer fsb, int start, int length)
73 return new XStringForFSB(fsb, start, length);
81 * @param start The start position in the array.
86 public XMLString newstr(char[] string, int start, int length)
88 return new XStringForChars(string, start, length);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
RangeValueIterator.java 19 * &lt;start, limit, value&gt; where
21 * <li> start is the starting integer of the result range
22 * <li> limit is 1 after the maximum integer that follows start, such that
23 * all integers between start and (limit - 1), inclusive, have the same
25 * <li> value is the integer value that all integers from start to (limit - 1)
29 * Hence value(start) = value(start + 1) = .... = value(start + n) = .... =
30 * value(limit - 1). However value(start -1) != value(start) an
67 public int start; field in class:RangeValueIterator.Element
    [all...]
  /external/icu/icu4c/source/common/
unistr_props.cpp 56 int32_t start; local
59 start = i;
70 if(start > 0) {
71 doReplace(0, start, 0, 0, 0);
  /external/icu/icu4c/source/i18n/
nortrans.cpp 104 // start and limit of the input range
105 int32_t start = offsets.start; local
107 if(start >= limit) {
121 int32_t length = limit - start;
122 _Replaceable_extractBetween(text, start, limit, input.getBuffer(length));
128 text.handleReplaceBetween(start, limit, normalized);
133 offsets.start = limit + delta;
139 UChar32 c = text.char32At(start);
141 int32_t prev = start;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
RangeValueIterator.java 18 * &lt;start, limit, value&gt; where
20 * <li> start is the starting integer of the result range
21 * <li> limit is 1 after the maximum integer that follows start, such that
22 * all integers between start and (limit - 1), inclusive, have the same
24 * <li> value is the integer value that all integers from start to (limit - 1)
28 * Hence value(start) = value(start + 1) = .... = value(start + n) = .... =
29 * value(limit - 1). However value(start -1) != value(start) an
69 public int start; field in class:RangeValueIterator.Element
    [all...]
  /external/javassist/src/main/javassist/
Translator.java 42 void start(ClassPool pool) method in interface:Translator
  /external/ltp/testcases/kernel/controllers/cpuctl_fj/
cpuctl_fj_cpu-hog.c 36 volatile int start = 0; variable
41 start = !start;
64 while (start) {
  /external/mesa3d/src/gallium/auxiliary/os/
os_time.h 83 os_time_timeout(int64_t start,
87 if (start <= end)
88 return !(start <= curr && curr < end);
90 return !((start <= curr) || (curr < end));
  /external/mesa3d/src/util/
bitscan.h 114 * int start, count, i;
116 * u_bit_scan_consecutive_range(&mask, &start, &count);
119 * ... process element (start+i)
123 u_bit_scan_consecutive_range(unsigned *mask, int *start, int *count)
126 *start = 0;
131 *start = ffs(*mask) - 1;
132 *count = ffs(~(*mask >> *start)) - 1;
133 *mask &= ~(((1u << *count) - 1) << *start);
137 u_bit_scan_consecutive_range64(uint64_t *mask, int *start, int *count)
140 *start = 0
    [all...]
  /external/perfetto/src/base/test/
vm_test_utils.h 26 bool IsMapped(void* start, size_t size);
  /external/syslinux/core/mem/
init.c 16 int scan_highmem_area(void *data, addr_t start, addr_t len,
23 dprintf("start = %x, len = %x, type = %d", start, len, type);
25 if (start < 0x100000 || start > E820_MEM_MAX
29 if (start < __com32.cs_memsize) {
30 len -= __com32.cs_memsize - start;
31 start = __com32.cs_memsize;
33 if (len > E820_MEM_MAX - start)
34 len = E820_MEM_MAX - start;
    [all...]
  /external/syslinux/gpxe/src/arch/i386/core/
rdtsc_timer.c 44 unsigned long start; local
51 start = currticks();
55 elapsed = ( currticks() - start );
62 elapsed = ( currticks() - start );
  /external/syslinux/gpxe/src/include/gpxe/
hidemem.h 15 extern void hide_umalloc ( physaddr_t start, physaddr_t end );
  /external/v8/src/mips64/
cpu-mips64.cc 25 void CpuFeatures::FlushICache(void* start, size_t size) {
34 char *end = reinterpret_cast<char *>(start) + size;
36 reinterpret_cast<intptr_t>(start), reinterpret_cast<intptr_t>(end), 0);
40 res = syscall(__NR_cacheflush, start, size, ICACHE);
  /frameworks/base/core/java/android/text/
SpannedString.java 47 private SpannedString(CharSequence source, int start, int end) {
49 super(source, start, end, false /* ignoreNoCopySpan */);
52 public CharSequence subSequence(int start, int end) {
53 return new SpannedString(this, start, end);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
TextAttribute.java 26 public int start; field in class:TextAttribute
36 public TextAttribute(int start, int length, TextAlignment align,
39 this.start = start;
  /hardware/libhardware/modules/input/evdev/
BitUtils.h 24 /** Test whether any bits in the interval [start, end) are set in the array. */
25 bool testBitInRange(const uint8_t arr[], size_t start, size_t end);
  /hardware/qcom/gps/msm8909/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/msm8909w_3100/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/msm8909w_3100/utils/platform_lib_abstractions/loc_stub/include/
loc_stub_android_runtime.h 40 static pthread_t createJavaThread(const char* name, void (*start)(void *),
  /hardware/qcom/gps/msm8996/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);

Completed in 411 milliseconds

1 2 3 4 5 6 7 8 91011>>