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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseIoLibIntrinsic/
IoLibGcc.c 238 UINT8 Data;
240 __asm__ __volatile__ ("inb %w1,%b0" : "=a" (Data) : "d" ((UINT16)Port));
241 return Data;
292 UINT16 Data;
295 __asm__ __volatile__ ("inw %w1,%w0" : "=a" (Data) : "d" ((UINT16)Port));
296 return Data;
348 UINT32 Data;
351 __asm__ __volatile__ ("inl %w1,%0" : "=a" (Data) : "d" ((UINT16)Port));
352 return Data;
  /external/llvm/lib/Fuzzer/
FuzzerInternal.h 45 typedef int (*UserCallback)(const uint8_t *Data, size_t Size);
60 memcpy(Data, B, S);
65 return Size == w.Size && 0 == memcmp(Data, w.Data, Size);
71 return memcmp(Data, w.Data, Size) < 0;
75 const uint8_t *data() const { return Data; } function in class:fuzzer::FixedWord
80 uint8_t Data[kMaxSize];
100 void PrintHexArray(const uint8_t *Data, size_t Size
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/PlatformDxe/
PlatformConfig.c 68 loaded data.
86 VOID *Data;
98 Status = GetVariable2 (mVariableName, &gOvmfPlatformConfigGuid, &Data,
109 CopyMem (PlatformConfig, Data, sizeof *PlatformConfig);
112 CopyMem (PlatformConfig, Data, DataSize);
129 FreePool (Data);
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Dxe/SmbiosMiscDxe/
SmbiosMisc.h 62 // Data table entry update function.
71 // Data table entry definition.
75 // intermediat input data for SMBIOS record
82 // Data Table extern definitions.
85 & NAME1 ## Data
88 // Data Table extern definitions.
91 extern NAME1 NAME2 ## Data
94 // Data and function Table extern definitions.
97 extern NAME1 NAME2 ## Data; \
102 // Data Table entries
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Metronome/
LegacyMetronome.c 62 @param Data Data in IO Port
70 UINT8 Data
78 &Data
97 UINT8 Data;
104 &Data
106 return (UINT8) (Data & REFRESH_ON);
  /external/compiler-rt/lib/profile/
InstrProfilingValue.c 57 __llvm_profile_set_num_value_sites(__llvm_profile_data *Data,
59 *((uint16_t *)&Data->NumValueSites[ValueKind]) = NumValueSites;
64 __llvm_profile_iterate_data(const __llvm_profile_data *Data) {
65 return Data + 1;
70 __llvm_get_function_addr(const __llvm_profile_data *Data) {
71 return Data->FunctionPointer;
80 static int allocateValueProfileCounters(__llvm_profile_data *Data) {
93 NumVSites += Data->NumValueSites[VKI];
99 if (!COMPILER_RT_BOOL_CMPXCHG(&Data->Values, 0, Mem)) {
106 static ValueProfNode *allocateOneNode(__llvm_profile_data *Data, uint32_t Index
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DelegatedData.java 17 package com.google.clearsilver.jsilver.data;
26 * Class that wraps a Data object and exports the same interface. Useful for extending the
29 public class DelegatedData implements Data {
31 private final Data delegate;
33 public DelegatedData(Data delegate) {
35 throw new NullPointerException("Delegate Data must not be null.");
41 * Subclasses will want to override this method to return a Data object of their specific type.
43 * @param newDelegate the Data object to wrap with a new delegator
46 protected DelegatedData newInstance(Data newDelegate) {
50 protected Data getDelegate()
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
VariableValue.java 20 import com.google.clearsilver.jsilver.data.Data;
21 import com.google.clearsilver.jsilver.data.DataContext;
22 import com.google.clearsilver.jsilver.data.TypeConverter;
25 * A value linked to a variable reference. When this value is evaluated in an expression a Data
27 * if there is no Data object associated with the given name.
30 * @see Data
40 private Data reference;
44 // a Data object, not a compound expression containing escaping functions.
45 // We override getEscapeMode() to return the Data object's escape mode
66 Data data = getReference(); local
84 Data data = getReference(); local
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugFrame.cpp 44 /// \brief Parse and store a sequence of CFI instructions from Data,
48 virtual void parseInstructions(DataExtractor Data, uint32_t *Offset,
103 void FrameEntry::parseInstructions(DataExtractor Data, uint32_t *Offset,
106 uint8_t Opcode = Data.getU8(Offset);
121 addInstruction(Primary, Op1, Data.getULEB128(Offset));
137 addInstruction(Opcode, Data.getAddress(Offset));
141 addInstruction(Opcode, Data.getU8(Offset));
145 addInstruction(Opcode, Data.getU16(Offset));
149 addInstruction(Opcode, Data.getU32(Offset));
157 addInstruction(Opcode, Data.getULEB128(Offset))
    [all...]
  /external/flatbuffers/tests/FlatBuffers.Test/
FlatBuffersFuzzTests.cs 36 Assert.ArrayEqual(new byte[] { 0 }, builder.DataBuffer.Data);
38 Assert.ArrayEqual(new byte[] { 1 }, builder.DataBuffer.Data);
40 Assert.ArrayEqual(new byte[] { 129, 1 }, builder.DataBuffer.Data);
42 Assert.ArrayEqual(new byte[] { 0, 255, 129, 1 }, builder.DataBuffer.Data); // First pad
44 Assert.ArrayEqual(new byte[] { 0, 0, 0x22, 0x82, 0, 255, 129, 1 }, builder.DataBuffer.Data); // Second pad
46 Assert.ArrayEqual(new byte[] { 0xEE, 0xFE, 0x22, 0x82, 0, 255, 129, 1 }, builder.DataBuffer.Data); // no pad
48 Assert.ArrayEqual(new byte[] { 0, 0, 0, 0, 204, 204, 204, 252, 0xEE, 0xFE, 0x22, 0x82, 0, 255, 129, 1 }, builder.DataBuffer.Data); // third pad
50 Assert.ArrayEqual(new byte[] { 0x32, 0x54, 0x76, 0x98, 204, 204, 204, 252, 0xEE, 0xFE, 0x22, 0x82, 0, 255, 129, 1 }, builder.DataBuffer.Data); // no pad
58 Assert.ArrayEqual(new byte[] { 0x88, 0x77, 0x66, 0x55, 0x44, 0x33, 0x22, 0x11 }, builder.DataBuffer.Data);
62 Assert.ArrayEqual(new byte[] { 0x88, 0x77, 0x66, 0x55, 0x44, 0x33, 0x22, 0x11 }, builder.DataBuffer.Data);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IpSecConfigImpl.h 48 // The data structure used to store the genernall information of IPsec configuration.
58 VOID *Data;
138 @param[in] Data Pointer of Data.
145 IN VOID *Data
154 @param[in] Data Points to data to be copied to the buffer. The
155 Data type is related to the Type.
157 @param[in] DataSize The size of the Data.
158 @param[in, out] Buffer The buffer to store the Selector and Data.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
ReportStatusCode.c 32 IN OUT EFI_STATUS_CODE_DATA *Data
38 Construct stanader header for optional data passed into ReportStatusCode
42 DataSize - Size of optional data. Does not include EFI_STATUS_CODE_DATA header
44 Data - Buffer to use.
48 Return pointer to Data buffer pointing past the end of EFI_STATUS_CODE_DATA
52 Data->HeaderSize = (UINT16) sizeof (EFI_STATUS_CODE_DATA);
53 Data->Size = (UINT16)(DataSize - sizeof (EFI_STATUS_CODE_DATA));
54 EfiCommonLibCopyMem (&Data->Type, TypeGuid, sizeof (EFI_GUID));
56 return (VOID *)(Data + 1);
89 Buffer - Caller allocated buffer, contains ReportStatusCode extended data
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseIoLibIntrinsic/
IoLibIpf.c 274 UINT8 Data;
279 Data = *((volatile UINT8 *) Address);
282 return Data;
306 UINT16 Data;
316 Data = *((volatile UINT16 *) Address);
319 return Data;
343 UINT32 Data;
353 Data = *((volatile UINT32 *) Address);
356 return Data;
380 UINT64 Data;
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/SmmIoLibSmmCpuIo2/
IoLib.c 30 @return Data read from registers in the EFI CPU I/O space.
41 UINT64 Data;
43 Status = gSmst->SmmIo.Io.Read (&gSmst->SmmIo, Width, Port, 1, &Data);
46 return Data;
53 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().
59 @param Data The value to write to the I/O port.
61 @return The paramter of Data.
69 IN UINT64 Data
74 Status = gSmst->SmmIo.Io.Write (&gSmst->SmmIo, Width, Port, 1, &Data);
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/MemoryOverwriteRequestControlLock/
TcgMorLock.h 25 @param DataSize As input, point to the maximum size of return Data-Buffer.
26 As output, point to the actual size of the returned Data-Buffer.
27 @param Data Point to return Data-Buffer.
36 @retval EFI_INVALID_PARAMETER The DataSize is not too small and Data is NULL.
47 OUT VOID *Data
58 @param DataSize The size in bytes of Data-Buffer.
59 @param Data Point to the content of the variable.
61 @retval EFI_SUCCESS The firmware has successfully stored the variable and its data as
66 @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold the variable and its data.
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/FvbRuntimeDxe/
FvbSmmCommon.h 43 UINT8 Data[1];
50 #define SMM_COMMUNICATE_HEADER_SIZE (OFFSET_OF (EFI_SMM_COMMUNICATE_HEADER, Data))
55 #define SMM_FVB_COMMUNICATE_HEADER_SIZE (OFFSET_OF (SMM_FVB_COMMUNICATE_FUNCTION_HEADER, Data))
  /external/compiler-rt/test/profile/
instrprof-value-prof.c 33 void __llvm_profile_set_num_value_sites(__llvm_profile_data *Data,
37 __llvm_profile_iterate_data(const __llvm_profile_data *Data);
38 void *__llvm_get_function_addr(const __llvm_profile_data *Data);
39 void __llvm_profile_instrument_target(uint64_t TargetValue, void *Data,
81 const __llvm_profile_data *Data, *DataEnd;
93 /* We will synthesis value profile data for 128 callers functions declared.
100 Data = __llvm_profile_begin_data();
103 for (; Data < DataEnd; Data = __llvm_profile_iterate_data(Data)) {
    [all...]
  /external/testng/src/test/java/test/junit/testsetup/
TestSuiteContainerWrapper.java 7 private static Data INSTANCE = null;
17 public static Data getData() {
24 INSTANCE = (Data) dataImpl.newInstance();
  /hardware/qcom/display/msm8084/liboverlay/
overlayCtrlData.h 23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
75 /* retrieve crop data */
97 class Data : utils::NoCopy {
100 explicit Data(const int& dpy);
102 ~Data();
115 // mdp data struct
221 inline Data::Data(const int& dpy) : mMdp(new MdpData(dpy)) {
224 inline Data::~Data() {
    [all...]
  /hardware/qcom/display/msm8226/liboverlay/
overlayCtrlData.h 23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
77 /* retrieve crop data */
97 class Data : utils::NoCopy {
100 explicit Data(const int& dpy);
102 ~Data();
115 // mdp data struct
222 inline Data::Data(const int& dpy) : mMdp(new MdpData(dpy)) {
225 inline Data::~Data() {
    [all...]
  /hardware/qcom/display/msm8909/liboverlay/
overlayCtrlData.h 23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
77 /* retrieve crop data */
97 class Data : utils::NoCopy {
100 explicit Data(const int& dpy);
102 ~Data();
115 // mdp data struct
222 inline Data::Data(const int& dpy) : mMdp(new MdpData(dpy)) {
225 inline Data::~Data() {
    [all...]
  /hardware/qcom/display/msm8994/liboverlay/
overlayCtrlData.h 23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
77 /* retrieve crop data */
97 class Data : utils::NoCopy {
100 explicit Data(const int& dpy);
102 ~Data();
115 // mdp data struct
222 inline Data::Data(const int& dpy) : mMdp(new MdpData(dpy)) {
225 inline Data::~Data() {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/database/
ContactUpdateUtils.java 38 // Update the primary values in the data record.
40 values.put(ContactsContract.Data.IS_SUPER_PRIMARY, 1);
41 values.put(ContactsContract.Data.IS_PRIMARY, 1);
44 ContentUris.withAppendedId(ContactsContract.Data.CONTENT_URI, dataId),
  /packages/apps/Dialer/java/com/android/contacts/common/database/
ContactUpdateUtils.java 36 // Update the primary values in the data record.
38 values.put(ContactsContract.Data.IS_SUPER_PRIMARY, 1);
39 values.put(ContactsContract.Data.IS_PRIMARY, 1);
44 ContentUris.withAppendedId(ContactsContract.Data.CONTENT_URI, dataId),
  /external/clang/include/clang/Basic/
FileSystemStatCache.h 57 CacheExists, ///< We know the file exists and its cached stat data.
71 static bool get(const char *Path, FileData &Data, bool isFile,
95 virtual LookupResult getStat(const char *Path, FileData &Data, bool isFile,
99 LookupResult statChained(const char *Path, FileData &Data, bool isFile,
102 return Next->getStat(Path, Data, isFile, F, FS);
106 return get(Path, Data, isFile, F, nullptr, FS) ? CacheMissing : CacheExists;
124 LookupResult getStat(const char *Path, FileData &Data, bool isFile,

Completed in 551 milliseconds

1 2 3 4 5 6 7 8 91011>>