HomeSort by relevance Sort by last modified time
    Searched refs:Buffer (Results 1 - 25 of 4741) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
X86FxRestore.c 26 Restores the current floating point/SSE/SSE2 context from a buffer.
28 Restores the current floating point/SSE/SSE2 state from the buffer specified
29 by Buffer. Buffer must be aligned on a 16-byte boundary. This function is
32 If Buffer is NULL, then ASSERT().
33 If Buffer is not aligned on a 16-byte boundary, then ASSERT().
34 If Buffer was not saved with AsmFxSave(), then ASSERT().
36 @param Buffer Pointer to a buffer to save the floating point/SSE/SSE2 context.
42 IN CONST IA32_FX_BUFFER *Buffer
    [all...]
X86FxSave.c 26 Save the current floating point/SSE/SSE2 context to a buffer.
28 Saves the current floating point/SSE/SSE2 state to the buffer specified by
29 Buffer. Buffer must be aligned on a 16-byte boundary. This function is only
32 If Buffer is NULL, then ASSERT().
33 If Buffer is not aligned on a 16-byte boundary, then ASSERT().
35 @param Buffer Pointer to a buffer to save the floating point/SSE/SSE2 context.
41 OUT IA32_FX_BUFFER *Buffer
44 ASSERT (Buffer != NULL);
    [all...]
Unaligned.c 28 This function returns the 16-bit value pointed to by Buffer. The function
31 If the Buffer is NULL, then ASSERT().
33 @param Buffer Pointer to a 16-bit value that may be unaligned.
41 IN CONST UINT16 *Buffer
44 ASSERT (Buffer != NULL);
46 return *Buffer;
52 This function writes the 16-bit value specified by Value to Buffer. Value is
56 If the Buffer is NULL, then ASSERT().
58 @param Buffer Pointer to a 16-bit value that may be unaligned.
59 @param Value 16-bit value to write to Buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
X86FxRestore.c 21 Restores the current floating point/SSE/SSE2 context from a buffer.
23 Restores the current floating point/SSE/SSE2 state from the buffer specified
24 by Buffer. Buffer must be aligned on a 16-byte boundary. This function is
27 If Buffer is NULL, then ASSERT().
28 If Buffer is not aligned on a 16-byte boundary, then ASSERT().
29 If Buffer was not saved with AsmFxSave(), then ASSERT().
31 @param Buffer A pointer to a buffer to save the floating point/SSE/SSE2 context.
37 IN CONST IA32_FX_BUFFER *Buffer
    [all...]
X86FxSave.c 21 Save the current floating point/SSE/SSE2 context to a buffer.
23 Saves the current floating point/SSE/SSE2 state to the buffer specified by
24 Buffer. Buffer must be aligned on a 16-byte boundary. This function is only
27 If Buffer is NULL, then ASSERT().
28 If Buffer is not aligned on a 16-byte boundary, then ASSERT().
30 @param Buffer A pointer to a buffer to save the floating point/SSE/SSE2 context.
36 OUT IA32_FX_BUFFER *Buffer
39 ASSERT (Buffer != NULL);
    [all...]
Unaligned.c 22 This function returns the 16-bit value pointed to by Buffer. The function
25 If the Buffer is NULL, then ASSERT().
27 @param Buffer A pointer to a 16-bit value that may be unaligned.
29 @return The 16-bit value read from Buffer.
35 IN CONST UINT16 *Buffer
38 ASSERT (Buffer != NULL);
40 return *Buffer;
46 This function writes the 16-bit value specified by Value to Buffer. Value is
50 If the Buffer is NULL, then ASSERT().
52 @param Buffer A pointer to a 16-bit value that may be unaligned.
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/PrePeiCore/Arm/
ArchPrePeiCore.c 27 CHAR8 Buffer[100];
32 CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"Reset Exception at 0x%X\n\r",LR);
35 CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"Undefined Exception at 0x%X\n\r",LR);
38 CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"SWI Exception at 0x%X\n\r",LR);
41 CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"PrefetchAbort Exception at 0x%X\n\r",LR);
44 CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"DataAbort Exception at 0x%X\n\r",LR);
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/PrePeiCore/AArch64/
ArchPrePeiCore.c 27 CHAR8 Buffer[100];
32 CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"Synchronous Exception at 0x%X\n\r", LR);
35 CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"IRQ Exception at 0x%X\n\r", LR);
38 CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"FIQ Exception at 0x%X\n\r", LR);
41 CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"SError/Abort Exception at 0x%X\n\r", LR);
44 CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"Unknown Exception at 0x%X\n\r", LR);
    [all...]
  /external/webrtc/webrtc/base/
buffer.cc 11 #include "webrtc/base/buffer.h"
18 Buffer::Buffer() : size_(0), capacity_(0), data_(nullptr) {
22 Buffer::Buffer(const Buffer& buf) : Buffer(buf.data(), buf.size()) {
25 Buffer::Buffer(Buffer&& buf
    [all...]
  /external/dng_sdk/source/
dng_ref_counted_block.h 66 /// Construct an empty memory buffer using malloc.
71 /// Construct memory buffer of size bytes using malloc.
77 /// Release memory buffer using free.
89 /// Clear existing memory buffer and allocate new memory of size bytes.
112 void * Buffer ()
120 const void * Buffer () const
130 return (char *) Buffer ();
138 return (const char *) Buffer ();
146 return (uint8 *) Buffer ();
154 return (const uint8 *) Buffer ();
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
AmlString.c 20 @param[in] Buffer AML path.
27 IN UINT8 *Buffer
30 if ((Buffer[0] == AML_ROOT_CHAR) && (Buffer[1] == 0)) {
78 Return is buffer is AML NameSeg.
80 @param[in] Buffer AML NameSement.
87 IN UINT8 *Buffer
91 if (!AmlIsLeadName (Buffer[0])) {
95 if (!AmlIsName (Buffer[Index])) {
105 @param[in] Buffer AML NameString.
    [all...]
  /frameworks/base/opengl/java/android/opengl/
ETC1.java 19 import java.nio.Buffer;
57 * @param in a native order direct buffer of size DECODED_BLOCK_SIZE that represent a
64 * @param out a native order direct buffer of size ENCODED_BLOCK_SIZE that receives the
68 public static native void encodeBlock(Buffer in, int validPixelMask, Buffer out);
73 * @param in a native order direct buffer of size ENCODED_BLOCK_SIZE that contains the
76 * @param out a native order direct buffer of size DECODED_BLOCK_SIZE that will receive
81 public static native void decodeBlock(Buffer in, Buffer out);
90 * @param in a native order direct buffer of the image data. Formatted such tha
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
Clipboard.c 18 UINT8 *Buffer;
63 SHELL_FREE_NON_NULL (HClipBoard.Buffer);
69 Set a buffer into the clipboard.
71 @param[in] Buffer The buffer to add to the clipboard.
72 @param[in] Size The size of Buffer in bytes.
78 IN UINT8 *Buffer,
83 // free the old clipboard buffer
84 // and set new clipboard buffer
86 SHELL_FREE_NON_NULL (HClipBoard.Buffer);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLib/
ZeroMemWrapper.c 29 Fills a target buffer with zeros, and returns the target buffer.
31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 @param Buffer The pointer to the target buffer to fill with zeros.
37 @param Length The number of bytes in Buffer to fill with zeros.
39 @return Buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibMmx/
ZeroMemWrapper.c 29 Fills a target buffer with zeros, and returns the target buffer.
31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 @param Buffer The pointer to the target buffer to fill with zeros.
37 @param Length The number of bytes in Buffer to fill with zeros.
39 @return Buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/
ZeroMemWrapper.c 29 Fills a target buffer with zeros, and returns the target buffer.
31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 @param Buffer The pointer to the target buffer to fill with zeros.
37 @param Length The number of bytes in Buffer to fill with zeros.
39 @return Buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptPei/
ZeroMemWrapper.c 29 Fills a target buffer with zeros, and returns the target buffer.
31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 @param Buffer The pointer to the target buffer to fill with zeros.
37 @param Length The number of bytes in Buffer to fill with zeros.
39 @return Buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibRepStr/
ZeroMemWrapper.c 29 Fills a target buffer with zeros, and returns the target buffer.
31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 @param Buffer The pointer to the target buffer to fill with zeros.
37 @param Length The number of bytes in Buffer to fill with zeros.
39 @return Buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibSse2/
ZeroMemWrapper.c 29 Fills a target buffer with zeros, and returns the target buffer.
31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 @param Buffer The pointer to the target buffer to fill with zeros.
37 @param Length The number of bytes in Buffer to fill with zeros.
39 @return Buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/PeiMemoryLib/
ZeroMemWrapper.c 29 Fills a target buffer with zeros, and returns the target buffer.
31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 @param Buffer The pointer to the target buffer to fill with zeros.
37 @param Length The number of bytes in Buffer to fill with zeros.
39 @return Buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiMemoryLib/
ZeroMemWrapper.c 29 Fills a target buffer with zeros, and returns the target buffer.
31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 @param Buffer The pointer to the target buffer to fill with zeros.
37 @param Length The number of bytes in Buffer to fill with zeros.
39 @return Buffer.
    [all...]
  /external/llvm/unittests/Bitcode/
BitstreamWriterTest.cpp 20 SmallString<64> Buffer;
21 BitstreamWriter W(Buffer);
23 EXPECT_EQ(StringRef("str\0", 4), Buffer);
27 SmallString<64> Buffer;
29 BitstreamWriter W(Buffer);
42 EXPECT_EQ(StringRef(Expected), Buffer);
46 SmallString<64> Buffer;
47 BitstreamWriter W(Buffer);
49 EXPECT_EQ(StringRef(""), Buffer);
53 SmallString<64> Buffer;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/
SetMem16Wrapper.c 25 Fills a target buffer with a 16-bit value, and returns the target buffer.
27 This function fills Length bytes of Buffer with the 16-bit value specified by
28 Value, and returns Buffer. Value is repeated every 16-bits in for Length
29 bytes of Buffer.
31 If Length > 0 and Buffer is NULL, then ASSERT().
32 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
33 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
36 @param Buffer Pointer to the target buffer to fill.
    [all...]
SetMem32Wrapper.c 25 Fills a target buffer with a 32-bit value, and returns the target buffer.
27 This function fills Length bytes of Buffer with the 32-bit value specified by
28 Value, and returns Buffer. Value is repeated every 32-bits in for Length
29 bytes of Buffer.
31 If Length > 0 and Buffer is NULL, then ASSERT().
32 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
33 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
36 @param Buffer Pointer to the target buffer to fill.
    [all...]
SetMem64Wrapper.c 26 Fills a target buffer with a 64-bit value, and returns the target buffer.
28 This function fills Length bytes of Buffer with the 64-bit value specified by
29 Value, and returns Buffer. Value is repeated every 64-bits in for Length
30 bytes of Buffer.
32 If Length > 0 and Buffer is NULL, then ASSERT().
33 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
34 If Buffer is not aligned on a 64-bit boundary, then ASSERT().
37 @param Buffer Pointer to the target buffer to fill.
    [all...]

Completed in 568 milliseconds

1 2 3 4 5 6 7 8 91011>>