HomeSort by relevance Sort by last modified time
    Searched refs:Dest (Results 26 - 50 of 78) sorted by null

12 3 4

  /external/llvm/include/llvm/
Linker.h 250 Module* Src, ///< Module linked into \p Dest
257 /// control of the \p Src module and link it into the \p Dest module. The
260 /// the \p Dest module will remain. The \p Src module is linked into the
267 static bool LinkModules(Module* Dest, Module* Src, unsigned Mode,
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compat.h 274 template <class Dest, class Source>
275 inline Dest bit_cast(const Source& source) {
276 // Compile time assertion: sizeof(Dest) == sizeof(Source)
277 // A compile error here means your Dest and Source have different sizes.
278 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 :
280 Dest dest; local
281 memcpy(&dest, &source, sizeof(dest));
282 return dest;
    [all...]
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 98 static Edge getEdge(const BType *Src, const BType *Dest) {
99 return std::make_pair(Src, Dest);
153 const BType *GetPath(const BType *Src, const BType *Dest,
SparsePropagation.h 191 void markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest);
  /external/clang/lib/CodeGen/
CGStmt.cpp 303 JumpDest &Dest = LabelMap[D];
304 if (Dest.isValid()) return Dest;
307 Dest = JumpDest(createBasicBlock(D->getName()),
310 return Dest;
314 JumpDest &Dest = LabelMap[D];
318 if (!Dest.isValid()) {
319 Dest = getJumpDestInCurrentScope(D->getName());
324 assert(!Dest.getScopeDepth().isValid() && "already emitted label!");
325 Dest = JumpDest(Dest.getBlock()
    [all...]
CGExpr.cpp     [all...]
CGExprCXX.cpp 401 AggValueSlot Dest) {
402 assert(!Dest.isIgnored() && "Must have a destination!");
409 if (E->requiresZeroInitialization() && !Dest.isZeroed()) {
414 EmitNullInitialization(Dest.getAddr(), E->getType());
418 EmitNullBaseClassInitialization(*this, Dest.getAddr(), CD->getParent());
434 EmitAggExpr(E->getArg(0), Dest);
441 EmitCXXAggrConstructorCall(CD, arrayType, Dest.getAddr(),
466 EmitCXXConstructorCall(CD, Type, ForVirtualBase, Dest.getAddr(),
472 CodeGenFunction::EmitSynthesizedCXXCopyCtor(llvm::Value *Dest,
488 EmitNullInitialization(Dest, E->getType())
    [all...]
CGClass.cpp 424 llvm::Value *Dest = LHS.getAddress();
429 Dest = CGF.Builder.CreateInBoundsGEP(Dest, ArrayIndex, "destaddress");
436 LValue lvalue = CGF.MakeAddrLValue(Dest, T);
439 CGF.EmitComplexExprIntoAddr(MemberInit->getInit(), Dest,
443 AggValueSlot::forAddr(Dest, LHS.getQuals(),
    [all...]
  /external/libvpx/vp8/common/x86/
boolcoder.cxx 198 bool_writer::bool_writer( c_spec& s, uchar *Dest, size_t Len)
200 Bstart( Dest),
201 Bend( Len? Dest+Len : 0),
202 B( Dest)
204 assert( Dest);
  /external/llvm/include/llvm/ADT/
SmallVector.h 188 /// starting with "Dest", constructing elements into it as needed.
190 static void uninitialized_copy(It1 I, It1 E, It2 Dest) {
191 std::uninitialized_copy(I, E, Dest);
236 /// starting with "Dest", constructing elements into it as needed.
238 static void uninitialized_copy(It1 I, It1 E, It2 Dest) {
240 std::uninitialized_copy(I, E, Dest);
244 /// starting with "Dest", constructing elements into it as needed.
246 static void uninitialized_copy(T1 *I, T1 *E, T2 *Dest) {
250 memcpy(Dest, I, (E-I)*sizeof(T));
  /external/llvm/lib/Transforms/Utils/
BreakCriticalEdges.cpp 96 const BasicBlock *Dest = TI->getSuccessor(SuccNum);
97 const_pred_iterator I = pred_begin(Dest), E = pred_end(Dest);
161 /// dest go to one block instead of each going to a different block, but isn't
InlineFunction.cpp 320 void addIncomingPHIValuesForInto(BasicBlock *src, BasicBlock *dest) const {
321 BasicBlock::iterator I = dest->begin();
409 // Try to find or make an inner unwind dest, which will fail if we
410 // can't find a selector call for the outer unwind dest.
411 BasicBlock *dest = getInnerUnwindDest();
412 bool hasSelector = (dest != 0);
414 // If we failed, just use the outer unwind dest, dropping the
417 dest = OuterUnwindDest;
420 BranchInst::Create(dest, src);
424 addIncomingPHIValuesForInto(src, dest);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 64 const Expr *Dest,
842 const Expr *Size, const Expr *Dest,
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 346 void VisitCXXConstructExpr(const CXXConstructExpr *E, const MemRegion *Dest,
350 const MemRegion *Dest, const Stmt *S,
359 void VisitAggExpr(const Expr *E, const MemRegion *Dest, ExplodedNode *Pred,
382 ExplodedNodeSet &dest);
  /external/clang/include/clang/AST/
ASTVector.h 207 /// starting with "Dest", constructing elements into it as needed.
209 static void uninitialized_copy(It1 I, It1 E, It2 Dest) {
210 std::uninitialized_copy(I, E, Dest);
  /external/libvpx/vp8/encoder/ppc/
fdct_altivec.asm 73 vperm \Dst, v10, v10, v5 ;# Dest = A0 B0 A1 B1 A2 B2 A3 B3
95 .macro two_rows_h Dest
104 two_rows_horiz \Dest
  /external/llvm/include/llvm-c/
Core.h 404 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
417 void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest);
568 void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRef *Dest);
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 279 char *Dest = new char[Size];
280 Values.push_back(Dest);
281 DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest << "\n");
283 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
284 Dest[Size-1] = 0;
286 // Endian safe: Array[i] = (PointerTy)Dest;
287 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
    [all...]
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp     [all...]
X86InstrInfo.cpp     [all...]
  /external/llvm/include/llvm/Support/
PathV1.h     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 201 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 74 // dest address will be promotable. See if we can find a better type than the
112 Value *Dest = Builder->CreateBitCast(MI->getArgOperand(0), NewDstPtrTy);
115 StoreInst *S = Builder->CreateStore(L, Dest, MI->isVolatile());
146 Value *Dest = MI->getDest();
147 unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
149 Dest = Builder->CreateBitCast(Dest, NewDstPtrTy);
156 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
212 // then the source and dest pointers can't alias, so we can change this
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/zlib/contrib/delphi/
ZLib.pas 89 constructor Create(CompressionLevel: TCompressionLevel; Dest: TStream);
233 procedure _memcpy(dest, source: Pointer; count: Integer); cdecl;
235 Move(source^, dest^, count);
407 Dest: TStream);
412 inherited Create(Dest);

Completed in 1046 milliseconds

12 3 4