/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
trim.go | 35 for _, v := range s.Values { 43 for _, v := range b.Values { 55 b.Values[k] = v 58 b.Values = b.Values[:k] 61 // Merge the blocks' values. 62 for _, v := range b.Values { 65 k := len(b.Values) 66 m := len(s.Values) 68 s.Values = append(s.Values, nil [all...] |
tighten.go | 7 // tighten moves Values closer to the Blocks in which they are used. 9 // if it doesn't also create more live values. 15 for _, v := range b.Values { 24 // We can't move values which have a memory arg - it might 25 // make two memory values live across a block boundary. 40 // Don't move values with more than one input, as that may 42 // We make an exception for boolean-typed values, as they will 72 // Compute target locations (for moveable values only). 75 for _, v := range b.Values { 107 for _, v := range b.Values { [all...] |
/external/clang/lib/Rewrite/ |
DeltaTree.cpp | 22 /// than binary trees, because they store multiple keys/values in each node. 69 /// Values - This tracks the SourceDelta's currently in this node. 71 SourceDelta Values[2*WidthFactor-1]; 73 /// NumValuesUsed - This tracks the number of values this node currently 81 /// FullDelta - This is the full delta of all the values in this node and 95 return Values[i]; 99 return Values[i]; 136 Values[0] = IR.Split; 168 NewFullDelta += Values[i].Delta; 196 Values[i].Delta += Delta [all...] |
/art/runtime/ |
type_lookup_table_test.cc | 56 testing::Values(DescriptorClassDefIdxPair("LAB;", 1U))); 59 testing::Values(DescriptorClassDefIdxPair("LDA;", kDexNoIndex))); 62 testing::Values(DescriptorClassDefIdxPair("LC;", 2U))); 65 testing::Values(DescriptorClassDefIdxPair("LAB;", 1U)));
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/annotation/ |
Values.java | 4 * Indicate that roboletric should look for values that is specific for the locale 10 public @interface Values {
|
/external/valgrind/memcheck/tests/amd64-solaris/ |
context_fpu.stdout.exp | 0 Values in the signal handler: 3 Values after the return from the signal handler:
|
/external/valgrind/memcheck/tests/x86-solaris/ |
context_fpu.stdout.exp | 0 Values in the signal handler: 3 Values after the return from the signal handler:
|
/external/swiftshader/third_party/subzero/crosstest/ |
test_arith_main.cpp | 54 volatile unsigned Values[] = INT_VALUE_ARRAY; 55 const static size_t NumValues = sizeof(Values) / sizeof(*Values); 57 // For functions that operate on unsigned values, the 59 // that operate on signed values, the FuncLlcUnsigned and 95 TypeUnsigned Value1 = Values[i]; 96 TypeUnsigned Value2 = Values[j]; 123 // This is the 64-bit version. Test values are synthesized from 124 // the 32-bit values in Values[] [all...] |
test_fcmp_main.cpp | 43 volatile double *Values; 62 Values = InitValues; 96 assert(Values && NumValues); 102 float Value1Float = Values[i]; 103 float Value2Float = Values[j]; 115 double Value1Double = Values[i]; 116 double Value2Double = Values[j]; 128 float Value1SelectFloat = Values[i]; 129 float Value2SelectFloat = Values[j]; 141 double Value1SelectDouble = Values[i] [all...] |
/build/blueprint/parser/ |
modify.go | 20 for _, v := range list.Values { 31 list.Values = append(list.Values, &String{ 40 for i, v := range list.Values { 46 list.Values = append(list.Values[:i], list.Values[i+1:]...)
|
sort.go | 36 for i := 0; i < len(list.Values); i++ { 37 // Find a set of values on contiguous lines 38 line := list.Values[i].Pos().Line 40 for j = i + 1; j < len(list.Values); j++ { 41 if list.Values[j].Pos().Line > line+1 { 44 line = list.Values[j].Pos().Line 48 if j < len(list.Values) { 49 nextPos = list.Values[j].Pos() 51 sortSubList(list.Values[i:j], nextPos, file) 57 for i := 0; i < len(list.Values); i++ [all...] |
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
parameter-matching.cpp | 23 template<int ...Values> struct X1nt; // expected-note{{previous non-type template parameter pack declared here}} 24 template<int Values> struct X1nt; // expected-error{{non-type template parameter conflicts with previous non-type template parameter pack}}
|
metafunctions.cpp | 70 template<int ...Values> 72 typedef int_tuple<Values*2 ...> type; 78 template<int ...Values> 80 typedef int_tuple<(Values*Values)...> type; 88 template<int ...Values> 89 struct square_tuple<int_tuple<Values...>> { 90 typedef int_tuple<(Values*Values)...> type; 96 template<int ...Values> struct sum [all...] |
/external/google-breakpad/src/testing/gtest/test/ |
gtest-param-test_test.cc | 62 using ::testing::Values; 137 // We cannot use EXPECT_EQ() here as the values may be tuples, 181 // generates an expected sequence of values. The general test pattern 364 ContainerType values; local 365 values.push_back(3); 366 values.push_back(5); 367 values.push_back(8); 368 const ParamGenerator<int> gen = ValuesIn(values); 377 ContainerType values; local 378 values.push_back(3) 391 ContainerType values; local 403 ContainerType values; local [all...] |
/external/libvpx/libvpx/test/ |
realtime_test.cc | 59 ::testing::Values(::libvpx_test::kRealTime)); 61 ::testing::Values(::libvpx_test::kRealTime));
|
test_vector_test.cc | 154 ::testing::Values(0), // Serial Mode. 155 ::testing::Values(1), // Single thread. 164 ::testing::Values( 167 ::testing::Values(0), // Serial Mode. 180 ::testing::Values(0), // Serial Mode. 181 ::testing::Values(1), // Single thread. 190 ::testing::Values( 193 ::testing::Values(1), // Frame Parallel mode.
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
gtest-param-test_test.cc | 62 using ::testing::Values; 137 // We cannot use EXPECT_EQ() here as the values may be tuples, 181 // generates an expected sequence of values. The general test pattern 364 ContainerType values; local 365 values.push_back(3); 366 values.push_back(5); 367 values.push_back(8); 368 const ParamGenerator<int> gen = ValuesIn(values); 377 ContainerType values; local 378 values.push_back(3) 391 ContainerType values; local 403 ContainerType values; local [all...] |
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/ |
gtest-param-test_test.cc | 62 using ::testing::Values; 137 // We cannot use EXPECT_EQ() here as the values may be tuples, 181 // generates an expected sequence of values. The general test pattern 364 ContainerType values; local 365 values.push_back(3); 366 values.push_back(5); 367 values.push_back(8); 368 const ParamGenerator<int> gen = ValuesIn(values); 377 ContainerType values; local 378 values.push_back(3) 391 ContainerType values; local 403 ContainerType values; local [all...] |
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/ |
gtest-param-test_test.cc | 62 using ::testing::Values; 137 // We cannot use EXPECT_EQ() here as the values may be tuples, 181 // generates an expected sequence of values. The general test pattern 364 ContainerType values; local 365 values.push_back(3); 366 values.push_back(5); 367 values.push_back(8); 368 const ParamGenerator<int> gen = ValuesIn(values); 377 ContainerType values; local 378 values.push_back(3) 391 ContainerType values; local 403 ContainerType values; local [all...] |
/external/protobuf/gtest/test/ |
gtest-param-test_test.cc | 62 using ::testing::Values; 137 // We cannot use EXPECT_EQ() here as the values may be tuples, 181 // generates an expected sequence of values. The general test pattern 364 ContainerType values; local 365 values.push_back(3); 366 values.push_back(5); 367 values.push_back(8); 368 const ParamGenerator<int> gen = ValuesIn(values); 377 ContainerType values; local 378 values.push_back(3) 391 ContainerType values; local 403 ContainerType values; local [all...] |
/external/clang/test/CodeGenCXX/ |
mangle-variadic-templates.cpp | 9 template<int ...Values> struct int_tuple { }; 60 template<int ...Values> int_tuple<Values...> f6() {}
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
tighten.go | 7 // tighten moves Values closer to the Blocks in which they are used. 9 // if it doesn't also create more live values. 15 for _, v := range b.Values { 24 // We can't move values which have a memory arg - it might 25 // make two memory values live across a block boundary. 40 // Don't move values with more than one input, as that may 42 // We make an exception for boolean-typed values, as they will 72 // Compute target locations (for moveable values only). 75 for _, v := range b.Values { 107 for _, v := range b.Values { [all...] |
fuse.go | 42 if s0.Kind != BlockPlain || len(s0.Preds) != 1 || len(s0.Values) != 0 { 50 if s1.Kind != BlockPlain || len(s1.Preds) != 1 || len(s1.Values) != 0 { 65 for _, v := range ss.Values { 98 s0.Values = nil 104 s1.Values = nil 121 // move all of b's values to c. 122 for _, v := range b.Values { 124 c.Values = append(c.Values, v) 146 b.Values = ni [all...] |
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
Antlr.Runtime.Collections.Tests.pas | 51 Values: array [0..9] of Integer = (50, 1, 33, 76, -22, 22, 34, 2, 88, 12); 58 for I in Values do 75 CheckEquals(P.Key, Values[I]); 76 CheckEquals(P.Value, 'Value' + IntToStr(Values[I])); 90 if (Values[I] = 34) then 92 CheckEquals(P.Key, Values[I]); 93 CheckEquals(P.Value, 'Value' + IntToStr(Values[I]));
|
/external/eigen/bench/ |
sparse_setter.cpp | 45 typedef std::vector<float> Values; 47 EIGEN_DONT_INLINE Scalar* setinnerrand_eigen(const Coordinates& coords, const Values& vals); 48 EIGEN_DONT_INLINE Scalar* setrand_eigen_dynamic(const Coordinates& coords, const Values& vals); 49 EIGEN_DONT_INLINE Scalar* setrand_eigen_compact(const Coordinates& coords, const Values& vals); 50 EIGEN_DONT_INLINE Scalar* setrand_eigen_sumeq(const Coordinates& coords, const Values& vals); 51 EIGEN_DONT_INLINE Scalar* setrand_eigen_gnu_hash(const Coordinates& coords, const Values& vals); 52 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_dense(const Coordinates& coords, const Values& vals); 53 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_sparse(const Coordinates& coords, const Values& vals); 54 EIGEN_DONT_INLINE Scalar* setrand_scipy(const Coordinates& coords, const Values& vals); 55 EIGEN_DONT_INLINE Scalar* setrand_ublas_mapped(const Coordinates& coords, const Values& vals) 69 Values values; local [all...] |