HomeSort by relevance Sort by last modified time
    Searched refs:start (Results 1 - 25 of 10329) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/tasm/tests/exe/
exe.asm 2 start proc label
4 start endp
  /external/valgrind/main/none/tests/ppc32/
bug129390-ppc32.stdout.exp 1 vmxcache: start
  /external/clang/test/Sema/
builtins-aarch64.c 5 void __clear_cache(void *start, void *end);
8 void test_clear_cache_chars(char *start, char *end) {
9 __clear_cache(start, end);
12 void test_clear_cache_voids(void *start, void *end) {
13 __clear_cache(start, end);
  /external/clang/test/CodeGen/
2002-09-19-StarInLabel.c 3 extern void start() __asm__("start");
6 void start() {} function
  /external/qemu/distrib/zlib-1.2.3/
inffast.h 11 void inflate_fast OF((z_streamp strm, unsigned start));
  /external/chromium_org/chrome/browser/spellchecker/
word_trimmer_unittest.cc 11 size_t start = 0; local
13 EXPECT_EQ(base::string16(), TrimWords(&start, end, base::string16(), 0));
14 EXPECT_EQ(0UL, start);
18 size_t start = 0; local
21 TrimWords(&start, end, ASCIIToUTF16("one two three four"), 2));
22 EXPECT_EQ(0UL, start);
26 size_t start = 14; local
29 TrimWords(&start, end, ASCIIToUTF16("one two three four"), 2));
30 EXPECT_EQ(10UL, start);
34 size_t start = 14 local
42 size_t start = 18; local
50 size_t start = 4; local
58 size_t start = 23; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JSONParser.cpp 63 bool parseConstToken(const CharType* start, const CharType* end, const CharType** tokenEnd, const char* token)
65 while (start < end && *token != '\0' && *start++ == *token++) { }
68 *tokenEnd = start;
73 bool readInt(const CharType* start, const CharType* end, const CharType** tokenEnd, bool canHaveLeadingZeros)
75 if (start == end)
77 bool haveLeadingZero = '0' == *start;
79 while (start < end && '0' <= *start && *start <= '9')
    [all...]
  /frameworks/av/media/libeffects/loudness/dsp/core/
basic-inl.h 31 int start = start_index; local
33 while (end > start + 1) {
34 int i = (end + start) / 2;
38 start = i;
41 return start;
  /bionic/linker/arch/x86/
begin.c 35 void (*start)(void);
38 start = (void(*)(void))__linker_init(raw_args);
46 : : "r"(raw_args), "r"(start) :
  /external/chromium_org/third_party/WebKit/public/platform/
WebTimeRange.h 39 WebTimeRange() : start(0), end(0) { }
40 WebTimeRange(float s, float e) : start(s), end(e) { }
42 float start; member in struct:blink::WebTimeRange
  /external/chromium_org/ui/base/models/
table_model_observer.h 20 virtual void OnItemsChanged(int start, int length) = 0;
23 virtual void OnItemsAdded(int start, int length) = 0;
26 virtual void OnItemsRemoved(int start, int length) = 0;
  /external/compiler-rt/lib/
clear_cache.c 24 void __clear_cache(void* start, void* end)
34 sys_icache_invalidate(start, end-start);
  /bionic/libc/arch-mips/bionic/
cacheflush.c 43 * int cacheflush (long start, long end, long flags)
50 * instructions if available or call _flush_cache(start, len, BCACHE) directly
58 int cacheflush (long start, long end, long flags)
60 if (end < start) {
63 * start => addr
69 XLOG("called with (start,len) instead of (start,end)");
73 end += start;
81 * Modify "start" and "end" to avoid GCC 4.3.0-4.4.2 bug in
83 * "start" points to the first byte of the cache line
    [all...]
  /external/chromium_org/third_party/zlib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
  /external/chromium_org/tools/perf/metrics/
cpu_unittest.py 14 start = {'Browser': {'CpuProcessTime': 0, 'TotalTime': 0}}
16 self.assertEqual({'Browser': 0.25}, cpu._SubtractCpuStats(end, start))
19 self.assertRaises(AssertionError, cpu._SubtractCpuStats, start, end)
21 # An error is thrown if there's a process type in end that's not in start.
23 self.assertRaises(AssertionError, cpu._SubtractCpuStats, end, start)
25 # A process type will be ignored if there's an empty dict for start or end.
26 start['Renderer'] = {}
27 self.assertEqual({'Browser': 0.25}, cpu._SubtractCpuStats(end, start))
30 start['Renderer'] = {'CpuProcessTime': 0, 'TotalTime': 0}
32 cpu._SubtractCpuStats(end, start))
    [all...]
  /external/libvpx/libvpx/vp8/encoder/arm/
boolhuff_arm.c 35 int vp8_validate_buffer_arm(const unsigned char *start,
40 return validate_buffer(start, len, end, error);
  /external/zlib/src/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
  /frameworks/base/core/java/android/text/
TextDirectionHeuristic.java 27 * @param start start index, inclusive.
29 * {@code array.length - start}.
33 boolean isRtl(char[] array, int start, int count);
39 * @param start start index, inclusive.
41 * {@code CharSequence.length() - start}.
45 boolean isRtl(CharSequence cs, int start, int count);
  /frameworks/support/v4/java/android/support/v4/text/
TextDirectionHeuristicCompat.java 27 * @param start start index, inclusive.
29 * {@code array.length - start}.
33 boolean isRtl(char[] array, int start, int count);
39 * @param start start index, inclusive.
41 * {@code CharSequence.length() - start}.
45 boolean isRtl(CharSequence cs, int start, int count);
  /frameworks/base/graphics/java/android/graphics/drawable/
Animatable.java 26 void start(); method in interface:Animatable
  /frameworks/native/services/surfaceflinger/
DdmConnection.h 27 static void start(const char* name);
  /bootable/recovery/edify/
yydefs.h 22 int start, end; member in struct:__anon785
28 (Current).start = YYRHSLOC(Rhs, 1).start; \
31 (Current).start = YYRHSLOC(Rhs, 0).start; \
  /external/chromium_org/third_party/lcov/example/
example.c 25 static int start = 0; variable
37 start = atoi(argv[1]);
44 total1 = iterate_get_sum (start, end);
45 total2 = gauss_get_sum (start, end);
56 printf ("Success, sum[%d..%d] = %d\n", start, end, total1);
  /external/replicaisland/src/com/replica/replicaisland/
Lerp.java 21 public static float lerp(float start, float target, float duration, float timeSinceStart)
23 float value = start;
26 final float range = target - start;
28 value = start + (range * percent);
37 public static float ease(float start, float target, float duration, float timeSinceStart)
39 float value = start;
42 final float range = target - start;
46 value = start + ((range / 2.0f) * percent * percent * percent);
51 value = start + ((range / 2.0f) *
  /cts/tests/tests/os/src/android/os/cts/
SystemClockTest.java 26 long start = SystemClock.currentThreadTimeMillis(); local
29 assertFalse(end - 100 >= start);
35 long start = SystemClock.elapsedRealtime(); local
38 assertTrue(end - 100 >= start);
44 long start = SystemClock.currentThreadTimeMillis(); local
45 boolean actual = SystemClock.setCurrentTimeMillis(start + 10000);
53 long start = SystemClock.currentThreadTimeMillis(); local
56 assertFalse(end - 100 >= start);
58 start = SystemClock.elapsedRealtime();
61 assertTrue(end - 100 >= start);
72 long start = SystemClock.uptimeMillis(); local
    [all...]

Completed in 1701 milliseconds

1 2 3 4 5 6 7 8 91011>>