HomeSort by relevance Sort by last modified time
    Searched refs:half_length (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/tools/telemetry/telemetry/
exception_formatter.py 38 half_length = (length - len(middle)) / 2.
39 return '%s%s%s' % (target[:int(math.floor(half_length))],
41 target[-int(math.ceil(half_length)):])
  /external/webrtc/src/common_audio/vad/
vad_filterbank.c 110 int half_length = WEBRTC_SPL_RSHIFT_W16(in_vector_length, 1); local
113 WebRtcVad_Allpass(&in_vector[0], kAllPassCoefsQ15[0], half_length,
117 WebRtcVad_Allpass(&in_vector[1], kAllPassCoefsQ15[1], half_length,
121 for (i = 0; i < half_length; i++) {
vad_sp.c 33 int half_length = (in_length >> 1); // Downsampling by 2 gives half length. local
36 for (n = 0; n < half_length; n++) {
  /external/chromium_org/ui/views/bubble/
bubble_border.cc 306 const int half_length = images_->top_arrow.width() / 2;
312 origin.Offset(-half_length, 0);
320 origin.Offset(0, -half_length);
  /external/chromium_org/ui/gfx/
text_elider.cc 66 const size_t half_length = length / 2; local
67 const size_t prefix_length = FindValidBoundaryBefore(length - half_length);
68 const size_t suffix_start_guess = text_.length() - half_length;
71 half_length - (suffix_start_guess - suffix_start);
    [all...]

Completed in 2523 milliseconds