Searched defs:guard (Results 1 - 25 of 28) sorted by relevance

12

/external/clang/test/CodeGen/
H A D2007-09-12-PragmaPack.c24 uint32_t guard; member in struct:__anon4137
/external/v8/test/mjsunit/
H A 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/aac/libSBRenc/src/
H A Dton_corr.h143 when indexing a highband channel, -1 represents a guard band */
145 INT guard; /*!< number of guardbands between every patch */ member in struct:__anon269
/external/libvorbis/vq/
H A Dhuffbuild.c65 int i,j,k,begin,n,subn,guard=1; local
71 if(argc==4)guard=0;
133 for(j=loval;j<vals;j++)hist[j]=guard;
H A Dlatticetune.c45 int entries=-1,dim=-1,guard=1; local
58 if(argv[3]!=NULL)guard=0;
86 for(j=0;j<entries;j++)hits[j]=guard;
/external/guava/guava/src/com/google/common/util/concurrent/
H A DMonitor.java209 * {@code Monitor}. The monitor may check the guard at arbitrary times from any thread occupying
210 * the monitor, so code should not be written to rely on how often a guard might or might not be
233 * Evaluates this guard's boolean condition. This method is always called with the associated
355 * Enters this monitor when the guard is satisfied. Blocks indefinitely, but may be interrupted.
357 public void enterWhen(Guard guard) throws InterruptedException { argument
358 if (guard.monitor != this) {
366 waitInterruptibly(guard, reentrant);
376 * Enters this monitor when the guard is satisfied. Blocks indefinitely.
378 public void enterWhenUninterruptibly(Guard guard) { argument
379 if (guard
403 enterWhen(Guard guard, long time, TimeUnit unit) argument
436 enterWhenUninterruptibly(Guard guard, long time, TimeUnit unit) argument
487 enterIf(Guard guard) argument
510 enterIfInterruptibly(Guard guard) argument
533 enterIf(Guard guard, long time, TimeUnit unit) argument
558 enterIfInterruptibly(Guard guard, long time, TimeUnit unit) argument
586 tryEnterIf(Guard guard) argument
609 waitFor(Guard guard) argument
623 waitForUninterruptibly(Guard guard) argument
639 waitFor(Guard guard, long time, TimeUnit unit) argument
655 waitForUninterruptibly(Guard guard, long time, TimeUnit unit) argument
747 hasWaiters(Guard guard) argument
765 getWaitQueueLength(Guard guard) argument
804 incrementWaiters(Guard guard) argument
812 decrementWaiters(Guard guard) argument
820 waitInterruptibly(Guard guard, boolean signalBeforeWaiting) argument
849 waitUninterruptibly(Guard guard, boolean signalBeforeWaiting) argument
867 waitInterruptibly(Guard guard, long remainingNanos, boolean signalBeforeWaiting) argument
900 waitUninterruptibly(Guard guard, long timeoutNanos, boolean signalBeforeWaiting) argument
[all...]
/external/stlport/stlport/stl/
H A D_ostream.c114 * Helper struct (guard) to put back a character in a streambuf
129 void guard(int_type c) { function in struct:_SPutBackC
165 __cguard.guard(__c);
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
H A DAudioFileReaderThread.c463 SDLOSXCAGuard *guard = sReaderThread->GetGuard(sReaderThread); local
464 if (guard->Try(guard, &didLock)) {
467 guard->Unlock(guard);
/external/stlport/src/
H A Dnum_get_float.cpp254 if ((prodlo & _Stl_HIBITULL) != 0) { /* first guard bit a one */
344 uint32 guard; /* First guard bit */ local
345 uint64 rest; /* Remaining guard bits */
403 guard = 0;
408 guard = (uint32) ((value>> 63) & 1 );
413 guard = (uint32) (((value>> lead0)-1) & 1);
418 if (guard && ((value & 1) || rest) ) {
431 guard = (uint32) value & 1;
434 /* value&1 guard res
534 uint32_t guard = (uint32) vv.i64 & 1; local
600 uint32_t guard; local
[all...]
/external/webkit/Source/WebCore/plugins/win/
H A DPluginViewWin.cpp256 DWORD guard = 0xB8D18B4C; local
257 if (*reinterpret_cast<DWORD*>(pProc) != guard)
/external/libvorbis/lib/
H A Dvorbisenc.c396 const noiseguard *guard,
404 p->noisewindowlomin=guard[block].lo;
405 p->noisewindowhimin=guard[block].hi;
406 p->noisewindowfixed=guard[block].fixed;
393 vorbis_encode_noisebias_setup(vorbis_info *vi,double s,int block, const int *suppress, const noise3 *in, const noiseguard *guard, double userbias) argument
/external/valgrind/main/VEX/priv/
H A Dhost_s390_isel.c351 guard is a Ity_Bit expression indicating whether or not the
352 call happens. If guard==NULL, the call is unconditional.
355 doHelperCall(ISelEnv *env, Bool passBBP, IRExpr *guard, argument
390 if (guard) {
391 if (guard->tag == Iex_Const
392 && guard->Iex.Const.con->tag == Ico_U1
393 && guard->Iex.Const.con->Ico.U1 == True) {
396 cc = s390_isel_cc(env, guard);
2239 doHelperCall(env, passBBP, d->guard, d->cee, d->args);
2288 cond = s390_isel_cc(env, stmt->Ist.Exit.guard);
[all...]
H A Dhost_amd64_isel.c429 /* Do a complete function call. guard is a Ity_Bit expression
430 indicating whether or not the call happens. If guard==NULL, the
436 IRExpr* guard, IRCallee* cee, IRExpr** args )
518 if (guard) {
519 if (guard->tag == Iex_Const
520 && guard->Iex.Const.con->tag == Ico_U1
521 && guard->Iex.Const.con->Ico.U1 == True) {
591 guard is 1:Bit. */
593 if (guard) {
594 if (guard
434 doHelperCall( ISelEnv* env, Bool passBBP, IRExpr* guard, IRCallee* cee, IRExpr** args ) argument
[all...]
H A Dhost_arm_isel.c361 /* Do a complete function call. guard is a Ity_Bit expression
362 indicating whether or not the call happens. If guard==NULL, the
369 IRExpr* guard, IRCallee* cee, IRExpr** args )
448 if (guard) {
449 if (guard->tag == Iex_Const
450 && guard->Iex.Const.con->tag == Ico_U1
451 && guard->Iex.Const.con->Ico.U1 == True) {
557 guard is 1:Bit. */
559 if (guard) {
560 if (guard
367 doHelperCall( ISelEnv* env, Bool passBBP, IRExpr* guard, IRCallee* cee, IRExpr** args ) argument
[all...]
H A Dhost_x86_isel.c383 /* Do a complete function call. guard is a Ity_Bit expression
384 indicating whether or not the call happens. If guard==NULL, the
390 IRExpr* guard, IRCallee* cee, IRExpr** args )
556 guard is 1:Bit. */
558 if (guard) {
559 if (guard->tag == Iex_Const
560 && guard->Iex.Const.con->tag == Ico_U1
561 && guard->Iex.Const.con->Ico.U1 == True) {
564 cc = iselCondCode( env, guard );
3929 doHelperCall( env, passBBP, d->guard,
388 doHelperCall( ISelEnv* env, Bool passBBP, IRExpr* guard, IRCallee* cee, IRExpr** args ) argument
[all...]
H A Dir_defs.c1062 ppIRExpr(d->guard);
1229 ppIRExpr(s->Ist.Exit.guard);
1583 d->guard = NULL;
1702 IRStmt* IRStmt_Exit ( IRExpr* guard, IRJumpKind jk, IRConst* dst ) { argument
1705 s->Ist.Exit.guard = guard;
1858 d2->guard = deepCopyIRExpr(d->guard);
1923 return IRStmt_Exit(deepCopyIRExpr(s->Ist.Exit.guard),
2830 if (!isIRAtom(di->guard))
[all...]
H A Dhost_ppc_isel.c621 /* Do a complete function call. guard is a Ity_Bit expression
622 indicating whether or not the call happens. If guard==NULL, the
628 IRExpr* guard, IRCallee* cee, IRExpr** args )
723 if (guard) {
724 if (guard->tag == Iex_Const
725 && guard->Iex.Const.con->tag == Ico_U1
726 && guard->Iex.Const.con->Ico.U1 == True) {
830 guard is 1:Bit. */
832 if (guard) {
833 if (guard
626 doHelperCall( ISelEnv* env, Bool passBBP, IRExpr* guard, IRCallee* cee, IRExpr** args ) argument
[all...]
/external/valgrind/main/none/tests/ppc32/
H A Dround.c589 int guard = 0; local
595 ** force a 3 bit shift for scaling leaving us with 3 guard bits
608 /* mask off LSB from resulting guard bits */
609 guard = g & 7;
624 guard = (0x10-g);
625 Z.layout.frac = guard>>3;
627 /* mask off LSB from resulting guard bits */
628 guard &= 7;
641 guard = g & 7;
644 /* g >> 3 == LSB, g & 7 == guard bit
906 int guard; local
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Dround.c589 int guard = 0; local
595 ** force a 3 bit shift for scaling leaving us with 3 guard bits
608 /* mask off LSB from resulting guard bits */
609 guard = g & 7;
624 guard = (0x10-g);
625 Z.layout.frac = guard>>3;
627 /* mask off LSB from resulting guard bits */
628 guard &= 7;
641 guard = g & 7;
644 /* g >> 3 == LSB, g & 7 == guard bit
906 int guard; local
[all...]
/external/valgrind/main/cachegrind/
H A Dcg_main.c902 void addEvent_Bc ( CgState* cgs, InstrInfo* inode, IRAtom* guard )
905 tl_assert(isIRAtom(guard));
906 tl_assert(typeOfIRExpr(cgs->sbOut->tyenv, guard)
917 evt->Ev.Bc.taken = guard;
1117 /* Stuff to widen the guard expression to a host word, so
1128 IRTemp guard = newIRTemp(cgs.sbOut->tyenv, tyW); local
1153 /* Widen the guard expression. */
1155 IRStmt_WrTmp( guard1, st->Ist.Exit.guard ));
1160 /* If the exit is inverted, invert the sense of the guard. */
1164 guard,
[all...]
/external/valgrind/main/callgrind/
H A Dmain.c666 void addEvent_Bc ( ClgState* clgs, InstrInfo* inode, IRAtom* guard )
669 tl_assert(isIRAtom(guard));
670 tl_assert(typeOfIRExpr(clgs->sbOut->tyenv, guard)
681 evt->Ev.Bc.taken = guard;
1114 /* Stuff to widen the guard expression to a host word, so
1122 IRTemp guard = newIRTemp(clgs.sbOut->tyenv, tyW); local
1126 /* Widen the guard expression. */
1128 IRStmt_WrTmp( guard1, st->Ist.Exit.guard ));
1133 /* If the exit is inverted, invert the sense of the guard. */
1137 guard,
[all...]
/external/valgrind/main/exp-dhat/
H A Ddh_main.c833 /* Generate the guard condition: "(addr - (SP - RZ)) >u N", for
859 IRTemp guard = newIRTemp(sbOut->tyenv, Ity_I1); local
862 assign(guard,
867 di->guard = mkexpr(guard);
/external/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp981 // are disabled, we can just let the guard variable be of type i8.
993 // Create the guard variable if we don't already have it (as we
995 llvm::GlobalVariable *guard = CGM.getStaticLocalDeclGuardAddress(&D); local
996 if (!guard) {
997 // Mangle the name for the guard.
1005 // Create the guard variable with a zero-initializer.
1007 guard = new llvm::GlobalVariable(CGM.getModule(), guardTy,
1011 guard->setVisibility(var->getVisibility());
1013 CGM.setStaticLocalDeclGuardAddress(&D, guard);
1020 // To support the potential use of initialization guard variable
1100 Builder.CreateCall(getGuardReleaseFn(CGM, guardPtrTy), guard); local
1102 Builder.CreateStore(llvm::ConstantInt::get(guardTy, 1), guard); local
[all...]
/external/kernel-headers/original/linux/
H A Dnfs_xdr.h403 unsigned int guard; member in struct:nfs3_sattrargs
/external/valgrind/main/helgrind/
H A Dhg_main.c4205 /* Generate the guard condition: "(addr - (SP - RZ)) >u N", for
4244 IRTemp guard = newIRTemp(sbOut->tyenv, Ity_I1); local
4247 assign(guard,
4252 di->guard = mkexpr(guard);

Completed in 489 milliseconds

12