Home
last modified time | relevance | path

Searched refs:BUFSIZE (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/libc/src/__support/
H A Dinteger_to_string.h41 static constexpr size_t BUFSIZE = variable
43 char strbuf[BUFSIZE] = {'\0'};
47 size_t buffptr = BUFSIZE; in convert()
55 len = BUFSIZE - buffptr; in convert()
64 strbuf[BUFSIZE - len] = '-'; in IntegerToString()
69 return cpp::StringView(strbuf + BUFSIZE - len, len); in str()
/llvm-project-15.0.7/libc/test/src/__support/CPP/
H A Dstringstream_test.cpp32 constexpr size_t BUFSIZE = 8; in TEST() local
33 char buf[BUFSIZE]; in TEST()
34 MutableArrayRef<char> bufref(reinterpret_cast<void *>(buf), BUFSIZE); in TEST()
39 ASSERT_EQ(ss1.str().size(), BUFSIZE); in TEST()
50 ASSERT_EQ(ss2.str().size(), BUFSIZE); in TEST()
/llvm-project-15.0.7/clang/test/Lexer/
H A Ddigraph.c13 %:ifndef BUFSIZE
14 %:define BUFSIZE 512 macro
/llvm-project-15.0.7/libc/src/__support/File/
H A Ddir.h37 static constexpr size_t BUFSIZE = 1024; variable
45 uint8_t buffer[BUFSIZE];
H A Ddir.cpp33 fd, cpp::MutableArrayRef<uint8_t>(buffer, BUFSIZE)); in read()
/llvm-project-15.0.7/clang/test/Analysis/
H A Dtaint-generic.cpp3 #define BUFSIZE 10 macro
4 int Buffer[BUFSIZE];
H A Dtaint-tester.c5 #define BUFSIZE 10 macro
6 int Buffer[BUFSIZE];
H A Dmalloc.c1839 enum { BUFSIZE = 256 }; enumerator
1842 char buf[BUFSIZE]; in MEM34_C()
1843 char *p = (char *)realloc(buf, 2 * BUFSIZE); in MEM34_C()
H A Dtaint-generic.c115 #define BUFSIZE 10 macro
117 int Buffer[BUFSIZE];