Home
last modified time | relevance | path

Searched refs:LocalAddr (Results 1 – 17 of 17) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetClient.h231 uintptr_t LocalAddr = reinterpret_cast<uintptr_t>(Contents.get()); in getLocalAddress() local
232 LocalAddr = alignTo(LocalAddr, Align); in getLocalAddress()
233 return reinterpret_cast<char *>(LocalAddr); in getLocalAddress()
DOrcRemoteTargetServer.h404 void *LocalAddr = reinterpret_cast<void *>(static_cast<uintptr_t>(Addr)); in handleSetProtections() local
406 << LocalAddr << " to " in handleSetProtections()
410 return Allocator.setProtections(LocalAddr, Flags); in handleSetProtections()
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldCheckerImpl.h60 Optional<uint64_t> getSectionLoadAddress(void *LocalAddr) const;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldCheckerImpl.h60 Optional<uint64_t> getSectionLoadAddress(void *LocalAddr) const;
/external/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetServer.h412 void *LocalAddr = reinterpret_cast<void *>(static_cast<uintptr_t>(Addr)); in handleSetProtections() local
413 DEBUG(dbgs() << " Allocator " << Id << " set permissions on " << LocalAddr in handleSetProtections()
417 return Allocator.setProtections(LocalAddr, Flags); in handleSetProtections()
DOrcRemoteTargetClient.h387 uintptr_t LocalAddr = reinterpret_cast<uintptr_t>(Contents.get()); in getLocalAddress() local
388 LocalAddr = alignTo(LocalAddr, Align); in getLocalAddress()
389 return reinterpret_cast<char *>(LocalAddr); in getLocalAddress()
/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetServer.h418 void *LocalAddr = reinterpret_cast<void *>(static_cast<uintptr_t>(Addr)); in handleSetProtections() local
420 << LocalAddr << " to " in handleSetProtections()
424 return Allocator.setProtections(LocalAddr, Flags); in handleSetProtections()
DOrcRemoteTargetClient.h232 uintptr_t LocalAddr = reinterpret_cast<uintptr_t>(Contents.get()); in getLocalAddress() local
233 LocalAddr = alignTo(LocalAddr, Align); in getLocalAddress()
234 return reinterpret_cast<char *>(LocalAddr); in getLocalAddress()
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/
Dares_iphlpapi.h42 SOCKET_ADDRESS LocalAddr; member
/external/mdnsresponder/mDNSWindows/mdnsNSP/
DmdnsNSP.c1495 outQuerySet->lpcsaBuffer[ index ].LocalAddr.lpSockaddr = NULL; in QueryCopyQuerySetTo()
1496 outQuerySet->lpcsaBuffer[ index ].LocalAddr.iSockaddrLength = 0; in QueryCopyQuerySetTo()
1515 outQuerySet->lpcsaBuffer[ index ].LocalAddr.lpSockaddr = NULL; in QueryCopyQuerySetTo()
1516 outQuerySet->lpcsaBuffer[ index ].LocalAddr.iSockaddrLength = 0; in QueryCopyQuerySetTo()
1786 if( inQuerySet->lpcsaBuffer[ i ].LocalAddr.lpSockaddr && in DebugDumpQuerySet()
1787 ( inQuerySet->lpcsaBuffer[ i ].LocalAddr.iSockaddrLength > 0 ) ) in DebugDumpQuerySet()
1790 inQuerySet->lpcsaBuffer[ i ].LocalAddr.lpSockaddr ); in DebugDumpQuerySet()
/external/clang/lib/CodeGen/
DCGDebugInfo.h347 llvm::Value *LocalAddr,
DCGDebugInfo.cpp3352 llvm::Value *LocalAddr, in EmitDeclareOfBlockLiteralArgVariable() argument
3487 if (LocalAddr) { in EmitDeclareOfBlockLiteralArgVariable()
3490 LocalAddr, 0, debugVar, DBuilder.createExpression(), in EmitDeclareOfBlockLiteralArgVariable()
/external/llvm-project/clang/lib/CodeGen/
DCGDebugInfo.h475 llvm::AllocaInst *LocalAddr,
DCGOpenMPRuntimeGPU.cpp1951 Address LocalAddr = CGF.CreateMemTemp(VarTy, Rec.second.FD->getName()); in emitGenericVarsProlog() local
1954 LocalAddr.getPointer(), GlobalPtr.getPointer()), in emitGenericVarsProlog()
1955 LocalAddr.getAlignment()); in emitGenericVarsProlog()
4140 Address LocalAddr = CGF.GetAddrOfLocalVar(TargetParam); in getParameterAddress() local
4149 LocalAddr, /*Volatile=*/false, TargetTy, SourceLocation()); in getParameterAddress()
DCGStmtOpenMP.cpp513 Address LocalAddr(Address::invalid()); in emitOutlinedFunctionPrologue() local
515 LocalAddr = CGM.getOpenMPRuntime().getParameterAddress(CGF, Args[Cnt], in emitOutlinedFunctionPrologue()
518 LocalAddr = CGF.GetAddrOfLocalVar(Args[Cnt]); in emitOutlinedFunctionPrologue()
525 LocalAddrs.insert({Args[Cnt], {CurVD, LocalAddr}}); in emitOutlinedFunctionPrologue()
531 LValue ArgLVal = CGF.MakeAddrLValue(LocalAddr, Args[Cnt]->getType(), in emitOutlinedFunctionPrologue()
/external/boringssl/src/ssl/test/runner/
Dconn.go141 func (c *Conn) LocalAddr() net.Addr { func
142 return c.conn.LocalAddr()
/external/llvm-project/polly/lib/CodeGen/
DPPCGCodeGeneration.cpp1293 Value *LocalAddr = ExprBuilder.create(LocalIndex); in createKernelCopy() local
1300 Builder.CreateStore(Load, LocalAddr); in createKernelCopy()
1302 LoadInst *Load = Builder.CreateLoad(LocalAddr, "shared.write"); in createKernelCopy()