/external/libmojo/mojo/public/cpp/bindings/lib/ |
H A D | buffer.h | 13 // Buffer provides a way to allocate memory. Allocations are 8-byte aligned and 14 // zero-initialized. Allocations remain valid for the lifetime of the Buffer. 15 class Buffer { class in namespace:mojo::internal 17 virtual ~Buffer() {}
|
/external/llvm/unittests/Bitcode/ |
H A D | BitstreamWriterTest.cpp | 20 SmallString<64> Buffer; local 21 BitstreamWriter W(Buffer); 23 EXPECT_EQ(StringRef("str\0", 4), Buffer); 27 SmallString<64> Buffer; local 29 BitstreamWriter W(Buffer); 42 EXPECT_EQ(StringRef(Expected), Buffer); local 46 SmallString<64> Buffer; local 47 BitstreamWriter W(Buffer); 49 EXPECT_EQ(StringRef(""), Buffer); 53 SmallString<64> Buffer; local [all...] |
/external/llvm/unittests/Support/ |
H A D | LineIteratorTest.cpp | 20 std::unique_ptr<MemoryBuffer> Buffer = MemoryBuffer::getMemBuffer("line 1\n" local 24 line_iterator I = line_iterator(*Buffer), E; 44 std::unique_ptr<MemoryBuffer> Buffer( 53 line_iterator I = line_iterator(*Buffer, true, '#'), E; 73 std::unique_ptr<MemoryBuffer> Buffer( 83 line_iterator I = line_iterator(*Buffer, false, '#'), E; 110 std::unique_ptr<MemoryBuffer> Buffer = MemoryBuffer::getMemBuffer("\n\n\n" local 116 line_iterator I = line_iterator(*Buffer), E; 133 std::unique_ptr<MemoryBuffer> Buffer = MemoryBuffer::getMemBuffer("\n\n" local 138 line_iterator I = line_iterator(*Buffer, fals 170 std::unique_ptr<MemoryBuffer> Buffer = MemoryBuffer::getMemBuffer(""); local [all...] |
H A D | raw_pwrite_stream_test.cpp | 20 SmallVector<char, 0> Buffer; local 21 raw_svector_ostream OS(Buffer);
|
H A D | StreamingMemoryObjectTest.cpp | 21 size_t GetBytes(unsigned char *Buffer, size_t Length) override { 22 memset(Buffer, 0, Length); 28 StringRef Buffer; member in class:__anon13835::BufferStreamer 31 BufferStreamer(StringRef Buffer) : Buffer(Buffer) {} argument 33 if (Length >= Buffer.size()) 34 Length = Buffer.size(); 36 std::copy(Buffer.begin(), Buffer [all...] |
/external/libese/tools/ese_replay/ |
H A D | buffer.h | 30 struct Buffer { struct 36 bool buffer_init(struct Buffer *b, uint32_t len); 37 void buffer_free(struct Buffer *b); 38 bool buffer_read_hex(struct Buffer *b, FILE *fp, bool consume_newline); 39 void buffer_dump(const struct Buffer *b, const char *prefix, const char *name,
|
/external/testng/src/main/java/org/testng/reporters/ |
H A D | Buffer.java | 3 public class Buffer { class
|
/external/webrtc/webrtc/base/ |
H A D | buffer.cc | 18 Buffer::Buffer() : size_(0), capacity_(0), data_(nullptr) { function in class:rtc::Buffer 22 Buffer::Buffer(const Buffer& buf) : Buffer(buf.data(), buf.size()) { function in class:rtc::Buffer 25 Buffer::Buffer(Buffer&& buf) function in class:rtc::Buffer 33 Buffer function in class:rtc::Buffer 36 Buffer::Buffer(size_t size, size_t capacity) function in class:rtc::Buffer [all...] |
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/ |
H A D | error.c | 29 { EFI_BAD_BUFFER_SIZE, L"Bad Buffer Size"}, 30 { EFI_BUFFER_TOO_SMALL, L"Buffer Too Small"}, 55 { EFI_WARN_BUFFER_TOO_SMALL, L"Warning Buffer Too Small"}, 62 OUT CHAR16 *Buffer, 70 StrCpy (Buffer, ErrorCodeTable[Index].Desc); 75 SPrint (Buffer, 0, L"%X", Status); 61 StatusToString( OUT CHAR16 *Buffer, IN EFI_STATUS Status ) argument
|
/external/swiftshader/src/OpenGL/libGL/ |
H A D | Buffer.cpp | 15 // Buffer.cpp: Implements the Buffer class, representing storage of vertex and/or 18 #include "Buffer.h" 27 Buffer::Buffer(GLuint name) : NamedObject(name) function in class:gl::Buffer 34 Buffer::~Buffer() 42 void Buffer::bufferData(const void *data, GLsizeiptr size, GLenum usage) 70 void Buffer::bufferSubData(const void *data, GLsizeiptr size, GLintptr offset) 80 sw::Resource *Buffer [all...] |
/external/swiftshader/src/OpenGL/libGLES_CM/ |
H A D | Buffer.cpp | 15 // Buffer.cpp: Implements the Buffer class, representing storage of vertex and/or 19 #include "Buffer.h" 28 Buffer::Buffer(GLuint name) : NamedObject(name) function in class:es1::Buffer 35 Buffer::~Buffer() 43 void Buffer::bufferData(const void *data, GLsizeiptr size, GLenum usage) 71 void Buffer::bufferSubData(const void *data, GLsizeiptr size, GLintptr offset) 81 sw::Resource *Buffer [all...] |
H A D | Buffer.h | 15 // Buffer.h: Defines the Buffer class, representing storage of vertex and/or 32 class Buffer : public gl::NamedObject class in namespace:es1 35 explicit Buffer(GLuint name); 37 virtual ~Buffer();
|
/external/compiler-rt/test/profile/Inputs/ |
H A D | instrprof-merge-match-lib.c | 20 uint64_t libEntry(char *Buffer, uint64_t MaxSize) { argument 30 if (__llvm_profile_write_buffer(Buffer)) 34 if (__llvm_profile_check_compatibility(Buffer, Size))
|
H A D | instrprof-merge-match.c | 19 extern uint64_t libEntry(char *Buffer, uint64_t MaxSize); 23 static char Buffer[MaxSize]; local 32 if (__llvm_profile_write_buffer(Buffer)) 36 if (__llvm_profile_check_compatibility(Buffer, Size)) 40 memset(Buffer, 0, MaxSize); 43 Size = libEntry(Buffer, MaxSize); 49 if (!__llvm_profile_check_compatibility(Buffer, Size))
|
/external/compiler-rt/test/profile/ |
H A D | instrprof-without-libc.c | 28 static char Buffer[MaxSize]; local 33 int Write = __llvm_profile_write_buffer(Buffer); 41 __llvm_profile_merge_from_buffer(Buffer, Size); 48 if (fwrite(Buffer, 1, Size, File) != Size)
|
/external/llvm/lib/Support/ |
H A D | LineIterator.cpp | 35 line_iterator::line_iterator(const MemoryBuffer &Buffer, bool SkipBlanks, argument 37 : Buffer(Buffer.getBufferSize() ? &Buffer : nullptr), 39 CurrentLine(Buffer.getBufferSize() ? Buffer.getBufferStart() : nullptr, 43 if (Buffer.getBufferSize()) { 44 assert(Buffer.getBufferEnd()[0] == '\0'); 46 if (SkipBlanks || !isAtLineEnd(Buffer.getBufferStart())) 52 assert(Buffer [all...] |
/external/llvm/utils/count/ |
H A D | count.c | 15 char Buffer[4096], *End; local 32 NumRead = fread(Buffer, 1, sizeof(Buffer), stdin); 35 if (Buffer[i] == '\n') 37 } while (NumRead == sizeof(Buffer));
|
/external/openssh/ |
H A D | buffer.h | 26 typedef struct sshbuf Buffer; typedef in typeref:struct:sshbuf 37 void buffer_append(Buffer *, const void *, u_int); 38 void *buffer_append_space(Buffer *, u_int); 39 int buffer_check_alloc(Buffer *, u_int); 40 void buffer_get(Buffer *, void *, u_int); 42 void buffer_consume(Buffer *, u_int); 43 void buffer_consume_end(Buffer *, u_int); 46 int buffer_get_ret(Buffer *, void *, u_int); 47 int buffer_consume_ret(Buffer *, u_int); 48 int buffer_consume_end_ret(Buffer *, u_in [all...] |
/external/selinux/libselinux/src/ |
H A D | sha1.h | 32 uint8_t Buffer[64]; member in struct:__anon17853 67 void* Buffer,
|
/external/swiftshader/third_party/LLVM/utils/count/ |
H A D | count.c | 15 char Buffer[4096], *End; local 32 NumRead = fread(Buffer, 1, sizeof(Buffer), stdin); 35 if (Buffer[i] == '\n') 37 } while (NumRead == sizeof(Buffer));
|
/external/swiftshader/third_party/subzero/pnacl-llvm/ |
H A D | NaClBitstreamReader.cpp | 29 std::string Buffer; local 30 raw_string_ostream Stream(Buffer); 50 std::string Buffer; 51 raw_string_ostream StrBuf(Buffer); 58 std::string Buffer; 59 raw_string_ostream StrBuf(Buffer); 65 std::string Buffer; 66 raw_string_ostream StrBuf(Buffer); 248 std::string Buffer; 249 raw_string_ostream StrBuf(Buffer); [all...] |
/external/swiftshader/third_party/subzero/src/ |
H A D | WasmTranslator.h | 73 std::vector<uint8_t> Buffer; member in class:Ice::WasmTranslator
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
H A D | Buffer.cpp | 15 // Buffer.cpp: Implements the Buffer class, representing storage of vertex and/or 19 #include "Buffer.h" 28 Buffer::Buffer(GLuint name) : NamedObject(name) function in class:es2::Buffer 39 Buffer::~Buffer() 47 void Buffer::bufferData(const void *data, GLsizeiptr size, GLenum usage) 76 void Buffer::bufferSubData(const void *data, GLsizeiptr size, GLintptr offset) 86 void* Buffer [all...] |
/external/aac/libFDK/include/ |
H A D | FDK_bitbuffer.h | 106 UCHAR *Buffer; member in struct:__anon313
|
/external/clang/lib/Frontend/ |
H A D | PCHContainerOperations.cpp | 30 std::shared_ptr<PCHBuffer> Buffer; member in class:__anon1381::RawPCHContainerGenerator 35 std::shared_ptr<PCHBuffer> Buffer) 36 : Buffer(std::move(Buffer)), OS(OS) {} 41 if (Buffer->IsComplete) { 43 *OS << Buffer->Data; 48 Buffer->Data = std::move(Empty); 57 std::shared_ptr<PCHBuffer> Buffer) const { 58 return llvm::make_unique<RawPCHContainerGenerator>(OS, Buffer); 62 llvm::MemoryBufferRef Buffer, llv 34 RawPCHContainerGenerator(llvm::raw_pwrite_stream *OS, std::shared_ptr<PCHBuffer> Buffer) argument 61 ExtractPCH( llvm::MemoryBufferRef Buffer, llvm::BitstreamReader &StreamFile) const argument [all...] |