Home
last modified time | relevance | path

Searched refs:time (Results 4051 - 4075 of 4897) sorted by relevance

1...<<161162163164165166167168169170>>...196

/third_party/ffmpeg/fftools/
H A Dffmpeg.c63 #include "libavutil/time.h"
75 #include <sys/time.h>
97 #include <sys/time.h>
103 #include <time.h>
258 PTS as the start time, and show until the following subpicture in sub2video_update()
259 is received. Otherwise, utilize the previous subpicture's end time in sub2video_update()
295 if not, subtracting a larger time here is necessary */ in sub2video_heartbeat()
858 /* this is executed just the first time update_video_stats is called */ in update_video_stats()
887 fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ", in update_video_stats()
1278 av_log(NULL, AV_LOG_DEBUG, "Forced keyframe at time in do_video_out()
3557 double time; check_keyboard_interaction() local
[all...]
/foundation/multimedia/audio_framework/frameworks/native/audiorenderer/test/unittest/renderer_test/src/
H A Daudio_renderer_unit_test.cpp2647 EXPECT_GE(timestamp.time.tv_sec, (const long)VALUE_ZERO); in HWTEST()
2648 EXPECT_GE(timestamp.time.tv_nsec, (const long)VALUE_ZERO); in HWTEST()
2816 int64_t duration = (timestamp2.time.tv_sec - timestamp1.time.tv_sec) * 1000000 + (timestamp2.time.tv_nsec - in HWTEST()
2817 timestamp1.time.tv_nsec) / VALUE_THOUSAND; // ns -> us in HWTEST()
6578 EXPECT_GE(timestamp.time.tv_sec, (const long)VALUE_ZERO); in HWTEST()
6579 EXPECT_GE(timestamp.time.tv_nsec, (const long)VALUE_ZERO); in HWTEST()
6748 int64_t duration = (timestamp2.time.tv_sec - timestamp1.time in HWTEST()
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_node.cpp1033 void DOMNode::AddKeyframe(double time, double typeValue, RefPtr<KeyframeAnimation<float>>& transformKeyframes) in AddKeyframe() argument
1035 auto keyframe = AceType::MakeRefPtr<Keyframe<float>>(time, typeValue); in AddKeyframe()
1040 double time, const std::string& typeValue, RefPtr<KeyframeAnimation<float>>& transformKeyframes) in AddKeyframe()
1042 DOMNode::AddKeyframe(time, StringToDouble(typeValue), transformKeyframes); in AddKeyframe()
1039 AddKeyframe( double time, const std::string& typeValue, RefPtr<KeyframeAnimation<float>>& transformKeyframes) AddKeyframe() argument
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/unittest/modifier/
H A Drs_modifier_test.cpp1994 int64_t time = 0; in HWTEST_F() local
1999 manager.Animate(time); in HWTEST_F()
2012 int64_t time = 10; in HWTEST_F() local
2017 manager.Animate(time); in HWTEST_F()
/foundation/multimedia/audio_framework/services/audio_service/test/unittest/renderer_in_server_unit_test/src/
H A Drenderer_in_server_unit_test.cpp467 struct timespec time; in HWTEST_F() local
468 ret = clock_gettime(CLOCK_MONOTONIC, &time); in HWTEST_F()
469 rendererInServer->startedTime_ = (time.tv_sec * AUDIO_NS_PER_SECOND) + time.tv_nsec; in HWTEST_F()
/foundation/multimedia/audio_framework/services/audio_service/client/src/
H A Drenderer_in_client.cpp642 timestamp.time.tv_sec = static_cast<time_t>(audioTimeResult / AUDIO_NS_PER_SECOND); in GetAudioTime()
643 timestamp.time.tv_nsec = static_cast<time_t>(audioTimeResult % AUDIO_NS_PER_SECOND); in GetAudioTime()
678 timestamp.time.tv_sec = static_cast<time_t>(timestampVal / AUDIO_NS_PER_SECOND); in GetAudioPosition()
679 timestamp.time.tv_nsec = static_cast<time_t>(timestampVal % AUDIO_NS_PER_SECOND); in GetAudioPosition()
945 AUDIO_WARNING_LOG("Init OS_AudioWriteCB thread time out"); in SetRenderMode()
1761 AUDIO_WARNING_LOG("write silent data for some time"); in WriteMuteDataSysEvent()
1797 "write data time out, mode is %{public}s", (offloadEnable_ ? "offload" : "normal")); in WriteCacheData()
/third_party/curl/src/
H A Dtool_operate.c455 /* if retry-max-time is non-zero, make sure we haven't exceeded the in post_per_transfer()
456 time */ in post_per_transfer()
561 maximum time allowed for retrying, then exit the retries right in post_per_transfer()
568 warnf(config->global, "The Retry-After: time would " in post_per_transfer()
569 "make this command line exceed the maximum allowed time " in post_per_transfer()
654 /* File time can only be set _after_ the file has been closed */ in post_per_transfer()
656 /* Ask libcurl if we got a remote file time */ in post_per_transfer()
774 /* first time caller, setup things */ in single_transfer()
1568 /* For the time being if --proxy-capath is not set then we use the in single_transfer()
1822 /* no body or use remote time */ in single_transfer()
[all...]
/third_party/python/Lib/
H A Dtarfile.py45 import time namespace
424 timestamp = struct.pack("<L", int(time.time()))
884 self.mtime = 0 # modification time
1443 # the translation to UTF-8 fails. For the time being, we don't care about
2152 % time.localtime(tarinfo.mtime)[:6])
2260 directory and set owner, modification time and permissions on
2590 """Set modification time of targetpath according to tarinfo.
2600 raise ExtractError("could not change modification time") from e
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/taurus/ai_sample/mpp_help/src/
H A Dosd_img.c190 * @brief get time string with given format
191 * @param[in]pstTime : time struct, get current system time if null
192 * @param[out]pazStr : time string buffer
193 * @param[in]s32Len : time string buffer length
204 time(&nowTime); in OSD_GetTimeStr()
839 * @brief time osd update task
852 nowTime = time(NULL); // also means time(&nowTime) in OSD_TimeUpdate()
854 usleep(10000); // 10000:usleep time in OSD_TimeUpdate()
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_view_context.cpp300 float time) -> float { in ParseCallBackFunction()
306 params[0] = JSRef<JSVal>::Make(ToJSValue(time)); in ParseCallBackFunction()
525 // the node sets attribute value for the first time. No animation is generated. in JSAnimation()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/security_component/
H A Dsecurity_component_handler.cpp784 TimeStamp time(microseconds); in ReportSecurityComponentClickEvent()
786 static_cast<uint64_t>(time.time_since_epoch().count()) / SECOND_TO_MILLISECOND; in ReportSecurityComponentClickEvent()
/foundation/arkui/ace_engine/test/unittest/core/pattern/tabs/
H A Dtabs_event_test_ng.cpp1012 TimeStamp time(milliseconds); in HWTEST_F()
1018 auto event = KeyEvent(code, action, pressedCodes, repeatTime, time, metaKey, deviceId, sourceType, {}); in HWTEST_F()
/foundation/graphic/graphic_surface/surface/src/
H A Dproducer_surface.cpp899 int64_t& time) const
905 return producer_->GetPresentTimestamp(sequence, type, time);
/foundation/graphic/graphic_2d/rosen/modules/composer/vsync/src/
H A Dvsync_distributor.cpp187 VLOGW("vsync signal is not processed in time, please check pid:%{public}d", proxyPid_); in PostEvent()
1257 uint64_t VSyncDistributor::GetRealTimeOffsetOfDvsync(int64_t time) in GetRealTimeOffsetOfDvsync() argument
1261 return dvsync_->GetRealTimeOffsetOfDvsync(time); in GetRealTimeOffsetOfDvsync()
/foundation/multimedia/player_framework/services/engine/histreamer/transcoder/
H A Dhitranscoder_impl.cpp943 int64_t time = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count(); in GetCurrentMillisecond() local
944 return time; in GetCurrentMillisecond()
/foundation/resourceschedule/device_usage_statistics/test/unittest/
H A Ddevice_usage_statistics_service_test.cpp850 int64_t time = 20000000000000; in HWTEST_F() local
851 EXPECT_EQ(coreObject->bundleGroupController_->SetAppGroup("test", userId, 0, 0, time, true), in HWTEST_F()
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/
H A Dwifi_hdi_wpa_p2p_impl.c314 WifiErrorNo HdiP2pSetGroupMaxIdle(const char *groupIfc, int time) in HdiP2pSetGroupMaxIdle() argument
325 int32_t result = wpaObj->P2pSetGroupMaxIdle(wpaObj, groupIfc, time); in HdiP2pSetGroupMaxIdle()
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/idl_client/idl_interface/
H A Di_wifi_p2p_iface.c449 WifiErrorNo P2pSetGroupMaxIdle(const char *groupIfc, int time) in P2pSetGroupMaxIdle() argument
457 WriteInt(context, time); in P2pSetGroupMaxIdle()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_interfaces_data_operation_syncdb_test.cpp1108 std::srand(std::time(nullptr)); in HWTEST_F()
1245 std::srand(std::time(nullptr)); in HWTEST_F()
/foundation/graphic/graphic_2d/frameworks/opengl_wrapper/src/EGL/
H A Degl_wrapper_entry.cpp1360 EGLBoolean EglPresentationTimeANDROIDImpl(EGLDisplay dpy, EGLSurface surface, EGLnsecsANDROID time) in EglPresentationTimeANDROIDImpl() argument
1367 return display->PresentationTimeANDROID(surface, time); in EglPresentationTimeANDROIDImpl()
H A Degl_wrapper_display.cpp1130 EGLBoolean EglWrapperDisplay::PresentationTimeANDROID(EGLSurface surface, EGLnsecsANDROID time) in PresentationTimeANDROID() argument
1147 SET_UI_TIMESTAMP, time) != 0) { in PresentationTimeANDROID()
/third_party/ffmpeg/libavcodec/arm/
H A Dvp9mc_neon.S265 @ widths it will do 16 pixels at a time and loop horizontally.
545 @ Instantiate a vertical filter function for filtering 8 pixels at a time.
614 @ at a time; the output of q5-q12 into one, and q4-q13 into another one.
/third_party/eudev/src/udev/
H A Dudevd.c31 #include <time.h>
35 #include <sys/time.h>
1445 log_warning("worker ["PID_FMT"] %s is taking a long time", worker->pid, event->devpath); in main()
1533 * queue is empty, lets loop one more time to update the in main()
/third_party/ffmpeg/libavcodec/x86/
H A Dhevc_idct.asm375 ; 4 at one time (4 columns) 1 e8[1] + o8[1]
651 ; 4 at one time (4 columns) 1 e32[1] + o32[1]
/third_party/curl/lib/vtls/
H A Dgtls.c231 /* check allowed time left */ in handshake()
235 /* no need to continue if time already is up */ in handshake()
569 * removed if a run-time error indicates that SRP is not supported by this in gtls_client_init()
1124 /* Check for time-based validity */ in Curl_gtls_verifyserver()
1138 if(certclock < time(NULL)) { in Curl_gtls_verifyserver()
1165 if(certclock > time(NULL)) { in Curl_gtls_verifyserver()

Completed in 68 milliseconds

1...<<161162163164165166167168169170>>...196