Home
last modified time | relevance | path

Searched refs:int_val (Results 1 – 25 of 33) sorted by relevance

12

/third_party/boost/libs/accumulators/test/
Dvalue.cpp16 BOOST_PARAMETER_KEYWORD(tag, int_val)
25 accumulator_set<double, stats<tag::value<int, my::tag::int_val> > > acc2( in test_stat()
26 my::int_val = i); in test_stat()
28 int val1 = value<int, my::tag::int_val>(acc2); in test_stat()
29 int val2 = value_tag<my::tag::int_val>(acc2); in test_stat()
/third_party/mesa3d/src/compiler/nir/
Dnir_lower_subgroups.c625 nir_ssa_def *int_val = ballot_type_to_uint(b, intrin->src[0].ssa, in lower_subgroups_instr() local
649 int_val = nir_iand(b, int_val, build_subgroup_mask(b, options)); in lower_subgroups_instr()
656 if (int_val->num_components > 1) { in lower_subgroups_instr()
661 int_val = in lower_subgroups_instr()
662 nir_vector_extract(b, int_val, in lower_subgroups_instr()
663 nir_udiv_imm(b, idx, int_val->bit_size)); in lower_subgroups_instr()
666 return nir_i2b(b, nir_iand_imm(b, nir_ushr(b, int_val, idx), 1)); in lower_subgroups_instr()
669 return vec_bit_count(b, int_val); in lower_subgroups_instr()
671 return vec_find_lsb(b, int_val); in lower_subgroups_instr()
673 return vec_find_msb(b, int_val); in lower_subgroups_instr()
[all …]
/third_party/gstreamer/gstreamer/tests/check/gst/
Dgsttracerrecord.c105 gint int_val; in GST_START_TEST() local
140 "int", G_TYPE_INT, &int_val, in GST_START_TEST()
143 fail_unless_equals_int (int_val, 1); in GST_START_TEST()
/third_party/glib/gobject/
Dgclosure.c1260 ffi_arg *int_val = (ffi_arg*) value; in value_from_ffi_type() local
1269 g_value_set_int (gvalue, (gint) *int_val); in value_from_ffi_type()
1278 g_value_set_boolean (gvalue, (gboolean) *int_val); in value_from_ffi_type()
1282 g_value_take_string (gvalue, (gchar*) *int_val); in value_from_ffi_type()
1288 g_value_set_schar (gvalue, (gint8) *int_val); in value_from_ffi_type()
1291 g_value_set_uchar (gvalue, (guchar) *int_val); in value_from_ffi_type()
1294 g_value_set_uint (gvalue, (guint) *int_val); in value_from_ffi_type()
1300 g_value_set_long (gvalue, (glong) *int_val); in value_from_ffi_type()
1303 g_value_set_ulong (gvalue, (gulong) *int_val); in value_from_ffi_type()
1306 g_value_set_int64 (gvalue, (gint64) *int_val); in value_from_ffi_type()
[all …]
/third_party/boost/libs/log/src/setup/
Ddefault_filter_factory.cpp315 long int_val = 0; in parse_argument() local
316 if (qi::parse(begin, end, qi::long_, int_val) && begin == end) in parse_argument()
320 … return predicate_wrapper< value_types, predicate >(name, predicate(RelationT(), arg, int_val)); in parse_argument()
/third_party/mesa3d/src/broadcom/cle/
Dv3d_packet_helpers.h137 const int64_t int_val = llroundf(v * factor); in __gen_sfixed() local
140 return (int_val & mask) << start; in __gen_sfixed()
/third_party/gn/src/gn/
Dvalue.cc42 Value::Value(const ParseNode* origin, int64_t int_val) in Value() argument
43 : type_(INTEGER), origin_(origin), int_value_(int_val) {} in Value()
Dvalue.h34 Value(const ParseNode* origin, int64_t int_val);
/third_party/mindspore/mindspore/lite/tools/converter/parser/tf/
Dtf_argmin_parser.cc39 prim->set_axis(axis_tensor.int_val(0)); in Parse()
Dtf_concat_parser.cc42 prim->set_axis(tensor_proto.int_val(0)); in Parse()
Dtf_argmax_parser.cc44 prim->set_axis(axis_tensor.int_val(0)); in Parse()
Dtf_reverse_parser.cc46 axis.push_back(tensor_proto.int_val(i)); in Parse()
Dtf_slice_parser.cc44 begin.push_back(tensor_proto.int_val(i)); in Parse()
Dtf_gather_parser.cc53 axis = tensor_proto.int_val(0); in Parse()
Dtf_split_parser.cc60 auto splitDim = attr_value.tensor().int_val(0); in Parse()
/third_party/cef/libcef/common/
Dcrash_reporter_client.cc262 int int_val; in ParseZeroBasedInt() local
263 if (base::StringToInt(value, &int_val) && int_val > 0) in ParseZeroBasedInt()
264 return int_val; in ParseZeroBasedInt()
/third_party/flatbuffers/tests/
DJavaScriptTest.js360 var int_val = 0x83333333 | 0;
389 case 5: builder.addFieldInt32(f, int_val, 0); break;
424 case 5: assert.strictEqual(view.getInt32(field_offset, true), int_val); break;
DphpTest.php205 $int_val = 0x7fffffff | 0;
251 $builder->addIntX($f, $int_val, 0);
303 $assert->strictEqual($view->getInt($field_offset), $int_val);
/third_party/protobuf/src/google/protobuf/util/internal/
Djson_stream_parser.h127 int64 int_val; member
Djson_stream_parser.cc536 ow_->RenderInt64(key_, number.int_val); in ParseNumber()
631 if (safe_strto64(number, &result->int_val)) { in ParseNumberHelper()
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dstorage.c232 int32_t int_val = 0; in native_slot_set_value_and_case() local
245 int_val = NUM2INT(lookup); in native_slot_set_value_and_case()
249 int_val = NUM2INT(value); in native_slot_set_value_and_case()
251 DEREF(memory, int32_t) = int_val; in native_slot_set_value_and_case()
/third_party/mindspore/mindspore/lite/test/ut/src/runtime/kernel/arm/test_data/models/mobilenet_quant/
Dmobilenet_v1_1.0_224_quant_eval.pbtxt400 int_val: 32
578 int_val: 32
756 int_val: 32
934 int_val: 32
1538 int_val: 32
1716 int_val: 32
1894 int_val: 32
2072 int_val: 32
2658 int_val: 64
2836 int_val: 64
[all …]
/third_party/mindspore/third_party/proto/tensorflow/
Dtensor.proto56 repeated int32 int_val = 7 [packed = true]; field
/third_party/mindspore/mindspore/ccsrc/debug/debugger/
Ddebug_graph.proto104 optional int64 int_val = 3; // int field
/third_party/mindspore/mindspore/ccsrc/utils/
Danf_ir.proto103 optional int64 int_val = 3; // int field

12