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

  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
poly_to_lsp.c 38 int16_t x, y, xlow, ylow, xmid, ymid, xhigh, yhigh, xint; local
109 Calculater xint by linear interpolation:
110 xint = xlow - ylow*(xhigh-xlow)/(yhigh-ylow);
117 xint = xlow;
135 xint = xlow-(int16_t)(tmpW32&0xFFFF);
139 lsp[foundFreqs] = (int16_t)xint;
144 xlow = xint;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
az_isp.c 67 Word16 xlow, ylow, xhigh, yhigh, xmid, ymid, xint; local
141 * xint = xlow - ylow*(xhigh-xlow)/(yhigh-ylow); *
147 xint = xlow;
162 xint = vo_sub(xlow, vo_extract_l(t0)); /* xint = xlow - ylow*y */
164 isp[nf] = xint;
165 xlow = xint;
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
az_lsp.cpp 388 Word16 xlow, ylow, xhigh, yhigh, xmid, ymid, xint;
478 * xint = xlow - ylow*(xhigh-xlow)/(yhigh-ylow); *
486 xint = xlow;
504 xint = sub (xlow, extract_l (t0)); // xint = xlow - ylow*y
507 lsp[nf] = xint;
508 xlow = xint;
579 Word16 xint; local
673 * xint = xlow - ylow*(xhigh-xlow)/(yhigh-ylow); *
681 xint = xlow
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
decode_test.go 650 type Xint struct {
655 var xint Xint
656 var i interface{} = &xint
660 if xint.X != 1 {
661 t.Fatalf("Did not write to xint")
666 var xint Xint
667 pxint := &xint
671 if xint.X != 1
    [all...]