Searched refs:Destination (Results 1 - 25 of 26) sorted by relevance

12

/external/parameter-framework/upstream/utility/
H A DBinaryCopy.hpp49 * @tparam Destination the destination type (even if it is a reference, this
54 template <class Destination, class Source>
55 typename std::remove_reference<Destination>::type binaryCopy(const Source source)
57 static_assert(sizeof(Source) == sizeof(Destination),
58 "Source and Destination must have the same size");
60 using Destination_ = decltype(binaryCopy<Destination>(source));
/external/clang/test/CodeGen/
H A Dms-intrinsics.c29 void *test_InterlockedCompareExchangePointer(void * volatile *Destination, argument
31 return _InterlockedCompareExchangePointer(Destination, Exchange, Comparand);
34 // CHECK: define{{.*}}i8* @test_InterlockedCompareExchangePointer(i8** %Destination, i8* %Exchange, i8* %Comparand){{.*}}{
35 // CHECK: %[[DEST:[0-9]+]] = bitcast i8** %Destination to [[iPTR]]*
/external/libcxxabi/test/
H A Ddynamic_cast_stress.pass.cpp55 typedef B<Width/2, Depth> Destination; typedef
56 // typedef A<Width, Depth> Destination;
57 Destination *b = nullptr;
60 b = dynamic_cast<Destination*>((C<Width/2, 0>*)&a);
/external/e2fsprogs/util/
H A Dinstall-symlink.in49 echo $DEST: Destination pathname must be absolute
/external/harfbuzz_ng/win32/
H A Dcreate-lists.bat31 echo Destination NMake snippet file must be specified
/external/compiler-rt/lib/builtins/
H A Dfp_extend.h72 #error Destination should be single, double, or quad precision!
H A Dfp_trunc.h60 #error Destination should be single precision or double precision!
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_atomic_msvc.h37 short volatile *Destination, // NOLINT
42 long long volatile *Destination, // NOLINT
46 void *volatile *Destination,
51 long volatile *Destination, // NOLINT
/external/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h167 unsigned Destination; member in struct:llvm::MemoryDepChecker::Dependence
171 Dependence(unsigned Source, unsigned Destination, DepType Type) argument
172 : Source(Source), Destination(Destination), Type(Type) {}
716 return LAI.getDepChecker().getMemoryInstructions()[Destination];
H A DDependenceAnalysis.h83 Instruction *Destination) :
85 Dst(Destination),
82 Dependence(Instruction *Source, Instruction *Destination) argument
/external/vboot_reference/utility/include/
H A Deficompress.h82 IN OUT VOID *Destination,
/external/llvm/lib/Transforms/Scalar/
H A DLoopLoadElimination.cpp141 Instruction *Destination = Dep.getDestination(LAI); local
146 if (isa<LoadInst>(Destination))
147 LoadsWithUnknownDepedence.insert(Destination);
155 std::swap(Source, Destination);
162 auto *Load = dyn_cast<LoadInst>(Destination);
H A DLoopDistribute.cpp564 --Accesses[Dep.Destination].NumUnsafeDependencesStartOrEnd;
/external/vboot_reference/utility/
H A Defidecompress.c720 IN OUT VOID *Destination,
736 Destination - The destination buffer to store the decompressed data
761 Dst = Destination;
884 IN OUT VOID *Destination,
900 Destination - The destination buffer to store the decompressed data
918 Destination,
968 IN OUT VOID *Destination,
984 Destination - The destination buffer to store the decompressed data
1002 Destination,
717 Decompress( IN VOID *Source, IN UINT32 SrcSize, IN OUT VOID *Destination, IN UINT32 DstSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize, IN UINT8 Version ) argument
881 EfiDecompress( IN VOID *Source, IN UINT32 SrcSize, IN OUT VOID *Destination, IN UINT32 DstSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize ) argument
965 TianoDecompress( IN VOID *Source, IN UINT32 SrcSize, IN OUT VOID *Destination, IN UINT32 DstSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize ) argument
/external/zlib/src/as400/
H A Dzlib.inc114 D dest 65535 options(*varsize) Destination buffer
115 D destLen 10U 0 Destination length
120 D dest 65535 options(*varsize) Destination buffer
121 D destLen 10U 0 Destination length
130 D dest 65535 options(*varsize) Destination buffer
131 D destLen 10U 0 Destination length
325 D dest like(z_stream) Destination stream
372 D dest like(z_stream) Destination stream
/external/clang/lib/CodeGen/
H A DCGCleanup.cpp264 BranchFixups.back().Destination == nullptr)
315 if (Fixup.Destination == nullptr) continue;
333 if (!CasesAdded.insert(Fixup.Destination).second)
337 Fixup.Destination);
378 if (Fixup.Destination != Block) continue;
380 Fixup.Destination = nullptr;
837 if (!Fixup.Destination) continue;
995 Fixup.Destination = Dest.getBlock();
H A DEHScopeStack.h47 llvm::BasicBlock *Destination; member in struct:clang::CodeGen::BranchFixup
H A DCGBuiltin.cpp1832 llvm::Value *Destination = local
1842 auto Result = Builder.CreateAtomicCmpXchg(Destination, Comparand, Exchange,
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mws/
H A Dresponse.py709 class Destination(ResponseElement): class in inherits:ResponseElement
714 DestinationList = MemberList(Destination)
718 Destination = Element(Destination) variable in class:Subscription
732 Destination = Element(PhysicalDestination=Element()) variable in class:OrderReferenceDetails
/external/v8/src/s390/
H A Dcode-stubs-s390.h352 enum Destination { kFPRegisters, kCoreRegisters }; enum in class:v8::internal::FloatingPointHelper
/external/llvm/lib/Transforms/Utils/
H A DLocal.cpp79 BasicBlock *Destination = Cond->getZExtValue() ? Dest1 : Dest2; local
91 Builder.CreateBr(Destination);
/external/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp1302 OS.indent(Depth + 2) << *Instrs[Destination] << "\n";
H A DDependenceAnalysis.cpp230 FullDependence::FullDependence(Instruction *Source, Instruction *Destination, argument
233 : Dependence(Source, Destination), Levels(CommonLevels),
/external/icu/icu4c/source/data/
H A Dmakedata.mak116 # Destination directory for the common data DLL file.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 458 milliseconds

12