Home
last modified time | relevance | path

Searched refs:b_value (Results 1 – 25 of 36) sorted by relevance

12

/external/libbrillo/brillo/
Dkey_value_store_test.cc46 bool b_value = false; in TEST_F() local
47 EXPECT_TRUE(moved_to.GetBoolean("a_boolean", &b_value)); in TEST_F()
48 EXPECT_TRUE(b_value); in TEST_F()
61 bool b_value = false; in TEST_F() local
62 EXPECT_TRUE(moved_to.GetBoolean("a_boolean", &b_value)); in TEST_F()
63 EXPECT_TRUE(b_value); in TEST_F()
/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dtest_core_reloc_existence.c20 int b_value; member
55 out->b_value = BPF_CORE_READ(in, b); in test_core_existence()
57 out->b_value = 0xff000002u; in test_core_existence()
/external/pdfium/fxbarcode/pdf417/
DBC_PDF417HighLevelEncoder.cpp123 size_t b_value = b.value(); in EncodeHighLevel() local
124 if (b_value == 0) in EncodeHighLevel()
125 b_value = 1; in EncodeHighLevel()
126 if (b_value == 1 && encodingMode == EncodingMode::kText) { in EncodeHighLevel()
129 EncodeBinary(bytes.raw_span(), p, b_value, encodingMode, &sb); in EncodeHighLevel()
133 p += b_value; in EncodeHighLevel()
/external/ComputeLibrary/tests/validation/CL/
DGEMMLowpMatrixMultiplyReshapedOnlyRHS.cpp116 …ed int m_value, unsigned int n_value, unsigned int k_value, unsigned int b_value, unsigned int m0_… in validate_configuration() argument
140 const TensorShape lhs_shape(K, M, b_value); in validate_configuration()
141 const TensorShape rhs_shape(N, K, b_value); in validate_configuration()
176 m_value, n_value, k_value, b_value, m0_value, n0_value, k0_value, h0_value, i_value_rhs) in TEST_SUITE()
178 …validate_configuration(m_value, n_value, k_value, b_value, m0_value, n0_value, k0_value, h0_value,… in TEST_SUITE()
DGEMMMatrixMultiplyNative.cpp249 …ed int m_value, unsigned int n_value, unsigned int k_value, unsigned int b_value, unsigned int m0_… in validate_configuration() argument
270 const TensorShape lhs_shape(K, M, b_value); in validate_configuration()
271 const TensorShape rhs_shape(N, K, b_value); in validate_configuration()
274 broadcast_bias? 1 : b_value); in validate_configuration()
423 m_value, n_value, k_value, b_value, m0_value, n0_value, k0_value, broadcast_bias, act_value) in TEST_SUITE_END()
425 …validate_configuration(m_value, n_value, k_value, b_value, m0_value, n0_value, k0_value, broadcast… in TEST_SUITE_END()
DGEMMMatrixMultiplyReshapedOnlyRHS.cpp268 …nfiguration(unsigned int m_value, unsigned int n_value, unsigned int k_value, unsigned int b_value, in validate_configuration() argument
298 const TensorShape lhs_shape(K, M, b_value); in validate_configuration()
299 const TensorShape rhs_shape(N, K, b_value); in validate_configuration()
309 broadcast_bias? 1 : b_value); in validate_configuration()
359 b_value, m0_value, n0_value, k0_value, broadcast_bias, input_as_3d, depth_output_gemm3d, export_to_…
369 …bool status = validate_configuration(37, 51, 23, b_value, m0_value, n0_value, k0_value, 1, false, …
/external/libtextclassifier/abseil-cpp/absl/strings/internal/
Dcharconv_bigint_test.cc113 BigUnsigned<84> b_value("2" + std::string(b, '0')); in TEST() local
115 b_value.MultiplyBy(a_value); in TEST()
116 EXPECT_EQ(b_value, expected_product); in TEST()
/external/openscreen/third_party/abseil/src/absl/strings/internal/
Dcharconv_bigint_test.cc168 BigUnsigned<84> b_value("2" + std::string(b, '0')); in TEST() local
170 b_value.MultiplyBy(a_value); in TEST()
171 EXPECT_EQ(b_value, expected_product); in TEST()
/external/abseil-cpp/absl/strings/internal/
Dcharconv_bigint_test.cc168 BigUnsigned<84> b_value("2" + std::string(b, '0')); in TEST() local
170 b_value.MultiplyBy(a_value); in TEST()
171 EXPECT_EQ(b_value, expected_product); in TEST()
/external/webrtc/third_party/abseil-cpp/absl/strings/internal/
Dcharconv_bigint_test.cc168 BigUnsigned<84> b_value("2" + std::string(b, '0')); in TEST() local
170 b_value.MultiplyBy(a_value); in TEST()
171 EXPECT_EQ(b_value, expected_product); in TEST()
/external/tensorflow/third_party/absl/abseil-cpp/absl/strings/internal/
Dcharconv_bigint_test.cc168 BigUnsigned<84> b_value("2" + std::string(b, '0')); in TEST() local
170 b_value.MultiplyBy(a_value); in TEST()
171 EXPECT_EQ(b_value, expected_product); in TEST()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/internal/
Dcharconv_bigint_test.cc168 BigUnsigned<84> b_value("2" + std::string(b, '0')); in TEST() local
170 b_value.MultiplyBy(a_value); in TEST()
171 EXPECT_EQ(b_value, expected_product); in TEST()
/external/cronet/third_party/abseil-cpp/absl/strings/internal/
Dcharconv_bigint_test.cc168 BigUnsigned<84> b_value("2" + std::string(b, '0')); in TEST() local
170 b_value.MultiplyBy(a_value); in TEST()
171 EXPECT_EQ(b_value, expected_product); in TEST()
/external/angle/third_party/abseil-cpp/absl/strings/internal/
Dcharconv_bigint_test.cc168 BigUnsigned<84> b_value("2" + std::string(b, '0')); in TEST() local
170 b_value.MultiplyBy(a_value); in TEST()
171 EXPECT_EQ(b_value, expected_product); in TEST()
/external/tensorflow/tensorflow/core/kernels/
Dreference_gemm.h79 const int32_t b_value = static_cast<int32>(b[b_index]) - offset_b; in ReferenceGemm() local
80 total += (a_value * b_value); in ReferenceGemm()
Dgemm_functors.h81 const T2 b_value = b[b_index]; in operator() local
82 total += (a_value * b_value); in operator()
Dsparse_tensor_dense_matmul_op_gpu.cu.cc74 const T b_value = ADJ_B ? Eigen::numext::conj(b_input) : b_input; in SparseTensorDenseMatMulKernel() local
76 static_cast<Tsum>(a_value) * static_cast<Tsum>(b_value)); in SparseTensorDenseMatMulKernel()
Dbetainc_op.cc95 auto b_value = b.shaped<T, NDIM>(b_shaper.x_reshape()); \ in Compute()
98 BCast::ToIndexArray<NDIM>(a_shaper.x_bcast()), b_value, \ in Compute()
Dsparse_tensor_dense_matmul_op.cc286 const T b_value = maybe_adjoint_b(k, n); in SparseTensorDenseMatMulImpl() local
287 out(m, n) += static_cast<Tsum>(a_value) * static_cast<Tsum>(b_value); in SparseTensorDenseMatMulImpl()
/external/python/cpython3/Modules/_ctypes/
Dctypes.h54 union value b_value; member
84 union value b_value; member
117 #define _CDataObject_HasExternalBuffer(v) ((v)->b_ptr != (char *)&(v)->b_value)
/external/python/cpython2/Modules/_ctypes/
Dctypes.h94 union value b_value; member
124 union value b_value; member
157 #define _CDataObject_HasExternalBuffer(v) ((v)->b_ptr != (char *)&(v)->b_value)
/external/XNNPACK/test/
Dspmm-microkernel-tester.h162 for (float& b_value : b) { in Test() local
164 b_value = 0.0f; in Test()
327 for (uint16_t& b_value : b) { in Test()
329 b_value = 0; in Test()
/external/tensorflow/tensorflow/python/ops/structured/
Dstructured_array_ops_test.py74 b_value = b.field_value(field)
75 self.assertIs(type(a_value), type(b_value))
77 self._assertStructuredEqual(a_value, b_value, msg, check_shape)
79 self.assertAllEqual(a_value, b_value, msg)
/external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/
Dcore_reloc.c635 .b_value = 2,
655 .b_value = 0xff000002u,
674 .b_value = 0xff000002u,
/external/mbedtls/scripts/mbedtls_dev/
Dbignum_core.py231 for a_value, b_value in cls.get_value_pairs():
233 cur_op = cls(a_value, b_value, s_value)

12