/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/FwVol/ |
FwVolAttrib.c | 88 @param BufferSize On input, size of Buffer.On output, the amount of data
100 IN OUT UINTN *BufferSize,
115 @param BufferSize On input, size of Buffer.On output, the amount of data
127 IN UINTN BufferSize,
|
/device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/ |
HttpBootImpl.c | 134 @param[in, out] BufferSize On input the size of Buffer in bytes. On output with a return
140 BufferSize.
145 @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small to read the boot file. BufferSize has
154 IN OUT UINTN *BufferSize,
221 if (*BufferSize < Private->BootFileSize) {
222 *BufferSize = Private->BootFileSize;
232 BufferSize,
322 @param BufferSize On input the size of Buffer in bytes. On output with a return
328 BufferSize. [all...] |
/device/linaro/bootloader/edk2/Nt32Pkg/WinNtBlockIoDxe/ |
DriverDiagnostics.c | 39 OUT UINTN *BufferSize,
68 OUT UINTN *BufferSize,
97 BufferSize - The size, in bytes, of the data returned in Buffer.
124 the status information in ErrorType, BufferSize,
142 BufferSize == NULL) {
178 *BufferSize = 0;
181 *BufferSize = 0x60;
182 *Buffer = AllocatePool ((UINTN) (*BufferSize));
183 CopyMem (*Buffer, L"Windows Block I/O Driver Diagnostics Failed\n", *BufferSize);
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDMediaDeviceDxe/ |
MMCSDBlockIo.c | 52 @param BufferSize The size of the Buffer in bytes. This must be a multiple of the
71 IN UINTN BufferSize,
85 DEBUG((EFI_D_INFO, "Read(LBA=%08lx, Buffer=%08x, Size=%08x)\n", LBA, Buffer, BufferSize));
93 if (ModU64x32 (BufferSize,CardData->BlockIoMedia.BlockSize) != 0) {
112 TotalBlock = (UINTN) DivU64x32 (BufferSize, CardData->BlockIoMedia.BlockSize);
124 if ((BufferSize % CardData->BlockIoMedia.BlockSize) != 0) {
130 if (BufferSize == 0) {
139 RemainingLength = (UINT32)BufferSize;
142 if ((BufferSize > CardData->BlockIoMedia.BlockSize)) {
282 @param BufferSize The size of the Buffer in bytes. This must be a multiple of the [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/ |
FileDeferredOutputStream.java | 23 public FileDeferredOutputStream(@Nonnull File backingFile, int bufferSize) throws FileNotFoundException { 25 output = new NakedBufferedOutputStream(new FileOutputStream(backingFile), bufferSize); 96 final int bufferSize) { 100 return new FileDeferredOutputStream(tempFile, bufferSize);
|
/frameworks/base/core/java/android/ddm/ |
DdmHandleProfiling.java | 105 int bufferSize = in.getInt(); 111 + "', size=" + bufferSize + ", flags=" + flags); 114 Debug.startMethodTracing(fileName, bufferSize, flags); 147 int bufferSize = in.getInt(); 150 Log.v("ddm-heap", "Method prof stream start: size=" + bufferSize 155 Debug.startMethodTracingDdms(bufferSize, flags, false, 0); 200 int bufferSize = in.getInt(); 204 Log.v("ddm-heap", "Sample prof stream start: size=" + bufferSize 209 Debug.startMethodTracingDdms(bufferSize, flags, true, interval);
|
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
filereadstream.h | 35 \param bufferSize size of buffer in bytes. Must >=4 bytes.
37 FileReadStream(std::FILE* fp, char* buffer, size_t bufferSize) : fp_(fp), buffer_(buffer), bufferSize_(bufferSize), bufferLast_(0), current_(buffer_), readCount_(0), count_(0), eof_(false) {
39 RAPIDJSON_ASSERT(bufferSize >= 4);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
scsiwmi.h | 36 ULONG BufferSize; 86 IN ULONG BufferSize, 96 IN ULONG BufferSize, 143 IN ULONG BufferSize,
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
storprop.h | 20 DWORD CdromCddaInfo(HDEVINFO HDevInfo,PSP_DEVINFO_DATA DevInfoData,PREDBOOK_DIGITAL_AUDIO_EXTRACTION_INFO CddaInfo,PULONG BufferSize);
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/ |
PciOptionRomSupport.c | 22 @param BufferSize On input the size of Buffer in bytes. On output with a return
27 then no the size of the requested file is returned in BufferSize.
31 BufferSize is NULL.
34 @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small to read the current directory entry.
35 BufferSize has been updated with the size needed to complete the request.
41 IN OUT UINTN *BufferSize,
66 (BufferSize == NULL)
102 if (Buffer == NULL || *BufferSize < ImageLength) {
103 *BufferSize = ImageLength;
107 *BufferSize = ImageLength; [all...] |
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/ |
CodedInputStreamMicro.java | 198 if (size <= (bufferSize - bufferPos) && size > 0) { 240 if (size <= (bufferSize - bufferPos) && size > 0) { 438 private int bufferSize; 467 bufferSize = off + len; 474 bufferSize = 0; 552 bufferSize += bufferSizeAfterLimit; 553 final int bufferEnd = totalBytesRetired + bufferSize; 557 bufferSize -= bufferSizeAfterLimit; 592 return bufferPos == bufferSize && !refillBuffer(false); 603 if (bufferPos < bufferSize) { [all...] |
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/ |
IsaFloppyBlock.c | 96 Read BufferSize bytes from Lba into Buffer.
101 @param BufferSize Size of Buffer, must be a multiple of device block size.
120 IN UINTN BufferSize,
126 Status = FddReadWriteBlocks (This, MediaId, Lba, BufferSize, READ, Buffer);
136 Write BufferSize bytes from Lba into Buffer.
142 @param BufferSize Size of Buffer, must be a multiple of device block size.
161 IN UINTN BufferSize,
167 Status = FddReadWriteBlocks (This, MediaId, Lba, BufferSize, WRITE, Buffer);
182 @param BufferSize Size of Buffer, must be a multiple of device block size.
202 IN UINTN BufferSize,
[all...] |
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/BiosThunk/BlockIoDxe/ |
BiosInt13.c | 395 Read BufferSize bytes from Lba into Buffer.
400 @param BufferSize Size of Buffer, must be a multiple of device block size.
419 IN UINTN BufferSize,
452 if ((Lba + (BufferSize / BlockSize) - 1) > Media->LastBlock) {
456 if (BufferSize % BlockSize != 0) {
464 if (BufferSize == 0) {
474 for (; BufferSize > 0;) {
475 NumberOfBlocks = BufferSize / BlockSize;
533 BufferSize = BufferSize - TransferByteSize; [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/SimpleFileSystem/ |
SimpleFileSystem.h | 172 IN OUT UINTN *BufferSize,
182 BufferSize - On input size of buffer, on output amount of data in
191 EFI_BUFFER_TO_SMALL - BufferSize is too small. BufferSize contains
201 IN OUT UINTN *BufferSize,
211 BufferSize - On input size of buffer, on output amount of data in buffer.
276 IN OUT UINTN *BufferSize,
287 BufferSize - On input size of buffer, on output amount of data in
300 BufferSize
309 IN UINTN BufferSize,
[all...] |
/external/guava/guava/src/com/google/common/hash/ |
AbstractStreamingHashFunction.java | 82 private final int bufferSize; 100 * size, using an internal buffer of {@code bufferSize} size, which must be a multiple of 105 * @param bufferSize the size of the internal buffer. Must be a multiple of chunkSize 107 protected AbstractStreamingHasher(int chunkSize, int bufferSize) { 108 // TODO(kevinb): check more preconditions (as bufferSize >= chunkSize) if this is ever public 109 checkArgument(bufferSize % chunkSize == 0); 113 .allocate(bufferSize + 7) // always space for a single primitive 115 this.bufferSize = bufferSize; 162 int bytesToCopy = bufferSize - buffer.position() [all...] |
/external/guava/guava-tests/test/com/google/common/hash/ |
AbstractStreamingHasherTest.java | 146 for (int bufferSize = chunkSize; bufferSize <= chunkSize * 4; bufferSize += chunkSize) { 148 sinks.add(new Sink(chunkSize, bufferSize)); 183 final int bufferSize; 189 Sink(int chunkSize, int bufferSize) { 190 super(chunkSize, bufferSize); 192 this.bufferSize = bufferSize; 198 this.bufferSize = chunkSize [all...] |
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/PlatformIntelBdsLib/ |
QemuKernel.c | 282 @param[in,out] BufferSize On input, the size of Buffer. On output, the
290 @retval EFI_BUFFER_TOO_SMALL BufferSize is too small to store the
291 EFI_FILE_INFO structure. BufferSize has been
299 IN OUT UINTN *BufferSize,
332 OriginalBufferSize = *BufferSize;
333 *BufferSize = FileInfoSize;
334 if (OriginalBufferSize < *BufferSize) {
359 @param[in,out] BufferSize On input, the size of the Buffer. On output, the
369 BufferSize is set to zero on output.
381 @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small to store the [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/DiskIoDxe/ |
DiskIo.c | 515 @param BufferSize The size in bytes of Buffer. The number of bytes to read from the device.
529 IN UINTN BufferSize,
549 DEBUG ((EFI_D_BLKIO, "DiskIo: Create subtasks for task: Offset/BufferSize/Buffer = %016lx/%08x/%08x\n", Offset, BufferSize, Buffer));
561 // Special handling for zero BufferSize
563 if (BufferSize == 0) {
573 Length = MIN (BlockSize - UnderRun, BufferSize);
602 BufferSize -= Length;
606 OverRunLba = Lba + DivU64x32Remainder (BufferSize, BlockSize, &OverRun);
607 BufferSize -= OverRun; [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/ |
Print.c | 68 IN UINTN BufferSize
76 IN UINTN BufferSize
84 IN UINTN BufferSize
90 IN UINTN BufferSize,
104 BufferSize - Maximum number of characters to put into buffer. Zero means no
121 Return = VSPrint (Buffer, BufferSize, Format, Marker);
132 IN UINTN BufferSize,
148 BufferSize - Maximum number of characters to put into buffer. Zero means
182 NumberOfCharacters = BufferSize/sizeof(CHAR_W);
183 BufferLeft = BufferSize;
[all...] |
/device/linaro/bootloader/edk2/ArmPkg/Filesystem/SemihostFs/Arm/ |
SemihostFs.c | 488 @param[in out] BufferSize On input, the size of the Buffer. On output, the
504 IN OUT UINTN *BufferSize,
512 if ((This == NULL) || (BufferSize == NULL) || (Buffer == NULL)) {
524 *BufferSize = 0;
529 Return = SemihostFileRead (Fcb->SemihostHandle, BufferSize, Buffer);
533 Fcb->Position += *BufferSize;
591 @param[in out] BufferSize On input, the size of the Buffer. On output, the
606 IN OUT UINTN *BufferSize,
616 if ((This == NULL) || (BufferSize == NULL) || (Buffer == NULL)) {
641 WriteSize = *BufferSize;
[all...] |
/external/protobuf/csharp/src/Google.Protobuf/ |
CodedInputStream.cs | 70 private int bufferSize;
98 internal const int BufferSize = 4096;
161 : this(ProtoPreconditions.CheckNotNull(input, "input"), new byte[BufferSize], 0, 0)
170 internal CodedInputStream(Stream input, byte[] buffer, int bufferPos, int bufferSize)
175 this.bufferSize = bufferSize;
188 internal CodedInputStream(Stream input, byte[] buffer, int bufferPos, int bufferSize, int sizeLimit, int recursionLimit)
189 : this(input, buffer, bufferPos, bufferSize)
220 return new CodedInputStream(input, new byte[BufferSize], 0, 0, sizeLimit, recursionLimit);
232 return input.Position - ((bufferSize + bufferSizeAfterLimit) - bufferPos); [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugPort/ |
DebugPort.h | 51 IN OUT UINTN *BufferSize,
60 IN OUT UINTN *BufferSize,
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/AndroidFastbootTransportUsbDxe/ |
FastbootTransportUsb.c | 46 UINTN BufferSize;
143 NewEntry->BufferSize = Size;
204 IN UINTN BufferSize,
210 return mUsbDevice->Send(1, BufferSize, Buffer);
223 BufferSize - The size of Buffer in bytes
229 OUT UINTN *BufferSize,
241 *BufferSize = Entry->BufferSize;
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/ |
DriverDiagnostics.c | 56 @param BufferSize The size, in bytes, of the data returned in Buffer.
80 status information in ErrorType, BufferSize,and Buffer.
93 OUT UINTN *BufferSize,
112 BufferSize == NULL) {
148 *BufferSize = 0;
226 *BufferSize = sizeof (IDE_BUS_DIAGNOSTIC_ERROR);
230 (UINTN) (*BufferSize),
237 CopyMem (*Buffer, IDE_BUS_DIAGNOSTIC_ERROR, *BufferSize);
|
/device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/ |
PxeBcMtftp.h | 37 @param[in, out] BufferSize Pointer to buffer size.
51 IN OUT UINT64 *BufferSize
63 @param[in, out] BufferSize Pointer to buffer size.
78 IN OUT UINT64 *BufferSize,
92 @param[in, out] BufferSize Pointer to buffer size.
107 IN OUT UINT64 *BufferSize
119 @param[in, out] BufferSize Pointer to buffer size.
134 IN OUT UINT64 *BufferSize,
|