HomeSort by relevance Sort by last modified time
    Searched refs:initial (Results 1 - 25 of 425) 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/third_party/WebKit/Source/core/page/
PageScaleConstraints.h 46 PageScaleConstraints(float initial, float minimum, float maximum);
  /external/chromium_org/third_party/libjingle/source/talk/base/
crc32.h 37 // Updates a CRC32 checksum with |len| bytes from |buf|. |initial| holds the
39 uint32 UpdateCrc32(uint32 initial, const void* buf, size_t len);
  /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/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,
196 * @param initial Receives the InitialTimeZone, always not NULL
200 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;
IllegalFormatFlagsExceptionTest.java 64 public void assertDeserialized(Serializable initial,
67 SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial,
70 IllegalFormatFlagsException initEx = (IllegalFormatFlagsException) initial;
IllegalFormatPrecisionExceptionTest.java 61 public void assertDeserialized(Serializable initial,
64 SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial,
67 IllegalFormatPrecisionException initEx = (IllegalFormatPrecisionException) initial;
IllegalFormatWidthExceptionTest.java 63 public void assertDeserialized(Serializable initial,
66 SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial,
69 IllegalFormatWidthException initEx = (IllegalFormatWidthException) initial;
MissingFormatArgumentExceptionTest.java 65 public void assertDeserialized(Serializable initial,
68 SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial,
71 MissingFormatArgumentException initEx = (MissingFormatArgumentException) initial;

Completed in 855 milliseconds

1 2 3 4 5 6 7 8 91011>>