HomeSort by relevance Sort by last modified time
    Searched defs:Data (Results 1 - 25 of 427) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
2005-02-13-BadDynamicInit.cpp 3 struct Data {
4 unsigned *data; member in struct:Data
9 Data shared_null = { shared_null.array };
m64-ptr.cpp 9 const char *Data;
  /external/llvm/lib/Support/
RandomNumberGenerator.cpp 40 // Data: Seed-low, Seed-high, Salt
44 std::vector<uint32_t> Data;
45 Data.reserve(2 + Salt.size());
46 Data.push_back(Seed);
47 Data.push_back(Seed >> 32);
49 std::copy(Salt.begin(), Salt.end(), Data.end());
51 std::seed_seq SeedSeq(Data.begin(), Data.end());
  /external/v8/src/
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...]
  /cts/tests/tests/opengl/libopengltest/
types.h 22 } Data;
  /external/clang/test/CodeGen/
2002-02-18-StaticData.c 12 void *Data[] = { &FOO, &BAR, &XX };
2002-07-14-MiscListTests.c 15 // Recursive data structure tests...
18 int Data;
22 list *Data;
28 Data = (list*)malloc(12); // This is not a proper list allocation
41 void InsertIntoListTail(list **L, int Data) {
45 (*L)->Data = Data;
50 list *FindData(list *L, int Data) {
52 if (L->Data == Data) return L
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFSection.h 19 StringRef Data;
  /external/testng/src/test/java/test/junit/testsetup/
Data.java 3 public class Data
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BlockCounter.h 10 // This file defines BlockCounter, an abstract data type used to count
28 /// \brief An abstract data type used to count the number of times a given
31 void *Data;
33 BlockCounter(void *D) : Data(D) {}
36 BlockCounter() : Data(nullptr) {}
  /external/clang/test/SemaTemplate/
dependent-names-no-std.cpp 8 struct Data {};
18 void f(ns::Data); // expected-note {{in namespace 'PR10053::ns'}}
20 A<ns::Data> a; // expected-note {{in instantiation of member function}}
  /external/compiler-rt/lib/profile/
InstrProfilingInternal.h 17 * \brief Write instrumentation data to the given buffer, given explicit
18 * pointers to the live data in memory. This function is probably not what you
28 * \brief Write instrumentation data to the given buffer, given explicit
29 * pointers to the live data in memory. This function is probably not what you
45 const void *Data;
InstrProfilingPlatformOther.c 1 /*===- InstrProfilingPlatformOther.c - Profile data default platform ------===*\
32 const __llvm_profile_data *Data = (__llvm_profile_data *)Data_;
34 DataFirst = Data;
35 DataLast = Data + 1;
36 NamesFirst = Data->NamePtr;
37 NamesLast = (const char *)Data->NamePtr + Data->NameSize;
38 CountersFirst = Data->CounterPtr;
39 CountersLast = (uint64_t *)Data->CounterPtr + Data->NumCounters
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 44 std::string Data;
45 raw_string_ostream OS(Data);
  /external/llvm/lib/Object/
SymbolicFile.cpp 31 StringRef Data = Object.getBuffer();
33 Type = sys::fs::identify_magic(Data);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
eapmethodtypes.h 18 BYTE Data[1];
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.h 24 struct Data {
25 Data() : one(1), two(2), three(3), four(4) {}
27 Data(unsigned int pOne,
37 ~Data() {
65 typedef mcld::LinearAllocator<Data, CHUNK_SIZE> Alloc;
RTLinearAllocatorTest.h 37 struct Data {
38 Data() : one(1), two(2), three(3), four(4) {}
40 Data(unsigned int pOne,
50 ~Data() {
65 mcld::LinearAllocator<Data, 0>* m_pTestee;
  /external/clang/tools/libclang/
CXString.h 51 /// contain a pointer to the undrelying data of \p String.
87 SmallString<128> Data;
98 /// \brief Returns true if the CXString data is managed by a pool.
  /external/llvm/include/llvm/MC/
YAML.h 50 /// \brief Either raw binary data, or a string of hex bytes (must always
52 ArrayRef<uint8_t> Data;
53 /// \brief Discriminator between the two states of the `Data` member.
57 BinaryRef(ArrayRef<uint8_t> Data) : Data(Data), DataIsHexString(false) {}
58 BinaryRef(StringRef Data)
59 : Data(reinterpret_cast<const uint8_t *>(Data.data()), Data.size())
    [all...]
  /external/llvm/include/llvm/Support/
DynamicLibrary.h 43 // Opaque data used to interface with OS-specific dynamic library handling.
44 void *Data;
47 explicit DynamicLibrary(void *data = &Invalid) : Data(data) {}
50 bool isValid() const { return Data != &Invalid; }
DataExtractor.h 18 StringRef Data;
24 /// This constructor allows us to use data that is owned by the
25 /// caller. The data must stay around as long as this object is
27 DataExtractor(StringRef Data, bool IsLittleEndian, uint8_t AddressSize)
28 : Data(Data), IsLittleEndian(IsLittleEndian), AddressSize(AddressSize) {}
30 /// \brief Get the data pointed to by this extractor.
31 StringRef getData() const { return Data; }
41 /// Returns a pointer to a C String from the data at the offset
48 /// A pointer to an offset within the data that will be advance
    [all...]
  /external/llvm/tools/llvm-readobj/
StreamWriter.cpp 31 ArrayRef<uint8_t> Data, bool Block) {
32 if (Data.size() > 16)
40 for (size_t addr = 0, end = Data.size(); addr < end; addr += 16) {
47 OS << hexdigit((Data[addr + i] >> 4) & 0xF, false)
48 << hexdigit(Data[addr + i] & 0xF, false);
55 if (std::isprint(Data[addr + i] & 0xFF))
56 OS << Data[addr + i];
69 for (size_t i = 0; i < Data.size(); ++i) {
73 OS << format("%02X", static_cast<int>(Data[i]));
  /external/testng/src/test/java/test/dataprovider/
DataProviderWithError.java 11 @Test(dataProvider = "Data", invocationCount = 2)
16 @Test(dataProvider = "Data", invocationCount = 2, successPercentage = 10)
21 @DataProvider(name = "Data")
22 public static Object[][] Data() {
  /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;

Completed in 411 milliseconds

1 2 3 4 5 6 7 8 91011>>