Searched refs:Buffer (Results 1 - 25 of 533) sorted by relevance

1234567891011>>

/freebsd-11-stable/crypto/openssh/
H A Dentropy.h32 void rexec_send_rng_seed(Buffer *);
33 void rexec_recv_rng_seed(Buffer *);
H A Dbuffer.h26 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...]
H A Dbufaux.c29 buffer_get_short_ret(u_short *v, Buffer *buffer)
41 buffer_get_short(Buffer *buffer)
52 buffer_get_int_ret(u_int *v, Buffer *buffer)
64 buffer_get_int(Buffer *buffer)
75 buffer_get_int64_ret(u_int64_t *v, Buffer *buffer)
87 buffer_get_int64(Buffer *buffer)
98 buffer_put_short(Buffer *buffer, u_short value)
107 buffer_put_int(Buffer *buffer, u_int value)
116 buffer_put_int64(Buffer *buffer, u_int64_t value)
125 buffer_get_string_ret(Buffer *buffe
[all...]
H A Dbufbn.c33 buffer_put_bignum_ret(Buffer *buffer, const BIGNUM *value)
45 buffer_put_bignum(Buffer *buffer, const BIGNUM *value)
52 buffer_get_bignum_ret(Buffer *buffer, BIGNUM *value)
64 buffer_get_bignum(Buffer *buffer, BIGNUM *value)
72 buffer_put_bignum2_ret(Buffer *buffer, const BIGNUM *value)
84 buffer_put_bignum2(Buffer *buffer, const BIGNUM *value)
91 buffer_get_bignum2_ret(Buffer *buffer, BIGNUM *value)
103 buffer_get_bignum2(Buffer *buffer, BIGNUM *value)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DDataBufferLLVM.cpp19 : Buffer(std::move(MemBuffer)) {
20 assert(Buffer != nullptr &&
27 return reinterpret_cast<uint8_t *>(Buffer->getBufferStart());
31 return reinterpret_cast<const uint8_t *>(Buffer->getBufferStart());
35 return Buffer->getBufferSize();
/freebsd-11-stable/contrib/bmake/
H A Dbuf.h85 typedef struct Buffer { struct
89 } Buffer; typedef in typeref:struct:Buffer
111 void Buf_Expand_1(Buffer *);
112 void Buf_AddBytes(Buffer *, int, const Byte *);
113 Byte *Buf_GetAll(Buffer *, int *);
114 void Buf_Empty(Buffer *);
115 void Buf_Init(Buffer *, int);
116 Byte *Buf_Destroy(Buffer *, Boolean);
117 Byte *Buf_DestroyCompact(Buffer *);
/freebsd-11-stable/sys/contrib/dev/acpica/components/executer/
H A Dexstorob.c180 UINT8 *Buffer; local
195 Buffer = ACPI_CAST_PTR (UINT8, SourceDesc->Buffer.Pointer);
196 Length = SourceDesc->Buffer.Length;
202 if ((TargetDesc->Buffer.Length == 0) ||
205 TargetDesc->Buffer.Pointer = ACPI_ALLOCATE (Length);
206 if (!TargetDesc->Buffer.Pointer)
211 TargetDesc->Buffer.Length = Length;
216 if (Length <= TargetDesc->Buffer.Length)
220 memset (TargetDesc->Buffer
285 UINT8 *Buffer; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DLineIterator.cpp34 line_iterator::line_iterator(const MemoryBuffer &Buffer, bool SkipBlanks, argument
36 : Buffer(Buffer.getBufferSize() ? &Buffer : nullptr),
38 CurrentLine(Buffer.getBufferSize() ? Buffer.getBufferStart() : nullptr,
42 if (Buffer.getBufferSize()) {
43 assert(Buffer.getBufferEnd()[0] == '\0');
45 if (SkipBlanks || !isAtLineEnd(Buffer.getBufferStart()))
51 assert(Buffer
[all...]
H A DDJB.cpp21 static UTF32 chopOneUTF32(StringRef &Buffer) { argument
24 reinterpret_cast<const UTF8 *>(Buffer.begin());
30 assert(!Buffer.empty());
31 ConvertUTF8toUTF32(&Begin8, reinterpret_cast<const UTF8 *>(Buffer.end()),
33 Buffer = Buffer.drop_front(Begin8 - Begin8Const);
60 static Optional<uint32_t> fastCaseFoldingDjbHash(StringRef Buffer, uint32_t H) { argument
62 for (unsigned char C : Buffer) {
71 uint32_t llvm::caseFoldingDjbHash(StringRef Buffer, uint32_t H) { argument
72 if (Optional<uint32_t> Result = fastCaseFoldingDjbHash(Buffer,
[all...]
H A DSHA1.cpp103 r0(A, B, C, D, E, 0, InternalState.Buffer.L);
104 r0(E, A, B, C, D, 1, InternalState.Buffer.L);
105 r0(D, E, A, B, C, 2, InternalState.Buffer.L);
106 r0(C, D, E, A, B, 3, InternalState.Buffer.L);
107 r0(B, C, D, E, A, 4, InternalState.Buffer.L);
108 r0(A, B, C, D, E, 5, InternalState.Buffer.L);
109 r0(E, A, B, C, D, 6, InternalState.Buffer.L);
110 r0(D, E, A, B, C, 7, InternalState.Buffer.L);
111 r0(C, D, E, A, B, 8, InternalState.Buffer.L);
112 r0(B, C, D, E, A, 9, InternalState.Buffer
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DDJB.h21 inline uint32_t djbHash(StringRef Buffer, uint32_t H = 5381) { argument
22 for (unsigned char C : Buffer.bytes())
29 uint32_t caseFoldingDjbHash(StringRef Buffer, uint32_t H = 5381);
H A DLineIterator.h33 const MemoryBuffer *Buffer = nullptr; member in class:llvm::line_iterator
45 explicit line_iterator(const MemoryBuffer &Buffer, bool SkipBlanks = true,
49 bool is_at_eof() const { return !Buffer; }
73 return LHS.Buffer == RHS.Buffer &&
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOptionalDiagnostic.h42 SmallVector<char, 32> Buffer; local
43 I.toString(Buffer);
44 *Diag << StringRef(Buffer.data(), Buffer.size());
59 SmallVector<char, 32> Buffer; local
60 F.toString(Buffer, precision);
61 *Diag << StringRef(Buffer.data(), Buffer.size());
68 SmallVector<char, 32> Buffer; local
69 FX.toString(Buffer);
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DPCHContainerOperations.cpp29 std::shared_ptr<PCHBuffer> Buffer; member in class:__anon735::RawPCHContainerGenerator
34 std::shared_ptr<PCHBuffer> Buffer)
35 : Buffer(std::move(Buffer)), OS(std::move(OS)) {}
40 if (Buffer->IsComplete) {
42 *OS << Buffer->Data;
47 Buffer->Data = std::move(Empty);
56 std::shared_ptr<PCHBuffer> Buffer) const {
57 return std::make_unique<RawPCHContainerGenerator>(std::move(OS), Buffer);
61 RawPCHContainerReader::ExtractPCH(llvm::MemoryBufferRef Buffer) cons
33 RawPCHContainerGenerator(std::unique_ptr<llvm::raw_pwrite_stream> OS, std::shared_ptr<PCHBuffer> Buffer) argument
[all...]
H A DInMemoryModuleCache.cpp21 return I->second.Buffer ? Tentative : ToBuild;
26 std::unique_ptr<llvm::MemoryBuffer> Buffer) {
27 auto Insertion = PCMs.insert(std::make_pair(Filename, std::move(Buffer)));
29 return *Insertion.first->second.Buffer;
34 std::unique_ptr<llvm::MemoryBuffer> Buffer) {
37 assert(!PCM.Buffer && "Trying to override tentative PCM?");
38 PCM.Buffer = std::move(Buffer);
40 return *PCM.Buffer;
48 return I->second.Buffer
25 addPCM(llvm::StringRef Filename, std::unique_ptr<llvm::MemoryBuffer> Buffer) argument
33 addBuiltPCM(llvm::StringRef Filename, std::unique_ptr<llvm::MemoryBuffer> Buffer) argument
[all...]
H A DGeneratePCH.cpp25 StringRef OutputFile, StringRef isysroot, std::shared_ptr<PCHBuffer> Buffer,
30 SemaPtr(nullptr), Buffer(std::move(Buffer)), Stream(this->Buffer->Data),
31 Writer(Stream, this->Buffer->Data, ModuleCache, Extensions,
35 this->Buffer->IsComplete = false;
60 // Emit the PCH file to the Buffer.
62 Buffer->Signature =
69 Buffer->IsComplete = true;
23 PCHGenerator( const Preprocessor &PP, InMemoryModuleCache &ModuleCache, StringRef OutputFile, StringRef isysroot, std::shared_ptr<PCHBuffer> Buffer, ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions, bool AllowASTWithErrors, bool IncludeTimestamps, bool ShouldCacheASTInMemory) argument
/freebsd-11-stable/contrib/groff/src/devices/xditview/
H A Dlex.c23 GetLine(DviWidget dw, char *Buffer, int Length) argument
30 if (Buffer && i < Length)
31 Buffer[i++] = c;
37 if (Buffer)
38 Buffer[i] = '\0';
39 return Buffer;
43 GetWord(DviWidget dw, char *Buffer, int Length) argument
51 if (Buffer && i < Length)
52 Buffer[i++] = c;
58 if (Buffer)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.h22 class Buffer;
26 Buffer &Out);
28 Buffer &Out);
30 object::ELFObjectFileBase &In, Buffer &Out);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DMicroOpQueueStage.cpp22 InstRef IR = Buffer[CurrentInstructionSlotIdx];
27 Buffer[CurrentInstructionSlotIdx].invalidate();
30 CurrentInstructionSlotIdx %= Buffer.size();
32 IR = Buffer[CurrentInstructionSlotIdx];
42 Buffer.resize(Size ? Size : 1);
43 AvailableEntries = Buffer.size();
47 Buffer[NextAvailableSlotIdx] = IR;
50 NextAvailableSlotIdx %= Buffer.size();
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DCOFFObjcopy.h21 class Buffer;
25 object::COFFObjectFile &In, Buffer &Out);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOObjcopy.h22 class Buffer;
26 object::MachOObjectFile &In, Buffer &Out);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DTypeLocBuilder.cpp51 &Buffer[Index],
54 if (Buffer != InlineBuffer)
55 delete[] Buffer;
57 Buffer = NewBuffer;
99 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4);
110 memmove(&Buffer[Index + 4], &Buffer[Index], NumBytesAtAlign4);
121 memmove(&Buffer[Index - 4], &Buffer[Inde
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/common/
H A Dacgetline.c253 * PARAMETERS: Buffer - Where to return the command line
254 * BufferLength - Maximum length of Buffer
268 char *Buffer,
284 memset (Buffer, 0, BufferLength);
310 Buffer[EndOfLine] = (char) InputChar;
314 Buffer[EndOfLine] = 0;
320 memmove (&Buffer[CursorPosition + 1], &Buffer[CursorPosition],
323 Buffer [CursorPosition] = (char) InputChar;
324 Buffer [EndOfLin
267 AcpiOsGetLine( char *Buffer, UINT32 BufferLength, UINT32 *BytesRead) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.cpp17 static int appendChar(char **Buffer, const char *BufferEnd, char C) { argument
18 if (*Buffer < BufferEnd) {
19 **Buffer = C;
20 (*Buffer)++;
28 static int appendNumber(char **Buffer, const char *BufferEnd, u64 AbsoluteValue, argument
40 Res += appendChar(Buffer, BufferEnd, '-');
58 Res += appendChar(Buffer, BufferEnd, c);
61 Res += appendChar(Buffer, BufferEnd, '-');
66 Res += appendChar(Buffer, BufferEnd, Digit);
71 static int appendUnsigned(char **Buffer, cons argument
78 appendSignedDecimal(char **Buffer, const char *BufferEnd, s64 Num, u8 MinNumberLength, bool PadWithZero) argument
92 appendString(char **Buffer, const char *BufferEnd, int Width, int MaxChars, const char *S) argument
108 appendPointer(char **Buffer, const char *BufferEnd, u64 ptr_value) argument
117 formatString(char *Buffer, uptr BufferLength, const char *Format, va_list Args) argument
[all...]
/freebsd-11-stable/sys/contrib/edk2/Include/Library/
H A DBaseMemoryLib.h50 This function fills Length bytes of Buffer with Value, and returns Buffer.
52 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
54 @param Buffer The memory to set.
56 @param Value The value with which to fill Length bytes of Buffer.
58 @return Buffer.
64 OUT VOID *Buffer,
72 This function fills Length bytes of Buffer with the 16-bit value specified by
73 Value, and returns Buffer. Value is repeated every 16-bits in for Length
74 bytes of Buffer
[all...]

Completed in 192 milliseconds

1234567891011>>