/external/guava/guava/src/com/google/common/util/concurrent/ |
D | Monitor.java | 357 public void enterWhen(Guard guard) throws InterruptedException { in enterWhen() argument 358 if (guard.monitor != this) { in enterWhen() 366 waitInterruptibly(guard, reentrant); in enterWhen() 378 public void enterWhenUninterruptibly(Guard guard) { in enterWhenUninterruptibly() argument 379 if (guard.monitor != this) { in enterWhenUninterruptibly() 387 waitUninterruptibly(guard, reentrant); in enterWhenUninterruptibly() 403 public boolean enterWhen(Guard guard, long time, TimeUnit unit) throws InterruptedException { in enterWhen() argument 404 if (guard.monitor != this) { in enterWhen() 421 satisfied = waitInterruptibly(guard, remainingNanos, reentrant); in enterWhen() 436 public boolean enterWhenUninterruptibly(Guard guard, long time, TimeUnit unit) { in enterWhenUninterruptibly() argument [all …]
|
/external/chromium/android/ |
D | generateAndroidForwardingHeader.pl | 62 $guard = $forward; 63 $guard =~ s/[\.\/\\-]/_/g; 67 print $handle "#ifndef _${guard}_\n"; 68 print $handle "#define _${guard}_\n\n"; 70 print $handle "#endif // _${guard}_\n";
|
/external/valgrind/main/none/tests/ppc32/ |
D | round.c | 589 int guard = 0; in check_single_guarded_arithmetic_op() local 609 guard = g & 7; in check_single_guarded_arithmetic_op() 624 guard = (0x10-g); in check_single_guarded_arithmetic_op() 625 Z.layout.frac = guard>>3; in check_single_guarded_arithmetic_op() 628 guard &= 7; in check_single_guarded_arithmetic_op() 641 guard = g & 7; in check_single_guarded_arithmetic_op() 645 guard = g & 7; in check_single_guarded_arithmetic_op() 646 if ((guard & 1) == 0) { in check_single_guarded_arithmetic_op() 679 guard = ((g & 7) + 0x4) & 7; in check_single_guarded_arithmetic_op() 701 switch(guard) { in check_single_guarded_arithmetic_op() [all …]
|
/external/valgrind/main/none/tests/ppc64/ |
D | round.c | 589 int guard = 0; in check_single_guarded_arithmetic_op() local 609 guard = g & 7; in check_single_guarded_arithmetic_op() 624 guard = (0x10-g); in check_single_guarded_arithmetic_op() 625 Z.layout.frac = guard>>3; in check_single_guarded_arithmetic_op() 628 guard &= 7; in check_single_guarded_arithmetic_op() 641 guard = g & 7; in check_single_guarded_arithmetic_op() 645 guard = g & 7; in check_single_guarded_arithmetic_op() 646 if ((guard & 1) == 0) { in check_single_guarded_arithmetic_op() 679 guard = ((g & 7) + 0x4) & 7; in check_single_guarded_arithmetic_op() 701 switch(guard) { in check_single_guarded_arithmetic_op() [all …]
|
/external/stlport/src/ |
D | num_get_float.cpp | 344 uint32 guard; /* First guard bit */ in _Stl_atod() local 403 guard = 0; in _Stl_atod() 408 guard = (uint32) ((value>> 63) & 1 ); in _Stl_atod() 413 guard = (uint32) (((value>> lead0)-1) & 1); in _Stl_atod() 418 if (guard && ((value & 1) || rest) ) { in _Stl_atod() 431 guard = (uint32) value & 1; in _Stl_atod() 441 if (guard) { in _Stl_atod() 534 uint32_t guard = (uint32) vv.i64 & 1; in _Stl_atodT() local 545 if (guard) { in _Stl_atodT() 600 uint32_t guard; in _Stl_atodT() local [all …]
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | 2011-11-01-lftrptr.ll | 19 %guard = icmp ult i8* null, %end 20 br i1 %guard, label %preheader, label %exit 44 %guard = icmp ult i8* %buf, %end 45 br i1 %guard, label %preheader, label %exit 72 %guard = icmp ult i32 0, %cnt 73 br i1 %guard, label %preheader, label %exit 102 %guard = icmp ult i32 %bi, %cnt 103 br i1 %guard, label %preheader, label %exit
|
/external/v8/test/mjsunit/ |
D | try.js | 60 function guard(f) { try { f(); } catch (o) { return o; } } function 61 assertEquals('baz', guard(function() { throw 'baz'; })); 63 assertEquals(1, guard(function() { try { throw 1; } finally { } })); 64 assertEquals(2, guard(function() { try { throw 2; } finally { var x = 12; } })); 65 assertEquals(4, guard(function() { try { throw 3; } finally { throw 4; } }));
|
/external/llvm/test/CodeGen/Thumb2/ |
D | frameless2.ll | 6 … %suppress, %struct.noise3* nocapture %in, %struct.noiseguard* nocapture %guard, double %userbias)… 8 %0 = getelementptr %struct.noiseguard* %guard, i32 %block, i32 2; <i32*> [#uses=1]
|
/external/webkit/Source/WebCore/bindings/scripts/ |
D | CodeGeneratorGObject.pm | 616 my $guard = $className . "_h"; 619 #ifndef $guard 620 #define $guard 1104 my $guard = $className . "_h"; 1107 push(@hPrefixGuardEnd, "#endif /* $guard */\n"); 1116 my $guard = uc(decamelize($className)) . "_PRIVATE_H"; 1128 #ifndef $guard 1129 #define $guard 1165 #endif /* ${guard} */
|
/external/webkit/Source/WebKit/chromium/src/ |
D | ExternalPopupMenu.cpp | 106 RefPtr<ExternalPopupMenu> guard(this); in didAcceptIndex() local 121 RefPtr<ExternalPopupMenu> guard(this); in didCancel() local
|
/external/llvm/test/Analysis/ScalarEvolution/ |
D | scev-aa.ll | 46 br i1 %k, label %guard, label %return 48 guard: 53 %j = phi i64 [ 0, %guard ], [ %j.next, %outer.latch ] 103 br i1 %k, label %guard, label %return 105 guard: 110 %j = phi i64 [ 0, %guard ], [ %j.next, %outer.latch ]
|
D | 2011-03-09-ExactNoMaxBECount.ll | 5 ; the condition "icmp %4 < 2" does not guard the outer loop.
|
/external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/ |
D | AudioFileReaderThread.c | 463 SDLOSXCAGuard *guard = sReaderThread->GetGuard(sReaderThread); in AudioFileManager_AfterRender() local 464 if (guard->Try(guard, &didLock)) { in AudioFileManager_AfterRender() 467 guard->Unlock(guard); in AudioFileManager_AfterRender()
|
/external/clang/lib/CodeGen/ |
D | ItaniumCXXABI.cpp | 1091 llvm::GlobalVariable *guard = CGM.getStaticLocalDeclGuardAddress(&D); in EmitGuardedInit() local 1092 if (!guard) { in EmitGuardedInit() 1103 guard = new llvm::GlobalVariable(CGM.getModule(), guardTy, in EmitGuardedInit() 1107 guard->setVisibility(var->getVisibility()); in EmitGuardedInit() 1109 CGM.setStaticLocalDeclGuardAddress(&D, guard); in EmitGuardedInit() 1127 llvm::Value *V = Builder.CreateLoad(guard); in EmitGuardedInit() 1148 Builder.CreateLoad(Builder.CreateBitCast(guard, CGM.Int8PtrTy)); in EmitGuardedInit() 1175 = Builder.CreateCall(getGuardAcquireFn(CGM, guardPtrTy), guard); in EmitGuardedInit() 1183 CGF.EHStack.pushCleanup<CallGuardAbort>(EHCleanup, guard); in EmitGuardedInit() 1196 Builder.CreateCall(getGuardReleaseFn(CGM, guardPtrTy), guard); in EmitGuardedInit() [all …]
|
/external/clang/test/CodeGen/ |
D | 2007-09-12-PragmaPack.c | 24 uint32_t guard; member
|
/external/valgrind/main/memcheck/ |
D | mc_translate.c | 1165 di->guard = cond; in complainIfUndefined() 3828 IRAtom* guard ) in do_shadow_Store() argument 3853 if (guard) { in do_shadow_Store() 3854 tl_assert(isOriginalAtom(mce, guard)); in do_shadow_Store() 3855 tl_assert(typeOfIRExpr(mce->sb->tyenv, guard) == Ity_I1); in do_shadow_Store() 3954 if (guard) diLo64->guard = guard; in do_shadow_Store() 3955 if (guard) diHi64->guard = guard; in do_shadow_Store() 3992 if (guard) di->guard = guard; in do_shadow_Store() 4034 complainIfUndefined(mce, d->guard); in do_shadow_Dirty() 4234 IRAtom* guard ); [all …]
|
/external/stlport/ |
D | README.google | 9 * _pair.h needs to define bionic's (sgi's) internal pair header guard.
|
/external/chromium/third_party/libevent/ |
D | event_rpcgen.py | 1293 guard = '_'+name.upper()+'_' 1295 return guard 1298 guard = GuardName(name) 1305 name, guard, guard) 1340 guard = GuardName(name) 1341 return '#endif /* %s */' % guard
|
/external/webkit/Source/WebCore/platform/network/mac/ |
D | ResourceHandleMac.mm | 803 CallbackGuard guard; 835 CallbackGuard guard; 847 CallbackGuard guard; 859 CallbackGuard guard; 871 CallbackGuard guard; 884 CallbackGuard guard; 947 CallbackGuard guard; 965 CallbackGuard guard; 978 CallbackGuard guard; 990 CallbackGuard guard; [all …]
|
/external/valgrind/main/VEX/priv/ |
D | ir_opt.c | 448 d2->guard = flatten_Expr(bb, d2->guard); in flatten_Stmt() 464 e1 = flatten_Expr(bb, st->Ist.Exit.guard); in flatten_Stmt() 743 vassert(isIRAtom(st->Ist.Exit.guard)); in handle_gets_Stmt() 826 vassert(isIRAtom(st->Ist.Exit.guard)); in redundant_put_removal_BB() 2001 vassert(isIRAtom(d2->guard)); in subst_and_fold_Stmt() 2002 d2->guard = fold_Expr(subst_Expr(env, d2->guard)); in subst_and_fold_Stmt() 2023 vassert(isIRAtom(st->Ist.Exit.guard)); in subst_and_fold_Stmt() 2024 fcond = fold_Expr(subst_Expr(env, st->Ist.Exit.guard)); in subst_and_fold_Stmt() 2236 addUses_Expr(set, d->guard); in addUses_Stmt() 2245 addUses_Expr(set, st->Ist.Exit.guard); in addUses_Stmt() [all …]
|
D | ir_defs.c | 1062 ppIRExpr(d->guard); in ppIRDirty() 1229 ppIRExpr(s->Ist.Exit.guard); in ppIRStmt() 1583 d->guard = NULL; in emptyIRDirty() 1702 IRStmt* IRStmt_Exit ( IRExpr* guard, IRJumpKind jk, IRConst* dst ) { in IRStmt_Exit() argument 1705 s->Ist.Exit.guard = guard; in IRStmt_Exit() 1858 d2->guard = deepCopyIRExpr(d->guard); in deepCopyIRDirty() 1923 return IRStmt_Exit(deepCopyIRExpr(s->Ist.Exit.guard), in deepCopyIRStmt() 2830 if (!isIRAtom(di->guard)) in isFlatIRStmt() 2843 return isIRAtom(st->Ist.Exit.guard); in isFlatIRStmt() 3035 useBeforeDef_Expr(bb,stmt,stmt->Ist.Exit.guard,def_counts); in useBeforeDef_Stmt() [all …]
|
/external/aac/libSBRenc/src/ |
D | ton_corr.h | 145 INT guard; /*!< number of guardbands between every patch */ member
|
/external/valgrind/main/cachegrind/ |
D | cg_main.c | 902 void addEvent_Bc ( CgState* cgs, InstrInfo* inode, IRAtom* guard ) in addEvent_Bc() argument 905 tl_assert(isIRAtom(guard)); in addEvent_Bc() 906 tl_assert(typeOfIRExpr(cgs->sbOut->tyenv, guard) in addEvent_Bc() 917 evt->Ev.Bc.taken = guard; in addEvent_Bc() 1128 IRTemp guard = newIRTemp(cgs.sbOut->tyenv, tyW); in cg_instrument() local 1155 IRStmt_WrTmp( guard1, st->Ist.Exit.guard )); in cg_instrument() 1164 guard, in cg_instrument() 1169 addEvent_Bc( &cgs, curr_inode, IRExpr_RdTmp(guard) ); in cg_instrument()
|
/external/llvm/test/Analysis/BasicAA/ |
D | dag.ll | 5 ; BasicAA's guard against use-def cycles shouldn't prevent it from
|
/external/llvm/lib/ExecutionEngine/JIT/ |
D | JIT.cpp | 235 MutexGuard guard(Lock); in Add() local 239 MutexGuard guard(Lock); in Remove() local 243 MutexGuard guard(Lock); in getPointerToNamedFunction() local
|