Home
last modified time | relevance | path

Searched refs:guard (Results 1 – 25 of 117) sorted by relevance

12345

/external/chromium/android/
DgenerateAndroidForwardingHeader.pl62 $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/ppc64/
Dround.c589 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/ppc32/
Dround.c589 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/
Dnum_get_float.cpp344 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/v8/test/mjsunit/
Dtry.js60 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/
Dframeless2.ll6 … %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/
DCodeGeneratorGObject.pm616 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/
DExternalPopupMenu.cpp106 RefPtr<ExternalPopupMenu> guard(this); in didAcceptIndex() local
121 RefPtr<ExternalPopupMenu> guard(this); in didCancel() local
/external/llvm/test/Analysis/ScalarEvolution/
Dscev-aa.ll46 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 ]
D2011-03-09-ExactNoMaxBECount.ll5 ; the condition "icmp %4 < 2" does not guard the outer loop.
/external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/
DAudioFileReaderThread.c463 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/llvm/test/FrontendC/
D2007-09-12-PragmaPack.c22 uint32_t guard; member
/external/valgrind/main/memcheck/
Dmc_translate.c1124 di->guard = cond; in complainIfUndefined()
3610 IRAtom* guard ) in do_shadow_Store() argument
3635 if (guard) { in do_shadow_Store()
3636 tl_assert(isOriginalAtom(mce, guard)); in do_shadow_Store()
3637 tl_assert(typeOfIRExpr(mce->sb->tyenv, guard) == Ity_I1); in do_shadow_Store()
3736 if (guard) diLo64->guard = guard; in do_shadow_Store()
3737 if (guard) diHi64->guard = guard; in do_shadow_Store()
3774 if (guard) di->guard = guard; in do_shadow_Store()
3816 complainIfUndefined(mce, d->guard); in do_shadow_Dirty()
4016 IRAtom* guard );
[all …]
/external/stlport/
DREADME.google9 * _pair.h needs to define bionic's (sgi's) internal pair header guard.
/external/chromium/third_party/libevent/
Devent_rpcgen.py1293 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/
DResourceHandleMac.mm803 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/
Dir_opt.c448 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()
1887 vassert(isIRAtom(d2->guard)); in subst_and_fold_Stmt()
1888 d2->guard = fold_Expr(subst_Expr(env, d2->guard)); in subst_and_fold_Stmt()
1907 vassert(isIRAtom(st->Ist.Exit.guard)); in subst_and_fold_Stmt()
1908 fcond = fold_Expr(subst_Expr(env, st->Ist.Exit.guard)); in subst_and_fold_Stmt()
2120 addUses_Expr(set, d->guard); in addUses_Stmt()
2129 addUses_Expr(set, st->Ist.Exit.guard); in addUses_Stmt()
[all …]
Dir_defs.c1009 ppIRExpr(d->guard); in ppIRDirty()
1171 ppIRExpr(s->Ist.Exit.guard); in ppIRStmt()
1511 d->guard = NULL; in emptyIRDirty()
1629 IRStmt* IRStmt_Exit ( IRExpr* guard, IRJumpKind jk, IRConst* dst ) { in IRStmt_Exit() argument
1632 s->Ist.Exit.guard = guard; in IRStmt_Exit()
1783 d2->guard = deepCopyIRExpr(d->guard); in deepCopyIRDirty()
1846 return IRStmt_Exit(deepCopyIRExpr(s->Ist.Exit.guard), in deepCopyIRStmt()
2675 if (!isIRAtom(di->guard)) in isFlatIRStmt()
2688 return isIRAtom(st->Ist.Exit.guard); in isFlatIRStmt()
2880 useBeforeDef_Expr(bb,stmt,stmt->Ist.Exit.guard,def_counts); in useBeforeDef_Stmt()
[all …]
/external/valgrind/main/callgrind/
Dmain.c665 void addEvent_Bc ( ClgState* clgs, InstrInfo* inode, IRAtom* guard ) in addEvent_Bc() argument
668 tl_assert(isIRAtom(guard)); in addEvent_Bc()
669 tl_assert(typeOfIRExpr(clgs->sbOut->tyenv, guard) in addEvent_Bc()
680 evt->Ev.Bc.taken = guard; in addEvent_Bc()
1121 IRTemp guard = newIRTemp(clgs.sbOut->tyenv, tyW); in CLG_() local
1127 IRStmt_WrTmp( guard1, st->Ist.Exit.guard )); in CLG_()
1136 guard, in CLG_()
1141 addEvent_Bc( &clgs, curr_inode, IRExpr_RdTmp(guard) ); in CLG_()
/external/llvm/test/Analysis/BasicAA/
Ddag.ll5 ; BasicAA's guard against use-def cycles shouldn't prevent it from
/external/valgrind/main/cachegrind/
Dcg_main.c902 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/lib/ExecutionEngine/JIT/
DJIT.cpp235 MutexGuard guard(Lock); in Add() local
239 MutexGuard guard(Lock); in Remove() local
243 MutexGuard guard(Lock); in getPointerToNamedFunction() local
DJITEmitter.cpp241 MutexGuard guard(Lock); in RegisterStubResolver() local
246 MutexGuard guard(Lock); in UnregisterStubResolver() local
251 MutexGuard guard(Lock); in getResolverFromStub() local
264 MutexGuard guard(Lock); in ResolverHasStubs() local
/external/valgrind/main/VEX/pub/
Dlibvex_ir.h1640 IRExpr* guard; /* :: Ity_Bit. Controls whether call happens */ member
2013 IRExpr* guard; /* Conditional expression */ member
2035 extern IRStmt* IRStmt_Exit ( IRExpr* guard, IRJumpKind jk, IRConst* dst );
/external/chromium/chrome/browser/sync/glue/
Dpreference_change_processor.cc53 AutoReset<bool> guard(&processing_pref_change_, true); in Observe() local

12345