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

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_texture.h 35 unsigned shader, unsigned start,
40 unsigned start, unsigned nr,
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_heap.h 41 * The pattern to free the whole heap is to start with the first node and then
52 unsigned start; member in struct:nouveau_heap
59 nouveau_heap_init(struct nouveau_heap **heap, unsigned start,
  /external/mesa3d/src/mesa/math/
m_translate.h 40 * \param start first element in source array to convert
51 GLuint start,
58 GLuint start,
65 GLuint start,
73 GLuint start,
81 GLuint start,
90 GLuint start,
99 GLuint start,
106 GLuint start,
  /external/pdfium/testing/
range_set.cpp 38 auto start = ranges_.upper_bound(fixed_range); local
39 if (start != ranges_.begin())
40 --start; // start now points to the key equal or lower than offset.
42 if (start->second < fixed_range.first)
43 ++start; // start element is entirely before current range, skip it.
47 if (start == end) { // No ranges to merge.
54 const int new_start = std::min<size_t>(start->first, fixed_range.first);
57 ranges_.erase(start, ++end)
    [all...]
  /external/python/cpython3/Lib/test/dtracedata/
call_stack.py 23 def start(): function
30 start()
gc.py 3 def start(): function
13 start()
  /external/strace/tests/
fill_memory.c 4 fill_memory_ex(void *ptr, size_t size, unsigned char start,
11 p[i] = start + i % period;
  /external/strace/tests-m32/
fill_memory.c 4 fill_memory_ex(void *ptr, size_t size, unsigned char start,
11 p[i] = start + i % period;
  /external/strace/tests-mx32/
fill_memory.c 4 fill_memory_ex(void *ptr, size_t size, unsigned char start,
11 p[i] = start + i % period;
  /external/syslinux/com32/lib/sys/
sleep.c 11 clock_t start = times(NULL); local
13 while (times(NULL) - start < msec)
  /external/testng/src/test/java/test/listeners/
SuiteListener.java 7 public static int start = 0; field in class:SuiteListener
17 start++;
  /external/webrtc/webrtc/base/
maccocoasocketserver_unittest.mm 35 uint32_t start = Time();
37 EXPECT_GE(TimeSince(start), 1000);
44 uint32_t start = Time();
45 thread.Start();
47 EXPECT_LT(TimeSince(start), 10000);
  /frameworks/av/media/libaudioclient/aidl/android/media/
IAudioRecord.aidl 24 /* After it's created the track is not active. Call start() to
27 void start(int /*AudioSystem::sync_event_t*/ event,
  /frameworks/base/core/java/android/net/
INetworkStatsSession.aidl 27 NetworkStats getDeviceSummaryForNetwork(in NetworkTemplate template, long start, long end);
30 NetworkStats getSummaryForNetwork(in NetworkTemplate template, long start, long end);
35 NetworkStats getSummaryForAllUid(in NetworkTemplate template, long start, long end, boolean includeTags);
39 NetworkStatsHistory getHistoryIntervalForUid(in NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end);
  /frameworks/base/core/java/android/text/
AndroidCharacter.java 59 * starting at <code>start</code>. East Asian Width is calculated based on
67 * @param start first character in array to measure
71 public native static void getEastAsianWidths(char[] src, int start,
80 * @param start first character in array to mirror
84 public native static boolean mirror(char[] text, int start, int count);
SpanWatcher.java 29 public void onSpanAdded(Spannable text, Object what, int start, int end);
34 public void onSpanRemoved(Spannable text, Object what, int start, int end);
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsManagerInternal.java 24 public abstract long getNetworkTotalBytes(NetworkTemplate template, long start, long end);
27 public abstract NetworkStats getNetworkUidBytes(NetworkTemplate template, long start, long end);
  /frameworks/minikin/include/minikin/
Measurement.h 24 float getRunAdvance(const float* advances, const uint16_t* buf, size_t start, size_t count,
27 size_t getOffsetForAdvance(const float* advances, const uint16_t* buf, size_t start, size_t count,
  /packages/apps/Contacts/tests/src/com/android/contacts/format/
SpannedTestUtils.java 53 * @param start The starting index.
56 public static void assertPrefixSpan(CharSequence seq, int start, int end) {
60 if (start > 0) {
61 Assert.assertEquals(0, getNumForegroundColorSpansBetween(spannable, 0, start - 1));
63 Assert.assertEquals(1, getNumForegroundColorSpansBetween(spannable, start, end));
68 private static int getNumForegroundColorSpansBetween(Spanned value, int start, int end) {
69 return value.getSpans(start, end, StyleSpan.class).length;
83 public static int getNextTransition(SpannableString seq, int start) {
84 return seq.nextSpanTransition(start, seq.length(), StyleSpan.class);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.capacity/
shrink_to_fit.pass.cpp 22 make(int size, int start = 0 )
26 if (start > 0)
28 init = (start+1) / b + ((start+1) % b != 0);
33 for (int i = 0; i < init-start; ++i)
37 for (int i = 0; i < start; ++i)
53 testN(int start, int N)
55 C c1 = make<C>(N, start);
  /system/tpm/trunks/
trunksd.conf 20 start on starting system-services
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
bork.d 8 0+ <start>:
nosep.d 8 0+ <start>:
separator.d 6 0+ <start>:
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
case-noexp-1.d 10 [0]+ <start>:
13 [ ]+8:[ ]+e8000040[ ]+pta/u 8 <start\+0x8>,tr4
15 [ ]+c:[ ]+e8000630[ ]+pta/l 10 <start\+0x10>,tr3
18 [ ]+14:[ ]+ebffee20[ ]+pta/l 0 <start>,tr2

Completed in 708 milliseconds

<<11121314151617181920>>