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

1 2 3 4 5 6 7 8 91011>>

  /bionic/tools/versioner/tests/slow_preprocessor_idempotence/
run.sh 4 versioner -o out/initial
5 versioner out/initial ../../dependencies -o out/second
6 diff -qrwB out/initial out/second
  /build/soong/ui/build/
environment_test.go 24 initial := &Environment{"TEST=1", "TEST2=0"}
25 initial.Unset("TEST")
26 got := initial.Environ()
33 initial := &Environment{"TEST2=0"}
34 initial.Unset("TEST")
35 got := initial.Environ()
42 initial := &Environment{}
43 initial.Set("TEST", "0")
44 got := initial.Environ()
51 initial := &Environment{"TEST=1"
    [all...]
  /external/autotest/site_utils/suite_scheduler/
forgiving_config_parser_unittest.py 28 # Create initial file.
29 initial = forgiving_config_parser.ForgivingConfigParser()
30 initial.add_section(section)
31 initial.set(section, option1, value1)
33 initial.write(conf_file)
41 initial.set(section, option2, value2)
42 initial.remove_option(section, option1)
44 initial.write(conf_file)
  /external/libdrm/tests/
random.c 41 * If initial seeds are not selected randomly, two instances of the PRNG
83 unsigned long initial; local
87 initial = drmRandom(state);
89 while (initial != drmRandom(state)) {
  /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/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
UnivariateRealSolverUtils.java 87 * <li> <code> lowerBound <= a < initial < b <= upperBound</code> </li>
94 * <code>a := initial -1; b := initial +1,</code> examines the value of the
109 * near <code>initial,</code> it is better to use
114 * @param initial initial midpoint of interval being expanded to
123 * is not positive, or initial is not between lowerBound and upperBound
126 double initial, double lowerBound, double upperBound)
128 return bracket( function, initial, lowerBound, upperBound,
134 * <li> <code> lowerBound <= a < initial < b <= upperBound</code> </li
    [all...]
RiddersSolver.java 72 public double solve(final double min, final double max, final double initial)
74 return solve(f, min, max, initial);
78 * Find a root in the given interval with initial value.
85 * @param initial the start value to use
94 final double min, final double max, final double initial)
97 return solve(f, min, max, initial);
101 * Find a root in the given interval with initial value.
108 * @param initial the start value to use
117 final double min, final double max, final double initial)
123 if (f.value(initial) == 0.0) { return initial;
    [all...]
LaguerreSolver.java 35 * Laguerre's method is global in the sense that it can start with any initial
99 public double solve(final double min, final double max, final double initial)
101 return solve(p, min, max, initial);
105 * Find a real root in the given interval with initial value.
112 * @param initial the start value to use
122 final double min, final double max, final double initial)
125 return solve(f, min, max, initial);
129 * Find a real root in the given interval with initial value.
136 * @param initial the start value to use
146 final double min, final double max, final double initial)
236 Complex initial = new Complex(0.5 * (min + max), 0.0); local
    [all...]
BrentSolver.java 104 public double solve(double min, double max, double initial)
106 return solve(f, min, max, initial);
110 * Find a zero in the given interval with an initial guess.
113 * allowed to have endpoints with the same sign if the initial point has
119 * @param initial the start value to use (must be set to min if no
120 * initial point is known).
124 * @throws IllegalArgumentException if initial is not between min and max
130 final double min, final double max, final double initial)
134 if ((initial < min) || (initial > max))
    [all...]
  /external/skia/include/core/
SkTLazy.h 132 SkTCopyOnFirstWrite(const T& initial) : fObj(&initial) {}
134 SkTCopyOnFirstWrite(const T* initial) : fObj(initial) {}
140 void init(const T& initial) {
143 fObj = &initial;
147 * Returns a writable T*. The first time this is called the initial object is cloned.
  /external/google-breakpad/src/common/linux/
crc32.h 39 // Updates a CRC32 checksum with |len| bytes from |buf|. |initial| holds the
41 uint32_t UpdateCrc32(uint32_t initial, const void* buf, size_t len);
  /external/webrtc/webrtc/base/
crc32.h 20 // Updates a CRC32 checksum with |len| bytes from |buf|. |initial| holds the
22 uint32_t UpdateCrc32(uint32_t initial, const void* buf, size_t len);
  /external/valgrind/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-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
inspector_console_unittest.py 16 initial = self._tab.EvaluateJavaScript('window.__logCount')
19 return current > initial
  /external/v8/src/base/
ring-buffer.h 31 T Sum(Callback callback, const T& initial) const {
34 T result = initial;
  /external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/
StaticSymmetry.h 143 static inline RV run(const std::array<Index, NumIndices>& idx, RV initial, Args&&... args)
147 initial = Op::run(tensor_static_symgroup_index_permute(idx, typename first::indices(), remaining_indices()), first::flags, initial, std::forward<Args>(args)...);
148 return tensor_static_symgroup_do_apply<internal::type_list<next...>>::template run<Op, RV, SGNumIndices>(idx, initial, args...);
152 static inline RV run(const std::vector<Index>& idx, RV initial, Args&&... args)
155 initial = Op::run(tensor_static_symgroup_index_permute(idx, typename first::indices()), first::flags, initial, std::forward<Args>(args)...);
156 return tensor_static_symgroup_do_apply<internal::type_list<next...>>::template run<Op, RV, SGNumIndices>(idx, initial, args...);
164 static inline RV run(const std::array<Index, NumIndices>&, RV initial, Args&&...)
167 return initial;
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
basictz.h 100 * the argument initial points to non-NULL <code>InitialTimeZoneRule</code> and
105 * @param initial Receives the initial timezone rule
113 virtual void getTimeZoneRules(const InitialTimeZoneRule*& initial,
132 * @param initial Receives the <code>InitialTimeZone</code>, always not NULL.
142 virtual void getSimpleRulesNear(UDate date, InitialTimeZoneRule*& initial,
202 * @param initial Receives the InitialTimeZone, always not NULL
206 void getTimeZoneRulesAfter(UDate start, InitialTimeZoneRule*& initial, UVector*& transitionRules,
  /external/valgrind/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;

Completed in 2568 milliseconds

1 2 3 4 5 6 7 8 91011>>