Lines Matching defs:rect
3070 VncRectStat *rect = vnc_stat_rect(vd, x, y);
3072 rect->updated = false;
3085 VncRectStat *rect= vnc_stat_rect(vd, x, y);
3086 int count = ARRAY_SIZE(rect->times);
3089 if (!timerisset(&rect->times[count - 1])) {
3093 max = rect->times[(rect->idx + count - 1) % count];
3097 rect->freq = 0;
3099 memset(rect->times, 0, sizeof (rect->times));
3103 min = rect->times[rect->idx];
3104 max = rect->times[(rect->idx + count - 1) % count];
3107 rect->freq = res.tv_sec + res.tv_usec / 1000000.;
3108 rect->freq /= count;
3109 rect->freq = 1. / rect->freq;
3140 VncRectStat *rect;
3142 rect = vnc_stat_rect(vd, x, y);
3143 if (rect->updated) {
3146 rect->times[rect->idx] = *tv;
3147 rect->idx = (rect->idx + 1) % ARRAY_SIZE(rect->times);
3148 rect->updated = true;