Searched defs:guard (Results 1 - 25 of 48) sorted by path

12

/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:__anon270
/external/bison/lib/glthread/
H A Dlock.h206 pthread_mutex_t guard; /* protects the initialization */ member in struct:__anon322
302 pthread_mutex_t guard; /* protects the initialization */ member in struct:__anon324
642 gl_spinlock_t guard; /* protects the initialization */ member in struct:__anon329
681 gl_spinlock_t guard; /* protects the initialization */ member in struct:__anon331
718 gl_spinlock_t guard; /* protects the initialization */ member in struct:__anon332
/external/chromium_org/base/process/
H A Dprocess_util_unittest.cc488 // Atomically replaces |guard|/|guardflags| with |nguard|/|nguardflags| on |fd|.
490 const guardid_t *guard, u_int guardflags,
493 return syscall(SYS_change_fdguard_np, fd, guard, guardflags,
497 // Attempt to set a file-descriptor guard on |fd|. In case of success, remove
518 // Attempt to change the guard. This can fail with EBADF if the file
519 // descriptor is bad, or EINVAL if the fd already has a guard set.
525 // Remove the guard. It should not be possible to fail in removing the guard
489 change_fdguard_np(int fd, const guardid_t *guard, u_int guardflags, const guardid_t *nguard, u_int nguardflags, int *fdflagsp) argument
/external/chromium_org/native_client_sdk/src/libraries/error_handling/
H A Derror_handling.c219 void* guard; local
226 // Allocate stack + guard page
232 guard = mmap(stack, PAGE_CHUNK_SIZE,
234 if (guard != stack) {
235 fprintf(stderr, "WARNING: Failed to add guard page for alt stack.\n");
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DHeaders.h47 void setGuard(Guard guard) { m_guard = guard; } argument
48 Guard guard() const { return m_guard; } function in class:blink::FINAL
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/v8/src/
H A Djsregexp.cc1465 void GuardedAlternative::AddGuard(Guard* guard, Zone* zone) { argument
1468 guards_->Add(guard, zone);
1569 Guard* guard,
1571 switch (guard->op()) {
1573 DCHECK(!trace->mentions_reg(guard->reg()));
1574 macro_assembler->IfRegisterGE(guard->reg(),
1575 guard->value(),
1579 DCHECK(!trace->mentions_reg(guard->reg()));
1580 macro_assembler->IfRegisterLT(guard->reg(),
1581 guard
1568 GenerateGuard(RegExpMacroAssembler* macro_assembler, Guard* guard, Trace* trace) argument
[all...]
/external/chromium_org/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/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp1624 // are disabled, we can just let the guard variable be of type i8.
1637 // Create the guard variable if we don't already have it (as we
1639 llvm::GlobalVariable *guard = CGM.getStaticLocalDeclGuardAddress(&D); local
1640 if (!guard) {
1641 // Mangle the name for the guard.
1649 // Create the guard variable with a zero-initializer.
1651 guard = new llvm::GlobalVariable(CGM.getModule(), guardTy,
1655 guard->setVisibility(var->getVisibility());
1656 // If the variable is thread-local, so is its guard variable.
1657 guard
1752 CGF.EmitNounwindRuntimeCall(getGuardReleaseFn(CGM, guardPtrTy), guard); local
1754 Builder.CreateStore(llvm::ConstantInt::get(guardTy, 1), guard); local
[all...]
/external/clang/test/CodeGen/
H A D2007-09-12-PragmaPack.c24 uint32_t guard; member in struct:__anon18545
/external/cmockery/cmockery_0_1_2/src/
H A Dcmockery.c34 // Size of guard bytes around dynamically allocated blocks.
36 // Pattern used to initialize guard blocks.
1268 // Initialize the guard blocks.
1305 // Check the guard blocks.
1311 char * const guard = guards[i]; local
1313 const char diff = guard[j] - MALLOC_GUARD_PATTERN;
1320 (size_t)&guard[j]);
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc2240 static void vaargsfn2(int guard, ...) { argument
2242 va_start(vl, guard);
2250 static void vaargsfn(int guard, ...) { argument
2252 va_start(vl, guard);
2269 static void vaargsfn_many(int guard, ...) { argument
2271 va_start(vl, guard);
2297 static void vaargsfn_pass(int guard, ...) { argument
2299 va_start(vl, guard);
2316 static void vaargsfn_copy(int guard, ...) { argument
2318 va_start(vl, guard);
2335 vaargsfn_ptr(int guard, ...) argument
2352 vaargsfn_overflow(int guard, ...) argument
2400 vaargsfn_tlsoverwrite2(int guard, ...) argument
2408 vaargsfn_tlsoverwrite(int guard, ...) argument
2436 vaargsfn_structbyval(int guard, ...) argument
[all...]
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLSocketImpl.java149 private final CloseGuard guard = CloseGuard.get(); field in class:OpenSSLSocketImpl
287 guard.open("close");
1149 guard.close();
1171 if (guard != null) {
1172 guard.warnIfOpen();
/external/deqp/modules/glshared/
H A DglsStateQueryUtil.hpp140 testCtx.getLog() << TestLog::Message << "// ERROR: Pre-guard value was modified " << TestLog::EndMessage;
149 testCtx.getLog() << TestLog::Message << "// ERROR: Post-guard value was modified " << TestLog::EndMessage;
170 std::ostream& operator<< (std::ostream& str, const StateQueryMemoryWriteGuard<T>& guard) argument
172 return str << guard.get();
/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/kernel-headers/original/uapi/linux/
H A Dbsg.h21 __s32 guard; /* [i] 'Q' to differentiate from v3 */ member in struct:sg_io_v4
/external/libcxxabi/src/
H A Dcxa_guard.cpp118 uint64_t guard; member in union:__cxxabiv1::__anon23627::__anon23628
130 uint64_t guard; member in union:__cxxabiv1::__anon23627::__anon23629
134 x = f.guard;
143 uint32_t guard; member in union:__cxxabiv1::__anon23627::__anon23630
155 uint32_t guard; member in union:__cxxabiv1::__anon23627::__anon23631
159 x = f.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/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/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 8806 milliseconds

12