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

1 2 3 4 5 67 8 91011>>

  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/TemplateResetSystemLib/
ResetSystemLib.c 34 EfiResetShutdown the data buffer starts with a Null-terminated
35 Unicode string, optionally followed by additional binary data.
48 UINT8 Data;
57 Data = MmioRead8 (Address);
58 MmioWrite8 (Address, Data | 0x01);
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
Template.java 20 import com.google.clearsilver.jsilver.data.Data;
26 * Represents a template that can be rendered with data.
33 * @param data Data to merge with template.
38 void render(Data data, Appendable out, ResourceLoader resourceLoader) throws IOException;
50 * @param data Data to merge with template.
54 RenderingContext createRenderingContext(Data data, Appendable out, ResourceLoader resourceLoader)
    [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; }
  /external/llvm/lib/Fuzzer/
FuzzerInterface.h 15 // extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
30 // Executes the code under test with [Data, Data+Size) as the input.
33 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
42 // Mutates raw data in [Data, Data+Size) inplace.
45 size_t LLVMFuzzerCustomMutator(uint8_t *Data, size_t Size, size_t MaxSize,
59 // Mutates raw data in [Data, Data+Size) inplace
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue332/
Data.java 21 public class Data {
37 public Data(String label, BigDecimal value, String unit) {
59 public Data() {
64 return "Data{" +
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
DynamicLibrary.h 40 // Opaque data used to interface with OS-specific dynamic library handling.
41 void *Data;
43 explicit DynamicLibrary(void *data = &Invalid) : Data(data) {}
46 bool isValid() { return Data != &Invalid; }
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
hw.c 78 UINT32 Data;
81 Status = uefi_call_wrapper(GlobalIoFncs->Io.Read, 5, GlobalIoFncs, Width, (UINT64)Port, 1, &Data);
83 return Data;
91 IN UINTN Data
96 Status = uefi_call_wrapper(GlobalIoFncs->Io.Write, 5, GlobalIoFncs, Width, (UINT64)Port, 1, &Data);
98 return (UINT32)Data;
108 UINT32 Data;
111 Status = uefi_call_wrapper(GlobalIoFncs->Pci.Read, 5, GlobalIoFncs, Width, (UINT64)Address, 1, &Data);
113 return Data;
121 IN UINTN Data
    [all...]
  /external/webrtc/webrtc/audio/
audio_sink.h 29 struct Data {
30 Data(int16_t* data,
35 : data(data),
41 int16_t* data; // The actual 16bit audio data. member in struct:webrtc::AudioSinkInterface::Data
44 size_t channels; // Number of channels in the audio data.
48 virtual void OnData(const Data& audio) = 0;
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.cpp 18 m_pTestee = new LinearAllocator<Data, CHUNK_SIZE>();
38 Data* pointer = m_pTestee->allocate(10);
45 Data* pointer = m_pTestee->allocate();
52 Data* pointer = m_pTestee->allocate(CHUNK_SIZE + 1);
59 Data* pointer = m_pTestee->allocate();
68 Data* pointer = m_pTestee->allocate();
69 Data data(7, 7, 7, 7);
70 m_pTestee->construct(pointer, data);
79 Data* pointer = m_pTestee->allocate(10)
    [all...]
RTLinearAllocatorTest.cpp 18 m_pTestee = new LinearAllocator<Data, 0>(CHUNK_SIZE);
39 Data* pointer = m_pTestee->allocate(10);
46 Data* pointer = m_pTestee->allocate();
53 Data* pointer = m_pTestee->allocate(CHUNK_SIZE + 1);
60 Data* pointer = m_pTestee->allocate();
69 Data* pointer = m_pTestee->allocate();
70 Data data(7, 7, 7, 7);
71 m_pTestee->construct(pointer, data);
80 Data* pointer = m_pTestee->allocate(10)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandler.java 28 import android.provider.ContactsContract.Data;
37 * Handles inserts and update for a specific Data type.
42 Data.DATA1, Data.DATA2};
50 Data.RAW_CONTACT_ID,
51 Data.IS_PRIMARY,
52 Data.DATA1,
56 Data._ID,
58 Data.RAW_CONTACT_ID,
59 Data.IS_PRIMARY
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerInterface.h 15 // extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
30 // Executes the code under test with [Data, Data+Size) as the input.
33 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
42 // Mutates raw data in [Data, Data+Size) inplace.
45 size_t LLVMFuzzerCustomMutator(uint8_t *Data, size_t Size, size_t MaxSize,
59 // Mutates raw data in [Data, Data+Size) inplace
    [all...]
  /external/clang/include/clang/AST/
DeclContextInternals.h 10 // This file defines the data structures used in the implementation
34 /// \brief When in vector form, this is what the Data pointer points to.
41 /// \brief The stored data, which will be either a pointer to a NamedDecl,
44 llvm::PointerUnion<NamedDecl*, DeclsAndHasExternalTy> Data;
49 StoredDeclsList(StoredDeclsList &&RHS) : Data(RHS.Data) {
50 RHS.Data = (NamedDecl *)nullptr;
62 Data = RHS.Data;
63 RHS.Data = (NamedDecl *)nullptr
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/
Dump.c 83 @param[in] Data The pointer to the buffer.
89 IN UINT8 *Data,
95 Print (L"%02x ", Data[Index]);
259 @param[in] Data The pointer to the EFI_IPSEC_SPD_DATA structure.
267 IN EFI_IPSEC_SPD_DATA *Data,
290 Print (L"%s ", MapIntegerToString (Data->Action, mMapIpSecAction));
291 Print (L"PF:%08x ", Data->PackageFlag);
294 while (Data->Name[Index] != 0) {
295 DataName[Index] = (CHAR16) Data->Name[Index];
303 if (Data->Action == EfiIPsecActionProtect) {
    [all...]
  /cts/tests/tests/opengl/libopengltest/
attach_shader_eight.h 27 Data attachShaderEight();
attach_shader_eleven.h 26 Data attachShaderEleven();
attach_shader_five.h 27 Data attachShaderFive();
attach_shader_four.h 27 Data attachShaderFour();
attach_shader_nine.h 27 Data attachShaderNine();
attach_shader_one.h 27 Data attachShaderOne();
attach_shader_seven.h 27 Data attachShaderSeven();
attach_shader_six.h 27 Data attachShaderSix();
attach_shader_ten.h 26 Data attachShaderTen();
attach_shader_three.h 27 Data attachShaderThree();
  /device/linaro/bootloader/edk2/ArmPkg/Include/
AsmMacroIoLibV8.h 66 #define LoadConstant(Data) \
67 ldr x0, =Data
69 #define LoadConstantToReg(Data, Reg) \
70 ldr Reg, =Data

Completed in 569 milliseconds

1 2 3 4 5 67 8 91011>>