HomeSort by relevance Sort by last modified time
    Searched full:start (Results 1 - 25 of 32553) 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/helgrind/tests/
pth_spinlock.stderr.exp 0 Start of test.
  /external/valgrind/main/none/tests/ppc32/
bug129390-ppc32.stdout.exp 1 vmxcache: start
  /external/openssh/contrib/suse/
rc.config.sshd 2 # Start the Secure Shell (SSH) Daemon?
  /external/clang/test/CodeGen/
2002-09-19-StarInLabel.c 3 extern void start() __asm__("start");
6 void start() {} function
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/
bigorg.asm 3 dd end-start
4 start: label
  /external/linux-tools-perf/util/
svghelper.h 6 extern void open_svg(const char *filename, int cpus, int rows, u64 start, u64 end);
7 extern void svg_box(int Yslot, u64 start, u64 end, const char *type);
8 extern void svg_sample(int Yslot, int cpu, u64 start, u64 end);
9 extern void svg_waiting(int Yslot, u64 start, u64 end);
13 extern void svg_process(int cpu, u64 start, u64 end, const char *type, const char *name);
14 extern void svg_cstate(int cpu, u64 start, u64 end, int type);
15 extern void svg_pstate(int cpu, u64 start, u64 end, u64 freq);
20 extern void svg_wakeline(u64 start, int row1, int row2);
21 extern void svg_partial_wakeline(u64 start, int row1, char *desc1, int row2, char *desc2);
22 extern void svg_interrupt(u64 start, int row)
    [all...]
  /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/valgrind/main/drd/tests/
unit_bitmap.stderr.exp 0 Start of DRD BM unit test.
pth_spinlock.stderr.exp 2 Start of test.
  /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...]
  /external/chromium/chrome/browser/resources/options/chromeos/
proxy.css 4 -webkit-margin-start: 0px;
8 -webkit-margin-start: 0px;
  /external/dnsmasq/contrib/slackware-dnsmasq/
rc.dnsmasq.gz 
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
bin-ssym.asm 1 section foo start=0x10 vstart=0x6000
2 mov si, section.foo.start
5 ;mov dx, section.foo.vstart-section.foo.start
  /system/core/toolbox/
start.c 13 property_set("ctl.start", argv[1]);
16 property_set("ctl.start", "surfaceflinger");
17 property_set("ctl.start", "zygote");
  /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/chromium_org/net/quic/
quic_clock_test.cc 15 QuicTime start(base::TimeTicks::Now());
19 EXPECT_LE(start, now);
26 base::Time start = base::Time::Now(); local
30 // If end > start, then we can check now is between start and end.
31 if (end > start) {
32 EXPECT_LE(static_cast<uint64>(start.ToTimeT()), now.ToUNIXSeconds());
  /external/chromium_org/v8/test/cctest/
test-fixed-dtoa.cc 49 CHECK_EQ("1", buffer.start());
53 CHECK_EQ("1", buffer.start());
57 CHECK_EQ("1", buffer.start());
61 CHECK_EQ("4294967295", buffer.start());
65 CHECK_EQ("4294967296", buffer.start());
69 CHECK_EQ("1", buffer.start());
74 CHECK_EQ("999999999999999868928", buffer.start());
79 CHECK_EQ("6999999999999998951424", buffer.start());
83 CHECK_EQ("15", buffer.start());
87 CHECK_EQ("155", buffer.start());
    [all...]
  /external/v8/test/cctest/
test-fixed-dtoa.cc 49 CHECK_EQ("1", buffer.start());
53 CHECK_EQ("1", buffer.start());
57 CHECK_EQ("1", buffer.start());
61 CHECK_EQ("4294967295", buffer.start());
65 CHECK_EQ("4294967296", buffer.start());
69 CHECK_EQ("1", buffer.start());
74 CHECK_EQ("999999999999999868928", buffer.start());
79 CHECK_EQ("6999999999999998951424", buffer.start());
83 CHECK_EQ("15", buffer.start());
87 CHECK_EQ("155", buffer.start());
    [all...]
  /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...]
  /external/chromium_org/content/browser/resources/media/
disjoint_range_set.js 9 * specified by (start, end) can be added and removed at will. It is used to
25 * Deletes all ranges intersecting with (start ... end) and returns the
27 * @param {int} start The start of the range to remove.
31 * @return {Object} The start and end of the newly cleared range.
33 clearRange: function(start, end, sloppiness) {
35 var result = {start: start, end: end};
39 // A range intersects another if its start lies within the other range
41 if ((rangeStart >= start && rangeStart <= (end + sloppiness)) |
    [all...]
  /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/chromium_org/third_party/icu/source/common/
cwchar.c 24 wchar_t *start=dst; local
32 return start;
36 wchar_t *start=dst; local
41 return start;
45 const wchar_t *start=src; local
49 return src-start;
  /external/eigen/doc/examples/
class_VectorBlock.cpp 8 segmentFromRange(MatrixBase<Derived>& v, int start, int end)
10 return Eigen::VectorBlock<Derived>(v.derived(), start, end-start);
15 segmentFromRange(const MatrixBase<Derived>& v, int start, int end)
17 return Eigen::VectorBlock<const Derived>(v.derived(), start, end-start);
  /external/icu4c/common/
cwchar.c 24 wchar_t *start=dst; local
32 return start;
36 wchar_t *start=dst; local
41 return start;
45 const wchar_t *start=src; local
49 return src-start;

Completed in 2672 milliseconds

1 2 3 4 5 6 7 8 91011>>