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

1 2 3 4 5 6 7 8 9

  /device/linaro/bootloader/edk2/BaseTools/Source/C/PyUtility/
PyUtility.c 31 UINTN DataLength;
42 &DataLength
62 while (WriteFile(FileHandle, Data, DataLength, &WriteBytes, NULL)) {
63 if (DataLength <= WriteBytes) {
64 DataLength = 0;
69 DataLength -= WriteBytes;
72 if (DataLength != 0) {
  /external/sfntly/cpp/src/sample/subtly/
stats.cc 32 size += it->second->DataLength();
39 return static_cast<double>(table->DataLength()) / TotalFontSize(font) * 100;
48 int32_t size = it->second->DataLength();
57 new_size = new_table->DataLength();
76 int32_t size = it->second->DataLength();
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiScsiLib/
UefiScsiLib.c 59 UINT32 *DataLength;
459 If DataLength is NULL, then ASSERT().
465 If DataLength is non-zero and DataBuffer is not NULL, DataBuffer must meet buffer
499 DataLength is 0, then this parameter is optional
501 @param[in, out] DataLength On input, a pointer to the length in bytes of
515 in DataLength.
546 IN OUT UINT32 *DataLength,
559 ASSERT (DataLength != NULL);
568 CommandPacket.InTransferLength= *DataLength;
    [all...]
  /external/webrtc/webrtc/system_wrappers/test/TestSort/
TestSort.cc 130 enum { DataLength = 1000 };
132 KeyType key[DataLength];
133 KeyType keyRef[DataLength];
134 LotsOfData<KeyType> data[DataLength];
135 LotsOfData<KeyType> dataRef[DataLength];
150 for (int j = 0; j < DataLength; j++)
165 retVal = webrtc::KeySort(data, key, DataLength, sizeof(LotsOfData<KeyType>),
168 //std::sort(data, data + DataLength, KeyLessThan<KeyType>());
169 //qsort(data, DataLength, sizeof(LotsOfData<KeyType>),
174 retVal = webrtc::Sort(key, DataLength, sortType)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/UsbIo/
UsbIo.h 46 IN UINTN DataLength,
62 IN UINTN DataLength OPTIONAL,
72 IN OUT UINTN *DataLength,
84 IN UINTN DataLength OPTIONAL,
95 IN OUT UINTN *DataLength,
106 IN UINTN DataLength,
116 IN UINTN DataLength,
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
UsbIo.h 75 @param DataLength The length of Data received or sent via the Asynchronous
88 IN UINTN DataLength,
110 @param DataLength The size, in bytes, of the data buffer specified by Data.
128 IN UINTN DataLength OPTIONAL,
147 @param DataLength The size, in bytes, of the data buffer specified by Data.
169 IN OUT UINTN *DataLength,
196 @param DataLength Specifies the length, in bytes, of the data to be received from the
215 IN UINTN DataLength OPTIONAL,
234 @param DataLength On input, then size, in bytes, of the buffer Data. On output, the
254 IN OUT UINTN *DataLength,
    [all...]
UsbHostController.h 113 @param DataLength On input, indicates the size, in bytes, of the data buffer specified
138 IN OUT UINTN *DataLength OPTIONAL,
159 @param DataLength On input, indicates the size, in bytes, of the data buffer specified
182 IN OUT UINTN *DataLength,
215 @param DataLength Indicates the length of data to be received at the rate specified by
241 IN UINTN DataLength OPTIONAL,
264 @param DataLength On input, the size, in bytes, of the data buffer specified by Data.
291 IN OUT UINTN *DataLength,
313 @param DataLength Specifies the length, in bytes, of the data to be sent to or received
333 IN UINTN DataLength,
    [all...]
BluetoothHc.h 93 @param DataLength Specifies the length, in bytes, of the data to be received.
103 IN UINTN DataLength,
113 @param DataLength Specifies the length, in bytes, of the data to be received.
120 - DataLength is 0.
130 IN UINTN DataLength,
201 @param DataLength Specifies the length, in bytes, of the data to be received.
208 - DataLength is 0.
218 IN UINTN DataLength,
289 @param DataLength Specifies the length, in bytes, of the data to be received.
296 - DataLength is 0.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
UsbUtility.h 153 @param DataLength The length of the data.
171 IN OUT UINTN *DataLength,
188 @param DataLength The length of data buffer.
208 IN OUT UINTN *DataLength,
228 @param DataLength The length of periodical data receive.
247 IN UINTN DataLength,
263 @param DataLength The length of data buffer.
282 IN OUT UINTN *DataLength,
300 @param DataLength The length of data buffer.
316 IN UINTN DataLength,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
acpiioct.h 65 USHORT DataLength;
144 #define ACPI_METHOD_ARGUMENT_LENGTH( DataLength ) \
145 (FIELD_OFFSET(ACPI_METHOD_ARGUMENT, Data) + max(sizeof(ULONG), DataLength))
148 (ACPI_METHOD_ARGUMENT_LENGTH(((PACPI_METHOD_ARGUMENT)Argument)->DataLength))
157 MethodArgument->DataLength = sizeof(ULONG); \
162 Argument->DataLength = strlen((PCHAR)StrData) + sizeof(UCHAR); \
163 RtlCopyMemory(&Argument->Data[0],(PUCHAR)StrData,Argument->DataLength); }
167 Argument->DataLength = BuffLength; \
168 RtlCopyMemory(&Argument->Data[0],(PUCHAR)BuffData,Argument->DataLength); }
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
UefiScsiLib.h 322 If DataLength is NULL, then ASSERT().
328 If DataLength is non-zero and DataBuffer is not NULL, DataBuffer must meet buffer
362 DataLength is 0, then this parameter is optional
364 @param[in, out] DataLength On input, a pointer to the length in bytes of
378 in DataLength.
409 IN OUT UINT32 *DataLength,
472 If DataLength is NULL, then ASSERT().
478 If DataLength is non-zero and DataBuffer is not NULL, DataBuffer must meet buffer
489 @param[in, out] DataLength The length of data buffer.
495 number of bytes transferred is returned in DataLength.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Ppi/
UsbIo.h 57 @param[in] DataLength On input, indicates the size, in bytes, of the data
80 IN UINTN DataLength OPTIONAL
90 @param[in] DataLength The length of data buffer.
114 IN OUT UINTN *DataLength,
UsbHostController.h 59 @param[in,out] DataLength On input, indicates the size, in bytes, of
87 IN OUT UINTN *DataLength OPTIONAL,
107 @param[in,out] DataLength When input, indicates the size, in bytes, of
133 IN OUT UINTN *DataLength,
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TcgDxe/
TisDxe.c 30 @param[in] DataLength TPM command data length.
40 IN UINT32 DataLength
53 while (Index < DataLength) {
58 for (; BurstCount > 0 && Index < DataLength; BurstCount--) {
170 @param[out] DataLength TPM command data length.
182 UINT32 *DataLength
239 if ((UINT32) (~0)- *DataLength < (UINT32)Size) {
243 if(*DataLength + (UINT32) Size > TPMCMDBUFLENGTH) {
246 CopyMem (TpmBuffer + *DataLength, Raw, Size);
247 *DataLength += (UINT32) Size;
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
Ohci.h 177 @param DataLength Indicates the size, in bytes, of the data buffer
204 IN OUT UINTN *DataLength OPTIONAL,
226 @param DataLength When input, indicates the size, in bytes, of the data buffer
256 IN OUT UINTN *DataLength,
293 @param DataLength Indicates the length of data to be received at the
325 IN UINTN DataLength OPTIONAL,
363 @param DataLength Indicates the length of data to be received at the
392 IN UINTN DataLength OPTIONAL,
417 @param DataLength On input, the size, in bytes, of the data buffer specified
444 IN OUT UINTN *DataLength,
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/UsbHostController/
UsbHostController.h 83 IN OUT UINTN *DataLength OPTIONAL,
96 IN OUT UINTN *DataLength,
113 IN UINTN DataLength OPTIONAL,
127 IN OUT UINTN *DataLength,
141 IN UINTN DataLength,
153 IN UINTN DataLength,
275 IN OUT UINTN *DataLength OPTIONAL,
293 IN OUT UINTN *DataLength,
311 IN UINTN DataLength OPTIONAL,
326 IN OUT UINTN *DataLength,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dmksctrl.h 89 STDMETHOD (KsProperty) (THIS_ PKSPROPERTY Property, ULONG PropertyLength, LPVOID PropertyData, ULONG DataLength, ULONG *BytesReturned) PURE;
90 STDMETHOD (KsMethod) (THIS_ PKSMETHOD Method, ULONG MethodLength, LPVOID MethodData, ULONG DataLength, ULONG *BytesReturned) PURE;
91 STDMETHOD (KsEvent) (THIS_ PKSEVENT Event, ULONG EventLength, LPVOID EventData, ULONG DataLength, ULONG *BytesReturned) PURE;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
Uhci.c 608 @param DataLength Length of the data.
630 IN OUT UINTN *DataLength,
675 if ((TransferDirection != EfiUsbNoData) && (Data == NULL || DataLength == NULL)) {
682 TransferDataLength = *DataLength;
710 Status = UhciMapUserData (Uhc, TransferDirection, Data, DataLength, &PktId, &DataPhy, &DataMap);
748 if (DataLength != NULL) {
749 *DataLength = QhResult.Complete;
774 @param DataLength On input, size of the data buffer, On output,
798 IN OUT UINTN *DataLength,
824 if ((DataLength == NULL) || (*DataLength == 0) || (Data == NULL) || (TransferResult == NULL)) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/
UfsBlockIoPei.c 290 @param[out] DataLength The length of output READ_CAPACITY data.
304 OUT UINT32 *DataLength,
322 Packet.InTransferLength = *DataLength;
334 *DataLength = Packet.InTransferLength;
346 @param[out] DataLength The length of output READ_CAPACITY data.
360 OUT UINT32 *DataLength,
380 Packet.InTransferLength = *DataLength;
392 *DataLength = Packet.InTransferLength;
406 @param[out] DataLength The length of output data.
422 OUT UINT32 *DataLength,
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Pei/
OhcPeim.c 31 @param DataLength The size (in bytes) of the data buffer.
53 IN OUT UINTN *DataLength,
86 Request == NULL || DataLength == NULL || TransferResult == NULL ||
87 (TransferDirection == EfiUsbNoData && (*DataLength != 0 || Data != NULL)) ||
88 (TransferDirection != EfiUsbNoData && (*DataLength == 0 || Data == NULL)) ||
96 if (*DataLength > MAX_BYTES_PER_TD) {
167 DataMapLength = *DataLength;
289 *DataLength = 0;
326 @param DataLength The lenght of the data buffer.
351 IN OUT UINTN *DataLength,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Guid/
SmmLockBox.h 35 UINT32 DataLength;
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootClient.h 35 UINTN DataLength;
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Include/Ppi/
Sha256Hash.h 84 @param[in] DataLength Length of Data buffer in bytes.
96 IN UINTN DataLength
  /device/linaro/bootloader/edk2/CryptoPkg/CryptRuntimeDxe/
CryptRuntime.c 81 @param[in] DataLength Length of Data buffer in bytes.
93 IN UINTN DataLength
96 return Sha256Update (Sha256Context, Data, DataLength);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusPei/
UsbIoPeim.c 31 @param DataLength The size (in bytes) of the data buffer.
49 IN UINTN DataLength OPTIONAL
97 &DataLength,
112 &DataLength,
141 @param DataLength The lenght of the data buffer.
161 IN OUT UINTN *DataLength,
217 DataLength,
231 DataLength,

Completed in 2750 milliseconds

1 2 3 4 5 6 7 8 9