Home
last modified time | relevance | path

Searched refs:is_truncated (Results 1 – 11 of 11) sorted by relevance

/external/rust/crates/serde_json/src/lexical/
Dbhcomp.rs99 fn round_nearest_tie_even(fp: &mut ExtendedFloat, shift: i32, is_truncated: bool) { in round_nearest_tie_even()
101 if is_halfway && is_truncated { in round_nearest_tie_even()
125 let (mant, is_truncated) = bigmant.hi64(); in large_atof()
128 fp.round_to_native::<F, _>(|fp, shift| round_nearest_tie_even(fp, shift, is_truncated)); in large_atof()
Dparse.rs73 let is_truncated = true; in parse_truncated_float() localVariable
81 is_truncated, in parse_truncated_float()
Drounding.rs137 let is_truncated = round_toward(fp, shift); in round_downward() localVariable
138 downard(fp, is_truncated); in round_downward()
/external/openscreen/discovery/mdns/public/
Dmdns_constants.h172 constexpr uint16_t MakeFlags(MessageType type, bool is_truncated) { in MakeFlags() argument
176 if (is_truncated) { in MakeFlags()
/external/llvm-project/lldb/source/DataFormatters/
DStringPrinter.cpp425 bool is_truncated = false; in ReadEncodedBufferAndDumpToStream() local
444 is_truncated = true; in ReadEncodedBufferAndDumpToStream()
484 dump_options.SetIsTruncated(is_truncated); in ReadEncodedBufferAndDumpToStream()
/external/openscreen/discovery/mdns/
Dmdns_trackers_unittest.cc46 ACTION_P(VerifyTruncated, is_truncated) { in ACTION_P() argument
47 EXPECT_EQ(arg0.is_truncated(), is_truncated); in ACTION_P()
Dmdns_responder.cc282 return message.is_truncated() || message.questions().empty(); in IsMultiPacketTruncatedQueryMessage()
446 const bool message_is_truncated = message.is_truncated(); in ProcessMultiPacketTruncatedMessage()
Dmdns_writer.cc244 header.flags = MakeFlags(message.type(), message.is_truncated()); in Write()
Dmdns_records.h613 bool is_truncated() const { return is_truncated_; } in is_truncated() function
/external/tcpdump/
Dprint-smb.c1380 int is_truncated = 0; in netbeui_print() local
1390 is_truncated = 1; in netbeui_print()
1430 if (is_truncated) { in netbeui_print()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_evaluator.cc1033 const bool is_truncated = input_is_truncated || output_is_truncated; in Sweep() local
1034 const int64 ub = is_truncated && axis == 0 ? (length / 2) + 1 : length; in Sweep()