/external/zxing/core/src/test/java/com/google/zxing/pdf417/decoder/ec/ |
D | ErrorCorrectionTestCase.java | 49 int[] received = PDF417_TEST_WITH_EC.clone(); in testNoError() local 58 int[] received = PDF417_TEST_WITH_EC.clone(); in testOneError() local 68 int[] received = PDF417_TEST_WITH_EC.clone(); in testMaxErrors() local 76 int[] received = PDF417_TEST_WITH_EC.clone(); in testTooManyErrors() local 87 private void checkDecode(int[] received) throws ChecksumException { in checkDecode() 91 private void checkDecode(int[] received, int[] erasures) throws ChecksumException { in checkDecode()
|
D | AbstractErrorCorrectionTestCase.java | 30 static void corrupt(int[] received, int howMany, Random random) { in corrupt() 34 static int[] erase(int[] received, int howMany, Random random) { in erase()
|
/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/scheduler/actors/ |
D | ConcurrentStatefulActorBenchmark.kt | 86 var received = 0 in requestorActorUnfair() variable 112 val received = hashMapOf(*computations.map { it to 0 }.toTypedArray()) in requestorActorFair() constant
|
D | CycledActorsBenchmark.kt | 88 var received = 0 in <lambda>() variable
|
D | StatefulActorBenchmark.kt | 79 var received = 0 in requestorActor() variable
|
/external/sandboxed-api/sandboxed_api/sandbox2/examples/network/ |
D | network_bin.cc | 31 ssize_t received = 0; in ReadFromFd() local 47 char received[1025] = {0}; in CommunicationTest() local
|
/external/bazelbuild-rules_rust/proto/prost/private/tests/services/echo/ |
D | client.rs | 41 let received = received.unwrap(); in bidirectional_streaming_echo() localVariable 57 let received = received.unwrap(); in bidirectional_streaming_echo_throttle() localVariable
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-jdk9/test/ |
D | PublisherCompletionStressTest.kt | 23 var received = 0 in <lambda>() variable
|
/external/python/bumble/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/ |
D | Receiver.kt | 46 val received = packet.payload.size + 6 in onSequencePacket() constant
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/test/ |
D | PublisherCompletionStressTest.kt | 23 var received = 0 in <lambda>() variable
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/test/ |
D | ObservableCompletionStressTest.kt | 23 var received = 0 in <lambda>() variable
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx3/test/ |
D | ObservableCompletionStressTest.kt | 23 var received = 0 in <lambda>() variable
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactor/test/ |
D | FluxCompletionStressTest.kt | 24 var received = 0 in <lambda>() variable
|
/external/libchrome/dbus/ |
D | dbus_statistics_unittest.cc | 59 int sent = 0, received = 0, block = 0; in TEST_F() local 88 int sent = 0, received = 0, block = 0; in TEST_F() local
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | outfeed_receiver_test.cc | 68 std::vector<Data> received() { in received() function in xla::__anon01a7e96d0111::Accumulator 135 std::vector<Accumulator::Data> received = receiver->received(); in TEST() local 178 std::vector<Accumulator::Data> received = receiver->received(); in TEST() local 221 std::vector<Accumulator::Data> received = receiver->received(); in TEST() local 316 std::vector<Accumulator::Data> received = receiver->received(); in TEST() local
|
/external/sandboxed-api/sandboxed_api/sandbox2/examples/network_proxy/ |
D | networkproxy_bin.cc | 38 ssize_t received = 0; in ReadFromFd() local 54 char received[1025] = {0}; in CommunicationTest() local
|
/external/libchrome/ipc/ |
D | sync_socket_unittest.cc | 208 size_t length, size_t* received) { in BlockingRead() 226 size_t received = 1U; // Initialize to an unexpected value. in TEST_F() local 257 size_t received = 1U; // Initialize to an unexpected value. in TEST_F() local
|
/external/pigweed/pw_rpc_transport/ |
D | stream_rpc_dispatcher_test.cc | 52 std::vector<std::byte> received() const { return received_; } in received() function in pw::rpc::__anonde8846ca0111::TestIngress 135 auto received = test_ingress.received(); in TEST() local
|
/external/sandboxed-api/sandboxed_api/sandbox2/testcases/ |
D | network_proxy.cc | 71 ssize_t received = 0; in ReadFromFd() local 87 char received[1025] = {0}; in CommunicationTest() local
|
/external/cronet/stable/ipc/ |
D | sync_socket_unittest.cc | 228 size_t* received) { in BlockingRead() 245 size_t received = 1U; // Initialize to an unexpected value. in TEST_F() local 276 size_t received = 1U; // Initialize to an unexpected value. in TEST_F() local
|
/external/cronet/tot/ipc/ |
D | sync_socket_unittest.cc | 228 size_t* received) { in BlockingRead() 245 size_t received = 1U; // Initialize to an unexpected value. in TEST_F() local 276 size_t received = 1U; // Initialize to an unexpected value. in TEST_F() local
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/channels/ |
D | ProduceConsumeJvmTest.kt | 45 val received = CompletableDeferred<Int>() in <lambda>() constant
|
/external/zxing/core/src/test/java/com/google/zxing/common/reedsolomon/ |
D | ReedSolomonTestCase.java | 415 public static void corrupt(int[] received, int howMany, Random random, int max) { in corrupt() 504 private static void assertDataEquals(String message, int[] expected, int[] received) { in assertDataEquals()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/concurrent/test/channels/ |
D | ChannelCancelUndeliveredElementStressTest.kt | 88 val received = when (Random.nextInt(3)) { in receiveOne() constant
|
/external/zxing/core/src/main/java/com/google/zxing/common/reedsolomon/ |
D | ReedSolomonDecoder.java | 58 public void decode(int[] received, int twoS) throws ReedSolomonException { in decode() 72 public int decodeWithECCount(int[] received, int twoS) throws ReedSolomonException { in decodeWithECCount()
|