HomeSort by relevance Sort by last modified time
    Searched refs:nchars (Results 1 - 20 of 20) 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/toybox/toys/posix/
uniq.c 32 long nchars;
39 long nchars = TT.nchars, nfields; local
48 while (*str && nchars--) str++;
81 if (TT.nfields || TT.nchars) {
  /toolchain/binutils/binutils-2.25/gas/
frags.c 94 /* Try to augment current frag by nchars chars.
96 and begin a new frag. Unless the new frag has nchars chars available
100 frag_grow (size_t nchars)
102 if (obstack_room (&frchain_now->frch_obstack) < nchars)
110 if (nchars < 0x10000)
111 newc = 2 * nchars;
113 newc = nchars + 0x10000;
117 if (newc < nchars)
118 as_fatal (_("can't extend frag %lu chars"), (unsigned long) nchars);
126 while (obstack_room (&frchain_now->frch_obstack) < nchars)
    [all...]
frags.h 130 void frag_grow (size_t nchars);
131 char *frag_more (size_t nchars);
listing.c 838 unsigned int nchars; local
847 nchars = (LISTING_WORD_SIZE * 2 + 1) * listing_lhs_width;
853 for (idx = 0; idx < nchars; idx++)
868 while (src[cur] && idx < nchars)
886 for (; idx < nchars; idx++)
899 nchars = ((LISTING_WORD_SIZE * 2) + 1) * listing_lhs_width_second - 1;
905 while (src[cur] && idx < nchars)
    [all...]
  /system/core/adb/client/
main.cpp 43 DWORD nchars = GetTempPathW(arraysize(temp_path), temp_path); local
44 if (nchars >= arraysize(temp_path) || nchars == 0) {
  /external/curl/lib/
memdebug.c 466 int nchars; local
477 nchars = vsnprintf(buf, LOGLINE_BUFSIZE, format, ap);
480 if(nchars > LOGLINE_BUFSIZE - 1)
481 nchars = LOGLINE_BUFSIZE - 1;
483 if(nchars > 0)
484 fwrite(buf, 1, nchars, logfile);
  /hardware/bsp/intel/peripheral/libmraa/src/
mraa.c 676 int nchars = 0; local
678 while (nchars == 0) {
682 nchars = readlink(filename, buffer, size);
683 if (nchars < 0) {
687 buffer[nchars] = '\0';
689 if (nchars >= size) {
691 nchars = 0;
  /system/core/base/
logging.cpp 107 DWORD nchars = GetModuleFileNameA(nullptr, longname, arraysize(longname));
108 if ((nchars >= arraysize(longname)) || (nchars == 0)) {
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfscanf.c 422 int nchars; local
429 nchars = 0;
460 nchars++;
475 n = nchars;
vfwprintf.c 171 size_t insize, nchars, nconv; local
186 insize = nchars = nconv = 0;
188 while (nchars != (size_t)prec) {
194 nchars++;
    [all...]
  /external/libedit/src/
common.c 831 int nchars = c_hpos(el); local
856 nchars-- > 0 && ptr < el->el_line.lastchar && *ptr != '\n';
874 int nchars = c_hpos(el); local
890 nchars-- > 0 && ptr < el->el_line.lastchar && *ptr != '\n';
  /toolchain/binutils/binutils-2.25/gas/config/
tc-tic4x.c 124 unsigned int nchars; /* This is always 4 for the C30. */ member in struct:tic4x_insn
    [all...]
  /system/core/fastboot/
fastboot.cpp 504 DWORD nchars = GetTempPath(sizeof(temp_path), temp_path); local
505 if (nchars == 0 || nchars >= sizeof(temp_path)) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xlib.h 1070 int nchars; \/* number of characters *\/ member in struct:__anon36482
1082 int nchars; \/* number of characters *\/ member in struct:__anon36484
1109 int nchars; member in struct:__anon36487
1116 int nchars; member in struct:__anon36488
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xlib.h 1067 int nchars; \/* number of characters *\/ member in struct:__anon38345
1079 int nchars; \/* number of characters *\/ member in struct:__anon38347
1106 int nchars; member in struct:__anon38350
1113 int nchars; member in struct:__anon38351
    [all...]
  /external/toybox/generated/
globals.h 1271 long nchars; member in struct:uniq_data
  /frameworks/minikin/libs/minikin/
Layout.cpp 113 const uint16_t* chars, size_t start, size_t count, size_t nchars, bool dir)
114 : mChars(chars), mNchars(nchars),
    [all...]
  /external/mksh/src/
edit.c     [all...]
  /external/v8/test/cctest/
test-api.cc 14946 int nchars = -1; local
    [all...]

Completed in 1284 milliseconds