HomeSort by relevance Sort by last modified time
    Searched refs:Values (Results 226 - 250 of 1153) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/samples/
sample7_unittest.cc 46 using ::testing::Values;
109 // or bind them to a list of values which will be used as test parameters.
118 Values(&CreateOnTheFlyPrimeTable, &CreatePreCalculatedPrimeTable<1000>));
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
gtest_filter_unittest_.cc 130 INSTANTIATE_TEST_CASE_P(SeqP, ParamTest, testing::Values(1, 2));
131 INSTANTIATE_TEST_CASE_P(SeqQ, ParamTest, testing::Values(5, 6));
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/samples/
sample7_unittest.cc 46 using ::testing::Values;
109 // or bind them to a list of values which will be used as test parameters.
118 Values(&CreateOnTheFlyPrimeTable, &CreatePreCalculatedPrimeTable<1000>));
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/
gtest_filter_unittest_.cc 130 INSTANTIATE_TEST_CASE_P(SeqP, ParamTest, testing::Values(1, 2));
131 INSTANTIATE_TEST_CASE_P(SeqQ, ParamTest, testing::Values(5, 6));
  /external/llvm/lib/Analysis/
StratifiedSets.h 95 Values = std::move(Other.Values);
102 : Values(std::move(Map)), Links(std::move(Links)) {}
105 auto Iter = Values.find(Elem);
106 if (Iter == Values.end())
117 DenseMap<T, StratifiedInfo> Values;
305 for (auto &Pair : Values) {
350 return StratifiedSets<T>(std::move(Values), std::move(StratLinks));
403 DenseMap<T, StratifiedInfo> Values;
409 auto Pair = Values.insert(std::make_pair(ToAdd, Info))
    [all...]
  /external/swiftshader/third_party/subzero/crosstest/
test_icmp_main.cpp 34 volatile unsigned Values[] = {
40 const static size_t NumValues = sizeof(Values) / sizeof(*Values);
76 TypeUnsigned Value1 = Values[i];
77 TypeUnsigned Value2 = Values[j];
94 // This is the 64-bit version. Test values are synthesized from
95 // the 32-bit values in Values[].
102 (((TypeUnsigned)Values[iHi]) << 32) + Values[iLo]
    [all...]
test_bitmanip_main.cpp 32 volatile uint64 Values[] = {
46 const static size_t NumValues = sizeof(Values) / sizeof(*Values);
67 Type Value = static_cast<Type>(Values[i]);
97 Type Value = static_cast<Type>(Values[i]);
  /external/libvpx/libvpx/test/
quantize_test.cc 69 // Copy macroblockd from the reference to get pre-set-up dequant values.
172 ::testing::Values(
179 ::testing::Values(make_tuple(&vp8_fast_quantize_b_ssse3,
186 ::testing::Values(make_tuple(&vp8_regular_quantize_b_sse4_1,
192 ::testing::Values(make_tuple(&vp8_fast_quantize_b_neon,
199 ::testing::Values(
dct32x32_test.cc 361 ::testing::Values(
371 ::testing::Values(make_tuple(&vpx_highbd_fdct32x32_1_c, VPX_BITS_8),
377 ::testing::Values(make_tuple(&vpx_fdct32x32_c, &vpx_idct32x32_1024_add_c, 0,
382 ::testing::Values(make_tuple(&vpx_fdct32x32_1_c,
389 ::testing::Values(make_tuple(&vpx_fdct32x32_c, &vpx_idct32x32_1024_add_neon,
398 ::testing::Values(make_tuple(&vpx_fdct32x32_sse2,
403 ::testing::Values(make_tuple(&vpx_fdct32x32_1_sse2,
410 ::testing::Values(
422 ::testing::Values(make_tuple(&vpx_fdct32x32_1_sse2,
429 ::testing::Values(make_tuple(&vpx_fdct32x32_avx2
    [all...]
pp_filter_test.cc 121 // Filter values are set in blocks of 16 for Y and 8 for U/V. Each macroblock
131 // block pixels to random values.
424 ::testing::Values(vpx_post_proc_down_and_across_mb_row_c));
427 ::testing::Values(vpx_mbpost_proc_across_ip_c));
430 ::testing::Values(vpx_mbpost_proc_down_c));
435 ::testing::Values(vpx_post_proc_down_and_across_mb_row_sse2));
438 ::testing::Values(vpx_mbpost_proc_across_ip_sse2));
441 ::testing::Values(vpx_mbpost_proc_down_sse2));
447 ::testing::Values(vpx_post_proc_down_and_across_mb_row_neon));
450 ::testing::Values(vpx_mbpost_proc_across_ip_neon))
    [all...]
idct_test.cc 153 INSTANTIATE_TEST_CASE_P(C, IDCTTest, ::testing::Values(vp8_short_idct4x4llm_c));
157 ::testing::Values(vp8_short_idct4x4llm_neon));
162 ::testing::Values(vp8_short_idct4x4llm_mmx));
167 ::testing::Values(vp8_short_idct4x4llm_msa));
minmax_test.cc 118 INSTANTIATE_TEST_CASE_P(C, MinMaxTest, ::testing::Values(&vpx_minmax_8x8_c));
122 ::testing::Values(&vpx_minmax_8x8_sse2));
127 ::testing::Values(&vpx_minmax_8x8_neon));
132 ::testing::Values(&vpx_minmax_8x8_msa));
vp8_fdct4x4_test.cc 186 INSTANTIATE_TEST_CASE_P(C, FdctTest, ::testing::Values(vp8_short_fdct4x4_c));
190 ::testing::Values(vp8_short_fdct4x4_neon));
195 ::testing::Values(vp8_short_fdct4x4_sse2));
200 ::testing::Values(vp8_short_fdct4x4_msa));
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
shortcircuit.go 23 for _, v := range b.Values {
48 // Step 2: Compute which values are live across blocks.
51 for _, v := range b.Values {
75 if len(b.Values) != 1 {
78 v := b.Values[0]
118 for _, w := range t.Values {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
shortcircuit.go 23 for _, v := range b.Values {
48 // Step 2: Compute which values are live across blocks.
51 for _, v := range b.Values {
75 if len(b.Values) != 1 {
78 v := b.Values[0]
118 for _, w := range t.Values {
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
ValueEnumerator.cpp 1 //===-- ValueEnumerator.cpp - Number values and types for bitcode writer --===//
48 unsigned FirstConstant = Values.size();
107 OptimizeConstants(FirstConstant, Values.size());
155 std::stable_sort(Values.begin()+CstStart, Values.begin()+CstEnd, P);
159 std::partition(Values.begin()+CstStart, Values.begin()+CstEnd,
164 ValueMap[Values[CstStart].first] = CstStart+1;
168 /// EnumerateValueSymbolTable - Insert all of the values in the specified symbol
169 /// table into the values table
    [all...]
  /external/swiftshader/third_party/subzero/src/
PNaClTranslator.cpp 176 // Models integer literals as a sequence of bits. Used to read integer values
331 /// Install names for all global values without names. Called after the global
710 const NaClBitcodeRecord::RecordVector &Values = Record.GetValues();
711 if (Values.size() == Size)
720 const NaClBitcodeRecord::RecordVector &Values = Record.GetValues();
721 if (Values.size() >= LowerLimit)
731 const NaClBitcodeRecord::RecordVector &Values = Record.GetValues();
732 if (Values.size() <= UpperLimit)
866 const NaClBitcodeRecord::RecordVector &Values = Record.GetValues();
872 uint64_t Size = Values[0]
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/ArmPlatformSysConfigLibNull/
ArmPlatformSysConfigLibNull.c 34 * for setting and for reading out values
62 OUT UINT32* Values
  /external/autotest/server/cros/faft/config/
DEFAULTS.py 5 """Default configuration values for FAFT tests go into this file.
7 For the ability to override these values on a platform specific basis, please
12 class Values(object):
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 19 template<Types ...Values> struct Inner;
  /external/webrtc/webrtc/common_audio/
audio_ring_buffer_unittest.cc 87 ::testing::Combine(::testing::Values(10, 20, 42), // num_write_chunk_frames
88 ::testing::Values(1, 10, 17), // num_read_chunk_frames
89 ::testing::Values(100, 256), // buffer_frames
90 ::testing::Values(1, 4))); // num_channels
  /external/clang/unittests/AST/
ASTVectorTest.cpp 72 int Values[] = { 0, 1, 2, 3 };
73 ArrayRef<int> IntVec(Values);
  /external/google-breakpad/src/testing/gtest/samples/
sample8_unittest.cc 85 using ::testing::Values;
149 // or bind them to a list of values which will be used as test parameters.
155 // meaningful values for tests. We choose a small value (1), and a value that
161 Combine(Bool(), Values(1, 10)));
  /external/google-breakpad/src/testing/gtest/test/
gtest_xml_output_unittest_.cc 48 using ::testing::Values;
145 INSTANTIATE_TEST_CASE_P(Single, ValueParamTest, Values(33, 42));
  /external/googletest/googletest/samples/
sample8_unittest.cc 85 using ::testing::Values;
149 // or bind them to a list of values which will be used as test parameters.
155 // meaningful values for tests. We choose a small value (1), and a value that
161 Combine(Bool(), Values(1, 10)));

Completed in 797 milliseconds

1 2 3 4 5 6 7 8 91011>>