Searched defs:num_chars (Results 1 - 7 of 7) sorted by relevance

/external/bluetooth/glib/tests/
H A Dutf8-pointer.c34 gint num_chars; local
40 num_chars = g_utf8_strlen (string, -1);
42 p = (gchar **) g_malloc (num_chars * sizeof (gchar *));
45 for (i = 1; i < num_chars; i++)
48 for (i = 0; i < num_chars; i++)
49 for (j = 0; j < num_chars; j++)
/external/opencore/oscl/oscl/osclbase/src/
H A Doscl_time.cpp230 int num_chars = 0; local
236 if ((num_chars = strftime(time_strbuf, sizeof(PV8601timeStrBuf),
240 num_chars += snprintf(time_strbuf + strlen(time_strbuf),
241 sizeof(PV8601timeStrBuf) - num_chars,
244 return num_chars;
/external/freetype/include/freetype/internal/
H A Dt1types.h56 /* num_chars :: The number of character codes in the encoding. */
71 FT_Int num_chars; member in struct:T1_EncodingRecRec_
/external/ppp/pppd/plugins/
H A Dwinbind.c171 size_t num_chars = 0; local
194 p[num_chars] = (hinybble << 4) | lonybble;
195 num_chars++;
200 return num_chars;
/external/srec/srec/crec/
H A Dsrec_context.c331 int wordmap_create(wordmap** pwmap, int num_chars, int num_words, int num_words_to_add) argument
342 Interface->max_chars = num_chars + num_words_to_add * AVG_CHARS_PER_WORD;
376 asr_int32_t num_chars; local
382 for (num_words = 0, num_chars = 0; pfgets(buf, MAX_LINE_LENGTH, fp); num_words++)
385 num_chars += strlen(word);
387 num_chars += num_words * 2; /* for null terminators */
394 wordmap_create(&wmap, num_chars, num_words, num_words_to_add);
/external/gtest/src/
H A Dgtest.cc1503 // Parameter num_chars may additionally limit the number
1511 String WideStringToUtf8(const wchar_t* str, int num_chars) { argument
1512 if (num_chars == -1)
1513 num_chars = static_cast<int>(wcslen(str));
1516 for (int i = 0; i < num_chars; ++i) {
1521 } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) {
/external/v8/src/
H A Dparser.cc558 int num_chars = char_vector.length(); local
559 if (num_chars > 1) {
560 Vector<const uc16> prefix = char_vector.SubVector(0, num_chars - 1);
562 char_vector = char_vector.SubVector(num_chars - 1, num_chars);

Completed in 93 milliseconds