Home
last modified time | relevance | path

Searched refs:value_out (Results 1 – 8 of 8) sorted by relevance

/third_party/mesa3d/src/gallium/tests/unit/
Du_cache_test.c75 cache_test_value *value_out; in main() local
90 value_out = (cache_test_value *) util_cache_get(cache, key); in main()
91 assert(value_out == NULL); in main()
92 (void)value_out; in main()
107 value_out = util_cache_get(cache, key); in main()
108 assert(value_out != NULL); in main()
109 assert(value_in == value_out); in main()
110 assert(*value_in == *value_out); in main()
/third_party/boost/libs/convert/test/
Dencryption.cpp16 my_cypher(std::string const& value_in, boost::optional<std::string>& value_out) in my_cypher() argument
20 value_out = value_in; in my_cypher()
22 for (std::string::iterator it = value_out->begin(); it != value_out->end(); ++it) in my_cypher()
Dcallable.cpp23 void plain_old_func(string const& value_in, boost::optional<int>& value_out) in plain_old_func() argument
28 value_out = lexical_cast<int>(value_in); in plain_old_func()
43 assign(boost::optional<Type>& value_out, Type const& value_in) in assign() argument
45 value_out = value_in; in assign()
/third_party/boost/libs/locale/test/
Dtest_formatting.cpp143 #define TEST_FP1(manip,value_in,str,type,value_out) \ argument
146 TEST_PAR(manip,type,str,value_out); \
149 #define TEST_FP2(m1,m2,value_in,str,type,value_out) \ argument
152 TEST_PAR(m1>>m2,type,str,value_out); \
155 #define TEST_FP3(m1,m2,m3,value_in,str,type,value_out) \ argument
158 TEST_PAR(m1>>m2>>m3,type,str,value_out); \
161 #define TEST_FP4(m1,m2,m3,m4,value_in,str,type,value_out) \ argument
164 TEST_PAR(m1>>m2>>m3>>m4,type,str,value_out); \
/third_party/mindspore/tests/mindspore_test_framework/apps/
Dbert_attention_submodules.py267 value_out = self.value_layer(to_tensor_2d)
272 value_layer = self.reshape(value_out, self.shp_to)
/third_party/mindspore/tests/st/networks/models/bert/src/
Dbert_model.py500 value_out = self.value_layer(to_tensor_2d)
548 value_layer = self.reshape(value_out, self.shape_to)
/third_party/mindspore/tests/st/fl/albert/src/
Dmodel.py452 value_out = self.value(to_tensor_2d)
492 value_layer = self.reshape(value_out, self.shape_to)
/third_party/curl/src/
Dtool_getparam.c493 curl_off_t *value_out) in GetSizeParameter() argument
535 *value_out = value; in GetSizeParameter()