Home
last modified time | relevance | path

Searched refs:stopwatch (Results 1 – 12 of 12) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dstopwatch.hpp14 …ne MBGL_TIMING_START(watch) std::shared_ptr<util::stopwatch> watch = std::make_unique<util::stopw…
27 class stopwatch { class
29 stopwatch(Event event = Event::General);
30 stopwatch(EventSeverity severity, Event event = Event::General);
31 stopwatch(std::string name, Event event = Event::General);
32 stopwatch(std::string name, EventSeverity severity, Event event = Event::General);
34 ~stopwatch();
43 class stopwatch {
44 stopwatch(Event event = Event::General);
45 stopwatch(EventSeverity severity, Event event = Event::General);
[all …]
H A Dstopwatch.cpp13 stopwatch::stopwatch(Event event_) in stopwatch() function in mbgl::util::stopwatch
16 stopwatch::stopwatch(EventSeverity severity_, Event event_) in stopwatch() function in mbgl::util::stopwatch
19 stopwatch::stopwatch(std::string name_, Event event_) in stopwatch() function in mbgl::util::stopwatch
22 stopwatch::stopwatch(std::string name_, EventSeverity severity_, Event event_) in stopwatch() function in mbgl::util::stopwatch
25 void stopwatch::report(const std::string &name_) { in report()
32 stopwatch::~stopwatch() { in ~stopwatch()
/OK3568_Linux_fs/external/mpp/osal/
H A Dmpp_time.cpp463 MPP_RET check_is_mpp_stopwatch(void *stopwatch) in check_is_mpp_stopwatch() argument
465 if (stopwatch && ((MppStopwatchImpl*)stopwatch)->check == stopwatch_name) in check_is_mpp_stopwatch()
468 mpp_err_f("pointer %p failed on check\n", stopwatch); in check_is_mpp_stopwatch()
492 void mpp_stopwatch_set_show_on_exit(MppStopwatch stopwatch, RK_S32 show_on_exit) in mpp_stopwatch_set_show_on_exit() argument
494 if (NULL == stopwatch || check_is_mpp_stopwatch(stopwatch)) { in mpp_stopwatch_set_show_on_exit()
495 mpp_err_f("invalid stopwatch %p\n", stopwatch); in mpp_stopwatch_set_show_on_exit()
499 MppStopwatchImpl *impl = (MppStopwatchImpl *)stopwatch; in mpp_stopwatch_set_show_on_exit()
503 void mpp_stopwatch_record(MppStopwatch stopwatch, const char *event) in mpp_stopwatch_record() argument
506 if (NULL == stopwatch) in mpp_stopwatch_record()
509 if (check_is_mpp_stopwatch(stopwatch)) { in mpp_stopwatch_record()
[all …]
/OK3568_Linux_fs/external/mpp/mpp/base/
H A Dmpp_frame.cpp81 if (p->stopwatch) in mpp_frame_deinit()
82 mpp_stopwatch_put(p->stopwatch); in mpp_frame_deinit()
164 if (enable && NULL == p->stopwatch) { in mpp_frame_set_stopwatch_enable()
168 p->stopwatch = mpp_stopwatch_get(name); in mpp_frame_set_stopwatch_enable()
169 if (p->stopwatch) in mpp_frame_set_stopwatch_enable()
170 mpp_stopwatch_set_show_on_exit(p->stopwatch, 1); in mpp_frame_set_stopwatch_enable()
171 } else if (!enable && p->stopwatch) { in mpp_frame_set_stopwatch_enable()
172 mpp_stopwatch_put(p->stopwatch); in mpp_frame_set_stopwatch_enable()
173 p->stopwatch = NULL; in mpp_frame_set_stopwatch_enable()
183 return p->stopwatch; in mpp_frame_get_stopwatch()
/OK3568_Linux_fs/external/mpp/osal/inc/
H A Dmpp_time.h107 void mpp_stopwatch_set_show_on_exit(MppStopwatch stopwatch, RK_S32 show_on_exit);
108 void mpp_stopwatch_record(MppStopwatch stopwatch, const char *event);
110 RK_S64 mpp_stopwatch_elapsed_time(MppStopwatch stopwatch);
/OK3568_Linux_fs/external/mpp/mpp/
H A Dmpp.cpp612 MppStopwatch stopwatch = NULL; in put_frame() local
616 stopwatch = mpp_frame_get_stopwatch(frame); in put_frame()
619 mpp_stopwatch_record(stopwatch, NULL); in put_frame()
620 mpp_stopwatch_record(stopwatch, "put frame start"); in put_frame()
623 mpp_stopwatch_record(stopwatch, "input port user poll"); in put_frame()
633 mpp_stopwatch_record(stopwatch, "input port user dequeue"); in put_frame()
678 mpp_stopwatch_record(stopwatch, "input port user enqueue"); in put_frame()
687 mpp_stopwatch_record(stopwatch, "input port user poll"); in put_frame()
696 mpp_stopwatch_record(stopwatch, "input port user dequeue"); in put_frame()
712 mpp_stopwatch_record(stopwatch, "put_frame finish"); in put_frame()
/OK3568_Linux_fs/external/mpp/mpp/codec/
H A Dmpp_enc_impl.cpp1622 mpp_stopwatch_record(hal_task->stopwatch, "encode hal start"); in mpp_enc_normal()
1629 mpp_stopwatch_record(hal_task->stopwatch, "encode hal finish"); in mpp_enc_normal()
1773 mpp_stopwatch_record(hal_task->stopwatch, "encode task done"); in mpp_enc_terminate_task()
1809 MppStopwatch stopwatch = NULL; in try_get_enc_task() local
1859 stopwatch = mpp_frame_get_stopwatch(enc->frame); in try_get_enc_task()
1860 mpp_stopwatch_record(stopwatch, "encode task start"); in try_get_enc_task()
1863 mpp_stopwatch_record(stopwatch, "invalid on check frm pkt"); in try_get_enc_task()
1887 hal_task->stopwatch = stopwatch; in try_get_enc_task()
1903 mpp_stopwatch_record(stopwatch, "invalid on frame rate drop"); in try_get_enc_task()
2216 mpp_stopwatch_record(hal_task->stopwatch, "encode task done"); in try_proc_normal_task()
[all …]
/OK3568_Linux_fs/external/mpp/mpp/base/inc/
H A Dmpp_frame_impl.h166 MppStopwatch stopwatch; member
/OK3568_Linux_fs/external/mpp/mpp/hal/inc/
H A Dhal_enc_task.h91 MppStopwatch stopwatch; member
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/bootchart2/
H A Dbootchart2_0.14.9.bb17 # process completes, it is not exactly a stopwatch. It has a list of programs
33 # behave a bit more like a stopwatch. An example of this is shown in this
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/
H A Dmapbox-gl-native.pro360 src/mbgl/util/stopwatch.cpp \
/OK3568_Linux_fs/buildroot/dl/dhrystone/
H A Ddhry-c766 - * neither, use a stopwatch in the dead of night.