HomeSort by relevance Sort by last modified time
    Searched full:outty (Results 1 - 5 of 5) sorted by null

  /external/compiler-rt/BlocksRuntime/tests/
large-struct.c 21 BobTheStruct outty; local
26 memset(&outty, 0x2A, sizeof(outty));
35 outty = copyStruct(inny);
37 if ( &inny == &outty ) {
42 if ( (inny.ps[i] != outty.ps[i]) || (inny.qs[i] != outty.qs[i]) ) {
small-struct.c 21 MiniStruct outty; local
25 memset(&outty, 0x2A, sizeof(outty));
32 outty = copyStruct(inny);
34 if ( &inny == &outty ) {
38 if ( (inny.a != outty.a) || (inny.b != outty.b) ) {
  /external/clang/test/SemaCXX/
blocks-1.cpp 13 BobTheStruct outty; local
24 outty = copyStruct(inny);
26 if ( &inny == &outty ) {
30 if ( (inny.ps[i] != outty.ps[i]) || (inny.qs[i] != outty.qs[i]) ) {
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 282 llvm::Type *OutTy = NULL;
285 OutTy = Args->getType();
286 AOut = Builder.CreateAlloca(OutTy, 0, "AOut");
287 OutStep = getStepValue(&DL, OutTy, Arg_outstep);
290 Builder.CreateStructGEP(Arg_p, 1)), OutTy), AOut);
367 Builder.CreatePtrToInt(OutPtr, Int32Ty), OutStep), OutTy);
490 llvm::Type *OutTy = NULL;
497 OutTy = Args->getType();
500 OutTy = OutBaseTy->getPointerTo();
503 AOut = Builder.CreateAlloca(OutTy, 0, "AOut")
    [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 289 QualType OutTy = OutputExpr->getType();
290 if (Context.hasSameType(InTy, OutTy))
306 if (OutTy->isIntegerType() || OutTy->isPointerType())
308 else if (OutTy->isRealFloatingType())
319 uint64_t OutSize = Context.getTypeSize(OutTy);
359 (OutTy->isBooleanType() ? CK_IntegralToBoolean : CK_IntegralCast);
360 InputExpr = ImpCastExprToType(InputExpr, OutTy, castKind).take();
368 << InTy << OutTy << OutputExpr->getSourceRange()

Completed in 4680 milliseconds