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

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Library/QNCSmmLib/
QNCSmmLib.c 31 This function triggers a software SMM interrupt and set the APMC status with an 8-bit Data.
33 @param Data The value to set the APMC status.
38 IN UINT8 Data
67 IoWrite8 (PcdGet16 (PcdSmmDataPort), Data);
119 Gets the software SMI data.
122 it retrieves the SMM data and returns it as a non-negative value; otherwise a negative
125 @return Data The data retrieved from SMM data port in case of a software SMI;
135 UINT8 Data;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
EditStatusBar.c 70 UINTN Data;
113 Orig.Data = gST->ConOut->Mode->Attribute;
114 New.Data = 0;
119 gST->ConOut->SetAttribute (gST->ConOut, New.Data & 0x7F);
158 gST->ConOut->SetAttribute (gST->ConOut, Orig.Data);
  /external/doclava/src/com/google/doclava/
ParameterInfo.java 19 import com.google.clearsilver.jsilver.data.Data;
70 public void makeHDF(Data data, String base, boolean isLastVararg, HashSet<String> typeVariables) {
71 makeHDF(data, base, isLastVararg, typeVariables, Collections.<String, TypeInfo>emptyMap());
74 public void makeHDF(Data data, String base, boolean isLastVararg, HashSet<String> typeVariables,
76 data.setValue(base + ".name", this.name());
78 data, base + ".type", isLastVararg, typeVariables);
81 public static void makeHDF(Data data, String base, ParameterInfo[] params, boolean isVararg
    [all...]
TagInfo.java 19 import com.google.clearsilver.jsilver.data.Data;
74 public void makeHDF(Data data, String base) {
75 data.setValue(base + ".name", name());
80 data.setValue(base + ".text", text());
81 data.setValue(base + ".kind", kind());
84 public static void makeHDF(Data data, String base, TagInfo[] tags) {
85 makeHDF(data, base, tags, null, 0, 0)
    [all...]
  /external/llvm/tools/llvm-mc-fuzzer/
llvm-mc-fuzzer.cpp 65 int DisassembleOneInput(const uint8_t *Data, size_t Size) {
68 std::vector<uint8_t> DataCopy(Data, Data + Size);
74 uint8_t *p = DataCopy.data();
91 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
95 return DisassembleOneInput(Data, Size);
147 *argv = ModifiedArgv.data();
151 // permit any user data.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
SpeedAnglesClassifier.java 37 private HashMap<Stroke, Data> mStrokeMap = new HashMap<>();
60 mStrokeMap.put(stroke, new Data());
73 Data data = mStrokeMap.get(stroke); local
74 return SpeedVarianceEvaluator.evaluate(data.getAnglesVariance())
75 + SpeedAnglesPercentageEvaluator.evaluate(data.getAnglesPercentage());
78 private static class Data {
93 public Data() {
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
SpeedAnglesClassifier.java 36 private Map<Stroke, Data> mStrokeMap = new ArrayMap<>();
59 mStrokeMap.put(stroke, new Data());
72 Data data = mStrokeMap.get(stroke); local
73 return SpeedVarianceEvaluator.evaluate(data.getAnglesVariance())
74 + SpeedAnglesPercentageEvaluator.evaluate(data.getAnglesPercentage());
77 private static class Data {
92 public Data() {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
AmlOption.c 22 @param[in] MaxBufferSize AML buffer MAX size. The parser can not parse any data exceed this region.
23 @param[in] TermIndex Index of the data to retrieve from the object.
24 @param[out] DataType Points to the returned data type or EFI_ACPI_DATA_TYPE_NONE if no data exists
26 @param[out] Data Upon return, points to the pointer to the data.
27 @param[out] DataSize Upon return, points to the size of Data.
39 OUT VOID **Data,
49 if (Data != NULL) {
50 *Data = Buffer;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/
ReportStatusCodeRouterRuntimeDxe.c 59 // Traverse the status code data buffer to parse all
60 // data to report.
70 &RscData->Data
73 Address += (sizeof (RSC_DATA_ENTRY) + RscData->Data.Size);
142 // for it, and related buffer for status code data should be prepared.
143 // Here the data buffer must be prepared in advance, because Report Status Code Protocol might
145 // If TPL is TPL_HIGH_LEVEL, then all status code will be reported immediately, without data
225 @param Data This optional parameter may be used to pass additional data.
238 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm12CommandLib/
Tpm12NvStorage.c 50 UINT8 Data[TPMCMDBUFLENGTH];
58 UINT8 Data[TPMCMDBUFLENGTH];
141 @param DataSize The size of the data area.
142 @param Data The data to set the area to.
153 OUT UINT8 *Data
192 CopyMem (Data, &RecvBuffer.Data, *DataSize);
202 @param DataSize The size of the data parameter.
203 @param Data The data to set the area to.
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
SecureBootConfigMisc.c 120 @retval EFI_SUCCESS Data conversion successfully
178 UINTN Data;
206 Data = StrHexToUintn (PtrPosition);
207 Guid->Data1 = (UINT32)Data;
225 Data = StrHexToUintn (PtrPosition);
226 Guid->Data2 = (UINT16)Data;
244 Data = StrHexToUintn (PtrPosition);
245 Guid->Data3 = (UINT16)Data;
260 Data = StrHexToUintn (Digits);
261 Guid->Data4[Index] = (UINT8)Data;
    [all...]
SecureBootConfigImpl.c 150 Create a time based data payload by concatenating the EFI_VARIABLE_AUTHENTICATION_2
151 descriptor with the input data. NO authentication is required in this function.
153 @param[in, out] DataSize On input, the size of Data buffer in bytes.
154 On output, the size of data returned in Data
156 @param[in, out] Data On input, Pointer to data buffer to be wrapped or
170 IN OUT UINT8 **Data
181 if (Data == NULL || DataSize == NULL) {
189 // data in it.
    [all...]
  /external/clang/unittests/Basic/
FileManagerTest.cpp 32 FileData Data;
33 Data.Name = Path;
34 Data.Size = 0;
35 Data.ModTime = 0;
36 Data.UniqueID = llvm::sys::fs::UniqueID(1, INode);
37 Data.IsDirectory = !IsFile;
38 Data.IsNamedPipe = false;
39 Data.InPCH = false;
40 StatCalls[Path] = Data;
55 LookupResult getStat(const char *Path, FileData &Data, bool isFile
    [all...]
  /external/compiler-rt/lib/profile/
InstrProfilingWriter.c 41 memcpy(*Buffer, IOVecs[I].Data, Length);
77 lprofBufferIOWrite(ProfBufferIO *BufferIO, const uint8_t *Data, uint32_t Size) {
84 ProfDataIOVec IO[] = {{Data, sizeof(uint8_t), Size}};
89 /* Write the data to buffer */
108 /* Write out value profile data for function specified with \c Data.
111 * value profile data is written out to \c BufferIO piecemeal.
115 const __llvm_profile_data *Data) {
121 if (!Data->NumValueSites[I])
125 VPDataReader->GetValueProfRecordHeaderSize(Data->NumValueSites[I])
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/RtLedStatusCode/
RtLedStatusCode.c 28 // Prepare the data to initialize LPC chipset for Server Io Configuration
215 IN UINT8 Data,
222 Writes the data to control LED output at desired port
226 Data - Data in bit0 is the relevant data
247 if (Data & 0x01) {
249 // Set GPIO54 pin to 1 if data is 1
284 // Make bit 3 of data to be zero
291 // Make bit 3 as 1 to perform the strobe to shift the data in 74HCT164
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Library/SmbiosLib/
SmbiosLib.c 183 // A string with no data is not legal in SMBIOS
224 // A string with no data is not legal in SMBIOS
258 CHAR8 *Data;
261 Data = (CHAR8 *)Header + Header->Length;
262 for (Match = 1;!(*Data == 0 && *(Data+1) == 0); ) {
264 return Data;
266 Data++;
267 if (*(Data - 1) == '\0') {
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/
ReportStatusCodeLib.c 67 Converts the status code specified by CodeType, Value, and Data to the ASSERT()
71 Filename, Description, and LineNumber from the optional data area of the
72 status code buffer specified by Data. The optional data area of Data contains
75 ASSERT() information could be extracted from Data, then return TRUE.
78 If Data is NULL, then ASSERT().
85 @param Data Pointer to status code data buffer.
90 @retval TRUE The status code specified by CodeType, Value, and Data was
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
Triple.h 114 std::string Data;
139 Triple() : Data(), Arch(InvalidArch) {}
140 explicit Triple(const Twine &Str) : Data(Str.str()), Arch(InvalidArch) {}
142 : Data((ArchStr + Twine('-') + VendorStr + Twine('-') + OSStr).str()),
148 : Data((ArchStr + Twine('-') + VendorStr + Twine('-') + OSStr + Twine('-') +
200 const std::string &str() const { return Data; }
202 const std::string &getTriple() const { return Data; }
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
SqlInjectionDetectionTest.java 28 import android.provider.ContactsContract.Data;
56 assertQueryValid(Data.CONTENT_URI, null,
57 "data._id in default_directory", null);
143 mResolver.update(Data.CONTENT_URI, cv(), ";delete from contacts;--", null);
147 mResolver.update(Data.CONTENT_URI, cv(), "_id in data_usage_stat", null);
150 mResolver.update(Data.CONTENT_URI, cv("_id/**/", 1), null, null);
153 mResolver.update(Data.CONTENT_URI, cv("[data1]", 1), null, null);
160 mResolver.insert(Data.CONTENT_URI, cv("_id/**/", 1));
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6ConfigImpl.c 25 @param[in] Context Pointer to the IP6 config instance data.
139 @param[in] Instance Pointer to the IP6 config instance data.
224 *((UINT16 *) &Oro->Data[0]) = HTONS (IP6_CONFIG_DHCP6_OPTION_DNS_SERVERS);
308 Read the configuration data from variable storage according to the VarName and
309 gEfiIp6ConfigProtocolGuid. It checks the integrity of variable data. If the
310 data is corrupted, it clears the variable data to ZERO. Othewise, it outputs the
311 configuration data to IP6_CONFIG_INSTANCE.
314 @param[in, out] Instance The pointer to the IP6 config instance data.
318 @retval EFI_SUCCESS The configuration data was retrieved successfully.
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyPei/
FloppyPeim.c 287 Command bytes can not be written to Data Register unless RQM is 1 and DIO is 0.
288 Result bytes can not be read from Data Register unless RQM is 1 and DIO is 1.
291 @param DataIn Indicates data input or output.
343 Read a byte from FDC data register.
346 @param Pointer Pointer to buffer to hold data read from FDC.
358 UINT8 Data;
370 Data = IoRead8 ((UINT16) (PcdGet16 (PcdFdcBaseAddress) + FDC_REGISTER_DTR));
372 *Pointer = Data;
378 Write a byte to FDC data register.
381 @param Pointer Pointer to data to write.
    [all...]
  /build/soong/third_party/zip/
writer_test.go 20 Data []byte
28 Data: []byte("Rabbits, guinea pigs, gophers, marsupial rats, and quolls."),
34 Data: nil, // large data set in the test
40 Data: []byte("setuid file"),
46 Data: []byte("setgid file"),
52 Data: []byte("../link/target"),
63 writeTests[1].Data = largeData
65 writeTests[1].Data = nil
95 writeTests[1].Data = largeDat
    [all...]
  /prebuilts/go/darwin-x86/src/archive/zip/
writer_test.go 20 Data []byte
28 Data: []byte("Rabbits, guinea pigs, gophers, marsupial rats, and quolls."),
34 Data: nil, // large data set in the test
40 Data: []byte("setuid file"),
46 Data: []byte("setgid file"),
52 Data: []byte("../link/target"),
63 writeTests[1].Data = largeData
65 writeTests[1].Data = nil
95 writeTests[1].Data = largeDat
    [all...]
  /prebuilts/go/linux-x86/src/archive/zip/
writer_test.go 20 Data []byte
28 Data: []byte("Rabbits, guinea pigs, gophers, marsupial rats, and quolls."),
34 Data: nil, // large data set in the test
40 Data: []byte("setuid file"),
46 Data: []byte("setgid file"),
52 Data: []byte("../link/target"),
63 writeTests[1].Data = largeData
65 writeTests[1].Data = nil
95 writeTests[1].Data = largeDat
    [all...]
  /external/llvm/unittests/IR/
ValueMapTest.cpp 64 typename ValueMapConfig<TypeParam*>::ExtraData Data;
65 ValueMap<TypeParam*, int> VM3(Data, 16); (void)VM3;
187 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
188 *Data.CalledRAUW = true;
189 EXPECT_FALSE(Data.M->try_lock()) << "Mutex should already be locked.";
191 static void onDelete(const ExtraData &Data, KeyT Old) {
192 *Data.CalledDeleted = true;
193 EXPECT_FALSE(Data.M->try_lock()) << "Mutex should already be locked.";
195 static MutexT *getMutex(const ExtraData &Data) { return Data.M;
    [all...]

Completed in 1774 milliseconds

<<11121314151617181920>>