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

<<11121314151617181920>>

  /cts/tests/tests/opengl/libopengltest/
attach_shader_one.cpp 40 Data attachShaderOne(){
58 Data data = {error, count, -1}; local
62 return data;
attach_shader_ten.cpp 26 Data attachShaderTen(){
41 Data data = {error, count, -1}; local
44 return data;
attach_shader_two.cpp 27 Data attachShaderTwo(){
44 Data data = {error, count, -1}; local
47 return data;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Ppi/CpuIo/
CpuIo.h 124 IN UINT8 Data
133 IN UINT16 Data
142 IN UINT32 Data
151 IN UINT64 Data
192 IN UINT8 Data
201 IN UINT16 Data
210 IN UINT32 Data
219 IN UINT64 Data
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/BsDataHubStatusCode/
BsDataHubStatusCode.h 18 Header for the status code data hub logging component
52 // Private data declarations
63 UINT8 Data[BYTES_PER_RECORD];
79 Install a data hub listener.
99 IN EFI_STATUS_CODE_DATA * Data OPTIONAL
106 into the data hub.
128 The Event handler which will be notified to log data in Data Hub.
132 Event - Instance of the EFI_EVENT to signal whenever data is
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/DxeIoLibCpuIo/
DxeCpuIoLibInternal.h 45 @return Data read from registers in the EFI CPU I/O space.
59 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().
65 @param Data The value to write to the I/O port.
67 @return The paramter of Data.
75 IN UINT64 Data
89 @return Data read from registers in the EFI system memory space.
103 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().
109 @param Data The value to write to the I/O port.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
UsbHcMem.h 25 #define USB_HC_BIT_IS_SET(Data, Bit) \
26 ((BOOLEAN)(((Data) & USB_HC_BIT(Bit)) == USB_HC_BIT(Bit)))
46 // data to be on the same 4G memory.
  /device/linaro/bootloader/edk2/MdePkg/Library/DxeIoLibCpuIo2/
DxeCpuIo2LibInternal.h 39 @return Data read from registers in the EFI CPU I/O space.
53 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().
59 @param Data The value to write to the I/O port.
61 @return The paramter of Data.
69 IN UINT64 Data
83 @return Data read from registers in the EFI system memory space.
97 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().
103 @param Data The value to write to the I/O port.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/SmmIoLibSmmCpuIo2/
SmmCpuIoLibInternal.h 41 @return Data read from registers in the EFI CPU I/O space.
55 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().
61 @param Data The value to write to the I/O port.
63 @return The paramter of Data.
71 IN UINT64 Data
85 @return Data read from registers in the EFI system memory space.
99 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().
105 @param Data The value to write to the I/O port.
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtOemHookStatusCodeHandlerPei/
WinNtOemHookStatusCodeHandlerPei.c 41 IN CONST EFI_STATUS_CODE_DATA *Data OPTIONAL
49 (EFI_STATUS_CODE_DATA *) Data
  /external/clang/lib/AST/
APValue.cpp 139 setVector(((const Vec *)(const char *)RHS.Data.buffer)->Elts,
191 ((APSInt*)(char*)Data.buffer)->~APSInt();
193 ((APFloat*)(char*)Data.buffer)->~APFloat();
195 ((Vec*)(char*)Data.buffer)->~Vec();
197 ((ComplexAPSInt*)(char*)Data.buffer)->~ComplexAPSInt();
199 ((ComplexAPFloat*)(char*)Data.buffer)->~ComplexAPFloat();
201 ((LV*)(char*)Data.buffer)->~LV();
203 ((Arr*)(char*)Data.buffer)->~Arr();
205 ((StructData*)(char*)Data.buffer)->~StructData();
207 ((UnionData*)(char*)Data.buffer)->~UnionData()
    [all...]
  /external/clang/test/SemaCXX/
borland-extensions.cpp 51 struct Data {
56 unsigned long data; local
59 Data ata1 = { &guid_inl};
60 data = ata1.Guid->Data1;
  /external/doclava/src/com/google/doclava/
AuxTagInfo.java 19 import com.google.clearsilver.jsilver.data.Data;
45 public void makeHDF(Data data, String base) {
46 super.makeHDF(data, base);
48 data.setValue(base + "." + entry.getKey(), entry.getValue());
50 TagInfo.makeHDF(data, base + ".values", valuesTags());
KeywordEntry.java 19 import com.google.clearsilver.jsilver.data.Data;
28 public void makeHDF(Data data, String base) {
29 data.setValue(base + ".label", this.label);
30 data.setValue(base + ".href", this.href);
31 data.setValue(base + ".comment", this.comment);
  /external/elfutils/tests/
run-readelf-test3.sh 25 Owner Data size Type
  /external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
Iterate.java 20 import com.google.clearsilver.jsilver.data.Data;
35 // Set up some data.
36 Data data = jSilver.createData(); local
37 data.setValue("query", "Fruit");
38 data.setValue("results.0.title", "Banana");
39 data.setValue("results.0.url", "http://banana.com/");
40 data.setValue("results.1.title", "Apple");
41 data.setValue("results.1.url", "http://apple.com/")
    [all...]
JSilverTest.java 20 import com.google.clearsilver.jsilver.data.Data;
40 // Load data.
41 Data data = jSilver.createData(); local
43 jSilver.loadData(args[i], data);
47 jSilver.render(args[0], data, System.out);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
FirstFunction.java 19 import com.google.clearsilver.jsilver.data.Data;
40 Data thisNode = arg.getReference().getSymlink();
LastFunction.java 19 import com.google.clearsilver.jsilver.data.Data;
40 Data thisNode = arg.getReference().getSymlink();
NameFunction.java 19 import com.google.clearsilver.jsilver.data.Data;
27 * Returns the Data variable name for a local variable alias.
39 Data variable = variableValue.getReference();
SubcountFunction.java 19 import com.google.clearsilver.jsilver.data.Data;
40 Data thisNode = arg.getReference().getSymlink();
  /external/llvm/include/llvm/Object/
COFFImportFile.h 42 OS << StringRef(Data.getBufferStart() + sizeof(coff_import_header));
62 Data.getBufferStart());
  /external/llvm/include/llvm/Support/
MD5.h 4 * This is an OpenSSL-compatible implementation of the RSA Data Security, Inc.
39 // Any 32-bit or wider unsigned integer data type will do.
53 void update(ArrayRef<uint8_t> Data);
66 const uint8_t *body(ArrayRef<uint8_t> Data);
  /external/llvm/include/llvm/Transforms/Utils/
ModuleUtils.h 37 Constant *Data = nullptr);
41 Constant *Data = nullptr);
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 44 std::string Data;
45 raw_string_ostream OS(Data);

Completed in 1629 milliseconds

<<11121314151617181920>>