/third_party/openssl/test/ |
H A D | memleaktest.c | 47 char *lost; in main() local 49 lost = OPENSSL_malloc(3); in main() 50 if (!TEST_ptr(lost)) in main() 53 strcpy(lost, "ab"); in main() 56 OPENSSL_free(lost); in main() 60 lost = NULL; in main()
|
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
H A D | ngtcp2_rst.c | 39 rs->lost = 0; in ngtcp2_rs_init() 56 rst->lost = 0; in ngtcp2_rst_init() 69 ent->rst.lost = rst->lost; in ngtcp2_rst_on_pkt_sent() 93 rs->lost = rst->lost - rs->prior_lost; in ngtcp2_rst_on_ack_recv() 128 rs->prior_lost = ent->rst.lost; in ngtcp2_rst_update_rate_sample()
|
H A D | ngtcp2_rst.h | 49 uint64_t lost; member 71 uint64_t lost; member
|
H A D | ngtcp2_cc.h | 57 * acked/lost/sent packet. 78 * :member:`lost` is the number of bytes lost when this packet was 81 uint64_t lost; member 98 * acknowledged and lost bytes. 111 * :member:`bytes_lost` is the number of bytes declared lost. 147 * called with a lost packet. 156 * called when congestion event happens (e.g., when packet is lost). 261 * a packet is lost. 266 * when congestion event happens (.e.g, packet is lost) [all...] |
H A D | ngtcp2_cc.c | 46 ngtcp2_tstamp sent_ts, uint64_t lost, in ngtcp2_cc_pkt_init() 52 pkt->lost = lost; in ngtcp2_cc_pkt_init() 44 ngtcp2_cc_pkt_init(ngtcp2_cc_pkt *pkt, int64_t pkt_num, size_t pktlen, ngtcp2_pktns_id pktns_id, ngtcp2_tstamp sent_ts, uint64_t lost, uint64_t tx_in_flight, int is_app_limited) ngtcp2_cc_pkt_init() argument
|
H A D | ngtcp2_bbr2.c | 935 return rs->lost * NGTCP2_BBR_LOSS_THRESH_DENOM > in is_inflight_too_high() 967 rs.lost = bbr->rst->lost - pkt->lost; in bbr_handle_lost_packet() 987 assert(rs->lost >= pkt->pktlen); in bbr_inflight_hi_from_lost_packet() 989 /* bbr->rst->lost is not incremented for pkt yet */ in bbr_inflight_hi_from_lost_packet() 992 rs->lost * NGTCP2_BBR_LOSS_THRESH_DENOM) { in bbr_inflight_hi_from_lost_packet() 997 rs->lost * NGTCP2_BBR_LOSS_THRESH_DENOM) / in bbr_inflight_hi_from_lost_packet()
|
H A D | ngtcp2_rtb.h | 211 been reclaimed on PTO. It is not marked lost yet and still 215 has been marked lost and, optionally, scheduled to retransmit. */ 250 /* lost_ts is the time when this entry is marked lost. */ 259 uint64_t lost; member 399 * ngtcp2_rtb_detect_lost_pkt detects lost packets and prepends the 409 * ngtcp2_rtb_remove_expired_lost_pkt removes expired lost packet. 416 * retained packet was lost. It returns UINT64_MAX if no such packet 447 * ngtcp2_rtb_remove_expired_lost_pkt ensures that the number of lost 454 * are in-flight and not marked lost to send them in PTO probe. The
|
H A D | ngtcp2_rtb.c | 402 /* If PMTUD packet is lost, we do not report the lost bytes to the in rtb_on_remove() 588 * lost DATAGRAM frames. 634 rtb->pktns_id, ent->ts, ent->rst.lost, in rtb_on_pkt_lost() 890 rtb->pktns_id, ent->ts, ent->rst.lost, in rtb_on_pkt_acked() 1114 rtb->rst->lost += cc_ack.bytes_lost; in ngtcp2_rtb_recv_ack() 1166 * lost during validation period. 1213 /* All entries from ent are considered to be lost. */ in rtb_detect_lost_pkt() 1260 /* If only PMTUD packets are lost, do not trigger congestion in rtb_detect_lost_pkt() 1353 "removing stale lost pk in ngtcp2_rtb_remove_excessive_lost_pkt() [all...] |
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_device.h | 133 int lost; member 143 * kernel says the device has been lost, it MUST call vk_device_set_lost(). 319 return p_atomic_read(&device->_lost.lost) > 0; in vk_device_is_lost_no_report() 325 int lost = vk_device_is_lost_no_report(device); in vk_device_is_lost() local 326 if (unlikely(lost && !device->_lost.reported)) in vk_device_is_lost() 328 return lost; in vk_device_is_lost()
|
H A D | vk_queue.h | 103 int lost; member 191 return queue->_lost.lost; in vk_queue_is_lost()
|
H A D | vk_device.c | 282 assert(p_atomic_read(&device->_lost.lost) > 0); in _vk_device_report_lost() 287 if (queue->_lost.lost) { in _vk_device_report_lost() 303 /* This flushes out any per-queue device lost messages */ in _vk_device_set_lost() 307 p_atomic_inc(&device->_lost.lost); in _vk_device_set_lost()
|
H A D | vk_queue.c | 118 if (queue->_lost.lost) in _vk_queue_set_lost() 121 queue->_lost.lost = true; in _vk_queue_set_lost() 130 p_atomic_inc(&queue->base.device->_lost.lost); in _vk_queue_set_lost()
|
/third_party/ffmpeg/libavformat/ |
H A D | rtpdec.c | 319 uint32_t lost; in ff_rtp_check_and_send_back_rr() local 356 lost = expected - stats->received; in ff_rtp_check_and_send_back_rr() 357 lost = FFMIN(lost, 0xffffff); // clamp it since it's only 24 bits... in ff_rtp_check_and_send_back_rr() 368 fraction = (fraction << 24) | lost; in ff_rtp_check_and_send_back_rr() 370 avio_wb32(pb, fraction); /* 8 bits of fraction, 24 bits of total packets lost */ in ff_rtp_check_and_send_back_rr()
|
/third_party/selinux/libselinux/src/ |
H A D | avc.c | 610 int lost = missed; 614 if (lost) { 617 lost);
|
/third_party/libabigail/src/ |
H A D | abg-reporter-priv.cc | 1048 bool lost = get_member_is_static(decl1); in maybe_report_diff_for_member() local 1052 if (lost) in maybe_report_diff_for_member()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | ConstantFolding.cpp | 1737 bool lost = false; in ConstantFoldScalarCall1() local 1738 Val.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven, &lost); in ConstantFoldScalarCall1() local 1977 bool lost = false; in ConstantFoldScalarCall1() local 1979 Ty->getFltSemantics(), APFloat::rmNearestTiesToEven, &lost); in ConstantFoldScalarCall1() 1983 assert(status == APFloat::opOK && !lost && in ConstantFoldScalarCall1() 1984 "Precision lost during fp16 constfolding"); in ConstantFoldScalarCall1()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
H A D | Renderer9.cpp | 168 // If the device is lost, reset it first to prevent leaving the driver in an unstable state in ~Renderer9() 217 // inclined to report a lost context, for example when the user switches in initialize() 326 << "CreateDevice failed: device lost or out of memory (" << gl::FmtHR(result) << ")"; in initialize() 341 << "CreateDevice2 failed: device lost, not available, or of out of memory (" in initialize() 376 // NOTE: this is also needed after a device lost/reset 619 // lost at unexpected times. in startScene() 629 // EndScene can fail if the device was lost, for example due in endScene() 685 // some drivers seem to return S_FALSE even if the device is lost in finish() 2255 bool lost = testDeviceLost(); in resetDevice() local 2261 for (int attempts = 3; lost in resetDevice() [all...] |
/third_party/alsa-lib/src/timer/ |
H A D | timer.c | 860 * \brief get master tick lost count 862 * \return master tick lost count 867 return status->lost; in snd_timer_status_get_lost()
|
/third_party/ffmpeg/tests/fate/ |
H A D | matroska.mak | 189 # (and therefore lost). It moreover tests that the muxer writes CuePoints
|
/third_party/alsa-lib/include/sound/uapi/ |
H A D | asound.h | 960 unsigned int lost; /* counter of master tick lost */ member
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | vp3dsp.asm | 63 paddb m2, m6 ; extra bits lost in shifts
|
/third_party/curl/projects/ |
H A D | build-openssl.bat | 254 rem of the other, otherwise pdb files will be lost between builds.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/AsmParser/ |
H A D | AMDGPUAsmParser.cpp | 1512 // We allow precision lost but not overflow or underflow in canLosslesslyConvertToFPType() 1763 bool lost; in addLiteralImmOperand() local 1767 APFloat::rmNearestTiesToEven, &lost); in addLiteralImmOperand() local 1768 // We allow precision lost but not overflow or underflow. This should be in addLiteralImmOperand()
|
/third_party/libbpf/src/ |
H A D | libbpf.c | 13157 uint64_t lost; member 13184 pb->lost_cb(pb->ctx, cpu_buf->cpu, s->lost);
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 6626 % active too. Otherwise, they get lost as the first character on a 8352 % would be lost.
|