Home
last modified time | relevance | path

Searched refs:charcount (Results 1 – 7 of 7) sorted by relevance

/external/google-breakpad/src/common/windows/
Dhttp_upload.cc365 int charcount = MultiByteToWideChar(CP_UTF8, 0, utf8.c_str(), -1, NULL, 0); in UTF8ToWide() local
367 if (charcount == 0) { in UTF8ToWide()
372 wchar_t* buf = new wchar_t[charcount]; in UTF8ToWide()
373 MultiByteToWideChar(CP_UTF8, 0, utf8.c_str(), -1, buf, charcount); in UTF8ToWide()
386 int charcount = WideCharToMultiByte(cp, 0, wide.c_str(), -1, in WideToMBCP() local
388 if (charcount == 0) { in WideToMBCP()
393 char *buf = new char[charcount]; in WideToMBCP()
394 WideCharToMultiByte(cp, 0, wide.c_str(), -1, buf, charcount, in WideToMBCP()
/external/u-boot/board/gdsys/common/
Dosd.c239 u16 *data, size_t charcount) in osd_write_videomem() argument
243 for (k = 0; k < charcount; ++k) { in osd_write_videomem()
257 return charcount; in osd_write_videomem()
272 unsigned charcount; in osd_print() local
286 charcount = strlen(text); in osd_print()
287 len = (charcount > bufsize) ? bufsize : charcount; in osd_print()
/external/kernel-headers/original/uapi/linux/
Dkd.h15 unsigned short charcount; /* characters in font (256 or 512) */ member
163 unsigned int charcount; member
169 unsigned int charcount; member
/external/pcre/dist2/src/
Dpcre2_dfa_match.c2885 PCRE2_SIZE charcount = local_offsets[rc+1] - local_offsets[rc]; in internal_dfa_match() local
2891 while (p < pp) if (NOT_FIRSTCU(*p++)) charcount--; in internal_dfa_match()
2894 if (charcount > 0) in internal_dfa_match()
2897 (int)(charcount - 1)); in internal_dfa_match()
2919 PCRE2_SIZE charcount, matched_count; in internal_dfa_match() local
2969 charcount = local_offsets[1] - local_offsets[0]; in internal_dfa_match()
2970 if (charcount == 0) break; in internal_dfa_match()
2971 local_ptr += charcount; /* Advance temporary position ptr */ in internal_dfa_match()
3005 charcount = (PCRE2_SIZE)(pp - p); in internal_dfa_match()
3007 if (utf) while (p < pp) if (NOT_FIRSTCU(*p++)) charcount--; in internal_dfa_match()
[all …]
/external/v8/src/objects/
Dbigint.h199 Isolate* isolate, int radix, int charcount, ShouldThrow should_throw,
Dbigint.cc1810 Isolate* isolate, int radix, int charcount, ShouldThrow should_throw, in AllocateFor() argument
1813 DCHECK_GE(charcount, 0); in AllocateFor()
1815 size_t chars = static_cast<size_t>(charcount); in AllocateFor()
/external/v8/src/
Dconversions.cc919 int charcount = length() - cursor(); in AllocateResult() local
925 isolate(), radix(), charcount, should_throw(), pretenure); in AllocateResult()