/third_party/node/deps/icu-small/source/common/ |
H A D | umutex.cpp | 84 std::lock_guard<std::mutex> guard(*initMutex); in getMutex()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/ |
H A D | 1-5.c | 27 * -> If stack size and guard size are known, check that accessing the guard size fails. (new process) 182 &&(scenarii[sc].guard == 2) /* guard area size is 1 memory page */ in threaded() 204 ("Overflow into the guard area did not fail"); in threaded()
|
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | persistent-node.cc | 142 PersistentRegionLock guard; in ~CrossThreadPersistentRegion() local
|
H A D | gc-info-table.cc | 133 v8::base::MutexGuard guard(&table_mutex_); in RegisterNewGCInfo()
|
/third_party/node/deps/v8/src/libplatform/ |
H A D | default-foreground-task-runner.h | 65 // by the caller. The {guard} parameter should make sure that the caller is 71 // already held by the caller. The {guard} parameter should make sure that the 77 // A caller of this function has to hold {lock_}. The {guard} parameter should 88 void MoveExpiredDelayedTasks(const base::MutexGuard& guard);
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | umutex.cpp | 84 std::lock_guard<std::mutex> guard(*initMutex); in getMutex()
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/ |
H A D | TestSuite.cpp | 462 std::lock_guard<std::mutex> guard(mTestResults->currentTestMutex); 469 std::lock_guard<std::mutex> guard(mTestResults->currentTestMutex); 478 std::lock_guard<std::mutex> guard(mTestResults->currentTestMutex); 1380 std::lock_guard<std::mutex> guard(mTestResults.currentTestMutex); in onCrashOrTimeout() 1723 std::lock_guard<std::mutex> guard(mTestResults.currentTestMutex); in run() 1905 std::lock_guard<std::mutex> guard(mTestResults.currentTestMutex); in startWatchdog() 2038 std::lock_guard<std::mutex> guard(mTestResults.currentTestMutex); in maybeUpdateTestTimeout()
|
/third_party/json/tests/thirdparty/Fuzzer/ |
H A D | FuzzerTracePC.h | 49 void HandleTrace(uint32_t *guard, uintptr_t PC);
|
/third_party/vixl/src/aarch32/ |
H A D | location-aarch32.cc | 139 ExactAssemblyScopeWithoutPoolsCheck guard(macro_assembler, in EmitPoolObject()
|
/test/testfwk/arkxtest/uitest/record/ |
H A D | pointer_tracker.cpp | 373 std::lock_guard<mutex> guard(*cout_lock); in WriteData() 382 std::lock_guard<mutex> guard(*csv_lock); in WriteData()
|
/third_party/libuv/src/unix/ |
H A D | thread.c | 432 void uv_once(uv_once_t* guard, void (*callback)(void)) { in uv_once() argument 433 if (pthread_once(guard, callback)) in uv_once()
|
/third_party/node/deps/v8/src/heap/ |
H A D | memory-chunk.cc | 53 base::MutexGuard guard(page_protection_change_mutex_); in DecrementWriteUnprotectCounterAndMaybeSetPermissions() 87 base::MutexGuard guard(page_protection_change_mutex_); in SetCodeModificationPermissions()
|
H A D | gc-tracer-inl.h | 141 base::MutexGuard guard(&background_counter_mutex_); in AddScopeSample()
|
/third_party/mesa3d/src/vulkan/util/ |
H A D | gen_enum_to_str.py | 69 % if enum.guard: 70 #ifdef ${enum.guard} 86 % if enum.guard: 142 % if enum.guard: 143 #ifdef ${enum.guard} 146 % if enum.guard: 187 % if enum.guard: 188 #ifdef ${enum.guard} 191 % if enum.guard: 201 % if enum.guard [all...] |
/third_party/node/deps/uv/src/unix/ |
H A D | thread.c | 51 /* Note: guard clauses should match uv_barrier_t's in include/uv/unix.h. */ 439 void uv_once(uv_once_t* guard, void (*callback)(void)) { in uv_once() argument 440 if (pthread_once(guard, callback)) in uv_once()
|
/third_party/decimal.js/ |
H A D | decimal.js | 1137 guard = 5; 1172 sd = pr + guard; 2330 // Estimate the extra guard digits needed to ensure five correct rounding digits from 3213 // Maximum digits array length; leaves [28, 34] guard digits. 3302 var denominator, guard, j, pow, sum, t, wpr, 3337 guard = Math.log(mathpow(2, k)) / Math.LN10 * 2 + 5 | 0; 3338 wpr += guard; 3355 // `wpr - guard` is the index of first rounding digit. 3358 if (rep < 3 && checkRoundingDigits(sum.d, wpr - guard, rm, rep)) { 3395 guard [all...] |
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-code-manager.h | 725 base::RecursiveMutexGuard guard{&allocation_mutex_}; in AddWriter() 730 base::RecursiveMutexGuard guard{&allocation_mutex_}; in RemoveWriter() 735 base::RecursiveMutexGuard guard{&allocation_mutex_}; in MakeWritable()
|
H A D | wasm-serialization.cc | 511 base::MutexGuard guard(&mutex_); in Add() 516 base::MutexGuard guard(&mutex_); in Pop() 524 base::MutexGuard guard(&mutex_); in PopAll() 537 base::MutexGuard guard(&mutex_); in NumBatches()
|
/third_party/rust/crates/cxx/gen/cmd/src/gen/ |
H A D | write.rs | 254 let guard = format!("CXXBRIDGE1_STRUCT_{}", strct.name.to_symbol()); 255 writeln!(out, "#ifndef {}", guard); 256 writeln!(out, "#define {}", guard); 325 writeln!(out, "#endif // {}", guard); 349 let guard = format!("CXXBRIDGE1_STRUCT_{}", ety.name.to_symbol()); 350 writeln!(out, "#ifndef {}", guard); 351 writeln!(out, "#define {}", guard); 389 writeln!(out, "#endif // {}", guard); 399 let guard = format!("CXXBRIDGE1_ENUM_{}", enm.name.to_symbol()); 400 writeln!(out, "#ifndef {}", guard); [all...] |
/third_party/rust/crates/cxx/gen/src/ |
H A D | write.rs | 254 let guard = format!("CXXBRIDGE1_STRUCT_{}", strct.name.to_symbol()); 255 writeln!(out, "#ifndef {}", guard); 256 writeln!(out, "#define {}", guard); 325 writeln!(out, "#endif // {}", guard); 349 let guard = format!("CXXBRIDGE1_STRUCT_{}", ety.name.to_symbol()); 350 writeln!(out, "#ifndef {}", guard); 351 writeln!(out, "#define {}", guard); 389 writeln!(out, "#endif // {}", guard); 399 let guard = format!("CXXBRIDGE1_ENUM_{}", enm.name.to_symbol()); 400 writeln!(out, "#ifndef {}", guard); [all...] |
/third_party/rust/crates/cxx/gen/lib/src/gen/ |
H A D | write.rs | 254 let guard = format!("CXXBRIDGE1_STRUCT_{}", strct.name.to_symbol()); 255 writeln!(out, "#ifndef {}", guard); 256 writeln!(out, "#define {}", guard); 325 writeln!(out, "#endif // {}", guard); 349 let guard = format!("CXXBRIDGE1_STRUCT_{}", ety.name.to_symbol()); 350 writeln!(out, "#ifndef {}", guard); 351 writeln!(out, "#define {}", guard); 389 writeln!(out, "#endif // {}", guard); 399 let guard = format!("CXXBRIDGE1_ENUM_{}", enm.name.to_symbol()); 400 writeln!(out, "#ifndef {}", guard); [all...] |
/third_party/rust/crates/cxx/gen/build/src/gen/ |
H A D | write.rs | 254 let guard = format!("CXXBRIDGE1_STRUCT_{}", strct.name.to_symbol()); 255 writeln!(out, "#ifndef {}", guard); 256 writeln!(out, "#define {}", guard); 325 writeln!(out, "#endif // {}", guard); 349 let guard = format!("CXXBRIDGE1_STRUCT_{}", ety.name.to_symbol()); 350 writeln!(out, "#ifndef {}", guard); 351 writeln!(out, "#define {}", guard); 389 writeln!(out, "#endif // {}", guard); 399 let guard = format!("CXXBRIDGE1_ENUM_{}", enm.name.to_symbol()); 400 writeln!(out, "#ifndef {}", guard); [all...] |
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
H A D | mod.rs | 333 let guard = thread::spawn(move || { in test_connect_with_srtp_ctx() 378 let buf2 = guard.join().unwrap(); in test_connect_with_srtp_ctx() 391 let guard = thread::spawn(move || { in test_connect_with_srtp_ssl() 447 let buf2 = guard.join().unwrap(); in test_connect_with_srtp_ssl() 1147 let guard = thread::spawn(move || { in keying_export() 1181 let buf2 = guard.join().unwrap(); in keying_export()
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-compiler.cc | 634 void GuardedAlternative::AddGuard(Guard* guard, Zone* zone) { in AddGuard() argument 636 guards_->Add(guard, zone); in AddGuard() 724 Guard* guard, Trace* trace) { in GenerateGuard() 725 switch (guard->op()) { in GenerateGuard() 727 DCHECK(!trace->mentions_reg(guard->reg())); in GenerateGuard() 728 macro_assembler->IfRegisterGE(guard->reg(), guard->value(), in GenerateGuard() 732 DCHECK(!trace->mentions_reg(guard->reg())); in GenerateGuard() 733 macro_assembler->IfRegisterLT(guard->reg(), guard in GenerateGuard() 723 GenerateGuard(RegExpMacroAssembler* macro_assembler, Guard* guard, Trace* trace) GenerateGuard() argument [all...] |
/third_party/vixl/test/aarch64/ |
H A D | test-simulator-aarch64.cc | 301 SingleEmissionCheckScope guard(&masm); in Test1Op_Helper() 451 SingleEmissionCheckScope guard(&masm); in Test2Op_Helper() 599 SingleEmissionCheckScope guard(&masm); in Test3Op_Helper() 744 SingleEmissionCheckScope guard(&masm); in TestCmp_Helper() 879 SingleEmissionCheckScope guard(&masm); in TestCmpZero_Helper() 1023 SingleEmissionCheckScope guard(&masm); in TestFPToFixed_Helper() 1090 SingleEmissionCheckScope guard(&masm); in TestFPToInt_Helper() 1519 SingleEmissionCheckScope guard(&masm); in Test1OpNEON_Helper() 1724 SingleEmissionCheckScope guard(&masm); in Test1OpAcrossNEON_Helper() 1727 SingleEmissionCheckScope guard( in Test1OpAcrossNEON_Helper() [all...] |