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

1 2 3 4 5 6 7 8 91011>>

  /system/extras/tests/bionic/libc/other/
test_vfprintf_leak.c 29 * the initial code leaked heap memory each time a formatted double was printed
37 size_t initial = dlmalloc_footprint(); local
49 printf( "OK: initial = %ld, final == %ld\n", (long)initial, (long)final );
52 fprintf(stderr, "KO: initial == %ld, final == %ld\n", (long)initial, (long)final );
  /external/eigen/bench/btl/generic_bench/timers/
STL_timer.hh 39 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
x86_timer.hh 86 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/
test_now_source.cc 17 scoped_refptr<TestNowSource> TestNowSource::Create(base::TimeTicks initial) {
18 return make_scoped_refptr(new TestNowSource(initial));
21 scoped_refptr<TestNowSource> TestNowSource::Create(int64_t initial) {
22 return make_scoped_refptr(new TestNowSource(initial));
30 TestNowSource::TestNowSource(base::TimeTicks initial)
31 : initial_(initial), now_() {
35 TestNowSource::TestNowSource(int64_t initial)
36 : initial_(base::TimeTicks::FromInternalValue(initial)), now_() {
50 "initial",
test_now_source.h 20 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/
core-submenu.css 16 font-weight: initial;
  /external/chromium_org/third_party/polymer/components-chromium/core-menu/
core-submenu.css 16 font-weight: initial;
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageScaleConstraints.h 46 PageScaleConstraints(float initial, float minimum, float maximum);
  /external/chromium_org/third_party/webrtc/base/
crc32.h 20 // 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/
condloadstore.c 5 #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, \
rounding-2.stdout.exp 0 initial rounding mode: 0
srnm.stdout.exp 0 initial rounding mode = 0
srnmb.stdout.exp 0 initial rounding mode = 0
srnmt.stdout.exp 0 initial rounding mode = 0
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
inspector_console_unittest.py 19 initial = self._tab.EvaluateJavaScript('window.__logCount')
22 return current > initial
  /external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
sysfs_power_monitor_unittest.py 182 initial = sysfs_power_monitor.SysfsPowerMonitor.ParseFreqSample(
186 self.assertDictEqual(initial, self.expected_initial_freq)
  /external/chromium_org/third_party/icu/source/i18n/unicode/
basictz.h 98 * 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/
basictz.h 98 * 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/
mmap_fcntl_bug.c 22 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)");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
MalformedInputExceptionTest.java 53 public void assertDeserialized(Serializable initial,
57 SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial,
60 MalformedInputException initEx = (MalformedInputException) initial;
UnmappableCharacterExceptionTest.java 54 public void assertDeserialized(Serializable initial,
58 SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial,
61 UnmappableCharacterException initEx = (UnmappableCharacterException) initial;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DuplicateFormatFlagsExceptionTest.java 64 public void assertDeserialized(Serializable initial,
67 SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial,
70 DuplicateFormatFlagsException initEx = (DuplicateFormatFlagsException) initial;
FormatFlagsConversionMismatchExceptionTest.java 81 public void assertDeserialized(Serializable initial,
84 SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial,
87 FormatFlagsConversionMismatchException initEx = (FormatFlagsConversionMismatchException) initial;
IllegalFormatCodePointExceptionTest.java 60 public void assertDeserialized(Serializable initial,
63 SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial,
66 IllegalFormatCodePointException initEx = (IllegalFormatCodePointException) initial;
IllegalFormatConversionExceptionTest.java 81 public void assertDeserialized(Serializable initial,
84 SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial,
87 IllegalFormatConversionException initEx = (IllegalFormatConversionException) initial;

Completed in 566 milliseconds

1 2 3 4 5 6 7 8 91011>>