Home
last modified time | relevance | path

Searched refs:kValues (Results 1 – 5 of 5) sorted by relevance

/external/v8/test/cctest/compiler/
Dtest-run-properties.cc13 static const uint32_t kValues[] = { in TypedArrayLoadHelper() local
19 for (size_t i = 0; i < arraysize(kValues); ++i) { in TypedArrayLoadHelper()
20 values_builder.AddFormatted("a[%d] = 0x%08x;", i, kValues[i]); in TypedArrayLoadHelper()
39 SNPrintF(source_buffer, source, array_type, arraysize(kValues), in TypedArrayLoadHelper()
40 values_buffer.start(), array_type, arraysize(kValues), in TypedArrayLoadHelper()
46 for (size_t i = 0; i < arraysize(kValues); ++i) { in TypedArrayLoadHelper()
47 for (size_t j = 0; j < arraysize(kValues); ++j) { in TypedArrayLoadHelper()
48 volatile U value_a = static_cast<U>(kValues[i]); in TypedArrayLoadHelper()
49 volatile U value_b = static_cast<U>(kValues[j]); in TypedArrayLoadHelper()
75 static const uint32_t kValues[] = { in TypedArrayStoreHelper() local
[all …]
Dvalue-helper.h65 static const float kValues[] = { in float32_vector() local
174 return std::vector<float>(&kValues[0], &kValues[arraysize(kValues)]); in float32_vector()
231 static const uint32_t kValues[] = { in uint32_vector() local
242 return std::vector<uint32_t>(&kValues[0], &kValues[arraysize(kValues)]); in uint32_vector()
251 static const uint64_t kValues[] = { in uint64_vector() local
278 return std::vector<uint64_t>(&kValues[0], &kValues[arraysize(kValues)]); in uint64_vector()
290 static const uint32_t kValues[31] = { in ror_vector() local
293 return std::vector<uint32_t>(&kValues[0], &kValues[arraysize(kValues)]); in ror_vector()
Dtest-run-machops.cc5152 } kValues[] = {{0, 0}, in TEST() local
5212 for (size_t i = 0; i < arraysize(kValues); ++i) { in TEST()
5213 input = kValues[i].from; in TEST()
5214 uint64_t expected = static_cast<int64_t>(kValues[i].raw); in TEST()
5304 static double kValues[] = {0.1, variable
5427 for (size_t i = 0; i < arraysize(kValues); ++i) { in TEST()
5428 CHECK_EQ(ceil(kValues[i]), m.Call(kValues[i])); in TEST()
5483 for (size_t i = 0; i < arraysize(kValues); ++i) { in TEST()
5484 CHECK_EQ(trunc(kValues[i]), m.Call(kValues[i])); in TEST()
5493 for (size_t i = 0; i < arraysize(kValues); ++i) { in TEST()
[all …]
/external/webrtc/webrtc/modules/audio_processing/beamformer/
Dmatrix_unittest.cc202 const int kValues[kNumRows][kNumCols] = {{4, 9}, {16, 0}}; in TEST() local
205 Matrix<int> operand_mat(*kValues, kNumRows, kNumCols); in TEST()
219 const complex<float> kValues[kNumRows][kNumCols] = { in TEST() local
225 Matrix<complex<float> > operand_mat(*kValues, kNumRows, kNumCols); in TEST()
241 const complex<float> kValues[kNumRows][kNumCols] = { in TEST() local
246 Matrix<complex<float> > operand_mat(*kValues, kNumRows, kNumCols); in TEST()
262 const float kValues[kNumRows][kNumCols] = {{2.4f, -4.f, 3.3f}}; in TEST() local
265 Matrix<float> operand_mat(*kValues, kNumRows, kNumCols); in TEST()
/external/vixl/test/
Dtest-assembler-a64.cc6832 static const uint64_t kValues[] = { in TEST() local
6837 LoadIntValueHelper(kValues, sizeof(kValues) / sizeof(kValues[0])); in TEST()
6842 static const uint32_t kValues[] = { in TEST() local
6847 LoadIntValueHelper(kValues, sizeof(kValues) / sizeof(kValues[0])); in TEST()
6883 static const double kValues[] = { in TEST() local
6887 LoadFPValueHelper(kValues, sizeof(kValues) / sizeof(kValues[0])); in TEST()
6892 static const float kValues[] = { in TEST() local
6896 LoadFPValueHelper(kValues, sizeof(kValues) / sizeof(kValues[0])); in TEST()