Home
last modified time | relevance | path

Searched refs:OSP_DCHECK_LE (Results 1 – 19 of 19) sorted by relevance

/external/openscreen/cast/standalone_sender/
Dstreaming_video_encoder.cc16 OSP_DCHECK_LE(1, params_.num_encode_threads); in StreamingVideoEncoder()
17 OSP_DCHECK_LE(kMinQuantizer, params_.min_quantizer); in StreamingVideoEncoder()
18 OSP_DCHECK_LE(params_.min_quantizer, params_.max_cpu_saver_quantizer); in StreamingVideoEncoder()
19 OSP_DCHECK_LE(params_.max_cpu_saver_quantizer, params_.max_quantizer); in StreamingVideoEncoder()
20 OSP_DCHECK_LE(params_.max_quantizer, kMaxQuantizer); in StreamingVideoEncoder()
22 OSP_DCHECK_LE(params_.max_time_utilization, 1.0); in StreamingVideoEncoder()
/external/openscreen/cast/streaming/
Drtcp_common.cc27 OSP_DCHECK_LE(with.report_count, in AppendFields()
125 OSP_DCHECK_LE(packet_fraction_lost_numerator, in AppendFields()
128 OSP_DCHECK_LE(cumulative_packets_lost, in AppendFields()
139 OSP_DCHECK_LE(jitter_ticks, int64_t{std::numeric_limits<uint32_t>::max()}); in AppendFields()
144 OSP_DCHECK_LE(delay_ticks, int64_t{std::numeric_limits<uint32_t>::max()}); in AppendFields()
Drtp_packetizer.cc70 OSP_DCHECK_LE(frame.new_playout_delay.count(), in GeneratePacket()
80 OSP_DCHECK_LE(packet_size, max_packet_size_); in GeneratePacket()
Dcompound_rtcp_builder.cc183 OSP_DCHECK_LE(playout_delay_.count(), std::numeric_limits<uint16_t>::max()); in AppendCastFeedbackPacket()
190 OSP_DCHECK_LE(num_loss_fields, std::numeric_limits<uint8_t>::max()); in AppendCastFeedbackPacket()
322 OSP_DCHECK_LE(num_ack_bitvector_octets, std::numeric_limits<uint8_t>::max()); in AppendCastFeedbackAckFields()
Dsender_packet_router.cc238 OSP_DCHECK_LE(burst_interval, kOneSecondInMilliseconds); in ComputeMaxPacketsPerBurst()
253 OSP_DCHECK_LE(burst_interval, kOneSecondInMilliseconds); in ComputeMaxBurstBitrate()
Dframe_collector.cc95 OSP_DCHECK_LE(chunk.payload.data() + chunk.payload.size(), in CollectRtpPacket()
Dreceiver.cc412 OSP_DCHECK_LE(new_checkpoint, latest_frame_expected_); in AdvanceCheckpoint()
433 OSP_DCHECK_LE(first_kept_frame, latest_frame_expected_); in DropAllFramesBefore()
Dsender.cc138 OSP_DCHECK_LE(num_frames_in_flight_, in EnqueueFrame()
/external/openscreen/util/
Dyet_another_bit_vector.cc119 OSP_DCHECK_LE(steps, size_); in ShiftRight()
196 OSP_DCHECK_LE(0, begin); in CountBitsSet()
197 OSP_DCHECK_LE(begin, end); in CountBitsSet()
198 OSP_DCHECK_LE(end, size_); in CountBitsSet()
Dosp_logging.h96 #define OSP_DCHECK_LE(a, b) OSP_CHECK_LE(a, b) macro
109 #define OSP_DCHECK_LE(a, b) OSP_EAT_STREAM << !((a) <= (b)) macro
/external/openscreen/cast/test/
Dmake_crl_tests.cc60 OSP_DCHECK_LE(serial, UINT64_MAX - 200); in MakeTbsCrl()
185 OSP_DCHECK_LE(serial, UINT64_MAX - 20); in CastMain()
200 OSP_DCHECK_LE(serial, UINT64_MAX - 20); in CastMain()
/external/openscreen/platform/impl/
Dtime.cc61 OSP_DCHECK_LE(since_epoch, a_year_before_overflow); in GetWallTimeSinceUnixEpoch()
Dtls_write_buffer.cc27 OSP_DCHECK_LE(bytes_currently_used, kBufferSizeBytes); in Push()
Dlogging_unittest.cc233 ASSERT_DEATH(OSP_DCHECK_LE(2, 1), in TEST_F()
Dudp_socket_posix.cc423 OSP_DCHECK_LE(static_cast<size_t>(bytes_received), packet.size()); in ReceiveMessageInternal()
/external/openscreen/osp/impl/quic/
Dquic_connection_impl.cc35 OSP_DCHECK_LE(buffer_length, in Write()
/external/openscreen/discovery/mdns/
Dmdns_writer.cc41 OSP_DCHECK_LE(begin + sizeof(uint16_t), end); in UpdateRecordLength()
Dmdns_querier.cc780 OSP_DCHECK_LE(update_count, 1); in ProcessMultiTrackedUniqueRecord()
/external/openscreen/cast/sender/channel/
Dcast_auth_util_unittest.cc93 OSP_DCHECK_LE(year, 2); in ConvertTimeSeconds()