Searched refs:initial (Results 1 - 25 of 242) sorted by relevance

12345678910

/external/eigen/bench/btl/generic_bench/timers/
H A DSTL_timer.hh39 initial = time(0);
52 if (initial < final) {
54 initial = final;
69 // For saving initial and final times of a trial
70 time_t initial, final; member in class:STL_Timer
H A Dx86_timer.hh86 time_t initial, final; local
89 initial = time(0);
94 while(time(0)==initial);
96 initial = time(0);
101 while(time(0)==initial);
105 // INFOS("coarse grained time : "<< final-initial);
106 _frequency=_frequency*get_elapsed_time_in_second()/double(final-initial);
/external/chromium_org/cc/test/
H A Dtest_now_source.cc17 scoped_refptr<TestNowSource> TestNowSource::Create(base::TimeTicks initial) { argument
18 return make_scoped_refptr(new TestNowSource(initial));
21 scoped_refptr<TestNowSource> TestNowSource::Create(int64_t initial) { argument
22 return make_scoped_refptr(new TestNowSource(initial));
30 TestNowSource::TestNowSource(base::TimeTicks initial) argument
31 : initial_(initial), now_() {
35 TestNowSource::TestNowSource(int64_t initial) argument
36 : initial_(base::TimeTicks::FromInternalValue(initial)), now_() {
50 "initial",
H A Dtest_now_source.h20 static scoped_refptr<TestNowSource> Create(int64_t initial);
21 static scoped_refptr<TestNowSource> Create(base::TimeTicks initial);
42 explicit TestNowSource(int64_t initial);
43 explicit TestNowSource(base::TimeTicks initial);
/external/chromium_org/third_party/polymer/components/core-menu/
H A Dcore-submenu.css16 font-weight: initial;
/external/chromium_org/third_party/polymer/components-chromium/core-menu/
H A Dcore-submenu.css16 font-weight: initial;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageScaleConstraints.h46 PageScaleConstraints(float initial, float minimum, float maximum);
H A DPageScaleConstraints.cpp41 PageScaleConstraints::PageScaleConstraints(float initial, float minimum, float maximum) argument
42 : initialScale(initial), minimumScale(minimum), maximumScale(maximum) { }
87 // If the initial scale wasn't defined, set it to minimum scale now that we
/external/chromium_org/third_party/webrtc/base/
H A Dcrc32.h20 // Updates a CRC32 checksum with |len| bytes from |buf|. |initial| holds the
22 uint32 UpdateCrc32(uint32 initial, const void* buf, size_t len);
/external/valgrind/main/none/tests/s390x/
H A Dcondloadstore.c5 #define LOAD_REG_MEM(insn, s, ccset, initial, mask) \
7 register unsigned long target asm("1") = initial; \
24 "%d for cc %d: %16.16lX\n",s, initial, \
29 #define LOAD_REG_REG(insn, s, ccset, initial, mask) \
31 register unsigned long target asm("1") = initial; \
47 "%d for cc %d: %16.16lX\n",s, initial, \
51 #define STORE_REG_REG(insn, s, ccset, initial, mask) \
53 unsigned long target = initial; \
70 "%d for cc %d: %16.16lX\n",s, initial, \
H A Drounding-2.stdout.exp0 initial rounding mode: 0
H A Dsrnm.stdout.exp0 initial rounding mode = 0
H A Dsrnmb.stdout.exp0 initial rounding mode = 0
H A Dsrnmt.stdout.exp0 initial rounding mode = 0
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dinspector_console_unittest.py19 initial = self._tab.EvaluateJavaScript('window.__logCount')
22 return current > initial
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
H A Dsysfs_power_monitor_unittest.py182 initial = sysfs_power_monitor.SysfsPowerMonitor.ParseFreqSample(
186 self.assertDictEqual(initial, self.expected_initial_freq)
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dbasictz.h98 * the argument initial points to non-NULL <code>InitialTimeZoneRule</code> and
103 * @param initial Receives the initial timezone rule
111 virtual void getTimeZoneRules(const InitialTimeZoneRule*& initial,
130 * @param initial Receives the <code>InitialTimeZone</code>, always not NULL.
140 virtual void getSimpleRulesNear(UDate date, InitialTimeZoneRule*& initial,
200 * @param initial Receives the InitialTimeZone, always not NULL
204 void getTimeZoneRulesAfter(UDate start, InitialTimeZoneRule*& initial, UVector*& transitionRules,
/external/icu/icu4c/source/i18n/unicode/
H A Dbasictz.h98 * the argument initial points to non-NULL <code>InitialTimeZoneRule</code> and
103 * @param initial Receives the initial timezone rule
111 virtual void getTimeZoneRules(const InitialTimeZoneRule*& initial,
130 * @param initial Receives the <code>InitialTimeZone</code>, always not NULL.
140 virtual void getSimpleRulesNear(UDate date, InitialTimeZoneRule*& initial,
200 * @param initial Receives the InitialTimeZone, always not NULL
204 void getTimeZoneRulesAfter(UDate start, InitialTimeZoneRule*& initial, UVector*& transitionRules,
/external/valgrind/main/none/tests/
H A Dmmap_fcntl_bug.c22 off_t initial; local
32 initial = lseek(fd, 123, SEEK_SET);
33 if (123 != initial)
34 err(1, "initial off_t differs from 123 (TEST FAILED)");
36 err(1, "zero offset from initial differs from 123 (TEST FAILED)");
51 errx(1, "zero offset from initial after mmap differs from 123 (TEST FAILED)");
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
H A DSerializationTest.java224 * @param initial -
225 * initial object used for creating serialized form
229 void assertDeserialized(Serializable initial, Serializable deserialized); argument
234 public void assertDeserialized(Serializable initial,
237 Assert.assertEquals(initial, deserialized);
242 * Comparator for verifying that deserialized object is the same as initial.
245 public void assertDeserialized(Serializable initial,
248 Assert.assertSame(initial, deserialized);
256 public void assertDeserialized(Serializable initial, Serializable deserialized) {
258 Throwable initThr = (Throwable) initial;
656 copySerializable(Serializable initial) argument
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkTLazy.h153 SkTCopyOnFirstWrite(const T& initial) : fObj(&initial) {} argument
159 void init(const T& initial) { argument
162 fObj = &initial;
166 * Returns a writable T*. The first time this is called the initial object is cloned.
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_conv_adaptor_vcgen.h36 initial, enumerator in enum:agg::conv_adaptor_vcgen::status
43 m_status(initial)
68 m_status = initial;
90 case initial:
/external/skia/include/core/
H A DSkTLazy.h153 SkTCopyOnFirstWrite(const T& initial) : fObj(&initial) {} argument
159 void init(const T& initial) { argument
162 fObj = &initial;
166 * Returns a writable T*. The first time this is called the initial object is cloned.
/external/tremolo/Tremolo/
H A Divorbisfile.h101 extern int ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes);
103 char *initial, long ibytes, ov_callbacks callbacks);
105 extern int ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes);
107 char *initial, long ibytes, ov_callbacks callbacks);
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DStatementEventTest.java99 public void assertDeserialized(Serializable initial,
101 StatementEvent iniSt = (StatementEvent) initial;

Completed in 661 milliseconds

12345678910