/external/libevent/test/ |
D | regress_zlib.c | 134 struct evbuffer_iovec v_in[1]; in zlib_input_filter() local 143 n = evbuffer_peek(src, -1, NULL, v_in, 1); in zlib_input_filter() 145 p->avail_in = v_in[0].iov_len; in zlib_input_filter() 146 p->next_in = (unsigned char *)v_in[0].iov_base; in zlib_input_filter() 160 nread = v_in[0].iov_len - p->avail_in; in zlib_input_filter() 188 struct evbuffer_iovec v_in[1]; in zlib_output_filter() local 197 n = evbuffer_peek(src, -1, NULL, v_in, 1); in zlib_output_filter() 199 p->avail_in = v_in[0].iov_len; in zlib_output_filter() 200 p->next_in = (unsigned char *)v_in[0].iov_base; in zlib_output_filter() 214 nread = v_in[0].iov_len - p->avail_in; in zlib_output_filter()
|
/external/vixl/examples/aarch64/ |
D | neon-matrix-multiply.cc | 52 VRegister v_in = VRegister(in_column, kSRegSize); in GenerateMultiplyColumn() local 54 __ Fmul(v_out, v4.V4S(), v_in, 0); // e.g. (v0.V4S(), v4.V4S(), v8.S(), 0). in GenerateMultiplyColumn() 55 __ Fmla(v_out, v5.V4S(), v_in, 1); in GenerateMultiplyColumn() 56 __ Fmla(v_out, v6.V4S(), v_in, 2); in GenerateMultiplyColumn() 57 __ Fmla(v_out, v7.V4S(), v_in, 3); in GenerateMultiplyColumn()
|
/external/rust/crates/uuid/src/ |
D | lib.rs | 961 let v_in: u128 = 0xa1a2a3a4b1b2c1c2d1d2d3d4d5d6d7d8; in test_from_u128() localVariable 963 let u = Uuid::from_u128(v_in); in test_from_u128() 972 let v_in: u128 = 0xd8d7d6d5d4d3d2d1c2c1b2b1a4a3a2a1; in test_from_u128_le() localVariable 974 let u = Uuid::from_u128_le(v_in); in test_from_u128_le() 983 let v_in: u128 = 0xa1a2a3a4b1b2c1c2d1d2d3d4d5d6d7d8; in test_u128_roundtrip() localVariable 985 let u = Uuid::from_u128(v_in); in test_u128_roundtrip() 988 assert_eq!(v_in, v_out); in test_u128_roundtrip() 993 let v_in: u128 = 0xd8d7d6d5d4d3d2d1c2c1b2b1a4a3a2a1; in test_u128_le_roundtrip() localVariable 995 let u = Uuid::from_u128_le(v_in); in test_u128_le_roundtrip() 998 assert_eq!(v_in, v_out); in test_u128_le_roundtrip() [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | word2vec_kernels.cc | 311 auto v_in = Tw_in.chip<0>(example); in Compute() local 321 auto dot = (v_in * v_out).sum(); in Compute() 324 v_out += v_in * (g() * lr); in Compute() 337 auto dot = (v_in * v_sample).sum(); in Compute() 340 v_sample += v_in * (g() * lr); in Compute() 344 v_in += Tbuf; in Compute()
|
/external/libtextclassifier/native/lang_id/common/ |
D | embedding-network.cc | 269 const std::vector<float> *v_in = &input; in ComputeFinalScores() local 283 apply_relu, layer_weights_[i], layer_bias_[i], *v_in, v_out); in ComputeFinalScores() 284 v_in = v_out; in ComputeFinalScores()
|
/external/clang/test/SemaCXX/ |
D | crashes.cpp | 121 cc_rgb( cc_YCbCr v_in ); 134 cc_YCbCr( const cc_rgb v_in );
|
/external/llvm-project/clang/test/SemaCXX/ |
D | crashes.cpp | 121 cc_rgb( cc_YCbCr v_in ); 134 cc_YCbCr( const cc_rgb v_in );
|
/external/abseil-cpp/absl/container/ |
D | inlined_vector_test.cc | 616 IntVec v_in; in TEST() local 617 const int inlined_capacity = v_in.capacity(); in TEST() 618 Fill(&v_in, len); in TEST() 619 EXPECT_EQ(len, v_in.size()); in TEST() 620 EXPECT_LE(len, v_in.capacity()); in TEST() 623 IntVec v_temp(v_in); in TEST() 626 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() 627 if (v_in.size() > inlined_capacity) { in TEST() 637 IntVec v_temp(v_in); in TEST() 640 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() [all …]
|
/external/libtextclassifier/abseil-cpp/absl/container/ |
D | inlined_vector_test.cc | 627 IntVec v_in; in TEST() local 628 const int inlined_capacity = v_in.capacity(); in TEST() 629 Fill(&v_in, len); in TEST() 630 EXPECT_EQ(len, v_in.size()); in TEST() 631 EXPECT_LE(len, v_in.capacity()); in TEST() 634 IntVec v_temp(v_in); in TEST() 637 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() 638 if (v_in.size() > inlined_capacity) { in TEST() 648 IntVec v_temp(v_in); in TEST() 651 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() [all …]
|
/external/webrtc/third_party/abseil-cpp/absl/container/ |
D | inlined_vector_test.cc | 616 IntVec v_in; in TEST() local 617 const int inlined_capacity = v_in.capacity(); in TEST() 618 Fill(&v_in, len); in TEST() 619 EXPECT_EQ(len, v_in.size()); in TEST() 620 EXPECT_LE(len, v_in.capacity()); in TEST() 623 IntVec v_temp(v_in); in TEST() 626 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() 627 if (v_in.size() > inlined_capacity) { in TEST() 637 IntVec v_temp(v_in); in TEST() 640 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/ |
D | inlined_vector_test.cc | 627 IntVec v_in; in TEST() local 628 const int inlined_capacity = v_in.capacity(); in TEST() 629 Fill(&v_in, len); in TEST() 630 EXPECT_EQ(len, v_in.size()); in TEST() 631 EXPECT_LE(len, v_in.capacity()); in TEST() 634 IntVec v_temp(v_in); in TEST() 637 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() 638 if (v_in.size() > inlined_capacity) { in TEST() 648 IntVec v_temp(v_in); in TEST() 651 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() [all …]
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | loop_optimizer_test.cc | 754 Output v_in = ops::Const<float>(scope.WithOpName("v_in"), {123.0}, {}); in TEST_F() local 757 ops::Switch s1(scope.WithOpName("switch1"), v_in, ctrl1); in TEST_F() 762 ops::Switch s2(scope.WithOpName("switch2"), v_in, ctrl2); in TEST_F() 767 ops::Switch s3(scope.WithOpName("switch3"), v_in, ctrl3); in TEST_F() 772 ops::Switch s4(scope.WithOpName("switch4"), v_in, ctrl4); in TEST_F() 777 ops::Merge m2(scope.WithOpName("m2"), {v_in, square1}); in TEST_F() 778 ops::Merge m3(scope.WithOpName("m3"), {v_in, sqrt1}); in TEST_F() 782 ops::Switch s5(scope.WithOpName("switch5"), v_in, ctrl1); in TEST_F() 787 ops::Switch s6(scope.WithOpName("switch6"), v_in, ctrl1); in TEST_F()
|
D | dependency_optimizer_test.cc | 192 ops::Variable v_in(scope.WithOpName("v_in"), {3}, DT_FLOAT); in TEST_F() local 194 ops::Switch s(scope.WithOpName("switch"), v_in, v_ctrl); in TEST_F() 584 ops::Variable v_in(scope.WithOpName("v_in"), {3}, DT_FLOAT); in TEST_F() local 585 Output id_after_var = ops::Identity(scope.WithOpName("id_after_var"), v_in); in TEST_F() 588 scope.WithOpName("switch").WithControlDependencies(id_after_var), v_in, in TEST_F()
|
D | model_pruner_test.cc | 277 ops::Variable v_in(scope.WithOpName("v_in"), {3}, DT_FLOAT); in TEST_F() local 279 ops::Switch s(scope.WithOpName("switch"), v_in, v_ctrl); in TEST_F()
|
D | constant_folding_test.cc | 1770 ops::Variable v_in(scope.WithOpName("v_in"), {3}, DT_FLOAT); in TEST_F() local 1772 ops::Switch s1(scope.WithOpName("switch"), v_in, v_ctrl); in TEST_F() 1869 ops::Variable v_in(scope.WithOpName("v_in"), {3}, DT_FLOAT); in TEST_F() local 1871 ops::Switch s1(scope.WithOpName("switch"), v_in, v_ctrl); in TEST_F()
|
/external/angle/third_party/abseil-cpp/absl/container/ |
D | inlined_vector_test.cc | 627 IntVec v_in; in TEST() local 628 const int inlined_capacity = v_in.capacity(); in TEST() 629 Fill(&v_in, len); in TEST() 630 EXPECT_EQ(len, v_in.size()); in TEST() 631 EXPECT_LE(len, v_in.capacity()); in TEST() 634 IntVec v_temp(v_in); in TEST() 637 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() 638 if (v_in.size() > inlined_capacity) { in TEST() 648 IntVec v_temp(v_in); in TEST() 651 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() [all …]
|
/external/openscreen/third_party/abseil/src/absl/container/ |
D | inlined_vector_test.cc | 627 IntVec v_in; in TEST() local 628 const int inlined_capacity = v_in.capacity(); in TEST() 629 Fill(&v_in, len); in TEST() 630 EXPECT_EQ(len, v_in.size()); in TEST() 631 EXPECT_LE(len, v_in.capacity()); in TEST() 634 IntVec v_temp(v_in); in TEST() 637 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() 638 if (v_in.size() > inlined_capacity) { in TEST() 648 IntVec v_temp(v_in); in TEST() 651 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() [all …]
|
/external/brotli/c/enc/ |
D | brotli_bit_stream.c | 595 static void MoveToFrontTransform(const uint32_t* BROTLI_RESTRICT v_in, in MoveToFrontTransform() argument 604 max_value = v_in[0]; in MoveToFrontTransform() 606 if (v_in[i] > max_value) max_value = v_in[i]; in MoveToFrontTransform() 615 size_t index = IndexOf(mtf, mtf_size, (uint8_t)v_in[i]); in MoveToFrontTransform()
|