Searched refs:values (Results 26 - 50 of 1772) sorted by relevance

1234567891011>>

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
H A DRecordWriter.java15 void boolArray(String name, boolean[] values); argument
17 void characterArray(String name, char[] values); argument
19 void namedIndexArray(String name, String[] names, byte[] values); argument
21 void stringArray(String name, String[] values); argument
22 void stringTable(String name, String[][] values); argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
H A DStatUtils.java79 * Returns the sum of the values in the input array, or
85 * @param values array of values to sum
86 * @return the sum of the values or <code>Double.NaN</code> if the array
90 public static double sum(final double[] values) { argument
91 return SUM.evaluate(values);
101 * @param values the input array
104 * @return the sum of the values or Double.NaN if length = 0
108 public static double sum(final double[] values, final int begin, argument
110 return SUM.evaluate(values, begi
124 sumSq(final double[] values) argument
142 sumSq(final double[] values, final int begin, final int length) argument
157 product(final double[] values) argument
175 product(final double[] values, final int begin, final int length) argument
194 sumLog(final double[] values) argument
216 sumLog(final double[] values, final int begin, final int length) argument
234 mean(final double[] values) argument
255 mean(final double[] values, final int begin, final int length) argument
273 geometricMean(final double[] values) argument
294 geometricMean(final double[] values, final int begin, final int length) argument
315 variance(final double[] values) argument
339 variance(final double[] values, final int begin, final int length) argument
370 variance(final double[] values, final double mean, final int begin, final int length) argument
397 variance(final double[] values, final double mean) argument
418 max(final double[] values) argument
444 max(final double[] values, final int begin, final int length) argument
466 min(final double[] values) argument
492 min(final double[] values, final int begin, final int length) argument
520 percentile(final double[] values, final double p) argument
551 percentile(final double[] values, final int begin, final int length, final double p) argument
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp23.cpp13 void unexpanded_capture(Ts ...values) { argument
14 auto unexp = [values] {}; // expected-error{{initializer contains unexpanded parameter pack 'values'}}
18 void implicit_capture(Ts ...values) { argument
19 auto implicit = [&] { print(values...); };
24 void do_print(Ts... values) { argument
25 auto bycopy = [values...]() { print(values...); };
27 auto byref = [&values...]() { print(values
[all...]
/external/valgrind/none/tests/s390x/
H A Dtroo.stdout.exp2 the translated values are
4 the translated values are
6 the translated values are ff bb dd ab ca
8 the translated values are ff bb dd ab ca bc cc da ea aa
10 the translated values are
12 the translated values are ff
14 the translated values are ff bb dd ab ca bc cc da
H A Dtrot.stdout.exp2 the translated values is
4 the translated values is
6 the translated values is
8 the translated values is bbbb ccdd ffff
10 the translated values is bbbb ccdd ffff cccc abab caca bcbc cccc dada eaea
12 the translated values is bbbb ccdd 0 0 0
14 the translated values is bbbb ccdd ffff 0 0
16 the translated values is bbbb ccdd ffff cccc abab caca bcbc cccc dada eaea
H A Dtrto.stdout.exp2 the translated values is
4 the translated values is
6 the translated values is
8 the translated values is cc dd ff cc ab ca
10 the translated values is cc dd ff cc ab ca bc cc dd ea
12 the translated values is cc dd 0 0 0 0
14 the translated values is cc dd 0 0 0 0
16 the translated values is cc dd ff cc ab ca bc cc dd 0
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
H A Dconfig.py24 #: Value used for missing default values.
27 #: Value used for required values.
33 dictionary of dictionaries. It requires all values to be dictionaries
34 and applies updates and default values to the inner dictionaries instead
54 Then to read configuration values, get them from the app::
65 def __init__(self, values=None, defaults=None):
68 :param values:
72 values. These modules are marked as loaded.
75 if values is not None:
76 assert isinstance(values, dic
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DAbstractListMultimapTester.java34 protected void assertGet(K key, V... values) { argument
35 assertGet(key, Arrays.asList(values));
38 protected void assertGet(K key, Collection<V> values) { argument
39 ASSERT.that(multimap().get(key)).has().exactlyAs(values).inOrder();
41 if (!values.isEmpty()) {
42 ASSERT.that(multimap().asMap().get(key)).has().exactlyAs(values).inOrder();
48 assertEquals(values.size(), multimap().get(key).size());
49 assertEquals(values.size() > 0, multimap().containsKey(key));
50 assertEquals(values.size() > 0, multimap().keySet().contains(key));
51 assertEquals(values
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntList.java29 private int[] values; field in class:IntList
34 /** whether the values are currently sorted */
87 values = new int[initialCapacity];
103 result = (result * 31) + values[i];
131 if (values[i] != otherList.values[i]) {
150 sb.append(values[i]);
177 return values[n];
198 values[n] = value;
219 values[siz
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DAbstractUnivariateStatistic.java49 * @param values data array to store (may be null to remove stored data)
52 public void setData(final double[] values) { argument
53 storedData = (values == null) ? null : values.clone();
74 * @param values data array to store
79 public void setData(final double[] values, final int begin, final int length) { argument
81 System.arraycopy(values, begin, storedData, 0, length);
98 public double evaluate(final double[] values) { argument
99 test(values, 0, 0);
100 return evaluate(values,
106 evaluate(final double[] values, final int begin, final int length) argument
132 test( final double[] values, final int begin, final int length) argument
191 test( final double[] values, final double[] weights, final int begin, final int length) argument
[all...]
H A DStorelessUnivariateStatistic.java22 * values and updating internal state.
26 * sample values.</p>
40 * all values in the values array. Does not clear the statistic first --
41 * i.e., the values are added <strong>incrementally</strong> to the dataset.
43 * @param values array holding the new values to add
46 void incrementAll(double[] values); argument
50 * the values in the designated portion of the values arra
59 incrementAll(double[] values, int start, int length) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DSemiVariance.java26 * <p>Computes the semivariance of a set of values with respect to a given cutoff value.
27 * We define the <i>downside semivariance</i> of a set of values <code>x</code>
33 * is defined similarly, with the sum taken over values of <code>x</code> that
38 * and bias correction may be set using property setters or their values can provided as
172 * @param values the input array
174 * @throws IllegalArgumentException if values is null
178 public double evaluate(final double[] values) { argument
179 if (values == null) {
182 return evaluate(values, 0, values
201 evaluate(final double[] values, final int start, final int length) argument
217 evaluate(final double[] values, Direction direction) argument
234 evaluate(final double[] values, final double cutoff) argument
251 evaluate(final double[] values, final double cutoff, final Direction direction) argument
273 evaluate(final double[] values, final double cutoff, final Direction direction, final boolean corrected, final int start, final int length) argument
[all...]
/external/skia/src/core/
H A DSkScalar.cpp14 const SkScalar values[], int length) {
17 SkASSERT(values != NULL);
25 // Could use sentinel values to eliminate conditionals, but since the
28 return values[length-1];
30 return values[0];
35 return SkScalarInterp(values[right-1], values[right], fract);
13 SkScalarInterpFunc(SkScalar searchKey, const SkScalar keys[], const SkScalar values[], int length) argument
/external/valgrind/none/tests/ppc32/
H A Djm-misc.stdout.exp2 dcbtct with various hint values completes with no exceptions
4 dcbtds with various hint values completes with no exceptions
6 dcbtst with various hint values completes with no exceptions
/external/valgrind/none/tests/ppc64/
H A Djm-misc.stdout.exp2 dcbtct with various hint values completes with no exceptions
4 dcbtds with various hint values completes with no exceptions
6 dcbtst with various hint values completes with no exceptions
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_matrix.h79 // MatrixRef m(cell->values, row_stride, col_stride);
88 : values(NULL) {
92 : values(ptr) {
95 double* values; member in struct:ceres::internal::CellInfo
119 // Zero out the values of the array. The structure of the matrix
/external/webrtc/src/system_wrappers/source/
H A Ddata_log_c_helpers_unittest.c71 int values[kTestArrayLen] = {1, 2, 3, 4}; local
72 return WebRtcDataLog_InsertArray_int(kTableName, kColumnName2, values,
81 float values[kTestArrayLen] = {1.0f, 2.0f, 3.0f, 4.0f}; local
82 return WebRtcDataLog_InsertArray_float(kTableName, kColumnName2, values,
91 double values[kTestArrayLen] = {1.0, 2.0, 3.0, 4.0}; local
92 return WebRtcDataLog_InsertArray_double(kTableName, kColumnName2, values,
101 int32_t values[kTestArrayLen] = {1, 2, 3, 4}; local
102 return WebRtcDataLog_InsertArray_int32(kTableName, kColumnName2, values,
111 uint32_t values[kTestArrayLen] = {1, 2, 3, 4}; local
112 return WebRtcDataLog_InsertArray_uint32(kTableName, kColumnName2, values,
121 int64_t values[kTestArrayLen] = {1, 2, 3, 4}; local
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DArrayRegion.java31 private Value[] values; field in class:ArrayRegion
39 values = new Value[length];
47 return values[index];
55 values[index] = value;
/external/clang/test/CodeGenCXX/
H A Dvariadic-templates.cpp15 int values[sizeof...(T)+1] = { T::value... }; local
/external/skia/src/animator/
H A DSkAnimateProperties.h18 SK_PROPERTY(values)
/external/proguard/src/proguard/evaluation/value/
H A DDetailedArrayReferenceValue.java38 private final Value[] values; field in class:DetailedArrayReferenceValue
56 // Initialize the values of the array.
64 this.values = new Value[arrayLength.value()];
66 for (int index = 0; index < values.length; index++)
68 values[index] = initialValueFactory.createValue(elementType);
73 // Just ignore the values of the array.
74 this.values = null;
132 if (values != null &&
137 index < values.length)
139 return values[inde
[all...]
/external/marisa-trie/tests/
H A Dio-test.cc28 double values[] = { 345, 456 }; local
29 writer.write(values, 2);
30 EXCEPT(writer.write(values, 1U << 30), MARISA_SIZE_ERROR);
55 double values[3]; local
56 reader.read(values, 3);
57 ASSERT(values[0] == 345);
58 ASSERT(values[1] == 456);
59 ASSERT(values[2] == 567);
72 const double *values; local
73 mapper.map(&values,
112 double values[] = { 456, 567, 678 }; local
134 double values[3]; local
165 double values[3] = { 456, 567, 678 }; local
182 double values[3]; local
204 double values[3] = { 456, 567, 678 }; local
215 double values[3]; local
[all...]
/external/marisa-trie/v0_1_5/tests/
H A Dio-test.cc29 double values[] = { 345, 456 }; local
30 writer.write(values, 2);
31 EXCEPT(writer.write(values, 1U << 30), MARISA_ALPHA_SIZE_ERROR);
56 double values[3]; local
57 reader.read(values, 3);
58 ASSERT(values[0] == 345);
59 ASSERT(values[1] == 456);
60 ASSERT(values[2] == 567);
73 const double *values; local
74 mapper.map(&values,
113 double values[] = { 456, 567, 678 }; local
135 double values[3]; local
166 double values[3] = { 456, 567, 678 }; local
183 double values[3]; local
205 double values[3] = { 456, 567, 678 }; local
216 double values[3]; local
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_params.c262 const VGfloat * values)
268 if ((count && !values) || !count_in_bounds(type, count) || !is_aligned(values)) {
293 vegaSeti(type, floor(values[0]));
298 VGuint *x = (VGuint*)values;
300 state->scissor_rects[i].f = values[i];
311 state->color_transform_values[i] = values[i];
317 state->stroke.line_width.f = values[0];
318 state->stroke.line_width.i = float_to_int_floor(*((VGuint*)(values)));
321 state->stroke.miter_limit.f = values[
261 vegaSetfv(VGParamType type, VGint count, const VGfloat * values) argument
389 vegaSetiv(VGParamType type, VGint count, const VGint * values) argument
764 vegaGetfv(VGParamType type, VGint count, VGfloat * values) argument
865 vegaGetiv(VGParamType type, VGint count, VGint * values) argument
1100 vegaSetParameterfv(VGHandle object, VGint paramType, VGint count, const VGfloat * values) argument
1216 vegaSetParameteriv(VGHandle object, VGint paramType, VGint count, const VGint * values) argument
1522 vegaGetParameterfv(VGHandle object, VGint paramType, VGint count, VGfloat * values) argument
1608 vegaGetParameteriv(VGHandle object, VGint paramType, VGint count, VGint * values) argument
[all...]
/external/javassist/src/main/javassist/bytecode/annotation/
H A DArrayMemberValue.java31 MemberValue[] values; field in class:ArrayMemberValue
39 values = null;
50 values = null;
56 if (values == null)
60 int size = values.length;
73 Array.set(a, i, values[i].getValue(cl, cp, method));
99 return values;
106 values = elements;
116 if (values != null) {
117 for (int i = 0; i < values
[all...]

Completed in 4608 milliseconds

1234567891011>>