HomeSort by relevance Sort by last modified time
    Searched refs:Mem (Results 51 - 75 of 353) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
SmmCpuIo2.h 87 EFI_SMM_IO_ACCESS2 Mem;
CpuIo2.h 133 EFI_CPU_IO_PROTOCOL_ACCESS Mem;
  /external/clang/lib/AST/
StmtCXX.cpp 31 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
32 return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers);
40 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
41 return new (Mem) CXXTryStmt(Empty, numHandlers);
  /device/linaro/bootloader/edk2/OvmfPkg/Library/PciHostBridgeLib/
PciHostBridgeLib.c 44 L"Mem", L"I/O", L"Bus"
98 @param[in] Mem MMIO aperture.
125 IN PCI_ROOT_BRIDGE_APERTURE *Mem,
150 CopyMem (&RootBus->Mem, Mem, sizeof (*Mem));
217 PCI_ROOT_BRIDGE_APERTURE Mem;
244 Mem.Base = PcdGet64 (PcdPciMmio32Base);
245 Mem.Limit = PcdGet64 (PcdPciMmio32Base) + (PcdGet64 (PcdPciMmio32Size) - 1);
313 &Mem,
    [all...]
XenSupport.c 68 IN PCI_ROOT_BRIDGE_APERTURE *Mem,
118 // Mem Bar
135 MemAperture = Mem;
189 PCI_ROOT_BRIDGE_APERTURE Io, Mem, MemAbove4G, PMem, PMemAbove4G, *MemAperture;
205 Io.Base = Mem.Base = MemAbove4G.Base = PMem.Base = PMemAbove4G.Base = MAX_UINT64;
206 Io.Limit = Mem.Limit = MemAbove4G.Limit = PMem.Limit = PMemAbove4G.Limit = 0;
301 if (Mem.Base > Base) {
302 Mem.Base = Base;
304 if (Mem.Limit < Limit) {
305 Mem.Limit = Limit;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/
IoLib.c 103 return gCpuIo->Mem.Read (gCpuIo, Width, Address, Count, Buffer);
129 return gCpuIo->Mem.Write (gCpuIo, Width, Address, Count, Buffer);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/X64/
IoLib.c 103 return gCpuIo->Mem.Read (gCpuIo, Width, Address, Count, Buffer);
129 return gCpuIo->Mem.Write (gCpuIo, Width, Address, Count, Buffer);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
UsbHcMem.h 130 @param Mem The memory to free.
137 IN VOID *Mem,
142 Calculate the corresponding pci bus address according to the Mem parameter.
145 @param Mem The pointer to host memory.
153 IN VOID *Mem,
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
UsbHcMem.h 132 @param Mem The memory to free.
141 IN VOID *Mem,
146 Calculate the corresponding pci bus address according to the Mem parameter.
149 @param Mem The pointer to host memory.
157 IN VOID *Mem,
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciPei/
UsbHcMem.h 72 Calculate the corresponding pci bus address according to the Mem parameter.
75 @param Mem The pointer to host memory.
84 IN VOID *Mem,
92 @param Mem The pointer to pci memory.
101 IN VOID *Mem,
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
UsbHcMem.h 131 @param Mem The memory to free.
138 IN VOID *Mem,
143 Calculate the corresponding pci bus address according to the Mem parameter.
146 @param Mem The pointer to host memory.
154 IN VOID *Mem,
  /hardware/qcom/display/msm8960/liboverlay/
overlayRotator.cpp 71 ALOGE("%s error in closing rot mem %d", __FUNCTION__, i);
79 RotMem::Mem::Mem() : mCurrOffset(0) {
86 RotMem::Mem::~Mem() {
93 void RotMem::Mem::setReleaseFd(const int& fence) {
  /external/valgrind/none/tests/amd64/
redundantRexW.c 24 Mem;
50 void pp_Mem ( char* who, Mem* mem ) {
55 pp_UWord128( &mem->dqw[i] );
72 void xor_Mem ( Mem* src, Mem* dst ) {
78 void setup_regs_mem ( XMMRegs* regs, Mem* mem ) {
87 mem->dqw[i].b[j] = 0x52 + (ctr++ % 13);
91 void before_test ( XMMRegs* regs, Mem* mem )
170 Mem* mem; local
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceTargetLoweringX8632.cpp 166 Traits::X86OperandMem *TargetX8632::_sandbox_mem_reference(X86OperandMem *Mem) {
170 return Mem;
172 if (Mem->getIsRebased()) {
173 return Mem;
179 if (llvm::dyn_cast_or_null<ConstantRelocatable>(Mem->getOffset()) ==
181 return Mem;
185 if (Mem->getIndex() == nullptr) {
186 T = Mem->getBase();
187 } else if (Mem->getBase() == nullptr) {
188 T = Mem->getIndex()
    [all...]
  /external/clang/lib/Sema/
TypeLocBuilder.h 123 void *Mem = Context.Allocate(FullDataSize);
124 memcpy(Mem, &Buffer[Index], FullDataSize);
125 return TypeLoc(T, Mem);
  /external/compiler-rt/lib/profile/
InstrProfilingUtil.c 60 void *lprofPtrFetchAdd(void **Mem, long ByteIncr) {
61 void *Old = *Mem;
62 *((char **)Mem) += ByteIncr;
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 103 } Mem;
127 Mem = o.Mem;
158 return Mem.Base;
163 return Mem.Off;
168 return Mem.OffReg;
257 Op->Mem.Base = Base;
258 Op->Mem.Off = Off;
259 Op->Mem.OffReg = 0;
268 Op->Mem.Base = Base
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Protocol/CpuIo/
CpuIo.h 87 EFI_CPU_IO_PROTOCOL_ACCESS Mem;
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
MemImage.c 2 Functions to deal with Mem buffer
118 DummyPciRootBridgeIo.Mem.Read = DummyMemRead;
119 DummyPciRootBridgeIo.Mem.Write = DummyMemWrite;
201 Status = HMemImage.IoFncs->Mem.Read (
324 Status = HMemImage.IoFncs->Mem.Write (
  /external/capstone/contrib/windows_kernel/
libc.h 36 void __cdecl free(__inout_opt __drv_freesMem(Mem) void* ptr);
  /external/llvm/unittests/Support/
TrailingObjectsTest.cpp 34 void *Mem = ::operator new(totalSizeToAlloc<short>(NumShorts));
35 return new (Mem) Class1(ShortArray, NumShorts);
73 void *Mem =
75 Class2 *C = new (Mem) Class2(HasShort, HasDouble);
  /external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
CpuIo.h 108 @param Mem.Read
111 @param Mem.Write
122 EFI_CPU_IO_PROTOCOL_ACCESS Mem;
  /external/syslinux/gpxe/src/interface/efi/
efi_io.c 86 cpu_io->Io.Read : cpu_io->Mem.Read );
112 cpu_io->Io.Write : cpu_io->Mem.Write );
136 cpu_io->Io.Read : cpu_io->Mem.Read );
160 cpu_io->Io.Write : cpu_io->Mem.Write );
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciDxe/
XhciReg.c 37 Status = Xhc->PciIo->Mem.Read (
73 Status = Xhc->PciIo->Mem.Read (
111 Status = Xhc->PciIo->Mem.Read (
147 Status = Xhc->PciIo->Mem.Write (
180 Status = Xhc->PciIo->Mem.Write (
214 Status = Xhc->PciIo->Mem.Read (
250 Status = Xhc->PciIo->Mem.Write (
284 Status = Xhc->PciIo->Mem.Read (
320 Status = Xhc->PciIo->Mem.Write (
354 Status = Xhc->PciIo->Mem.Read (
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/CpuIo2OnCpuIoThunk/
CpuIo2OnCpuIoThunk.c 59 return mCpuIo->Mem.Read (
94 return mCpuIo->Mem.Write (

Completed in 411 milliseconds

1 23 4 5 6 7 8 91011>>