HomeSort by relevance Sort by last modified time
    Searched full:nchars (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/ltp/testcases/network/nfs/nfslock01/
nfs_flock_dgen.c 11 int i, j, k, nlines, nchars, ctype; local
23 nchars = atoi(argv[2]);
24 if (nchars > BUFSIZ) {
40 for (j = 0; j < nchars; j++)
  /external/ltp/testcases/kernel/fs/ext4-new-features/ext4-subdir-limit/
create_short_dirs.c 41 /* NCHARS = 10 + 26 + 26 = 62 */
42 #define NCHARS 62
70 for (i = 0; i < NCHARS; i++) {
87 for (i = 0; i < NCHARS; i++) {
89 for (j = 0; j < NCHARS; j++) {
107 for (i = 0; i < NCHARS; i++) {
109 for (j = 0; j < NCHARS; j++) {
111 for (k = 0; k < NCHARS; k++) {
create_long_dirs.c 36 #define NCHARS 62
42 char chars[NCHARS + 1] =
99 for (i = 0; i < NCHARS; i++) {
108 for (j = 0; j < NCHARS; j++) {
117 for (k = 0; k < NCHARS; k++) {
  /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/fxge/apple/
fx_apple_platform.cpp 29 int nChars,
35 if (nChars == 0)
58 CFX_FixedBufGrow<uint16_t, 32> glyph_indices(nChars);
59 CFX_FixedBufGrow<CGPoint, 32> glyph_positions(nChars);
60 for (int i = 0; i < nChars; i++) {
79 nChars, argb, nullptr);
101 bool CFX_AggDeviceDriver::DrawDeviceText(int nChars,
116 for (int i = 0; i < nChars; i++) {
152 bool ret = CGDrawGlyphRun(ctx, nChars, pCharPos, pFont, pObject2Device,
  /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) {
  /external/pdfium/core/fpdfapi/render/
cpdf_charposlist.cpp 26 int nChars = pdfium::CollectionSize<int>(charCodes);
27 m_pCharPos = FX_Alloc(FXTEXT_CHARPOS, nChars);
31 for (int iChar = 0; iChar < nChars; iChar++) {
cpdf_textrenderer.cpp 80 int nChars = pFont->CountChar(str.c_str(), str.GetLength());
81 if (nChars <= 0)
87 codes.resize(nChars);
88 positions.resize(nChars - 1);
90 for (int i = 0; i < nChars; i++) {
  /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...]
  /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...]
  /external/syslinux/com32/lib/
vsnprintf.c 55 int ndigits = 0, nchars; local
98 nchars = ndigits;
101 nchars++; /* Need space for sign */
103 nchars += 2; /* Add 0x for hex */
107 if (!(flags & (FL_MINUS | FL_ZERO)) && width > nchars) {
108 while (width > nchars) {
129 while (width > nchars) {
160 while ((flags & FL_MINUS) && width > nchars) {
  /external/pdfium/core/fxge/win32/
fx_win32_print.cpp 198 bool CGdiPrinterDriver::DrawDeviceText(int nChars,
208 if (nChars < 1 || !pFont || !pFont->IsEmbedded() || !pFont->IsTTFont())
289 std::vector<INT> spacing(nChars);
291 for (int i = 0; i < nChars; ++i) {
313 if (ExtTextOutW(m_hDC, 0, 0, ETO_GLYPH_INDEX, nullptr, wsText.c_str(), nChars,
314 nChars > 1 ? &spacing[1] : nullptr)) {
323 g_pdfium_typeface_accessible_func(&lf, wsText.c_str(), nChars);
325 nChars, nChars > 1 ? &spacing[1] : nullptr);
482 bool CPSPrinterDriver::DrawDeviceText(int nChars,
    [all...]
cfx_psrenderer.h 69 bool DrawText(int nChars,
  /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/syslinux/com32/lib/sys/vesa/
initvesa.c 136 size_t nchars; local
148 nchars = (__vesacon_text_cols+2) * (__vesacon_text_rows+2);
150 __vesacon_text_display = ptr = malloc(nchars * sizeof(struct vesa_char));
155 vesacon_fill(ptr, def_char, nchars);
  /external/pdfium/core/fpdfapi/page/
cpdf_textobject.cpp 144 int nChars = 0;
146 nChars += pFont->CountChar(pStrs[i].c_str(), pStrs[i].GetLength());
147 nChars += nsegs - 1;
148 m_CharCodes.resize(nChars);
149 m_CharPos.resize(nChars - 1);
  /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/fxge/
ifx_renderdevicedriver.cpp 67 bool IFX_RenderDeviceDriver::DrawDeviceText(int nChars,
ifx_renderdevicedriver.h 86 virtual bool DrawDeviceText(int nChars,
  /external/curl/lib/
memdebug.c 465 int nchars; local
476 nchars = vsnprintf(buf, LOGLINE_BUFSIZE, format, ap);
479 if(nchars > LOGLINE_BUFSIZE - 1)
480 nchars = LOGLINE_BUFSIZE - 1;
482 if(nchars > 0)
483 fwrite(buf, 1, nchars, logfile);
  /external/icu/icu4c/source/test/letest/
FontObject.h 195 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
  /external/icu/icu4c/source/test/perf/leperf/
FontObject.h 199 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
  /external/pdfium/core/fxge/agg/
fx_agg_driver.h 92 bool DrawDeviceText(int nChars,

Completed in 696 milliseconds

1 2 3 4