Lines Matching refs:_timing
96 this._timing = { property in anonymousFunction98128d1f0100.RFB
961 this._timing.fbu_rt_start = (new Date()).getTime();
962 this._timing.pixels = 0;
1102 this._timing.cur_fbu = 0;
1103 if (this._timing.fbu_rt_start > 0) {
1105 Util.Info("First FBU latency: " + (now - this._timing.fbu_rt_start));
1138 this._timing.last_fbu = (new Date()).getTime();
1143 this._timing.cur_fbu += (now - this._timing.last_fbu);
1148 this._timing.pixels += this._FBU.width * this._FBU.height;
1151 if (this._timing.pixels >= (this._fb_width * this._fb_height)) {
1153 this._timing.fbu_rt_start > 0) {
1154 this._timing.full_fbu_total += this._timing.cur_fbu;
1155 this._timing.full_fbu_cnt++;
1157 this._timing.cur_fbu + ", total: " +
1158 this._timing.full_fbu_total + ", cnt: " +
1159 this._timing.full_fbu_cnt + ", avg: " +
1160 (this._timing.full_fbu_total / this._timing.full_fbu_cnt));
1163 if (this._timing.fbu_rt_start > 0) {
1164 var fbu_rt_diff = now - this._timing.fbu_rt_start;
1165 this._timing.fbu_rt_total += fbu_rt_diff;
1166 this._timing.fbu_rt_cnt++;
1169 this._timing.fbu_rt_total + ", cnt: " +
1170 this._timing.fbu_rt_cnt + ", avg: " +
1171 (this._timing.fbu_rt_total / this._timing.fbu_rt_cnt));
1172 this._timing.fbu_rt_start = 0;
1842 this._timing.fbu_rt_start = (new Date()).getTime();