/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/ |
H A D | weights_conversion.h | 45 int counter = 0; in RearrangeWeightsToOHWIOGroupI4O4() local 47 for (int y = 0; y < weights.shape.h; ++y) { in RearrangeWeightsToOHWIOGroupI4O4() local 81 int counter = 0; in RearrangeWeightsToODHWIOGroupI4O4() local 84 for (int y = 0; y < weights.shape.h; ++y) { in RearrangeWeightsToODHWIOGroupI4O4() local 119 int counter = 0; in RearrangeWeightsToOHWIOGroupO4I4() local 121 for (int y = 0; y < weights.shape.h; ++y) { in RearrangeWeightsToOHWIOGroupO4I4() local 155 int counter = 0; in RearrangeWeightsToODHWIOGroupO4I4() local 158 for (int y = 0; y < weights.shape.h; ++y) { in RearrangeWeightsToODHWIOGroupO4I4() local 193 int counter = 0; in RearrangeWeightsToI4HWIOOGroupO4() local 195 for (int y = 0; y < weights.shape.h; ++y) { in RearrangeWeightsToI4HWIOOGroupO4() local [all …]
|
/aosp_15_r20/frameworks/av/media/libaaudio/tests/ |
H A D | test_monotonic_counter.cpp | 29 int32_t y = 0x80000010; in TEST() local 38 MonotonicCounter counter; in TEST() local 45 static constexpr uint32_t y = (uint32_t) 0x80000010; in TEST() local 54 MonotonicCounter counter; in TEST() local 64 MonotonicCounter counter; in TEST() local 73 MonotonicCounter counter; in TEST() local 82 MonotonicCounter counter; in TEST() local
|
/aosp_15_r20/external/tensorflow/tensorflow/tsl/platform/default/ |
H A D | logging.h | 159 uint32_t counter() { return counter_.load(std::memory_order_relaxed); } in counter() function 168 uint32 counter() { return counter_.load(std::memory_order_relaxed); } in counter() function 177 uint32 counter() { return counter_.load(std::memory_order_relaxed); } in counter() function 186 uint32 counter() { return counter_.load(std::memory_order_relaxed); } in counter() function 486 #define _TF_DCHECK_NOP(x, y) \ argument 489 #define DCHECK_EQ(x, y) _TF_DCHECK_NOP(x, y) argument 490 #define DCHECK_NE(x, y) _TF_DCHECK_NOP(x, y) argument 491 #define DCHECK_LE(x, y) _TF_DCHECK_NOP(x, y) argument 492 #define DCHECK_LT(x, y) _TF_DCHECK_NOP(x, y) argument 493 #define DCHECK_GE(x, y) _TF_DCHECK_NOP(x, y) argument [all …]
|
/aosp_15_r20/external/mesa3d/src/util/blake3/ |
H A D | blake3_dispatch.c | 36 #define ATOMIC_STORE(x, y) x = y argument 40 #define ATOMIC_STORE(x, y) InterlockedExchange(&x, y) argument 44 #define ATOMIC_STORE(x, y) x = y argument 170 uint8_t block_len, uint64_t counter, in blake3_compress_in_place() 199 uint8_t block_len, uint64_t counter, uint8_t flags, in blake3_compress_xof() 227 size_t blocks, const uint32_t key[8], uint64_t counter, in blake3_hash_many()
|
H A D | blake3_portable.c | 9 uint32_t x, uint32_t y) { in g() 39 uint8_t block_len, uint64_t counter, uint8_t flags) { in compress_pre() 86 uint8_t block_len, uint64_t counter, in blake3_compress_in_place_portable() 102 uint8_t block_len, uint64_t counter, in blake3_compress_xof_portable() 126 const uint32_t key[8], uint64_t counter, in hash_one_portable() 147 uint64_t counter, bool increment_counter, in blake3_hash_many_portable()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/ |
D | assert.hpp | 118 # define BOOST_MPL_AUX_ASSERT_RELATION(x, y, r) assert_relation<r,x,y> argument 122 # define BOOST_MPL_AUX_ASSERT_RELATION(x, y, r) assert_relation<x,y,r> argument 339 # define BOOST_MPL_ASSERT_RELATION_IMPL(counter, x, rel, y) \ argument 379 # define BOOST_MPL_ASSERT_RELATION(x, rel, y) \ argument 414 # define BOOST_MPL_ASSERT_MSG_IMPL( counter, c, msg, types_ ) \ argument
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/BLAKE3/ |
H A D | blake3_portable.c | 9 uint32_t x, uint32_t y) { in g() 39 uint8_t block_len, uint64_t counter, uint8_t flags) { in compress_pre() 86 uint8_t block_len, uint64_t counter, in blake3_compress_in_place_portable() 102 uint8_t block_len, uint64_t counter, in blake3_compress_xof_portable() 126 const uint32_t key[8], uint64_t counter, in hash_one_portable() 147 uint64_t counter, bool increment_counter, in blake3_hash_many_portable()
|
/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/ |
H A D | conv_constants.h | 42 int counter = 0; in RearrangeWeightsForConvConstants() local 44 for (int y = 0; y < kernel_y; ++y) { in RearrangeWeightsForConvConstants() local 79 int counter = 0; in RearrangeWeightsForConvConstantsDot() local 81 for (int y = 0; y < kernel_y; ++y) { in RearrangeWeightsForConvConstantsDot() local
|
H A D | depthwise_conv.h | 124 int counter = 0; in RearrangeWeightsForDWConv2D() local 126 for (int y = 0; y < kernel_y; ++y) { in RearrangeWeightsForDWConv2D() local 193 int counter = 0; in RearrangeWeightsForDWConv3D() local 196 for (int y = 0; y < kernel_y; ++y) { in RearrangeWeightsForDWConv3D() local
|
/aosp_15_r20/libcore/ojluni/src/test/java/lang/invoke/ |
H A D | JavaDocExamplesTest.java | 104 static int add(int x, int y) { return x + y; } in add() 105 static int sub(int x, int y) { return x - y; } in sub() 372 Object x, y; String s; int i; in testMethodHandlesSummary() local 679 Object x = "football", y = new java.util.Scanner("bar"); in testFoldArguments2() local 821 static String step(String v, int counter, String start_) { return "na " + v; } //#0 in step() 822 static String step(String v, int counter ) { return "na " + v; } //#1 in step() 823 …static String step(String v, int counter, int iterations_, String pre, String start_) { return pre… in step() 824 static String step3(String v, int counter, String pre) { return pre + " " + v; } //#3 in step3()
|
/aosp_15_r20/external/cronet/base/functional/ |
H A D | bind_unittest.cc | 282 int GetCopies(const CopyMoveCounter& counter) { in GetCopies() 785 CopyMoveCounter counter(&copies, &assigns, &move_constructs, &move_assigns); in TEST_F() local 808 CopyMoveCounter counter(&copies, &assigns, &move_constructs, &move_assigns); in TEST_F() local 821 DeleteCounter* counter = new DeleteCounter(&deletes); in TEST_F() local 845 DeleteCounter* counter = new DeleteCounter(&deletes); in TEST_F() local 866 auto counter = std::make_unique<DeleteCounter>(&deletes); in TEST_F() local 891 auto counter = std::make_unique<DeleteCounter>(&deletes); in TEST_F() local 912 int counter = 0; in TEST_F() local 914 BindRepeating([](int& counter) { return ++counter; }, OwnedRef(counter)); in TEST_F() 1251 DeleteCounter* counter = new DeleteCounter(&deletes); in TYPED_TEST() local [all …]
|
/aosp_15_r20/external/skia/gm/ |
H A D | nonclosedpaths.cpp | 66 static void SetLocation(SkCanvas* canvas, int counter, int lineNum) { in SetLocation() 68 SkScalar y = SK_Scalar1 * 100 * (counter / lineNum) + 10 + 3 * SK_Scalar1 / 4; in SetLocation() local 95 int counter = 0; in onDraw() local
|
H A D | polygons.cpp | 89 static void SetLocation(SkCanvas* canvas, int counter, int lineNum) { in SetLocation() 91 SkScalar y = SK_Scalar1 * kCellSize * (counter / lineNum) + 30 + 3 * SK_Scalar1 / 4; in SetLocation() local 116 int counter = 0; in onDraw() local
|
/aosp_15_r20/external/pytorch/test/functorch/ |
H A D | test_aotdispatch.py | 246 def f(x, y): argument 547 def forward(self, x, y): argument 919 def f(x, y, z): argument 971 def f(x, y): argument 3192 def f(x, y): argument 3246 def test_compilation_context(self, counter): argument 3268 def f(x, y): argument 3275 def f(x, y): argument 3303 def test_invalid_dupe_left_bias(self, counter): argument 3309 def forward(self, x, y): argument [all …]
|
/aosp_15_r20/hardware/invensense/6515/libsensors_iio/software/simple_apps/devnode_parser/ |
H A D | iio_utils.h | 262 int x, y; in bsort_channel_array_by_index() local 280 int *counter) in build_channel_array() 596 int *counter, char *sensor, int en) in enable_se() 631 struct iio_channel_info **ci_array, int *counter, in enable_accel_se() 638 struct iio_channel_info **ci_array, int *counter, in enable_anglvel_se() 645 struct iio_channel_info **ci_array, int *counter, in enable_quaternion_se()
|
/aosp_15_r20/hardware/invensense/6515/libsensors_iio/software/simple_apps/mpu_iio/ |
H A D | iio_utils.h | 262 int x, y; in bsort_channel_array_by_index() local 280 int *counter) in build_channel_array() 596 int *counter, char *sensor, int en) in enable_se() 631 struct iio_channel_info **ci_array, int *counter, in enable_accel_se() 638 struct iio_channel_info **ci_array, int *counter, in enable_anglvel_se() 645 struct iio_channel_info **ci_array, int *counter, in enable_quaternion_se()
|
/aosp_15_r20/external/emboss/compiler/back_end/cpp/testcode/ |
H A D | dynamic_size_test.cc | 182 int counter = 1; in TEST() local 184 for (int y = 0; y < 5; ++y) { in TEST() local 198 int counter = 1; in TEST() local 200 for (int y = 0; y < 5; ++y) { in TEST() local
|
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/channels/ |
H A D | ChannelUndeliveredElementSelectOldStressTest.kt | 152 var counter = 0 in <lambda>() variable 235 _min.update { y -> minOf(x, y) } in <lambda>() method 236 _max.update { y -> maxOf(x, y) } in <lambda>() method
|
H A D | ChannelUndeliveredElementStressTest.kt | 153 var counter = 0 in <lambda>() variable 251 _min.update { y -> minOf(x, y) } in <lambda>() method 252 _max.update { y -> maxOf(x, y) } in <lambda>() method
|
/aosp_15_r20/prebuilts/sdk/current/extras/constraint-layout/constraintlayout-solver/1.1.2/ |
HD | constraintlayout-solver-1.1.2.jar | META-INF/MANIFEST.MF
android/support/constraint/solver/ArrayRow.class
ArrayRow ... |
/aosp_15_r20/external/libchrome/base/ |
H A D | bind_unittest.cc | 284 int GetCopies(const CopyMoveCounter& counter) { in GetCopies() 669 CopyMoveCounter counter(&copies, &assigns, &move_constructs, &move_assigns); in TEST_F() local 692 CopyMoveCounter counter(&copies, &assigns, &move_constructs, &move_assigns); in TEST_F() local 705 DeleteCounter* counter = new DeleteCounter(&deletes); in TEST_F() local 729 DeleteCounter* counter = new DeleteCounter(&deletes); in TEST_F() local 1033 DeleteCounter* counter = new DeleteCounter(&deletes); in TYPED_TEST() local 1098 CopyCounter counter(&copies, &assigns); in TEST_F() local 1178 CopyMoveCounter counter(&copies, &assigns, &move_constructs, &move_assigns); in TEST_F() local 1297 EXPECT_EQ(42, BindLambdaForTesting([=](int y) { return x * y; }).Run(7)); in TEST_F() 1299 auto f = [x](std::unique_ptr<int> y) { return x * *y; }; in TEST_F()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/algorithm/minmax/test/ |
D | minmax_test.cpp | 20 custom(custom const& y) : m_x(y.m_x) {} in custom() function in custom 24 custom& operator+=(custom const& y) { m_x += y.m_x; return *this; } in operator +=() 55 int counter = 0; in test() local
|
/aosp_15_r20/art/test/2029-contended-monitors/src/ |
H A D | Main.java | 30 private int counter; field in Main 56 int y = -1; in holdFor() local 67 int y = -1; in spinFor() local 144 int y = -1; in run() local
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/multi_index/include/boost/multi_index/detail/ |
D | seq_index_ops.hpp | 60 void sequenced_index_merge(SequencedIndex& x,SequencedIndex& y,Compare comp) in sequenced_index_merge() 81 BOOST_DEDUCED_TYPENAME Node::impl_type* y, in sequenced_index_collate() 151 impl_type* counter= in sequenced_index_sort() local
|
/aosp_15_r20/hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/ |
H A D | iio_utils.h | 261 int x, y; in bsort_channel_array_by_index() local 279 int *counter) in build_channel_array() 643 int *counter) in enable() 673 int *counter) { in disable_q_out()
|