Home
last modified time | relevance | path

Searched refs:second_value (Results 1 – 14 of 14) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
Dshape_inference.cc1046 const int64_t second_value = Value(second); in Add() local
1050 } else if (second_value == 0) { in Add()
1052 } else if (first_value == kUnknownDim || second_value == kUnknownDim) { in Add()
1059 const int64_t sum = static_cast<uint64>(first_value) + second_value; in Add()
1062 first_value, " and ", second_value); in Add()
1073 const int64_t second_value = Value(second); in Subtract() local
1075 if (second_value == 0) { in Subtract()
1077 } else if (first_value == kUnknownDim || second_value == kUnknownDim) { in Subtract()
1082 if (first_value < second_value) { in Subtract()
1084 "Negative dimension size caused by subtracting ", second_value, in Subtract()
[all …]
/external/python/cpython3/Lib/importlib/resources/
D_itertools.py28 second_value = next(it)
34 'and perhaps more.'.format(first_value, second_value)
/external/capstone/suite/cstest/include/
Dcapstone_test.h51 unsigned int second_value; member
/external/cronet/tot/third_party/protobuf/python/google/protobuf/internal/
Dwell_known_types.py154 second_value = time_value
157 second_value = time_value[:point_position]
159 if 't' in second_value:
162 'lowercase \'t\' is not accepted'.format(second_value))
163 date_object = datetime.datetime.strptime(second_value, _TIMESTAMPFOMAT)
/external/protobuf/python/google/protobuf/internal/
Dwell_known_types.py154 second_value = time_value
157 second_value = time_value[:point_position]
159 if 't' in second_value:
162 'lowercase \'t\' is not accepted'.format(second_value))
163 date_object = datetime.datetime.strptime(second_value, _TIMESTAMPFOMAT)
/external/cronet/stable/third_party/protobuf/python/google/protobuf/internal/
Dwell_known_types.py154 second_value = time_value
157 second_value = time_value[:point_position]
159 if 't' in second_value:
162 'lowercase \'t\' is not accepted'.format(second_value))
163 date_object = datetime.datetime.strptime(second_value, _TIMESTAMPFOMAT)
/external/tensorflow/tensorflow/core/common_runtime/
Ddirect_session_test.cc852 Tensor second_value(DT_FLOAT, TensorShape({})); in TEST() local
853 second_value.scalar<float>()() = 2.0; in TEST()
854 Node* second_const = test::graph::Constant(&g, second_value); in TEST()
925 Tensor second_value(DT_FLOAT, TensorShape({})); in TEST() local
926 second_value.scalar<float>()() = 2.0; in TEST()
927 Node* second_const = test::graph::Constant(&g, second_value); in TEST()
1087 Tensor second_value(DT_FLOAT, TensorShape({})); in TEST() local
1088 second_value.scalar<float>()() = 2.0; in TEST()
1089 Node* second_const = test::graph::Constant(&g, second_value); in TEST()
1579 Tensor second_value(DT_FLOAT, TensorShape({})); in TEST() local
[all …]
/external/capstone/suite/cstest/src/
Dmain.c83 if (cs_option(*handle, options[i].first_value, options[i].second_value) != CS_ERR_OK) { in setup_MC()
193 if (cs_option(*handle, options[i].first_value, options[i].second_value) != CS_ERR_OK) { in setup_issue()
/external/python/apitools/apitools/base/py/
Dencoding_test.py201 second_value = 2 variable in MessageWithRemappings.SomeEnum
214 second_value = 2 variable in MessageWithPackageAndRemappings.SomeEnum
575 MessageWithRemappings.SomeEnum.second_value,
/external/mesa3d/src/compiler/nir/tests/
Dvars_tests.cpp431 nir_def *second_value = nir_imm_ivec2(b, 30, 40); in TEST_F() local
432 nir_store_var(b, v[0], second_value, mask); in TEST_F()
449 EXPECT_EQ(store_to_v1->src[1].ssa, second_value); in TEST_F()
459 nir_def *second_value = nir_imm_ivec2(b, 30, 40); in TEST_F() local
460 nir_store_var(b, v[0], second_value, 1 << 0); in TEST_F()
495 nir_def *second_value = nir_imm_ivec2(b, 30, 40); in TEST_F() local
496 nir_store_var(b, v[0], second_value, 1 << 0); in TEST_F()
532 nir_def *second_value = nir_imm_ivec2(b, 30, 40); in TEST_F() local
533 nir_store_var_volatile(b, v[0], second_value, mask); in TEST_F()
/external/cronet/tot/net/third_party/quiche/src/quiche/balsa/
Dbalsa_headers.cc302 absl::string_view second_value = value; in AppendAndMakeDescription() local
314 memcpy(cur_loc, second_value.data(), second_value.size()); in AppendAndMakeDescription()
/external/cronet/stable/net/third_party/quiche/src/quiche/balsa/
Dbalsa_headers.cc302 absl::string_view second_value = value; in AppendAndMakeDescription() local
314 memcpy(cur_loc, second_value.data(), second_value.size()); in AppendAndMakeDescription()
/external/libaom/aom_dsp/x86/
Dvariance_avx2.c860 const int second_value = _mm256_extract_epi32(sum_sse_order_add_final, 4); in calc_sum_sse_order() local
861 *tot_sum += second_value; in calc_sum_sse_order()
/external/pytorch/torch/csrc/distributed/c10d/
Dinit.cpp1149 >>> store.compare_set("key", "first_value", "second_value") in c10d_init()
1150 >>> # Should return "second_value" in c10d_init()