Searched refs:OutBuffer (Results 1 - 25 of 101) sorted by relevance

12345

/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Djson.h15 struct OutBuffer;
17 void json_generate(OutBuffer *, Modules *);
H A Ddoc.h16 struct OutBuffer;
18 void escapeDdocString(OutBuffer *buf, size_t start);
H A Dhdrgen.h31 void toCBuffer(Statement *s, OutBuffer *buf, HdrGenState *hgs);
32 void toCBuffer(Type *t, OutBuffer *buf, Identifier *ident, HdrGenState *hgs);
33 void toCBuffer(Dsymbol *s, OutBuffer *buf, HdrGenState *hgs);
34 void toCBuffer(Initializer *iz, OutBuffer *buf, HdrGenState *hgs);
35 void toCBuffer(Expression *e, OutBuffer *buf, HdrGenState *hgs);
36 void toCBuffer(TemplateParameter *tp, OutBuffer *buf, HdrGenState *hgs);
38 void toCBufferInstance(TemplateInstance *ti, OutBuffer *buf, bool qualifyTypes = false);
40 void functionToBufferFull(TypeFunction *tf, OutBuffer *buf, Identifier *ident, HdrGenState* hgs, TemplateDeclaration *td);
41 void functionToBufferWithIdent(TypeFunction *t, OutBuffer *buf, const char *ident);
43 void argExpTypesToCBuffer(OutBuffer *bu
[all...]
H A Dmangle.h18 struct OutBuffer;
30 void mangleToBuffer(Type *s, OutBuffer *buf);
31 void mangleToBuffer(Expression *s, OutBuffer *buf);
32 void mangleToBuffer(Dsymbol *s, OutBuffer *buf);
33 void mangleToBuffer(TemplateInstance *s, OutBuffer *buf);
H A Dmars.h68 struct OutBuffer;
93 void escapePath(OutBuffer *buf, const char *fname);
H A Dmacro.h36 void expand(OutBuffer *buf, size_t start, size_t *pend,
H A Dutils.c104 void escapePath(OutBuffer *buf, const char *fname)
H A Ddoc.c38 void emitMemberComments(ScopeDsymbol *sds, OutBuffer *buf, Scope *sc);
39 void toDocBuffer(Dsymbol *s, OutBuffer *buf, Scope *sc);
40 void emitComment(Dsymbol *s, OutBuffer *buf, Scope *sc);
60 virtual void write(Loc loc, DocComment *dc, Scope *sc, Dsymbols *a, OutBuffer *buf);
66 void write(Loc loc, DocComment *dc, Scope *sc, Dsymbols *a, OutBuffer *buf);
72 void write(Loc loc, DocComment *dc, Scope *sc, Dsymbols *a, OutBuffer *buf);
98 void writeSections(Scope *sc, Dsymbols *a, OutBuffer *buf);
106 size_t skiptoident(OutBuffer *buf, size_t i);
107 size_t skippastident(OutBuffer *buf, size_t i);
108 size_t skippastURL(OutBuffer *bu
[all...]
H A Ddversion.c48 OutBuffer buf;
138 OutBuffer buf;
H A Dlexer.h23 static OutBuffer stringbuffer;
H A Dtarget.h25 struct OutBuffer;
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Djson.h16 struct OutBuffer;
18 void json_generate(OutBuffer *, Modules *);
H A Dmangle.h18 struct OutBuffer;
31 void mangleToBuffer(Type *s, OutBuffer *buf);
32 void mangleToBuffer(Expression *s, OutBuffer *buf);
33 void mangleToBuffer(Dsymbol *s, OutBuffer *buf);
34 void mangleToBuffer(TemplateInstance *s, OutBuffer *buf);
H A Dhdrgen.h20 void moduleToBuffer(OutBuffer *buf, Module *m);
H A Ddversion.d63 OutBuffer buf;
157 OutBuffer buf;
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
H A Dobject.h15 struct OutBuffer;
51 virtual void toBuffer(OutBuffer *buf);
H A Doutbuffer.c13 char *OutBuffer::extractData()
24 void OutBuffer::reserve(size_t nbytes)
26 //printf("OutBuffer::reserve: size = %d, offset = %d, nbytes = %d\n", size, offset, nbytes);
35 void OutBuffer::reset()
40 void OutBuffer::setsize(size_t size)
45 void OutBuffer::write(const void *data, size_t nbytes)
65 void OutBuffer::writebstring(utf8_t *string)
70 void OutBuffer::writestring(const char *string)
75 void OutBuffer::prependstring(const char *string)
84 void OutBuffer
[all...]
H A Doutbuffer.h17 struct OutBuffer struct
29 OutBuffer() function in struct:OutBuffer
39 ~OutBuffer()
60 void write(OutBuffer *buf);
H A Drootobject.c45 void RootObject::toBuffer(OutBuffer *b)
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/root/
H A Dobject.h17 struct OutBuffer;
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/common/
H A Doutbuffer.h18 struct OutBuffer struct
31 OutBuffer() function in struct:OutBuffer
41 ~OutBuffer()
63 void write(const OutBuffer *buf);
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/
H A Doutbuffer.d19 * OutBuffer provides a way to build up an array of bytes out
22 * OutBuffer's byte order is the format native to the computer.
24 * from OutBuffer.
25 * OutBuffer's internal buffer is allocated with the GC. Pointers
30 class OutBuffer
74 * put enables OutBuffer to be used as an OutputRange.
170 void write(scope const OutBuffer buf) /// ditto
240 //printf("OutBuffer.toString()\n");
303 * Formats and writes its arguments in text format to the OutBuffer.
322 OutBuffer
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Doutbuffer.d18 * OutBuffer provides a way to build up an array of bytes out
21 * OutBuffer's byte order is the format native to the computer.
23 * from OutBuffer.
24 * OutBuffer's internal buffer is allocated with the GC. Pointers
29 class OutBuffer
73 * put enables OutBuffer to be used as an OutputRange.
169 void write(OutBuffer buf) /// ditto
239 //printf("OutBuffer.toString()\n");
302 * Formats and writes its arguments in text format to the OutBuffer.
321 OutBuffer
[all...]
/netbsd-current/sys/external/bsd/acpica/dist/utilities/
H A Dutxface.c130 * PARAMETERS: OutBuffer - A buffer to receive the resources for the
137 * in the OutBuffer.
140 * and the value of OutBuffer is undefined.
146 ACPI_BUFFER *OutBuffer)
157 Status = AcpiUtValidateBuffer (OutBuffer);
165 Status = AcpiUtInitializeBuffer (OutBuffer, sizeof (ACPI_SYSTEM_INFO));
174 InfoPtr = (ACPI_SYSTEM_INFO *) OutBuffer->Pointer;
/netbsd-current/sys/external/bsd/acpica/dist/compiler/
H A Dasloptions.c64 char *OutBuffer);
951 * OutBuffer - Merged output buffer
962 char *OutBuffer)
967 *OutBuffer = 0;
972 strcat (OutBuffer, Token);
960 AslMergeOptionTokens( char *InBuffer, char *OutBuffer) argument

Completed in 429 milliseconds

12345