HomeSort by relevance Sort by last modified time
    Searched refs:Data (Results 451 - 475 of 2499) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/EmulatorPkg/MiscSubClassPlatformDxe/
MiscSubClassDriver.h 49 // Data table entry update function.
57 // Data table entry definition.
61 // intermediat input data for SMBIOS record
68 // Data Table extern definitions.
71 extern NAME1 NAME2 ## Data; \
76 // Data Table entries
80 & NAME1 ## Data, \
88 NAME1 NAME2 ## Data
98 // Data Table Array
103 // Data Table Array Entries
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/Pei/
StatusCodePei.c 48 @param Data This optional parameter may be used to pass additional data.
61 IN CONST EFI_STATUS_CODE_DATA *Data OPTIONAL
70 Data
89 (EFI_STATUS_CODE_DATA *)Data
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/DxeIoLibCpuIo/
IoLib.c 65 @return Data read from registers in the EFI CPU I/O space.
76 UINT64 Data;
78 Status = mCpuIo->Io.Read (mCpuIo, Width, Port, 1, &Data);
81 return Data;
88 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().
94 @param Data The value to write to the I/O port.
96 @return The paramter of Data.
104 IN UINT64 Data
109 Status = mCpuIo->Io.Write (mCpuIo, Width, Port, 1, &Data);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/RuntimeDxe/
Crc32.c 27 Calculate CRC32 for target data.
29 @param Data The target data.
30 @param DataSize The target data size.
31 @param CrcOut The CRC32 for target data.
33 @retval EFI_SUCCESS The CRC32 for target data is calculated successfully.
41 IN VOID *Data,
50 if (Data == NULL || DataSize == 0 || CrcOut == NULL) {
55 for (Index = 0, Ptr = Data; Index < DataSize; Index++, Ptr++) {
65 This internal function reverses bits for 32bit data.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Guid/
SmmVariableCommon.h 26 // This structure is used for SMM variable. the collected statistics data is saved in SMRAM. It can be got from
33 UINT8 Data[1];
79 #define SMM_COMMUNICATE_HEADER_SIZE (OFFSET_OF (EFI_SMM_COMMUNICATE_HEADER, Data))
84 #define SMM_VARIABLE_COMMUNICATE_HEADER_SIZE (OFFSET_OF (SMM_VARIABLE_COMMUNICATE_HEADER, Data))
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
WiFi.h 399 EFI_80211_ELEMENT_DATA_RSN *Data;
451 /// The set of data rates that shall be supported by all STAs that desire to join this
456 /// The set of data rates that the peer STA desires to use for communication within
507 /// Specifies the number of octets in the Data field.
511 /// A variable length data buffer.
513 UINT8 Data[1];
628 /// Pointer to the scan data.
630 EFI_80211_SCAN_DATA *Data;
785 /// Pointer to the association data.
787 EFI_80211_ASSOCIATE_DATA *Data;
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/DxeIoLibCpuIo2/
IoLib.c 60 @return Data read from registers in the EFI CPU I/O space.
71 UINT64 Data;
73 Status = mCpuIo->Io.Read (mCpuIo, Width, Port, 1, &Data);
76 return Data;
83 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().
89 @param Data The value to write to the I/O port.
91 @return The paramter of Data.
99 IN UINT64 Data
104 Status = mCpuIo->Io.Write (mCpuIo, Width, Port, 1, &Data);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IpSecDebug.h 27 #define IPSEC_DUMP_BUF(Title, Data, DataSize) IpSecDumpBuf (Title, Data, DataSize)
95 @param[in] Title The strings to be printed before the data of the buffer.
96 @param[in] Data Point to buffer to be printed.
103 IN UINT8 *Data,
  /device/linaro/bootloader/edk2/Nt32Pkg/MiscSubClassPlatformDxe/
MiscSubclassDriver.h 45 // Data table entry update function.
53 // Data table entry definition.
57 // intermediat input data for SMBIOS record
64 // Data Table extern definitions.
67 extern NAME1 NAME2 ## Data; \
72 // Data Table entries
76 & NAME1 ## Data, \
84 NAME1 NAME2 ## Data
94 // Data Table Array
99 // Data Table Array Entries
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
AuthService.h 23 /// Size of AuthInfo prior to the data payload
35 @param[in] Data The data pointer.
36 @param[in] DataSize The size of Data found. If size is less than the
37 data, this value contains the required size.
56 IN VOID *Data,
92 @param[in] Data The data pointer.
93 @param[in] DataSize The size of Data found. If size is less than the
94 data, this value contains the required size.
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
BaseCompiledTemplate.java 21 import com.google.clearsilver.jsilver.data.Data;
22 import com.google.clearsilver.jsilver.data.DataContext;
23 import com.google.clearsilver.jsilver.data.DefaultDataContext;
24 import com.google.clearsilver.jsilver.data.TypeConverter;
74 public void render(Data data, Appendable out, ResourceLoader resourceLoader) throws IOException {
76 render(createRenderingContext(data, out, resourceLoader));
80 public RenderingContext createRenderingContext(Data data, Appendable out
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerCrossOver.cpp 29 const uint8_t *Data = Data1;
32 // Merge a part of Data into Out.
38 memcpy(Out + OutPos, Data + *InPos, ExtraSize);
42 // Use the other input data on the next iteration.
45 Data = CurrentlyUsingFirstData ? Data2 : Data1;
  /external/llvm/lib/Fuzzer/test/
CustomCrossOverTest.cpp 18 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
19 assert(Data);
20 std::string Str(reinterpret_cast<const char *>(Data), Size);
  /external/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyAsmBackend.cpp 38 void applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
73 void WebAssemblyAsmBackend::applyFixup(const MCFixup &Fixup, char *Data,
92 Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
  /external/llvm/test/MC/MachO/ARM/
data-in-code.s 1 @ RUN: llvm-mc -triple armv7-apple-darwin10 -filetype=obj -o - < %s | llvm-readobj --macho-data-in-code | FileCheck %s
22 @ CHECK: Data offset: 300
23 @ CHECK: Data size: 32
24 @ CHECK: Data entries [
  /external/llvm/tools/llvm-pdbdump/
ClassDefinitionDumper.h 47 Data = std::move(Other.Data);
52 std::list<std::unique_ptr<PDBSymbolData>> Data;
  /packages/apps/Contacts/tests/src/com/android/contacts/model/dataitem/
DataItemTests.java 31 import android.provider.ContactsContract.Contacts.Data;
63 mValues1.put(Data._ID, 1);
64 mValues2.put(Data._ID, 2);
65 mValues3.put(Data._ID, 3);
66 mValues4.put(Data._ID, 4);
74 final DataItem data = DataItem.createFrom(value); local
75 data.setDataKind(kind);
76 dataList.add(data);
83 mValues1.put(Data.IS_SUPER_PRIMARY, 1);
84 mValues2.put(Data.IS_PRIMARY, 0)
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
route_darwin.go 13 return &RouteMessage{Header: p.Header, Data: b[SizeofRtMsghdr:any.Msglen]}
16 return &InterfaceMessage{Header: p.Header, Data: b[SizeofIfMsghdr:any.Msglen]}
19 return &InterfaceAddrMessage{Header: p.Header, Data: b[SizeofIfaMsghdr:any.Msglen]}
22 return &InterfaceMulticastAddrMessage{Header: p.Header, Data: b[SizeofIfmaMsghdr2:any.Msglen]}
33 Data []byte
38 b := m.Data[:]
  /prebuilts/go/linux-x86/src/syscall/
route_darwin.go 13 return &RouteMessage{Header: p.Header, Data: b[SizeofRtMsghdr:any.Msglen]}
16 return &InterfaceMessage{Header: p.Header, Data: b[SizeofIfMsghdr:any.Msglen]}
19 return &InterfaceAddrMessage{Header: p.Header, Data: b[SizeofIfaMsghdr:any.Msglen]}
22 return &InterfaceMulticastAddrMessage{Header: p.Header, Data: b[SizeofIfmaMsghdr2:any.Msglen]}
33 Data []byte
38 b := m.Data[:]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/
NvmExpressHci.c 21 @param Private The pointer to the NVME_CONTROLLER_PRIVATE_DATA data structure.
36 UINT64 Data;
45 &Data
52 WriteUnaligned64 ((UINT64*)Cap, Data);
59 @param Private The pointer to the NVME_CONTROLLER_PRIVATE_DATA data structure.
74 UINT32 Data;
83 &Data
90 WriteUnaligned32 ((UINT32*)Cc, Data);
97 @param Private The pointer to the NVME_CONTROLLER_PRIVATE_DATA data structure.
100 @return EFI_SUCCESS Successfully write data into the controller configuration register.
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LegacyBootManagerLib/
LegacyBm.c 289 @param LegacyDevOrder Legacy device order data buffer.
290 @param LegacyDevOrderSize Legacy device order data buffer size.
318 if (Entry->Data[Index] == OldBbsIndex) {
324 &Entry->Data[Index],
325 &Entry->Data[Index + 1],
326 (UINT8 *) LegacyDevOrder + *LegacyDevOrderSize - (UINT8 *) &Entry->Data[Index + 1]
331 Entry->Data[Index] = NewBbsIndex;
710 DevOrderPtr = (LEGACY_DEV_ORDER_ENTRY *) LegacyBmFillDevOrderBuf (BbsTable, BBS_FLOPPY, BbsCount, DevOrderPtr->Data);
714 DevOrderPtr = (LEGACY_DEV_ORDER_ENTRY *) LegacyBmFillDevOrderBuf (BbsTable, BBS_HARDDISK, BbsCount, DevOrderPtr->Data);
718 DevOrderPtr = (LEGACY_DEV_ORDER_ENTRY *) LegacyBmFillDevOrderBuf (BbsTable, BBS_CDROM, BbsCount, DevOrderPtr->Data);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/
FaultTolerantWriteSmm.c 7 of the data and private information. It should be able to recover
20 2) SPARE_COMPLETED is that the data from write buffer is writed into the spare block as the backup.
21 3) WRITE_COMPLETED is that the data is copied from the spare block to the target block.
23 This driver operates the data as the whole size of spare block.
24 It first read the SpareAreaLength data from the target block into the spare memory buffer.
25 Then copy the write buffer data into the spare memory buffer.
27 Final copy the data from the spare block to the target block.
30 1. The write NumBytes data must be fit within Spare area.
36 6. Any write data area (SpareAreaLength Area) which the data will be written into must be
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTTexture.h 31 const PVRTint32 PVRTEX_ALLMIPLEVELS = -1; //This is a special number used simply to return a total of all MIP levels when dealing with data sizes.
33 //values for each meta data type that we know about. Texture arrays hinge on each surface being identical in all but content, including meta data.
34 //If the meta data varies even slightly then a new texture should be used. It is possible to write your own extension to get around this however.
143 @brief A struct containing a block of extraneous meta data for a texture.
147 PVRTuint32 DevFOURCC; ///< A 4cc descriptor of the data type's creator. Values equating to values between 'P' 'V' 'R' 0 and 'P' 'V' 'R' 255 will be used by our headers.
148 PVRTuint32 u32Key; ///< A DWORD (enum value) identifying the data type, and thus how to read it.
149 PVRTuint32 u32DataSize; ///< Size of the Data member.
150 PVRTuint8* Data; ///< Data array, can be absolutely anything, the loader needs to know how to handle it based on DevFOURCC an (…)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
EhcPeim.c 55 UINT32 Data;
59 Data = MmioRead32 (Ehc->UsbHostControllerBaseAddress + Ehc->CapLen + Offset);
61 return Data;
65 Write the data to the EHCI operation register.
69 @param Data The data to write.
76 IN UINT32 Data
82 MmioWrite32(Ehc->UsbHostControllerBaseAddress + Ehc->CapLen + Offset, Data);
101 UINT32 Data;
103 Data = EhcReadOpReg (Ehc, Offset);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DataUtil.java 29 * Convenience methods for operating on the Data table.
33 private static final Uri URI = ContactsContract.Data.CONTENT_URI;
48 values.put(ContactsContract.Data.MIMETYPE,
57 values.put(ContactsContract.Data.MIMETYPE, CommonDataKinds.Phone.CONTENT_ITEM_TYPE);
64 values.put(ContactsContract.Data.MIMETYPE, CommonDataKinds.Email.CONTENT_ITEM_TYPE);
77 newValues.put(ContactsContract.Data.RAW_CONTACT_ID, rawContactId);

Completed in 1305 milliseconds

<<11121314151617181920>>