Home
last modified time | relevance | path

Searched refs:num_chars (Results 1 – 8 of 8) sorted by relevance

/freebsd/crypto/openssl/crypto/bio/
H A Dbf_readbuff.c221 int num = 0, num_chars, found_newline; in readbuffer_gets() local
235 for (num_chars = 0; in readbuffer_gets()
236 (num_chars < ctx->ibuf_len) && (num_chars < size); in readbuffer_gets()
237 num_chars++) { in readbuffer_gets()
238 *buf++ = p[num_chars]; in readbuffer_gets()
239 if (p[num_chars] == '\n') { in readbuffer_gets()
241 num_chars++; in readbuffer_gets()
245 num += num_chars; in readbuffer_gets()
246 size -= num_chars; in readbuffer_gets()
247 ctx->ibuf_len -= num_chars; in readbuffer_gets()
[all …]
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBError.cpp143 int num_chars = m_opaque_up->SetErrorStringWithVarArg(format, args); in SetErrorStringWithFormat() local
145 return num_chars; in SetErrorStringWithFormat()
/freebsd/contrib/llvm-project/lldb/tools/driver/
H A DDriver.cpp386 size_t num_chars = python_file_spec.GetPath(python_path, PATH_MAX); in ProcessArgs() local
387 if (num_chars < PATH_MAX) { in ProcessArgs()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp937 size_t num_chars = process->ReadCStringFromMemory(error_addr + addr_size, in DoLoadImage() local
940 if (utility_error.Success() && num_chars > 0) in DoLoadImage()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1312 size_t num_chars = num_bytes / 6; in Read() local
1319 m_py_obj.CallMethod("read", (unsigned long long)num_chars)); in Read()
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-internal-inl.h240 GTEST_API_ std::string WideStringToUtf8(const wchar_t* str, int num_chars);
H A Dgtest.cc2056 std::string WideStringToUtf8(const wchar_t* str, int num_chars) { in WideStringToUtf8() argument
2057 if (num_chars == -1) num_chars = static_cast<int>(wcslen(str)); in WideStringToUtf8()
2060 for (int i = 0; i < num_chars; ++i) { in WideStringToUtf8()
2065 } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) { in WideStringToUtf8()
/freebsd/sys/contrib/dev/athk/ath10k/
H A Dhtt.h1180 __le16 num_chars; member