/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...] |
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/ |
additional_proximity_chars.h | 44 const int NCHARS = NELEMS(LOCALE_EN_US); 45 if (locale->size() < NCHARS) { 48 for (int i = 0; i < NCHARS; ++i) {
|
/external/pdfium/core/src/fxge/apple/ |
fx_apple_platform.cpp | 43 int nChars, 52 if (nChars == 0) { 77 CFX_FixedBufGrow<FX_WORD, 32> glyph_indices(nChars); 78 CFX_FixedBufGrow<CGPoint, 32> glyph_positions(nChars); 79 for (int i = 0; i < nChars; i++) { 97 nChars, argb, NULL); 100 FX_BOOL CFX_AggDeviceDriver::DrawDeviceText(int nChars, 118 for (int i = 0; i < nChars; i++) { 156 _CGDrawGlyphRun(ctx, nChars, pCharPos, pFont, pCache, pObject2Device,
|
fx_quartz_device.cpp | 738 FX_BOOL CFX_QuartzDeviceDriver::CG_DrawGlypRun(int nChars, 748 if (nChars == 0) { 763 CFX_FixedBufGrow<FX_WORD, 32> glyph_indices(nChars); 764 CFX_FixedBufGrow<CGPoint, 32> glyph_positions(nChars); 765 for (int i = 0; i < nChars; i++) { 800 glyph_positions, nChars); 804 FX_BOOL CFX_QuartzDeviceDriver::DrawDeviceText(int nChars, 826 while (i < nChars) { 855 nChars -= i; [all...] |
apple_int.h | 165 FX_BOOL DrawDeviceText(int nChars, 185 FX_BOOL CG_DrawGlypRun(int nChars,
|
/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) {
|
/libcore/ojluni/src/main/java/java/io/ |
BufferedWriter.java | 71 private int nChars, nextChar; 106 nChars = sz; 142 if (nextChar >= nChars) 183 if (len >= nChars) { 194 int d = min(nChars - nextChar, t - b); 198 if (nextChar >= nChars) 225 int d = min(nChars - nextChar, t - b); 229 if (nextChar >= nChars)
|
BufferedReader.java | 76 private int nChars, nextChar; 107 nextChar = nChars = 0; 166 nextChar = nChars = delta; 175 nChars = dst + n; 192 if (nextChar >= nChars) { 194 if (nextChar >= nChars) 214 if (nextChar >= nChars) { 225 if (nextChar >= nChars) return -1; 230 if (nextChar >= nChars) 232 if (nextChar >= nChars) [all...] |
Console.java | 406 private int nChars, nextChar; 411 nextChar = nChars = 0; 433 if (nextChar >= nChars) { //fill 439 nChars = n; 464 while (nextChar < nChars) { 483 if (nextChar == nChars && in.ready()) { 491 nChars = in.read(cb, 0, cb.length); 494 if (nextChar < nChars && cb[nextChar] == '\n') {
|
/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);
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
fpdf_render_text.cpp | 513 void Load(int nChars, 528 void CPDF_CharPosList::Load(int nChars, 533 m_pCharPos = FX_Alloc(FXTEXT_CHARPOS, nChars); 537 for (int iChar = 0; iChar < nChars; iChar++) { 539 nChars == 1 ? (FX_DWORD)(uintptr_t)pCharCodes : pCharCodes[iChar]; 587 int nChars, 603 CharPosList.Load(nChars, pCharCodes, pCharPos, pFont, font_size); 638 int nChars = pFont->CountChar(str, str.GetLength()); 639 if (nChars == 0) { 646 if (nChars == 1) [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorCharacters.java | 54 int nChars = m_accumulator.length(); 56 if ((nChars > 0) 80 char[] chars = new char[nChars]; 82 m_accumulator.getChars(0, nChars, chars, 0);
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
fpdf_page.cpp | 281 void CPDF_TextObject::SetText(int nChars, 292 for (i = 0; i < nChars - 1; ++i) { 297 m_nChars = nChars + nKernings; 301 for (int i = 0, index = 0; i < nChars; ++i) { 303 if (pKernings[i] != 0 && i != nChars - 1) { 582 void CPDF_TextObject::SetData(int nChars, 588 m_nChars = nChars; 591 if (nChars == 0) { 594 if (nChars == 1) { 597 m_pCharCodes = FX_Alloc(FX_DWORD, nChars); [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
Lexer.java | 126 int nChars = pat.length(); 138 for (int i = 0; i < nChars; i++) 164 for (i++; (i < nChars) && ((c = pat.charAt(i)) != '\"'); i++); 166 if (c == '\"' && i < nChars) 198 for (i++; (i < nChars) && ((c = pat.charAt(i)) != '\''); i++); 200 if (c == '\'' && i < nChars) 365 posOfNSSep = mapNSTokens(pat, startSubstring, posOfNSSep, nChars); 369 addToTokenQueue(pat.substring(startSubstring, nChars));
|
/external/pdfium/core/include/fpdfapi/ |
fpdf_pageobj.h | 440 void SetText(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pKernings); 451 void SetData(int nChars, 457 void GetData(int& nChars, FX_DWORD*& pCharCodes, FX_FLOAT*& pCharPos) { 458 nChars = m_nChars;
|
fpdf_render.h | 185 int nChars, 199 int nChars, 209 int nChars,
|
/system/core/adb/client/ |
main.cpp | 44 DWORD nchars = GetTempPathW(arraysize(temp_path), temp_path); local 45 if (nchars >= arraysize(temp_path) || nchars == 0) {
|
/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;
|
/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);
|
/external/icu/icu4c/source/test/letest/ |
FontObject.h | 193 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
|
/external/icu/icu4c/source/test/perf/leperf/ |
FontObject.h | 193 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
|
/external/pdfium/core/src/fxge/agg/include/ |
fx_agg_driver.h | 115 FX_BOOL DrawDeviceText(int nChars,
|
/external/pdfium/core/src/fxge/skia/ |
fx_skia_device.h | 114 virtual FX_BOOL DrawDeviceText(int nChars,
|
/ndk/sources/host-tools/nawk-20071023/ |
b.c | 36 #define HAT (NCHARS+2) /* matches ^ in regular expr */ 37 /* NCHARS is 2**n */ 167 for (i=0; i < NCHARS; i++) 477 /* assert(*p < NCHARS); */ 508 /* assert(*q < NCHARS); */ 540 for (i = 0; i < NCHARS; i++) 566 /* assert(*q < NCHARS); */ 597 for (i = 0; i < NCHARS; i++) 823 for (i = 0; i < NCHARS; i++) { 855 assert(c == HAT || c < NCHARS); [all...] |