Searched defs:values (Results 1 - 25 of 708) sorted by relevance

1234567891011>>

/external/llvm/test/MC/COFF/
H A Dsecrel-variant.s6 values: label
11 movq values@SECREL32(%rax), %rcx
12 movq values@SECREL32+8(%rax), %rax
16 // CHECK-NEXT: 0x3 IMAGE_REL_AMD64_SECREL values
17 // CHECK-NEXT: 0xA IMAGE_REL_AMD64_SECREL values
/external/clang/test/CodeGen/
H A D2004-01-01-UnknownInitSize.c10 int values []; member in struct:one
/external/selinux/libsepol/cil/src/
H A Dcil_policy.h39 struct cil_list *values; member in struct:cil_multimap_item
/external/v8/test/webkit/
H A Dequality.js28 var values = [ '0', '1', '0.1', '2', '3', '4', '5', '6', '7', '-0', '"0"', '"1"', '"0.1"', '"-0"', 'null', 'undefined', 'false', 'true', 'new String("0")', 'new Object' ]; variable
63 for (i = 0; i < values.length; ++i) {
64 for (j = 0; j < values.length; ++j) {
65 var expression = values[i] + " == " + values[j];
66 var reversed = values[j] + " == " + values[i];
71 for (i = 0; i < values.length; ++i) {
72 for (j = 0; j < values.length; ++j) {
73 var expression = values[
[all...]
H A Dmath-transforms.js30 var values = {
49 for (var name in values) {
52 shouldBe("values." + name + " * 1", "+values." + name);
53 shouldBe("values." + name + " * 1", stringify(values[numForStr]));
55 shouldBe("1 * values." + name, "+values." + name);
56 shouldBe("1 * values." + name, stringify(values[numForSt
[all...]
/external/clang/test/CodeGenCXX/
H A Dvariadic-templates.cpp15 int values[sizeof...(T)+1] = { T::value... }; local
/external/clang/test/FixIt/
H A Dno-macro-fixit.c8 va_list values; local
12 while (value = va_arg(values, int)) { // expected-warning {{using the result of an assignment as a condition without parentheses}} \
/external/llvm/tools/llvm-c-test/
H A Dmetadata.c20 LLVMValueRef values[] = { LLVMConstInt(LLVMInt32Type(), 0, 0) }; local
23 LLVMAddNamedMetadataOperand(m, "name", LLVMMDNode(values, 1));
32 LLVMValueRef values[] = { LLVMConstInt(LLVMInt32Type(), 0, 0) }; local
38 LLVMMDNode(values, 1));
/external/fio/t/
H A Dieee754.c4 static double values[] = { -17.23, 17.23, 123.4567, 98765.4321, 0.0 }; variable
14 i = fio_double_to_uint64(values[j]);
16 printf("%f -> %f\n", values[j], f);
18 } while (values[j] != 0.0);
/external/ceres-solver/include/ceres/
H A Dcrs_matrix.h49 // rows, cols and values.
52 // values array. For each row i:
57 // values[rows[i]] .. values[rows[i + 1] - 1] are the values of the
60 // cols and values contain as many entries as there are non-zeros in
75 // values = [10, 4, 2, -3, 2, 1, 2]
79 vector<double> values; member in struct:ceres::CRSMatrix
/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
H A Dblock_random_access_dense_matrix.h83 const double* values() const { return values_.get(); } function in class:ceres::internal::BlockRandomAccessDenseMatrix
H A Dblock_sparse_matrix.h81 virtual const double* values() const { return values_.get(); } function in class:ceres::internal::BlockSparseMatrix
H A Dcompressed_col_sparse_matrix_utils.h73 const double* values,
76 rhs_and_solution[c] /= values[cols[c + 1] - 1];
79 const double v = values[idx];
94 const double* values,
99 const double v = values[idx];
102 rhs_and_solution[c] = rhs_and_solution[c] / values[cols[c + 1] - 1];
120 const double* values,
124 solution[rhs_nonzero_index] = 1.0 / values[cols[rhs_nonzero_index + 1] - 1];
130 const double v = values[idx];
133 solution[c] = solution[c] / values[col
70 SolveUpperTriangularInPlace(IntegerType num_cols, const IntegerType* rows, const IntegerType* cols, const double* values, double* rhs_and_solution) argument
91 SolveUpperTriangularTransposeInPlace(IntegerType num_cols, const IntegerType* rows, const IntegerType* cols, const double* values, double* rhs_and_solution) argument
117 SolveRTRWithSparseRHS(IntegerType num_cols, const IntegerType* rows, const IntegerType* cols, const double* values, const int rhs_nonzero_index, double* solution) argument
[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/hamcrest/src/org/hamcrest/internal/
H A DSelfDescribingValueIterator.java8 private Iterator<T> values; field in class:SelfDescribingValueIterator
10 public SelfDescribingValueIterator(Iterator<T> values) { argument
11 this.values = values;
15 return values.hasNext();
19 return new SelfDescribingValue<T>(values.next());
23 values.remove();
/external/nanopb-c/generator/google/protobuf/internal/
H A Denum_type_wrapper.py42 """A utility for finding the names of enum values."""
72 for value_descriptor in self._enum_type.values]
74 def values(self): member in class:EnumTypeWrapper
75 """Return a list of the integer values in the enum.
81 for value_descriptor in self._enum_type.values]
89 for value_descriptor in self._enum_type.values]
/external/protobuf/python/google/protobuf/internal/
H A Denum_type_wrapper.py42 """A utility for finding the names of enum values."""
72 for value_descriptor in self._enum_type.values]
74 def values(self): member in class:EnumTypeWrapper
75 """Return a list of the integer values in the enum.
81 for value_descriptor in self._enum_type.values]
89 for value_descriptor in self._enum_type.values]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DH2Test.java19 ContentValues values; field in class:H2Test
26 values = new ContentValues();
27 values.put("name", "Chuck");
28 values.put("int_value", 33);
29 values.put("float_value", (float) 1.5);
30 values.put("byte_data", byteData);
35 SQLite.SQLStringAndBindings insertString = buildInsertString("table_name", values, SQLiteDatabase.CONFLICT_REPLACE);
/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/v8/test/mjsunit/
H A Dproto-accessor.js99 var values = [1, true, false, 's', Symbol()]; variable
104 for (var i = 0; i < values.length; i++) {
105 assertEquals(setProto.call(values[i], proto), undefined);
119 var valuesWithUndefined = values.concat(undefined);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DDoubleKeyMap.java34 /** Get all values associated with primary key */
35 public Collection<Value> values(Key1 k1) { method in class:DoubleKeyMap
38 return data2.values();
53 public Collection<Value> values() { method in class:DoubleKeyMap
55 for (Map<Key2, Value> k2 : data.values()) {
56 for (Value v : k2.values()) {
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DUnivariateStatistic.java30 * @param values input array
33 double evaluate(double[] values); argument
39 * @param values the input array
44 double evaluate(double[] values, int begin, int length); argument
H A DWeightedEvaluation.java31 * @param values input array
35 double evaluate(double[] values, double[] weights); argument
41 * @param values the input array
47 double evaluate(double[] values, double[] weights, int begin, int length); argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
H A DX500NameBuilder.java45 public X500NameBuilder addMultiValuedRDN(ASN1ObjectIdentifier[] oids, String[] values) argument
47 ASN1Encodable[] vals = new ASN1Encodable[values.length];
51 vals[i] = template.stringToValue(oids[i], values[i]);
57 public X500NameBuilder addMultiValuedRDN(ASN1ObjectIdentifier[] oids, ASN1Encodable[] values) argument
63 avs[i] = new AttributeTypeAndValue(oids[i], values[i]);

Completed in 1093 milliseconds

1234567891011>>