Home
last modified time | relevance | path

Searched refs:strbuf (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/libc/src/__support/
H A Dinteger_to_string.h43 char strbuf[BUFSIZE] = {'\0'}; variable
49 strbuf[buffptr - 1] = '0'; in convert()
53 strbuf[buffptr - 1] = (val % 10) + '0'; in convert()
64 strbuf[BUFSIZE - len] = '-'; in IntegerToString()
69 return cpp::StringView(strbuf + BUFSIZE - len, len); in str()
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dcompound.c17 void foo(char *strbuf) { in foo() argument
19 strbuf += stufflen; in foo()
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.mm1057 char strbuf[17];
1061 while (still_reading && ReadMemory(pathname_ptr, sizeof(strbuf) - 1,
1062 strbuf) == sizeof(strbuf) - 1) {
1063 strbuf[sizeof(strbuf) - 1] = '\0';
1064 info.filename += strbuf;
1065 pathname_ptr += sizeof(strbuf) - 1;
1067 for (size_t i = 0; i < sizeof(strbuf) - 1; i++) {
1068 if (strbuf[i] == '\0') {
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DAttrDocs.td764 strnlen(strbuf, maxlen) to resolve to strnlen_chk(strbuf, maxlen, size of
765 strbuf) only if the size of strbuf can be determined: