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

  /external/speex/libspeex/
bits.c 112 int nchars = len / BYTES_PER_CHAR; local
113 if (nchars > bits->buf_size)
118 char *tmp = (char*)speex_realloc(bits->chars, nchars);
121 bits->buf_size=nchars;
124 nchars=bits->buf_size;
129 nchars=bits->buf_size;
138 for (i=0;i<nchars;i++)
141 bits->nbBits=nchars<<LOG2_BITS_PER_CHAR;
149 int nchars = ((bits->nbBits+BITS_PER_CHAR-1)>>LOG2_BITS_PER_CHAR); local
151 SPEEX_MOVE(bits->chars, &bits->chars[bits->charPtr], nchars-bits->charPtr)
159 int nchars = nbytes\/BYTES_PER_CHAR; local
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGTextContentElement.h 48 float getSubStringLength(unsigned charnum, unsigned nchars, ExceptionCode&) const;
54 void selectSubString(unsigned charnum, unsigned nchars, ExceptionCode&) const;
SVGTextContentElement.cpp 84 float SVGTextContentElement::getSubStringLength(unsigned charnum, unsigned nchars, ExceptionCode& ec) const
94 return SVGTextQuery(renderer()).subStringLength(charnum, nchars);
151 void SVGTextContentElement::selectSubString(unsigned charnum, unsigned nchars, ExceptionCode& ec) const
159 if (nchars > numberOfChars - charnum)
160 nchars = numberOfChars - charnum;
176 for (unsigned i = 0; i < nchars; ++i)