/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformDxe/ |
LegacySpeaker.c | 46 UINT8 Data;
47 Data = IoRead8 (EFI_SPEAKER_CONTROL_PORT);
48 Data |= 0x03;
49 IoWrite8(EFI_SPEAKER_CONTROL_PORT, Data);
64 UINT8 Data;
66 Data = IoRead8 (EFI_SPEAKER_CONTROL_PORT);
67 Data &= 0xFC;
68 IoWrite8(EFI_SPEAKER_CONTROL_PORT, Data);
121 UINT8 Data;
123 Data = 0xB6; [all...] |
/external/compiler-rt/lib/ubsan/ |
ubsan_handlers.cc | 44 static void handleTypeMismatchImpl(TypeMismatchData *Data, ValueHandle Pointer, 46 Location Loc = Data->Loc.acquire(); 51 else if (Data->Alignment && (Pointer & (Data->Alignment - 1))) 56 // Use the SourceLocation from Data to track deduplication, even if it's 62 if (Data->Loc.isInvalid()) { 72 << TypeCheckKinds[Data->TypeCheckKind] << Data->Type; 77 << TypeCheckKinds[Data->TypeCheckKind] << (void *)Pointer 78 << Data->Alignment << Data->Type [all...] |
/external/clang/lib/Basic/ |
FileSystemStatCache.cpp | 23 FileData &Data) { 24 Data.Name = Status.getName(); 25 Data.Size = Status.getSize(); 26 Data.ModTime = Status.getLastModificationTime().toEpochTime(); 27 Data.UniqueID = Status.getUniqueID(); 28 Data.IsDirectory = Status.isDirectory(); 29 Data.IsNamedPipe = Status.getType() == llvm::sys::fs::file_type::fifo_file; 30 Data.InPCH = false; 31 Data.IsVFSMapped = Status.IsVFSMapped; 43 bool FileSystemStatCache::get(const char *Path, FileData &Data, bool isFile [all...] |
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSetupDxe/ |
SetupFunctions.c | 53 IN CHAR8 *Data
60 while (Data[Index] != 0 && Data[Index+1] != 0) {
61 Temp8 = Data[Index];
62 Data[Index] = Data[Index+1];
63 Data[Index+1] = Temp8;
72 IN EFI_EXP_BASE10_DATA *Data)
77 RawData = Data->Value;
78 for (Index = 0; Index < (UINTN) Data->Exponent; Index++) { [all...] |
/external/clang/test/Analysis/ |
simple-stream-checks.c | 5 void checkDoubleFClose(int *Data) { 9 if (!Data) 12 fputc(*Data, F); 17 int checkLeak(int *Data) { 23 if (Data) // expected-warning {{Opened file is never closed; potential resource leak}} 24 return *Data; 29 void checkLeakFollowedByAssert(int *Data) { 33 if (!Data) 46 void leakOnEnfOfPath1(int *Data) { 50 void leakOnEnfOfPath2(int *Data) { [all...] |
/external/compiler-rt/test/profile/ |
instrprof-value-prof-2.c | 18 void __llvm_profile_set_num_value_sites(__llvm_profile_data *Data, 22 __llvm_profile_iterate_data(const __llvm_profile_data *Data); 23 void *__llvm_get_function_addr(const __llvm_profile_data *Data); 24 void __llvm_profile_instrument_target(uint64_t TargetValue, void *Data, 46 const __llvm_profile_data *Data, *DataEnd; 49 Data = __llvm_profile_begin_data(); 51 for (; Data < DataEnd; Data = __llvm_profile_iterate_data(Data)) { 52 void *func = __llvm_get_function_addr(Data); [all...] |
/external/llvm/lib/DebugInfo/CodeView/ |
RecordSerialization.cpp | 26 return StringRef(reinterpret_cast<const char *>(LeafData.data()), 34 std::error_code llvm::codeview::consume(ArrayRef<uint8_t> &Data, APSInt &Num) { 37 if (Data.size() < 2) 39 uint16_t Short = *reinterpret_cast<const ulittle16_t *>(Data.data()); 40 Data = Data.drop_front(2); 48 if (Data.size() < 1) 51 *reinterpret_cast<const int8_t *>(Data.data()), [all...] |
/external/llvm/lib/Fuzzer/test/ |
CounterTest.cpp | 8 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { 11 if (Data[i] == 'A' + i)
|
SwitchTest.cpp | 14 bool Switch(const uint8_t *Data, size_t Size) { 17 memcpy(&X, Data, sizeof(X)); 31 bool ShortSwitch(const uint8_t *Data, size_t Size) { 34 memcpy(&X, Data, sizeof(short)); 48 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { 49 if (Size >= 4 && Switch<int>(Data, Size) && 50 Size >= 12 && Switch<uint64_t>(Data + 4, Size - 4) && 51 Size >= 14 && ShortSwitch(Data + 12, 2)
|
BufferOverflowOnInput.cpp | 13 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { 14 assert(Data); 17 if (Size == 3 && SeedLargeBuffer && Data[3]) { 18 std::cout << "Woops, reading Data[3] w/o crashing\n";
|
SimpleCmpTest.cpp | 10 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { 16 memcpy(&x, Data, 8); 17 memcpy(&y, Data + Size - 8, 8); 18 memcpy(&z, Data + Size / 2, sizeof(z)); 19 memcpy(&a, Data + Size / 2 + 4, sizeof(a));
|
SimpleHashTest.cpp | 4 // This test computes a checksum of the data (all but the last 4 bytes), 15 static uint32_t simple_hash(const uint8_t *Data, size_t Size) { 18 Hash += Data[i]; 28 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { 32 uint32_t Hash = simple_hash(&Data[0], Size - 4); 33 uint32_t Want = reinterpret_cast<const uint32_t *>(&Data[Size - 4])[0];
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/ |
readelf.h | 4 Data: 2's complement,.* endian
|
/cts/tests/tests/opengl/libopengltest/ |
types.h | 22 } Data;
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/HalRuntimeServicesExampleLib/ |
Reset.c | 43 UINT8 Data;
49 Data = IoRead8 (0x92);
50 Data |= 1;
51 IoWrite8 (0x92, Data);
|
/external/clang/include/clang/Analysis/Analyses/ |
ThreadSafetyUtil.h | 84 SimpleArray() : Data(nullptr), Size(0), Capacity(0) {} 86 : Data(Dat), Size(Sz), Capacity(Cp) {} 88 : Data(Cp == 0 ? nullptr : A.allocateT<T>(Cp)), Size(0), Capacity(Cp) {} 90 : Data(A.Data), Size(A.Size), Capacity(A.Capacity) { 91 A.Data = nullptr; 98 Data = RHS.Data; 102 RHS.Data = nullptr; 112 T *Odata = Data; [all...] |
/external/clang/test/CodeGen/ |
2002-02-18-StaticData.c | 12 void *Data[] = { &FOO, &BAR, &XX };
|
/external/jsilver/src/com/google/clearsilver/jsilver/ |
DataLoader.java | 19 import com.google.clearsilver.jsilver.data.Data; 25 * Loads data from resources. 30 * Create new Data instance, ready to be populated. 32 Data createData(); 35 * Loads data in Hierarchical Data Format (HDF) into an existing Data object. 37 void loadData(final String dataFileName, Data output) throws JSilverBadSyntaxException, 41 * Loads data in Hierarchical Data Format (HDF) into a new Data object [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
BinaryObject.h | 10 // This file defines a Binary Object Aka. "blob" for holding data from code 11 // generators, ready for data to the object module code writters. 33 BinaryData Data; 51 /// get size of binary data 53 return Data.size(); 56 /// get binary data 58 return Data; 72 /// of zero bytes to the data stream. 79 /// written to the data stream. 81 Data.push_back(B) [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/Pei/ |
Pei.h | 51 #define PEI_REPORT_STATUS_CODE(PeiServices, CodeType, Value, Instance, CallerId, Data) \
52 (*PeiServices)->PeiReportStatusCode (PeiServices, CodeType, Value, Instance, CallerId, Data)
55 #define PEI_REPORT_STATUS_CODE(PeiServices, CodeType, Value, Instance, CallerId, Data)
|
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/ |
CustomDataItem.java | 20 import android.provider.ContactsContract.Data; 23 * Represents a custom field data item. 28 * MIME type for custom field data defined in Contact Provider. 36 return getContentValues().getAsString(Data.DATA1); 40 return getContentValues().getAsString(Data.DATA2);
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/ |
GccInline.c | 232 UINTN Data;
236 : "=r" (Data) // %0
239 return Data;
259 UINTN Data;
263 : "=r" (Data) // %0
266 return Data;
285 UINTN Data;
289 : "=r" (Data) // %0
292 return Data;
312 UINTN Data;
[all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseIoLibIntrinsic/ |
IoLibIpf.c | 157 IN UINT8 Data
168 return MmioWrite8 (Address, Data);
188 IN UINT16 Data
199 return MmioWrite16 (Address, Data);
219 IN UINT32 Data
230 return MmioWrite32 (Address, Data);
277 UINT8 Data;
282 Data = *((volatile UINT8 *) Address);
285 return Data;
306 UINT16 Data;
[all...] |
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformInitPei/ |
LegacySpeaker.c | 58 UINT8 Data;
59 Data = IoRead8 (EFI_SPEAKER_CONTROL_PORT);
60 Data |= 0x03;
61 IoWrite8(EFI_SPEAKER_CONTROL_PORT, Data);
78 UINT8 Data;
80 Data = IoRead8 (EFI_SPEAKER_CONTROL_PORT);
81 Data &= 0xFC;
82 IoWrite8(EFI_SPEAKER_CONTROL_PORT, Data);
126 UINT8 Data;
128 Data = 0xB6; [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
ChainedData.java | 17 package com.google.clearsilver.jsilver.data; 25 * Implementation of Data that allows for multiple underlying Data objects and checks each one in 27 * implementation of Clearsilver. This is only meant to be a root Data object and hardcodes that 30 * Note: If you have elements foo.1, foo.2, foo.3 in first Data object and foo.4, foo.5, foo.6 in 31 * second Data object, then fetching children of foo will return only foo.1 foo.2 foo.3 from first 32 * Data object. 38 // variable in multiple Data objects in the chain, which usually indicates 42 Data[] dataList; 47 * @param data a single data object to wrap [all...] |