Home
last modified time | relevance | path

Searched refs:byteCount (Results 1 – 3 of 3) sorted by relevance

/system/teeui/libteeui/include/teeui/
Dutf8range.h44 static size_t byteCount(char c) { in byteCount() function
59 size_t byte_count = byteCount(c); in codePoint()
88 begin_ += byteCount(*begin_);
110 auto byte_count = byteCount(*pos); in verify()
/system/teeui/libteeui/src/
Dcbor.cpp80 static size_t byteCount(char c) { in byteCount() function
98 auto bc = byteCount(*begin); in checkUTF8Copy()
/system/timezone/tzdatacheck/
Dtzdatacheck.cpp101 static bool readBytes(const std::string& fileName, char* buffer, size_t byteCount) { in readBytes() argument
109 size_t bytesRead = fread(buffer, 1, byteCount, file); in readBytes()
111 if (bytesRead != byteCount) { in readBytes()
112 LOG(WARNING) << fileName << " is too small. " << byteCount << " bytes required"; in readBytes()