/foundation/CastEngine/castengine_wifi_display/services/protocol/rtp/src/ |
H A D | rtp_codec_aac.cpp | 47 auto stamp = rtp->GetStampMS(); in InputRtp() local 63 lastDts_ = stamp; in InputRtp() 66 auto dtsInc_ = (stamp - lastDts_) / auHeaderCount; in InputRtp() 68 "RtpDecoderAAC::InputRtp seq: %{public}d payloadLen: %{public}zu auHeaderCount: %{public}d stamp: %{public}d " in InputRtp() 70 rtp->GetSeq(), rtp->GetPayloadSize(), auHeaderCount, stamp, dtsInc_); in InputRtp() 93 lastDts_ = stamp; in InputRtp() 172 auto stamp = frame->Dts(); in InputFrame() local 189 MakeAACRtp(sectionBuf_, remain_size + 4, true, stamp); // 4:byte offset in InputFrame() 201 MakeAACRtp(sectionBuf_, max_size + 4, false, stamp); // 4:byte offset in InputFrame() 212 void RtpEncoderAAC::MakeAACRtp(const void *data, size_t len, bool mark, uint32_t stamp) in MakeAACRtp() argument [all...] |
H A D | rtp_codec_h264.cpp | 52 auto stamp = rtp->GetStampMS(); in InputRtp() local 55 MEDIA_LOGD("rtpDecoderH264::InputRtp length: %{public}d, stamp: %{public}d, seq: %{public}d, nal: %{public}d.", in InputRtp() 56 length, stamp, seq, nal); in InputRtp() 60 UnpackStapA(rtp, frame + 1, length - 1, stamp); in InputRtp() 63 UnpackFuA(rtp, frame, length, stamp, seq); in InputRtp() 68 UnpackSingle(rtp, frame, length, stamp); in InputRtp() 87 bool RtpDecoderH264::UnpackSingle(const RtpPacket::Ptr &rtp, const uint8_t *ptr, ssize_t size, uint32_t stamp) in UnpackSingle() argument 94 frame_->pts_ = stamp; in UnpackSingle() 100 bool RtpDecoderH264::UnpackStapA(const RtpPacket::Ptr &rtp, const uint8_t *ptr, ssize_t size, uint32_t stamp) in UnpackStapA() argument 114 if (UnpackSingle(rtp, ptr, len, stamp)) { in UnpackStapA() 123 UnpackFuA(const RtpPacket::Ptr &rtp, const uint8_t *ptr, ssize_t size, uint32_t stamp, uint16_t seq) UnpackFuA() argument [all...] |
H A D | rtp_codec_g711.cpp | 36 auto stamp = rtp->GetStampMS(); in InputRtp() local 39 if (frame_->dts_ != stamp || frame_->Size() > maxFrameSize_) { in InputRtp() 45 frame_->dts_ = stamp; in InputRtp() 100 auto stamp = cacheFrame_->Pts(); in InputFrame() local 103 auto rtpPack = MakeRtp(ptr, len, false, stamp); in InputFrame()
|
H A D | rtp_maker.cpp | 43 RtpPacket::Ptr RtpMaker::MakeRtp(const void *data, size_t len, bool mark, uint32_t stamp) in MakeRtp() argument 63 header->stamp_ = htonl(uint64_t(stamp) * (sampleRate_ / 1000)); // 1000:unit in MakeRtp()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/quickchecking/src/ |
H A D | fuzzers.rs | 163 /// identifiers unique by incorporating the `stamp` parameter into it's name. 165 fn make_unique(&mut self, stamp: usize); in make_unique() 171 fn make_unique(&mut self, stamp: usize) { in make_unique() 173 DeclarationC::FunctionDecl(ref mut d) => d.make_unique(stamp), in make_unique() 174 DeclarationC::FunctionPtrDecl(ref mut d) => d.make_unique(stamp), in make_unique() 175 DeclarationC::StructDecl(ref mut d) => d.make_unique(stamp), in make_unique() 176 DeclarationC::UnionDecl(ref mut d) => d.make_unique(stamp), in make_unique() 177 DeclarationC::VariableDecl(ref mut d) => d.make_unique(stamp), in make_unique() 350 fn make_unique(&mut self, stamp: usize) { in fmt() 351 self.ident_id += &format!("_{}", stamp); in fmt() [all...] |
/third_party/curl/lib/ |
H A D | hsts.c | 308 struct tm stamp; in hsts_push() local 316 result = Curl_gmtime((time_t)sts->expires, &stamp); in hsts_push() 321 stamp.tm_year + 1900, stamp.tm_mon + 1, stamp.tm_mday, in hsts_push() 322 stamp.tm_hour, stamp.tm_min, stamp.tm_sec); in hsts_push() 338 struct tm stamp; in hsts_out() local 340 CURLcode result = Curl_gmtime((time_t)sts->expires, &stamp); in hsts_out() [all...] |
H A D | altsvc.c | 255 struct tm stamp; in altsvc_out() local 260 CURLcode result = Curl_gmtime(as->expires, &stamp); in altsvc_out() 290 stamp.tm_year + 1900, stamp.tm_mon + 1, stamp.tm_mday, in altsvc_out() 291 stamp.tm_hour, stamp.tm_min, stamp.tm_sec, in altsvc_out()
|
/third_party/skia/modules/skresources/src/ |
H A D | SkResources.cpp | 54 fWindow[1].frame = fDecoder->nextImage(&fWindow[1].stamp); in advance() 61 if (t < fWindow[0].stamp) { 64 fWindow[0].stamp = fWindow[1].stamp = 0; 68 while (!fEof && t >= fWindow[1].stamp) { 72 SkASSERT(fWindow[0].stamp <= t && (fEof || t < fWindow[1].stamp)); 81 double stamp = 0; member
|
/third_party/python/Doc/includes/ |
H A D | tzinfo_examples.py | 25 stamp = (dt - datetime(1970, 1, 1, tzinfo=self)) // SECOND 26 args = _time.localtime(stamp)[:6] 29 fold = (args == _time.localtime(stamp - dst_diff)) 52 stamp = _time.mktime(tt) 53 tt = _time.localtime(stamp)
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | Calendar.java | 413 * <code>stamp</code>. Instead, they have new API to access 1336 private transient int stamp[]; field in Calendar 1455 * Value of the time stamp <code>stamp[]</code> indicating that 1464 * Value of the time stamp <code>stamp[]</code> indicating that a field 1473 * If the time stamp <code>stamp[]</code> has a value greater than or 1483 * The next available value for <code>stamp[]</code>, an internal array. 1488 /* Max value for stamp allowabl [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | Calendar.java | 412 * <code>stamp</code>. Instead, they have new API to access 1276 private transient int stamp[]; field in Calendar 1395 * Value of the time stamp <code>stamp[]</code> indicating that 1403 * Value of the time stamp <code>stamp[]</code> indicating that a field 1411 * If the time stamp <code>stamp[]</code> has a value greater than or 1420 * The next available value for <code>stamp[]</code>, an internal array. 1425 /* Max value for stamp allowabl [all...] |
/foundation/resourceschedule/ffrt/benchmarks/ |
H A D | benchmarks.sh | 55 stamp=$(git log --date=format:'%Y_%m_%d_%H_%M_%S' -1 | grep Date | sed -E 's/[^0-9]*([0-9_]*)/\1/g') 56 output_dir=${benchmarks_path}/output/tag_$stamp 74 MPLBACKEND=svg "$benchmarks_path/plot.py" "$output_dir" "benchmark_${stamp}.svg"
|
/foundation/CastEngine/castengine_wifi_display/services/protocol/rtcp/src/ |
H A D | rtcp_context.cpp | 24 void RtcpContext::OnRtp(uint16_t /*seq*/, uint32_t stamp, uint64_t ntpStampMs, uint32_t /*sampleRate*/, size_t bytes) in OnRtp() argument 28 lastRtpStamp_ = stamp; in OnRtp() 114 void RtcpReceiverContext::OnRtp(uint16_t seq, uint32_t stamp, uint64_t ntpStampMs, uint32_t sampleRate, size_t bytes) in OnRtp() argument 121 (int64_t(stamp) - int64_t(lastRtpStamp_))); in OnRtp() 154 RtcpContext::OnRtp(seq, stamp, ntpStampMs, sampleRate, bytes); in OnRtp()
|
/third_party/skia/gn/ |
H A D | push_to_android.py | 12 host, serial, stamp = sys.argv[1:] 22 with open(stamp, 'w'):
|
/third_party/curl/src/ |
H A D | tool_progress.c | 146 struct timeval stamp; member 161 static struct timeval stamp; in progress_meter() local 170 diff = tvdiff(now, stamp); in progress_meter() 194 stamp = now; in progress_meter() 234 speedstore[i].stamp = now; in progress_meter() 248 deltams = tvdiff(now, speedstore[speedindex].stamp); in progress_meter()
|
H A D | tool_filetime.c | 37 curl_off_t *stamp) in getfiletime() 62 *stamp = (converted - CURL_OFF_T_C(116444736000000000)) / 10000000; in getfiletime() 81 *stamp = (curl_off_t)statbuf.st_mtime; in getfiletime() 36 getfiletime(const char *filename, struct GlobalConfig *global, curl_off_t *stamp) getfiletime() argument
|
/foundation/CastEngine/castengine_wifi_display/services/protocol/rtp/include/ |
H A D | rtp_codec_h264.h | 39 bool UnpackStapA(const RtpPacket::Ptr &rtp, const uint8_t *ptr, ssize_t size, uint32_t stamp); 40 bool UnpackSingle(const RtpPacket::Ptr &rtp, const uint8_t *ptr, ssize_t size, uint32_t stamp); 41 bool UnpackFuA(const RtpPacket::Ptr &rtp, const uint8_t *ptr, ssize_t size, uint32_t stamp, uint16_t seq);
|
/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | ace_extra_input_data.h | 36 auto stamp = std::chrono::duration_cast<std::chrono::milliseconds>(time.time_since_epoch()).count();
in AceExtraInputData() local 37 msSinceEpoch = static_cast<uint64_t>(stamp);
in AceExtraInputData()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_manager.c | 172 if (stdraw && stdraw->stamp != st->draw_stamp) { in st_context_validate() 177 st->draw_stamp = stdraw->stamp; in st_context_validate() 180 if (stread && stread->stamp != st->read_stamp) { in st_context_validate() 187 st->read_stamp = stread->stamp; in st_context_validate() 230 new_stamp = p_atomic_read(&stfb->iface->stamp); in st_framebuffer_validate() 243 new_stamp = p_atomic_read(&stfb->iface->stamp); in st_framebuffer_validate() 288 ++stfb->stamp; in st_framebuffer_validate() 320 stfb->stamp++; in st_framebuffer_update_attachments() 644 stfb->iface_stamp = p_atomic_read(&stfbi->stamp) - 1; in st_framebuffer_create() 656 stfb->stamp in st_framebuffer_create() [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/common/ |
H A D | js_api_perf.cpp | 24 TimeStamp stamp = { in InsertJsBeginLog() local 28 startTimeData_.push(stamp); in InsertJsBeginLog()
|
/third_party/skia/third_party/externals/harfbuzz/ |
H A D | git.mk | 266 "$$lc.stamp" \ 297 po/stamp-it \ 298 po/stamp-po \ 316 stamp-h1 \ 359 $(filter %_vala.stamp,$(DIST_COMMON)) \
|
/foundation/multimedia/audio_framework/frameworks/native/ohaudio/ |
H A D | OHAudioCapturer.cpp | 183 Timestamp stamp; in OH_AudioCapturer_GetTimestamp() local 185 bool ret = audioCapturer->GetAudioTime(stamp, base); in OH_AudioCapturer_GetTimestamp() 190 *framePosition = stamp.framePosition; in OH_AudioCapturer_GetTimestamp() 191 *timestamp = stamp.time.tv_sec * SECOND_TO_NANOSECOND + stamp.time.tv_nsec; in OH_AudioCapturer_GetTimestamp()
|
/foundation/CastEngine/castengine_wifi_display/services/protocol/rtcp/include/ |
H A D | rtcp_context.h | 33 // seq: rtp seq, stamp: rtp stamp(samples), sampleRate: 90000 for video, bytes: rtp packet size 34 virtual void OnRtp(uint16_t seq, uint32_t stamp, uint64_t ntpStampMs, uint32_t sampleRate, size_t bytes); 91 std::map<uint32_t, uint64_t> senderReportNtp_; // last sr, lsr ntp stamp 92 std::map<uint32_t, uint64_t> xrRrtrRecvSysStamp_; // ssrc, xr rrtr sys stamp 100 void OnRtp(uint16_t seq, uint32_t stamp, uint64_t ntpStampMs, uint32_t sampleRate, size_t bytes) override;
|
/third_party/ltp/include/mk/ |
H A D | automake.mk | 69 AUTOMAKE_FILES := config.guess config.sub install-sh missing stamp-h1 79 $(RM) -f include/config.h include/stamp-h1
|
/third_party/ltp/testcases/realtime/ |
H A D | Makefile | 49 AUTOMAKE_FILES := config.guess config.sub install-sh missing stamp-h1 58 $(RM) -f include/realtime_config.h include/stamp-h1
|