Searched refs:buffer_end (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | Hashing.h | 376 bool store_and_advance(char *&buffer_ptr, char *buffer_end, const T& value, 379 if (buffer_ptr + store_size > buffer_end) 396 char *const buffer_end = std::end(buffer); 397 while (first != last && store_and_advance(buffer_ptr, buffer_end, 402 assert(buffer_ptr == buffer_end); 410 while (first != last && store_and_advance(buffer_ptr, buffer_end, 417 std::rotate(buffer, buffer_ptr, buffer_end); 509 char *combine_data(size_t &length, char *buffer_ptr, char *buffer_end, T data) { 510 if (!store_and_advance(buffer_ptr, buffer_end, data)) { 515 size_t partial_store_size = buffer_end - buffer_ptr; [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | StringPrinter.cpp | 65 GetPrintableImpl(uint8_t *buffer, uint8_t *buffer_end, uint8_t *&next, 137 uint8_t *buffer, uint8_t *buffer_end, uint8_t *&next, in GetPrintableImpl() argument 170 uint8_t *buffer, uint8_t *buffer_end, uint8_t *&next, in GetPrintableImpl() argument 175 if (!llvm::isLegalUTF8Sequence(buffer, buffer_end)) in GetPrintableImpl() 176 return GetPrintableImpl<StringElementType::ASCII>(buffer, buffer_end, next, in GetPrintableImpl() 183 &buffer_for_conversion, buffer_end, &codepoint, llvm::strictConversion); in GetPrintableImpl() 219 uint8_t *buffer_end, uint8_t *&next, in GetPrintable() argument 221 if (!buffer || buffer >= buffer_end) in GetPrintable() 226 return GetPrintableImpl<StringElementType::ASCII>(buffer, buffer_end, next, in GetPrintable() 229 return GetPrintableImpl<StringElementType::UTF8>(buffer, buffer_end, next, in GetPrintable() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Rewrite/Frontend/ |
| H A D | FixItRewriter.h | 104 iterator buffer_end() { return Rewrite.buffer_end(); } in buffer_end() function
|
| /freebsd/contrib/llvm-project/clang/include/clang/Rewrite/Core/ |
| H A D | Rewriter.h | 207 buffer_iterator buffer_end() { return RewriteBuffers.end(); } in buffer_end() function 209 const_buffer_iterator buffer_end() const { return RewriteBuffers.end(); } in buffer_end() function
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | FixItRewriter.cpp | 95 for (iterator I = buffer_begin(), E = buffer_end(); I != E; ++I) { in WriteFixedFiles()
|
| /freebsd/contrib/llvm-project/clang/lib/Rewrite/ |
| H A D | Rewriter.cpp | 319 for (buffer_iterator I = buffer_begin(), E = buffer_end(); I != E; ++I) { in overwriteChangedFiles()
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | LiteralSupport.cpp | 1801 uint32_t *buffer_end = buffer_begin + codepoint_buffer.size(); in CharLiteralParser() local 1833 &buffer_begin, buffer_end, llvm::strictConversion); in CharLiteralParser()
|