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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Graphics/Unicode/
PrintWidth.h 30 #define USPrint(Buffer, BufferSize, Format) SPrint (Buffer, BufferSize, Format)
31 #define UvSPrint(Buffer, BufferSize, Format, Marker) VSPrint (Buffer, BufferSize, Format, Marker)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/Unicode/
PrintWidth.h 30 #define USPrint(Buffer, BufferSize, Format) SPrint (Buffer, BufferSize, Format)
31 #define UvSPrint(Buffer, BufferSize, Format, Marker) VSPrint (Buffer, BufferSize, Format, Marker)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/Unicode/
PrintWidth.h 30 #define USPrint(Buffer, BufferSize, Format) SPrint (Buffer, BufferSize, Format)
31 #define UvSPrint(Buffer, BufferSize, Format, Marker) VSPrint (Buffer, BufferSize, Format, Marker)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/Unicode/
PrintWidth.h 30 #define USPrint(Buffer, BufferSize, Format) SPrint (Buffer, BufferSize, Format)
31 #define UvSPrint(Buffer, BufferSize, Format, Marker) VSPrint (Buffer, BufferSize, Format, Marker)
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckHiiLib/
VarCheckHiiGenFromHii.c 27 UINTN BufferSize;
44 BufferSize = 0;
46 Status = HiiDatabase->ExportPackageLists (HiiDatabase, 0, &BufferSize, Buffer);
51 Status = gBS->AllocatePages (AllocateAnyPages, EfiBootServicesData, EFI_SIZE_TO_PAGES (BufferSize), &BufferAddress);
58 Status = HiiDatabase->ExportPackageLists (HiiDatabase, 0, &BufferSize, Buffer);
61 DEBUG ((EFI_D_INFO, "VarCheckHiiGenDxeFromHii - HII Database exported at 0x%x, size = 0x%x\n", Buffer, BufferSize));
65 DumpHiiDatabase (Buffer, BufferSize);
69 VarCheckParseHiiDatabase (Buffer, BufferSize);
71 gBS->FreePages (BufferAddress, EFI_SIZE_TO_PAGES (BufferSize));
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiInitiatorName.c 26 @param[in, out] BufferSize Size of the buffer in bytes pointed to by Buffer / Actual size of the
32 BufferSize was sufficient to handle the iSCSI initiator name.
33 @retval EFI_BUFFER_TOO_SMALL BufferSize is too small for the result.
34 @retval EFI_INVALID_PARAMETER BufferSize or Buffer is NULL.
42 IN OUT UINTN *BufferSize,
48 if ((BufferSize == NULL) || (Buffer == NULL)) {
56 BufferSize,
67 @param[in, out] BufferSize Size of the buffer in bytes pointed to by Buffer.
74 @retval EFI_INVALID_PARAMETER BufferSize or Buffer is NULL, or BufferSize exceeds the maximum allowed limit.
    [all...]
IScsiInitiatorName.h 30 @param[in, out] BufferSize Size of the buffer in bytes pointed to by Buffer / Actual size of the
35 BufferSize was sufficient to handle the iSCSI initiator name.
36 @retval EFI_BUFFER_TOO_SMALL BufferSize is too small for the result.
37 @retval EFI_INVALID_PARAMETER BufferSize or Buffer is NULL.
45 IN OUT UINTN *BufferSize,
53 @param[in, out] BufferSize Size of the buffer in bytes pointed to by Buffer.
59 @retval EFI_INVALID_PARAMETER BufferSize or Buffer is NULL, or BufferSize exceeds the maximum allowed limit.
70 IN OUT UINTN *BufferSize,
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiInitiatorName.c 28 @param[in, out] BufferSize Size of the buffer in bytes pointed to by Buffer /
35 buffer and the BufferSize was sufficient to handle
37 @retval EFI_BUFFER_TOO_SMALL BufferSize is too small for the result. BufferSize
40 @retval EFI_INVALID_PARAMETER BufferSize is NULL. BufferSize and Buffer will not
42 @retval EFI_INVALID_PARAMETER Buffer is NULL. BufferSize and Buffer will not be
52 IN OUT UINTN *BufferSize,
58 if ((BufferSize == NULL) || (Buffer == NULL)) {
66 BufferSize,
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Graphics/Ascii/
PrintWidth.h 30 #define ASPrint(Buffer, BufferSize, Format) SPrint (Buffer, BufferSize, Format)
31 #define AvSPrint(Buffer, BufferSize, Format, Marker) VSPrint (Buffer, BufferSize, Format, Marker)
64 IN UINTN BufferSize,
77 BufferSize - Maximum number of characters to put into buffer.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/Ascii/
PrintWidth.h 30 #define ASPrint(Buffer, BufferSize, Format) SPrint (Buffer, BufferSize, Format)
31 #define AvSPrint(Buffer, BufferSize, Format, Marker) VSPrint (Buffer, BufferSize, Format, Marker)
64 IN UINTN BufferSize,
77 BufferSize - Maximum number of characters to put into buffer.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/Ascii/
PrintWidth.h 30 #define ASPrint(Buffer, BufferSize, Format) SPrint (Buffer, BufferSize, Format)
31 #define AvSPrint(Buffer, BufferSize, Format, Marker) VSPrint (Buffer, BufferSize, Format, Marker)
64 IN UINTN BufferSize,
77 BufferSize - Maximum number of characters to put into buffer.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/Ascii/
PrintWidth.h 30 #define ASPrint(Buffer, BufferSize, Format) SPrint (Buffer, BufferSize, Format)
31 #define AvSPrint(Buffer, BufferSize, Format, Marker) VSPrint (Buffer, BufferSize, Format, Marker)
64 IN UINTN BufferSize,
77 BufferSize - Maximum number of characters to put into buffer.
  /external/llvm/lib/Support/
circular_raw_ostream.cpp 19 if (BufferSize == 0) {
27 std::min(unsigned(Size), unsigned(BufferSize - (Cur - BufferArray)));
31 if (Cur == BufferArray + BufferSize) {
40 if (BufferSize != 0) {
  /external/swiftshader/third_party/LLVM/lib/Support/
circular_raw_ostream.cpp 19 if (BufferSize == 0) {
27 std::min(unsigned(Size), unsigned(BufferSize - (Cur - BufferArray)));
31 if (Cur == BufferArray + BufferSize) {
40 if (BufferSize != 0) {
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
circular_raw_ostream.cpp 19 if (BufferSize == 0) {
27 std::min(unsigned(Size), unsigned(BufferSize - (Cur - BufferArray)));
31 if (Cur == BufferArray + BufferSize) {
40 if (BufferSize != 0) {
  /external/libcxx/test/libcxx/utilities/any/
small_type.pass.cpp 19 constexpr std::size_t BufferSize = (sizeof(void*) * 3);
36 char buff[BufferSize];
43 char buff[BufferSize];
48 char buff[BufferSize + 1];
55 char buff[BufferSize + 1];
70 static_assert(sizeof(T) == BufferSize, "");
78 static_assert(sizeof(T) < BufferSize, "");
86 static_assert(sizeof(T) == BufferSize, "");
94 static_assert(sizeof(T) > BufferSize, "");
102 static_assert(sizeof(T) < BufferSize, "");
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/any/
small_type.pass.cpp 19 constexpr std::size_t BufferSize = (sizeof(void*) * 3);
36 char buff[BufferSize];
43 char buff[BufferSize];
48 char buff[BufferSize + 1];
55 char buff[BufferSize + 1];
70 static_assert(sizeof(T) == BufferSize, "");
78 static_assert(sizeof(T) < BufferSize, "");
86 static_assert(sizeof(T) == BufferSize, "");
94 static_assert(sizeof(T) > BufferSize, "");
102 static_assert(sizeof(T) < BufferSize, "");
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/any/
small_type.pass.cpp 19 constexpr std::size_t BufferSize = (sizeof(void*) * 3);
36 char buff[BufferSize];
43 char buff[BufferSize];
48 char buff[BufferSize + 1];
55 char buff[BufferSize + 1];
70 static_assert(sizeof(T) == BufferSize, "");
78 static_assert(sizeof(T) < BufferSize, "");
86 static_assert(sizeof(T) == BufferSize, "");
94 static_assert(sizeof(T) > BufferSize, "");
102 static_assert(sizeof(T) < BufferSize, "");
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/XenPvBlkDxe/
BlockIo.c 59 Read/Write BufferSize bytes from Lba into Buffer.
67 @param BufferSize Size of Buffer, must be a multiple of device block size.
80 IN UINTN BufferSize,
93 if (BufferSize == 0) {
97 if (BufferSize % Media->BlockSize != 0) {
99 (UINT64)BufferSize));
104 (BufferSize / Media->BlockSize) - 1 > Media->LastBlock - Lba) {
107 IsWrite ? "Write" : "Read", Lba, (UINT64)BufferSize));
125 NewBuffer = AllocateAlignedPages((BufferSize + EFI_PAGE_SIZE) / EFI_PAGE_SIZE,
129 Lba, BufferSize, NewBuffer);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/
AndroidFastbootTransport.h 83 @param[in] BufferSize Size in bytes of data to send.
95 IN UINTN BufferSize,
110 @param[out] BufferSize The size of received data in bytes
120 OUT UINTN *BufferSize,
127 IN UINTN BufferSize
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/
Print.c 66 IN UINTN BufferSize,
80 BufferSize - Maximum number of characters to put into buffer. Zero means no
97 Return = VSPrint (Buffer, BufferSize, Format, Marker);
107 IN UINTN BufferSize,
123 BufferSize - Maximum number of characters to put into buffer. Zero means
149 BufferSize,
  /external/llvm/include/llvm/Support/
Format.h 45 virtual int snprint(char *Buffer, unsigned BufferSize) const = 0;
52 /// returns a length to retry with, which will be larger than BufferSize.
53 unsigned print(char *Buffer, unsigned BufferSize) const {
54 assert(BufferSize && "Invalid buffer size!");
57 int N = snprint(Buffer, BufferSize);
61 return BufferSize * 2;
65 if (unsigned(N) >= BufferSize)
83 int snprint_tuple(char *Buffer, unsigned BufferSize,
86 return _snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
88 return snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGluePrintLib.h 56 and BufferSize.
62 If BufferSize is 0 or 1, then no output buffer is produced and 0 is returned.
64 If BufferSize > 1 and StartOfBuffer is NULL, then ASSERT().
65 If BufferSize > 1 and StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
66 If BufferSize > 1 and FormatString is NULL, then ASSERT().
67 If BufferSize > 1 and FormatString is not aligned on a 16-bit boundary, then ASSERT().
77 @param BufferSize The size, in bytes, of the output buffer specified by StartOfBuffer.
89 IN UINTN BufferSize,
99 and BufferSize.
104 If BufferSize is 0 or 1, then no output buffer is produced and 0 is returned.
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbSerialDebugPortLib/
GdbSerialDebugPortLib.c 129 UINTN BufferSize;
132 BufferSize = sizeof (Char);
133 Status = gDebugPort->Read (gDebugPort, gTimeOut, &BufferSize, &Char);
134 } while (EFI_ERROR (Status) || BufferSize != sizeof (Char));
155 UINTN BufferSize;
158 BufferSize = sizeof (Char);
159 Status = gDebugPort->Write (gDebugPort, gTimeOut, &BufferSize, &Char);
160 } while (EFI_ERROR (Status) || BufferSize != sizeof (Char));
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
ShellEnvVar.h 75 @param BufferSize UINTN size of Buffer
82 #define SHELL_SET_ENVIRONMENT_VARIABLE_NV(EnvVarName,BufferSize,Buffer) \
86 BufferSize, \
95 @param BufferSize Pointer to the UINTN size of Buffer
102 #define SHELL_GET_ENVIRONMENT_VARIABLE(EnvVarName,BufferSize,Buffer) \
106 BufferSize, \
116 @param BufferSize Pointer to the UINTN size of Buffer
123 #define SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(EnvVarName,Atts,BufferSize,Buffer) \
127 BufferSize, \
136 @param BufferSize UINTN size of Buffer
    [all...]

Completed in 739 milliseconds

1 2 3 4 5 6 7 8 91011>>