Searched refs:fps (Results 1 - 25 of 99) sorted by relevance

1234

/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/
H A DNaClAMBullet.js29 var fps = {
54 fps.sumSimTime += simTime;
55 fps.numSteps++;
59 if (curTimeMs - fps.lastTimeMs > 1000) { // 1 sec
60 var meanSimTime = fps.sumSimTime / fps.numSteps;
62 $('fps').textContent =
63 (fps.numSteps * 1000 / (curTimeMs - fps.lastTimeMs)).toFixed(1);
64 fps
[all...]
/external/chromium_org/media/test/data/eme_player_js/
H A Dfps_observer.js50 var fps = (this.video_.webkitDecodedFrameCount - this.decodedFrames_) /
53 fps = fps.toFixed(2);
54 decodedFPSElement.innerHTML = fps;
57 fps = (this.video_.webkitDroppedFrameCount - this.droppedFrames_) / deltaTime;
59 fps = fps.toFixed(2);
60 droppedFPSElement.innerHTML = fps;
/external/chromium_org/third_party/webrtc/test/
H A Dvideo_capturer.cc35 int fps,
37 VcmCapturer* vcm_capturer = VcmCapturer::Create(input, width, height, fps);
45 FrameGeneratorCapturer::Create(input, width, height, fps, clock);
32 Create(VideoSendStreamInput* input, size_t width, size_t height, int fps, Clock* clock) argument
H A Dvideo_capturer.h28 int fps,
/external/valgrind/main/coregrind/
H A Dpub_core_stacktrace.h50 // ips[0 .. min(n_ips,return_value)]. If sps and fps are non-NULL,
56 /*OUT*/Addr* sps, /*OUT*/Addr* fps,
H A Dm_stacktrace.c141 /*OUT*/Addr* sps, /*OUT*/Addr* fps,
224 if (fps) fps[0] = uregs.xbp;
252 if (fps) fps[0] = uregs.xbp;
411 /* Add a frame in ips/sps/fps */
415 if (fps) fps[i] = uregs.xbp;
457 /*OUT*/Addr* sps, /*OUT*/Addr* fps,
503 if (fps) fp
139 get_StackTrace_wrk( ThreadId tid_if_known, Addr* ips, UInt max_n_ips, Addr* sps, Addr* fps, UnwindStartRegs* startRegs, Addr fp_max_orig ) argument
455 get_StackTrace_wrk( ThreadId tid_if_known, Addr* ips, UInt max_n_ips, Addr* sps, Addr* fps, UnwindStartRegs* startRegs, Addr fp_max_orig ) argument
625 get_StackTrace_wrk( ThreadId tid_if_known, Addr* ips, UInt max_n_ips, Addr* sps, Addr* fps, UnwindStartRegs* startRegs, Addr fp_max_orig ) argument
895 get_StackTrace_wrk( ThreadId tid_if_known, Addr* ips, UInt max_n_ips, Addr* sps, Addr* fps, UnwindStartRegs* startRegs, Addr fp_max_orig ) argument
1041 get_StackTrace_wrk( ThreadId tid_if_known, Addr* ips, UInt max_n_ips, Addr* sps, Addr* fps, UnwindStartRegs* startRegs, Addr fp_max_orig ) argument
1137 get_StackTrace_wrk( ThreadId tid_if_known, Addr* ips, UInt max_n_ips, Addr* sps, Addr* fps, UnwindStartRegs* startRegs, Addr fp_max_orig ) argument
1220 get_StackTrace_wrk( ThreadId tid_if_known, Addr* ips, UInt max_n_ips, Addr* sps, Addr* fps, UnwindStartRegs* startRegs, Addr fp_max_orig ) argument
1384 get_StackTrace( ThreadId tid, StackTrace ips, UInt max_n_ips, StackTrace sps, StackTrace fps, Word first_ip_delta ) argument
[all...]
/external/chromium_org/tools/perf/benchmarks/
H A Dscirra.py26 fps = '$fps$'
29 # Construct 2 has different variables for Objects, fps and tickcount.
32 fps = 'Rb'
40 window.cr_getC2Runtime().%(fps)s == 30) {
48 """ % {'tickcount': tickcount, 'fps': fps, 'object_count': object_count}
/external/chromium_org/remoting/codec/
H A Dvideo_encoder_vpx_perftest.cc29 float fps = local
32 << ": " << fps << "fps";
51 float fps = local
56 << ": " << fps << "fps";
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Drate_hist.h23 const vpx_rational_t *fps);
H A Dwebmenc.h43 const struct vpx_rational *fps,
/external/libvpx/libvpx/
H A Drate_hist.h23 const vpx_rational_t *fps);
/external/iproute2/misc/
H A Dlnstat.c109 struct field_params *fps, int interval)
115 if (!fps->num) {
118 fps->params[j].lf = &lf->fields[i];
119 fps->params[j].lf->file->interval.tv_sec =
121 if (!fps->params[j].print.width)
122 fps->params[j].print.width =
135 fps->num = j;
139 for (i = 0; i < fps->num; i++) {
140 fps->params[i].lf = lnstat_find_field(lnstat_files,
141 fps
108 map_field_params(struct lnstat_file *lnstat_files, struct field_params *fps, int interval) argument
159 build_hdr_string(struct lnstat_file *lnstat_files, struct field_params *fps, int linewidth) argument
[all...]
/external/chromium_org/media/cast/test/utility/
H A Dgenerate_timecode_audio.cc18 fprintf(stderr, "Usage: %s <fps> <frames> >output.s16le\n", argv[0]);
21 int fps = atoi(argv[1]); local
23 std::vector<float> samples(kSamplingFrequency / fps);
H A Dgenerate_barcode_video.cc26 "<width> <height> <fps> <frames> >output.y4m\n");
31 int fps = atoi(argv[3]); local
35 printf("YUV4MPEG2 W%d H%d F%d:1 Ip C420mpeg2\n", width, height, fps);
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/
H A Dmain.c102 int fps = 24; local
103 int delay = 1000/fps;
137 delay += (1000/fps - (nowTicks-thenTicks));
140 delay = 1000/fps;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/
H A Dmain.c102 int fps = 24; local
103 int delay = 1000/fps;
137 delay += (1000/fps - (nowTicks-thenTicks));
140 delay = 1000/fps;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/
H A Dmain.c102 int fps = 24; local
103 int delay = 1000/fps;
137 delay += (1000/fps - (nowTicks-thenTicks));
140 delay = 1000/fps;
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Djitter_estimator.cc336 // scale the alpha weight relative a 30 fps stream.
337 double fps = GetFrameRate(); local
338 if (fps > 0.0) {
339 double rate_scale = 30.0 / fps;
340 // At startup, there can be a lot of noise in the fps estimate.
341 // Interpolate rate_scale linearly, from 1.0 at sample #1, to 30.0 / fps
435 double fps = GetFrameRate(); local
436 // Ignore jitter for very low fps streams.
437 if (fps < kJitterScaleLowThreshold) {
438 if (fps
473 double fps = 1000000.0 / fps_counter_.ComputeMean(); local
[all...]
/external/chromium_org/third_party/skia/experimental/SkV8Example/
H A Dsnow.js72 function fps() {
75 setTimeout(fps, 1000);
78 setTimeout(fps, 1000);
/external/skia/experimental/SkV8Example/
H A Dsnow.js72 function fps() {
75 setTimeout(fps, 1000);
78 setTimeout(fps, 1000);
/external/chromium_org/content/renderer/media/
H A Drtc_video_encoder_factory.cc25 int fps = profile.max_framerate_numerator; local
33 webrtc::kVideoCodecVP8, "VP8", width, height, fps));
39 webrtc::kVideoCodecH264, "H264", width, height, fps));
43 webrtc::kVideoCodecGeneric, "CAST1", width, height, fps));
/external/valgrind/main/include/
H A Dpub_tool_stacktrace.h58 // If sps and fps are non-NULL, the corresponding frame-pointer and
64 /*OUT*/StackTrace fps,
/external/chromium_org/media/base/
H A Daudio_timestamp_helper.cc16 double fps = samples_per_second; local
17 microseconds_per_frame_ = base::Time::kMicrosecondsPerSecond / fps;
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Ddecode_perf_test.cc92 const double fps = double(frames) / elapsed_secs; local
101 printf("\t\"framesPerSecond\" : %f\n", fps);
/external/libvpx/libvpx/test/
H A Ddecode_perf_test.cc90 const double fps = double(frames) / elapsed_secs; local
98 printf("\t\"framesPerSecond\" : %f\n", fps);

Completed in 629 milliseconds

1234