Home
last modified time | relevance | path

Searched refs:x_min (Results 1 – 9 of 9) sorted by relevance

/external/lisa/libs/utils/analysis/
Deas_analysis.py119 axes.set_xlim(self._trace.x_min, self._trace.x_max)
136 axes.set_xlim(self._trace.x_min, self._trace.x_max)
151 axes.set_xlim(self._trace.x_min, self._trace.x_max)
162 axes.set_xlim(self._trace.x_min, self._trace.x_max)
256 x_min = df.nrg_diff_pct.min()
260 axes_min = min(x_min, y_min)
384 axes.set_xlim(self._trace.x_min, self._trace.x_max)
393 axes.set_xlim(self._trace.x_min, self._trace.x_max)
Dtasks_analysis.py415 ax.set_xlim(self._trace.x_min, self._trace.x_max)
483 ax.set_xlim(self._trace.x_min, self._trace.x_max);
492 ax.set_xlim(self._trace.x_min, self._trace.x_max);
511 ax.set_xlim(self._trace.x_min, self._trace.x_max)
523 ax.set_xlim(self._trace.x_min, self._trace.x_max)
602 ax.set_xlim(self._trace.x_min, self._trace.x_max)
611 ax.set_xlim(self._trace.x_min, self._trace.x_max);
686 axes.set_xlim(self._trace.x_min, self._trace.x_max)
723 axes.set_xlim(self._trace.x_min, self._trace.x_max)
750 axes.set_xlim(self._trace.x_min, self._trace.x_max)
Dlatency_analysis.py380 axes.set_xlim(self._trace.x_min, self._trace.x_max)
458 axes.set_xlim(self._trace.x_min, self._trace.x_max)
469 axes.set_xlim(self._trace.x_min, self._trace.x_max)
478 axes.set_xlim(self._trace.x_min, self._trace.x_max)
579 axes.set_xlim(self._trace.x_min, self._trace.x_max)
710 axes.set_xlim(self._trace.x_min, self._trace.x_max)
Dstatus_analysis.py98 axes.set_xlim(self._trace.x_min, self._trace.x_max)
Dfrequency_analysis.py185 axes.set_xlim(self._trace.x_min, self._trace.x_max)
205 axes.set_xlim(self._trace.x_min, self._trace.x_max)
316 axes.set_xlim(self._trace.x_min, self._trace.x_max)
Dcpus_analysis.py158 axes.set_xlim(self._trace.x_min, self._trace.x_max)
/external/lisa/libs/utils/
Dtrace.py153 self.x_min = 0
194 self.x_min = 0
196 self.x_min = t_min
202 self.x_min, self.x_max)
/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_core_neon.c351 const float32x4_t x_min = vminq_f32(b_log2_a, max_input); in vpowq_f32() local
352 const float32x4_t x_max = vmaxq_f32(x_min, min_input); in vpowq_f32()
Daec_core_sse2.c334 const __m128 x_min = _mm_min_ps(b_log2_a, *((__m128*)max_input)); in mm_pow_ps() local
335 const __m128 x_max = _mm_max_ps(x_min, *((__m128*)min_input)); in mm_pow_ps()