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

1 2 3 4 5 6 7 891011>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
attr-gnu-4-60.d 9 Data: 2's complement,.*
attr-gnu-4-70.d 9 Data: 2's complement,.*
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-x86-64/
protected3-k1om.d 9 Data: 2's complement, little endian
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Wpce791/
LpcSio.c 41 IN UINT8 Data
109 IN UINT8 Data
113 LpcIoWrite8(DATA_PORT, Data);
121 IN UINT8 Data
127 LpcIoWrite8(DATA_PORT, Data);
130 Buffer[1] = Data;
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
ValidationTestUtil.java 22 * Content of a '.data' file.
24 public static class Data {
41 private Data(ByteBuffer data, int handlesCount, String errorMessage) {
42 this.mData = data;
49 * Parse a '.data' file.
51 public static Data parseData(String dataAsString) {
55 private static native Data nativeParseData(String dataAsString);
58 private static Data buildData(ByteBuffer data, int handlesCount, String errorMessage)
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerFnAdapter.h 28 /// Unpacks bytes from \p Data according to \p F argument types
33 template <typename Fn> bool Adapt(Fn F, const uint8_t *Data, size_t Size);
37 // - data is unpacked into std::tuple<Args...> one by one
44 size_t UnpackPrimitive(const uint8_t *Data, size_t Size, T *Value) {
47 *Value = *reinterpret_cast<const T *>(Data);
52 /// Return value equal to Size signals inability to unpack the data (typically
55 size_t UnpackSingle(const uint8_t *Data, size_t Size, T *Value);
59 size_t UnpackSingle<Type>(const uint8_t *Data, size_t Size, Type *Value) { \
60 return UnpackPrimitive(Data, Size, Value); \
86 size_t UnpackSingle<std::vector<uint8_t>>(const uint8_t *Data, size_t Size
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue100/
MergeJavaBeanTest.java 33 String input = "- &id001 !!org.yaml.snakeyaml.issues.issue100.Data {age: 11, id: id123}\n- *id001";
36 List<Data> list = (List<Data>) yaml.load(input);
37 for (Data data : list) {
38 // System.out.println(data);
39 assertEquals("id123", data.getId());
40 assertEquals(11, data.getAge());
50 // First object: Data ( 11, "id123" )
51 assertEquals(list.get(0).getClass(), Data.class)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
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 PointerSize)
28 : Data(Data), IsLittleEndian(IsLittleEndian), PointerSize(PointerSize) {}
30 /// getData - Get the data pointed to by this extractor.
31 StringRef getData() const { return Data; }
39 /// Returns a pointer to a C String from the data at the offset
46 /// A pointer to an offset within the data that will be advance
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerFnAdapter.h 28 /// Unpacks bytes from \p Data according to \p F argument types
33 template <typename Fn> bool Adapt(Fn F, const uint8_t *Data, size_t Size);
37 // - data is unpacked into std::tuple<Args...> one by one
44 size_t UnpackPrimitive(const uint8_t *Data, size_t Size, T *Value) {
47 *Value = *reinterpret_cast<const T *>(Data);
52 /// Return value equal to Size signals inability to unpack the data (typically
55 size_t UnpackSingle(const uint8_t *Data, size_t Size, T *Value);
59 size_t UnpackSingle<Type>(const uint8_t *Data, size_t Size, Type *Value) { \
60 return UnpackPrimitive(Data, Size, Value); \
86 size_t UnpackSingle<std::vector<uint8_t>>(const uint8_t *Data, size_t Size
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMAttributeParser.cpp 74 uint64_t ARMAttributeParser::ParseInteger(const uint8_t *Data,
77 uint64_t Value = decodeULEB128(Data + Offset, &Length);
82 StringRef ARMAttributeParser::ParseString(const uint8_t *Data,
84 const char *String = reinterpret_cast<const char*>(Data + Offset);
90 void ARMAttributeParser::IntegerAttribute(AttrType Tag, const uint8_t *Data,
93 ParseInteger(Data, Offset));
96 void ARMAttributeParser::StringAttribute(AttrType Tag, const uint8_t *Data,
104 SW.printString("Value", ParseString(Data, Offset));
120 void ARMAttributeParser::CPU_arch(AttrType Tag, const uint8_t *Data,
128 uint64_t Value = ParseInteger(Data, Offset)
    [all...]
  /external/clang/include/clang/AST/
APValue.h 111 // We ensure elsewhere that Data is big enough for LV and MemberPointerData.
117 DataType Data;
202 return *(APSInt*)(char*)Data.buffer;
210 return *(APFloat*)(char*)Data.buffer;
218 return ((ComplexAPSInt*)(char*)Data.buffer)->Real;
226 return ((ComplexAPSInt*)(char*)Data.buffer)->Imag;
234 return ((ComplexAPFloat*)(char*)Data.buffer)->Real;
242 return ((ComplexAPFloat*)(char*)Data.buffer)->Imag;
261 return ((Vec*)(char*)Data.buffer)->Elts[I];
268 return ((const Vec*)(const void *)Data.buffer)->NumElts
    [all...]
  /hardware/qcom/display/msm8960/liboverlay/
overlayCtrlData.h 23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
77 /* retrieve crop data */
95 class Data : utils::NoCopy {
98 explicit Data();
100 ~Data();
117 // mdp data struct
121 /* This class just creates a Ctrl Data pair to be used by a pipe.
123 * need to use the Ctrl channel in hwc_prepare (i.e config stage) and Data
128 Data data; member in struct:overlay::CtrlData
    [all...]
  /external/llvm/include/llvm/Support/
ARMWinEH.h 33 /// RuntimeFunction - An entry in the table of procedure data (.pdata)
44 /// - 00 = packed unwind data not used; reamining bits point to .xdata record
45 /// - 01 = packed unwind data
46 /// - 10 = packed unwind data, function assumed to have no prologue; useful
98 // to fully inspect the contents of the data structure which is particularly
106 RuntimeFunction(const support::ulittle32_t *Data)
107 : BeginAddress(Data[0]), UnwindData(Data[1]) {}
208 /// ExceptionDataRecord - An entry in the table of exception data (.xdata)
223 /// X : 1-bit field indicating the presence of exception data
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/HalRuntimeServicesExampleLib/
ReportStatusCode.c 5 There is just a single runtime memory buffer that contans all the data.
32 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
61 if (Data != NULL &&
62 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
74 } else if (Data != NULL &&
75 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
85 } else if (Data != NULL &&
86 CompareGuid (&Data->Type, &gEfiStatusCodeSpecificDataGuid) &&
89 // Print specific data into output buffer.
91 DebugInfo = (EFI_DEBUG_INFO *) (Data + 1);
    [all...]
  /external/clang/tools/libclang/
BuildSystem.cpp 80 StringRef Data = OS.str();
81 *out_buffer_ptr = (char*)malloc(Data.size());
82 *out_buffer_size = Data.size();
83 memcpy(*out_buffer_ptr, Data.data(), Data.size());
142 StringRef Data = OS.str();
143 *out_buffer_ptr = (char*)malloc(Data.size());
144 *out_buffer_size = Data.size();
145 memcpy(*out_buffer_ptr, Data.data(), Data.size())
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Option.c 57 @param Data The UINT32 Date to put in buffer
63 IN UINT32 Data
66 Data = HTONL (Data);
67 CopyMem (Buf, &Data, sizeof (UINT32));
117 UINT8 *Data;
133 Data = NetbufAllocSpace (
139 ASSERT (Data != NULL);
142 TcpPutUint32 (Data, TCP_OPTION_TS_FAST);
143 TcpPutUint32 (Data + 4, mTcpTick);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpOption.c 58 @param[in] Data The UINT32 Date to put in the buffer.
64 IN UINT32 Data
67 Data = HTONL (Data);
68 CopyMem (Buf, &Data, sizeof (UINT32));
115 UINT8 *Data;
132 Data = NetbufAllocSpace (
138 ASSERT (Data != NULL);
141 TcpPutUint32 (Data, TCP_OPTION_TS_FAST);
142 TcpPutUint32 (Data + 4, mTcpTick);
    [all...]
  /external/llvm/unittests/Support/
EndianStreamTest.cpp 20 SmallString<16> data; local
23 raw_svector_ostream OS(data);
28 EXPECT_EQ(static_cast<uint8_t>(data[0]), 0xCD);
29 EXPECT_EQ(static_cast<uint8_t>(data[1]), 0xB6);
30 EXPECT_EQ(static_cast<uint8_t>(data[2]), 0xCA);
31 EXPECT_EQ(static_cast<uint8_t>(data[3]), 0xAE);
35 SmallVector<char, 16> data; local
38 raw_svector_ostream OS(data);
43 EXPECT_EQ(static_cast<uint8_t>(data[0]), 0xAE);
44 EXPECT_EQ(static_cast<uint8_t>(data[1]), 0xCA)
51 SmallString<16> data; local
66 SmallVector<char, 16> data; local
81 SmallString<16> data; local
100 SmallVector<char, 16> data; local
119 SmallString<16> data; local
138 SmallVector<char, 16> data; local
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/HiKeyDxe/
InitPeripherals.c 94 UINT32 Data;
105 Data = RST0_USBOTG_BUS | RST0_POR_PICOPHY |
107 MmioWrite32 (PERI_CTRL_BASE + SC_PERIPH_RSTDIS0, Data);
110 Value &= Data;
141 Data = MmioRead32 (PERI_CTRL_BASE + SC_PERIPH_CTRL5);
142 Data &= ~CTRL5_PICOPHY_BC_MODE;
143 Data |= CTRL5_USBOTG_RES_SEL | CTRL5_PICOPHY_ACAENB |
145 MmioWrite32 (PERI_CTRL_BASE + SC_PERIPH_CTRL5, Data);
190 UINT32 Data;
195 Data = MmioRead32 (AO_CTRL_BASE + SC_PW_MTCMOS_ACK_STAT0)
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Mmc/DwSdDxe/
DwSdDxe.c 145 UINT32 Data;
148 Data = BIT_CMD_WAIT_PRVDATA_COMPLETE | BIT_CMD_UPDATE_CLOCK_ONLY |
150 MmioWrite32 (DWSD_CMD, Data);
152 Data = MmioRead32 (DWSD_CMD);
153 if (!(Data & CMD_START_BIT))
155 Data = MmioRead32 (DWSD_RINTSTS);
156 if (Data & DWSD_INT_HLE)
170 UINT32 Divider, Rate, Data, Count;
187 Data = MmioRead32 (DWSD_STATUS);
190 } while (Data & DWSD_STS_DATA_BUSY)
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Library/ThunkProtocolList/
ThunkProtocolList.c 30 EMU_IO_THUNK_PROTOCOL Data;
84 CopyMem (&Private->Data, ThunkIo, sizeof (EMU_IO_THUNK_PROTOCOL));
85 Private->Data.Instance = Instance++;
86 Private->Data.ConfigString = StartString;
121 *Instance = &Private->Data;
123 } else if (*Instance == &Private->Data) {
130 *Instance = &Private->Data;
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/MemoryOverwriteRequestControlLock/
TcgMorLock.c 92 @param DataSize The size in bytes of Data-Buffer.
93 @param Data Point to the content of the variable.
95 @retval EFI_SUCCESS The firmware has successfully stored the variable and its data as
100 @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold the variable and its data.
117 IN VOID *Data
149 if ((DataSize != sizeof(UINT8)) || (Data == NULL) || (Attributes == 0)) {
160 if ((*(UINT8 *)Data != 1) && (*(UINT8 *)Data != 0)) {
186 UINT8 Data;
188 Data = 0;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
EhciReg.c 36 UINT32 Data;
45 &Data
50 Data = 0xFFFF;
53 return Data;
72 UINT32 Data;
81 &Data
86 Data = 0xFFFF;
89 return Data;
109 UINT32 Data;
120 &Data
    [all...]
  /external/llvm/lib/DebugInfo/CodeView/
CVTypeVisitor.cpp 16 static Error takeObject(ArrayRef<uint8_t> &Data, const T *&Res) {
17 if (Data.size() < sizeof(*Res))
19 Res = reinterpret_cast<const T *>(Data.data());
20 Data = Data.drop_front(sizeof(*Res));
28 ArrayRef<uint8_t> LeafData = Record.Data;
64 /// Visits the type records in Data. Sets the error flag on parse failures.
73 Error CVTypeVisitor::skipPadding(ArrayRef<uint8_t> &Data) {
74 if (Data.empty()
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Mmc/DwEmmcDxe/
DwEmmcDxe.c 121 UINT32 Data;
124 Data = BIT_CMD_WAIT_PRVDATA_COMPLETE | BIT_CMD_UPDATE_CLOCK_ONLY |
126 MmioWrite32 (DWEMMC_CMD, Data);
128 Data = MmioRead32 (DWEMMC_CMD);
129 if (!(Data & CMD_START_BIT))
131 Data = MmioRead32 (DWEMMC_RINTSTS);
132 if (Data & DWEMMC_INT_HLE)
146 UINT32 Divider, Rate, Data;
162 Data = MmioRead32 (DWEMMC_STATUS);
163 } while (Data & DWEMMC_STS_DATA_BUSY)
    [all...]

Completed in 610 milliseconds

1 2 3 4 5 6 7 891011>>