HomeSort by: relevance | last modified time | path
    Searched defs:Buffer (Results 1 - 25 of 158) sorted by relevancy

1 2 3 4 5 6 7

  /src/sys/external/bsd/acpica/dist/executer/
exstorob.c 170 * DESCRIPTION: Copy a buffer object to another buffer object.
180 UINT8 *Buffer;
193 /* We know that SourceDesc is a buffer by now */
195 Buffer = ACPI_CAST_PTR (UINT8, SourceDesc->Buffer.Pointer);
196 Length = SourceDesc->Buffer.Length;
199 * If target is a buffer of length zero or is a static buffer,
200 * allocate a new buffer of the proper lengt
    [all...]
exstorob.c 170 * DESCRIPTION: Copy a buffer object to another buffer object.
180 UINT8 *Buffer;
193 /* We know that SourceDesc is a buffer by now */
195 Buffer = ACPI_CAST_PTR (UINT8, SourceDesc->Buffer.Pointer);
196 Length = SourceDesc->Buffer.Length;
199 * If target is a buffer of length zero or is a static buffer,
200 * allocate a new buffer of the proper lengt
    [all...]
exoparg3.c 287 char *Buffer = NULL;
302 * either a String or a Buffer, so just use its type.
318 * If the index is beyond the length of the String/Buffer, or if the
319 * requested length is zero, return a zero-length String/Buffer
326 /* Truncate request if larger than the actual String/Buffer */
340 /* Always allocate a new buffer for the String */
342 Buffer = ACPI_ALLOCATE_ZEROED ((ACPI_SIZE) Length + 1);
343 if (!Buffer)
352 /* If the requested length is zero, don't allocate a buffer */
356 /* Allocate a new buffer for the Buffer *
    [all...]
exoparg3.c 287 char *Buffer = NULL;
302 * either a String or a Buffer, so just use its type.
318 * If the index is beyond the length of the String/Buffer, or if the
319 * requested length is zero, return a zero-length String/Buffer
326 /* Truncate request if larger than the actual String/Buffer */
340 /* Always allocate a new buffer for the String */
342 Buffer = ACPI_ALLOCATE_ZEROED ((ACPI_SIZE) Length + 1);
343 if (!Buffer)
352 /* If the requested length is zero, don't allocate a buffer */
356 /* Allocate a new buffer for the Buffer *
    [all...]
exfield.c 249 * Buffer, depending on the size of the field and whether if a
262 void *Buffer;
309 * Allocate a buffer for the contents of the field.
312 * a BUFFER to hold it. Otherwise, use an INTEGER. This allows
316 * However, all buffer fields created by CreateField operator needs to
317 * remain as a buffer to match other AML interpreter implementations.
328 /* Field is too large for an Integer, create a Buffer instead */
335 Buffer = BufferDesc->Buffer.Pointer;
348 Buffer = &BufferDesc->Integer.Value
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_monitor.h 25 InternalScopedString Buffer;
ubsan_monitor.h 25 InternalScopedString Buffer;
  /src/sys/external/bsd/compiler_rt/dist/test/profile/
instrprof-without-libc.c 26 static char Buffer[MaxSize];
31 int Write = __llvm_profile_write_buffer(Buffer);
32 if (__llvm_profile_write_buffer(Buffer))
44 if (fwrite(Buffer, 1, Size, File) != Size)
instrprof-without-libc.c 26 static char Buffer[MaxSize];
31 int Write = __llvm_profile_write_buffer(Buffer);
32 if (__llvm_profile_write_buffer(Buffer))
44 if (fwrite(Buffer, 1, Size, File) != Size)
  /src/sys/external/bsd/gnu-efi/dist/apps/
modelist.c 78 CHAR16 Buffer[64];
79 StatusToString(Buffer, rc);
80 Print(L"Bad response from QueryMode: %s (%d)\n", Buffer, rc);
modelist.c 78 CHAR16 Buffer[64];
79 StatusToString(Buffer, rc);
80 Print(L"Bad response from QueryMode: %s (%d)\n", Buffer, rc);
  /src/usr.bin/make/
buf.h 82 /* An automatically growing null-terminated buffer of characters. */
83 typedef struct Buffer {
84 size_t cap; /* Allocated size of the buffer, including the '\0' */
85 size_t len; /* Number of bytes in buffer, excluding the '\0' */
86 char *data; /* The buffer itself (always null-terminated) */
87 } Buffer;
89 void Buf_Expand(Buffer *);
91 /* Mark the buffer as empty, so it can be filled with data again. */
93 Buf_Clear(Buffer *buf)
99 /* Adds a single byte to a buffer. *
    [all...]
buf.h 82 /* An automatically growing null-terminated buffer of characters. */
83 typedef struct Buffer {
84 size_t cap; /* Allocated size of the buffer, including the '\0' */
85 size_t len; /* Number of bytes in buffer, excluding the '\0' */
86 char *data; /* The buffer itself (always null-terminated) */
87 } Buffer;
89 void Buf_Expand(Buffer *);
91 /* Mark the buffer as empty, so it can be filled with data again. */
93 Buf_Clear(Buffer *buf)
99 /* Adds a single byte to a buffer. *
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslcache.c 167 * PARAMETERS: Length - Size of buffer requested
169 * RETURN: Pointer to the buffer. Aborts compiler on allocation failure
171 * DESCRIPTION: Allocate a string buffer. Bypass the local
181 char *Buffer;
199 /* Link new cache buffer just following head of list */
209 return (Cache->Buffer);
216 /* Allocate a new buffer */
220 /* Link new cache buffer to head of list */
227 AslGbl_StringCacheNext = Cache->Buffer;
234 Buffer = AslGbl_StringCacheNext
    [all...]
asllength.c 396 char *Buffer;
468 Status = UtInternalizeName (Op->Asl.Value.String, &Buffer);
477 Op->Asl.Value.String = Buffer;
479 Op->Asl.AmlLength = strlen (Buffer);
aslcache.c 167 * PARAMETERS: Length - Size of buffer requested
169 * RETURN: Pointer to the buffer. Aborts compiler on allocation failure
171 * DESCRIPTION: Allocate a string buffer. Bypass the local
181 char *Buffer;
199 /* Link new cache buffer just following head of list */
209 return (Cache->Buffer);
216 /* Allocate a new buffer */
220 /* Link new cache buffer to head of list */
227 AslGbl_StringCacheNext = Cache->Buffer;
234 Buffer = AslGbl_StringCacheNext
    [all...]
asllength.c 396 char *Buffer;
468 Status = UtInternalizeName (Op->Asl.Value.String, &Buffer);
477 Op->Asl.Value.String = Buffer;
479 Op->Asl.AmlLength = strlen (Buffer);
aslmapenter.c 327 char *Buffer;
335 Buffer = UtLocalCacheCalloc (sizeof (ACPI_GPIO_INFO));
336 Info = ACPI_CAST_PTR (ACPI_GPIO_INFO, Buffer);
405 char *Buffer;
412 Buffer = UtLocalCacheCalloc (sizeof (ACPI_SERIAL_INFO));
413 Info = ACPI_CAST_PTR (ACPI_SERIAL_INFO, Buffer);
aslpld.c 181 * DESCRIPTION: Convert ToPLD macro to 20-byte buffer
200 UINT8 *Buffer;
676 Buffer = OpcEncodePldBuffer (&PldInfo);
678 /* Change Op to a Buffer */
688 /* Child node is the buffer length */
699 /* Peer to the child is the raw buffer data */
704 NewOp->Asl.Value.String = ACPI_CAST_PTR (char, Buffer);
715 * PARAMETERS: PldInfo - _PLD buffer struct (Using local struct)
717 * RETURN: Encode _PLD buffer suitable for return value from _PLD
719 * DESCRIPTION: Bit-packs a _PLD buffer struct
    [all...]
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsdebug.c 182 * Manages allocation/freeing of a pathname buffer
191 ACPI_BUFFER Buffer;
205 Buffer.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
207 Status = AcpiNsHandleToPathname (Node, &Buffer, TRUE);
216 (char *) Buffer.Pointer, Node));
217 ACPI_FREE (Buffer.Pointer);
267 "Executing subtree for Buffer/Package/Region\n"));
dsdebug.c 182 * Manages allocation/freeing of a pathname buffer
191 ACPI_BUFFER Buffer;
205 Buffer.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
207 Status = AcpiNsHandleToPathname (Node, &Buffer, TRUE);
216 (char *) Buffer.Pointer, Node));
217 ACPI_FREE (Buffer.Pointer);
267 "Executing subtree for Buffer/Package/Region\n"));
  /src/sys/external/bsd/acpica/dist/namespace/
nsdumpdv.c 189 ACPI_BUFFER Buffer;
200 Buffer.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
201 Status = AcpiGetObjectInfo (ObjHandle, &Buffer);
204 Info = Buffer.Pointer;
nsdumpdv.c 189 ACPI_BUFFER Buffer;
200 Buffer.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
201 Status = AcpiGetObjectInfo (ObjHandle, &Buffer);
204 Info = Buffer.Pointer;
  /src/sys/external/bsd/acpica/dist/utilities/
utalloc.c 330 char Buffer[7];
335 strcpy (Buffer, "MEMORY");
336 (void) AcpiDbDisplayStatistics (Buffer);
389 * PARAMETERS: Buffer - Buffer descriptor to be validated
399 ACPI_BUFFER *Buffer)
404 if (!Buffer)
411 if ((Buffer->Length == ACPI_NO_BUFFER) ||
412 (Buffer->Length == ACPI_ALLOCATE_BUFFER) ||
413 (Buffer->Length == ACPI_ALLOCATE_LOCAL_BUFFER)
    [all...]
utalloc.c 330 char Buffer[7];
335 strcpy (Buffer, "MEMORY");
336 (void) AcpiDbDisplayStatistics (Buffer);
389 * PARAMETERS: Buffer - Buffer descriptor to be validated
399 ACPI_BUFFER *Buffer)
404 if (!Buffer)
411 if ((Buffer->Length == ACPI_NO_BUFFER) ||
412 (Buffer->Length == ACPI_ALLOCATE_BUFFER) ||
413 (Buffer->Length == ACPI_ALLOCATE_LOCAL_BUFFER)
    [all...]

Completed in 34 milliseconds

1 2 3 4 5 6 7