Home
last modified time | relevance | path

Searched refs:x_max (Results 1 – 10 of 10) 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)
257 x_max = df.nrg_diff_pct.max()
261 axes_max = max(x_max, y_max)
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)
Didle_analysis.py79 final_entry = pd.DataFrame([cpu_idle.iloc[-1]], index=[self._trace.x_max])
/external/lisa/libs/utils/
Dtrace.py154 self.x_max = self.time_range
198 self.x_max = self.time_range
200 self.x_max = t_max
202 self.x_min, self.x_max)
/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_core_neon.c352 const float32x4_t x_max = vmaxq_f32(x_min, min_input); in vpowq_f32() local
355 const float32x4_t x_minus_half = vsubq_f32(x_max, half); in vpowq_f32()
365 const float32x4_t y = vsubq_f32(x_max, vcvtq_f32_s32(x_minus_half_floor)); in vpowq_f32()
Daec_core_sse2.c335 const __m128 x_max = _mm_max_ps(x_min, *((__m128*)min_input)); in mm_pow_ps() local
339 const __m128 x_minus_half = _mm_sub_ps(x_max, *((__m128*)half)); in mm_pow_ps()
350 const __m128 y = _mm_sub_ps(x_max, _mm_cvtepi32_ps(x_minus_half_floor)); in mm_pow_ps()