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

1 2 3 45 6 7 8 91011>>

  /external/llvm/lib/DebugInfo/CodeView/
MemoryTypeTableBuilder.cpp 16 TypeIndex MemoryTypeTableBuilder::writeRecord(StringRef Data) {
17 assert(Data.size() <= UINT16_MAX);
18 auto I = HashedRecords.find(Data);
28 int TotalSize = alignTo(Data.size() + SizeOfRecLen, Align);
33 memcpy(Mem + SizeOfRecLen, Data.data(), Data.size());
34 for (int I = Data.size() + SizeOfRecLen; I < TotalSize; ++I)
40 // Use only the data supplied by the user as a key to the hash table, so that
42 HashedRecords.insert(std::make_pair(StringRef(Mem + SizeOfRecLen, Data.size()), TI))
    [all...]
  /external/llvm/lib/Fuzzer/test/
RepeatedMemcmp.cpp 10 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
14 if (!memcmp(Data + i, Pat, 3))
SimpleFnAdapterTest.cpp 19 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
20 fuzzer::Adapt(TestFn, Data, Size);
SpamyTest.cpp 11 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
12 assert(Data);
StrncmpTest.cpp 12 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
14 char *S = (char*)Data;
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 42 unsigned *Data;
51 Scoreboard():Data(NULL), Depth(0), Head(0) { }
53 delete[] Data;
62 return Data[(Head + idx) & (Depth-1)];
66 if (Data == NULL) {
68 Data = new unsigned[Depth];
71 memset(Data, 0, Depth * sizeof(Data[0]));
93 // Itinerary data for the target.
  /external/v8/src/
basic-block-profiler.h 21 class Data {
35 const BasicBlockProfiler::Data& s);
37 explicit Data(size_t n_blocks);
38 ~Data();
48 DISALLOW_COPY_AND_ASSIGN(Data);
51 typedef std::list<Data*> DataList;
56 Data* NewData(size_t n_blocks);
72 std::ostream& operator<<(std::ostream& os, const BasicBlockProfiler::Data& s);
basic-block-profiler.cc 12 BasicBlockProfiler::Data::Data(size_t n_blocks)
16 BasicBlockProfiler::Data::~Data() {}
24 void BasicBlockProfiler::Data::SetCode(std::ostringstream* os) {
29 void BasicBlockProfiler::Data::SetFunctionName(std::ostringstream* os) {
34 void BasicBlockProfiler::Data::SetSchedule(std::ostringstream* os) {
39 void BasicBlockProfiler::Data::SetBlockId(size_t offset, size_t block_id) {
45 uint32_t* BasicBlockProfiler::Data::GetCounterAddress(size_t offset) {
51 void BasicBlockProfiler::Data::ResetCounts()
    [all...]
  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
aggregate-indirect-arg.cpp 9 // CHECK: Data = 0x0,
15 const void* Data;
27 v.Data = 0;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/branch_policy/
null_node_metadata.hpp 51 template<typename Key, typename Data, typename _Alloc>
55 typedef types_traits<Key, Data, _Alloc, false> __traits_type;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/branch_policy/
null_node_metadata.hpp 51 template<typename Key, typename Data, typename _Alloc>
55 typedef types_traits<Key, Data, _Alloc, false> __traits_type;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/branch_policy/
null_node_metadata.hpp 51 template<typename Key, typename Data, typename _Alloc>
55 typedef types_traits<Key, Data, _Alloc, false> __traits_type;
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/branch_policy/
null_node_metadata.hpp 51 template<typename Key, typename Data, typename _Alloc>
55 typedef types_traits<Key, Data, _Alloc, false> __traits_type;
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/branch_policy/
null_node_metadata.hpp 51 template<typename Key, typename Data, typename _Alloc>
55 typedef types_traits<Key, Data, _Alloc, false> __traits_type;
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/branch_policy/
null_node_metadata.hpp 51 template<typename Key, typename Data, typename _Alloc>
55 typedef types_traits<Key, Data, _Alloc, false> __traits_type;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-pe/
exports.d 2 The Data Directory
exports64.d 2 The Data Directory
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Statistics.java 29 /** {@code non-null;} data about each type of item */
30 private final HashMap<String, Data> dataMap;
36 dataMap = new HashMap<String, Data>(50);
46 Data data = dataMap.get(typeName); local
48 if (data == null) {
49 dataMap.put(typeName, new Data(item, typeName));
51 data.add(item);
79 TreeMap<String, Data> sortedData = new TreeMap<String, Data>();
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
Statistics.java 28 /** {@code non-null;} data about each type of item */
29 private final HashMap<String, Data> dataMap;
35 dataMap = new HashMap<String, Data>(50);
45 Data data = dataMap.get(typeName); local
47 if (data == null) {
48 dataMap.put(typeName, new Data(item, typeName));
50 data.add(item);
78 TreeMap<String, Data> sortedData = new TreeMap<String, Data>();
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/
Io.c 39 Data read
63 Data read
87 Data read
101 IN UINT8 Data
110 Data - Data to write to Address
117 EfiIoWrite (EfiCpuIoWidthUint8, Address, 1, &Data);
123 IN UINT16 Data
132 Data - Data to write to Address
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDControllerDxe/
SDController.c 210 DEBUG((EFI_D_ERROR, "Data Timeout Error"));
215 DEBUG((EFI_D_ERROR, "Data CRC Error"));
219 DEBUG((EFI_D_ERROR, "Data End Bit Error"));
252 UINT32 Data;
265 &Data
274 Data |= BIT2;
276 Data &= ~BIT2;
284 &Data
295 UINT16 Data;
306 &Data
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstreamVisitor.h 97 virtual Error visitUnknown(ModuleSubstreamKind Kind, StreamRef Data) = 0;
98 virtual Error visitSymbols(StreamRef Data);
99 virtual Error visitLines(StreamRef Data, const LineSubstreamHeader *Header,
101 virtual Error visitStringTable(StreamRef Data);
102 virtual Error visitFileChecksums(StreamRef Data,
104 virtual Error visitFrameData(StreamRef Data);
105 virtual Error visitInlineeLines(StreamRef Data);
106 virtual Error visitCrossScopeImports(StreamRef Data);
107 virtual Error visitCrossScopeExports(StreamRef Data);
108 virtual Error visitILLines(StreamRef Data);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/MonoStatusCode/Library/Pei/Include/
SimpleCpuIoLib.h 46 IN UINT8 Data
52 IN UINT16 Data
58 IN UINT32 Data
74 IN UINT32 Data
80 IN UINT64 Data
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/
FaultTolerantWriteSmmCommon.h 32 UINT8 Data[1];
38 #define SMM_COMMUNICATE_HEADER_SIZE (OFFSET_OF (EFI_SMM_COMMUNICATE_HEADER, Data))
43 #define SMM_FTW_COMMUNICATE_HEADER_SIZE (OFFSET_OF (SMM_FTW_COMMUNICATE_FUNCTION_HEADER, Data))
62 UINT8 Data[1];
77 UINT8 Data[1];
  /device/linaro/bootloader/edk2/OptionRomPkg/CirrusLogic5430Dxe/
CirrusLogic5430I2c.c 33 @param Address The bit map of I2C Data or I2C Clock pins.
34 @param Data The date to write.
41 UINT8 Data
50 &Data
57 @param Address The bit map of I2C Data or I2C Clock pins.
68 UINT8 Data;
76 &Data
78 return Data;
82 Read status of I2C Data and I2C Clock Pins.
85 @param Blt The bit map of I2C Data or I2C Clock pins.
    [all...]

Completed in 509 milliseconds

1 2 3 45 6 7 8 91011>>