Home
last modified time | relevance | path

Searched refs:CriticalSection (Results 1 – 20 of 20) sorted by relevance

/external/tensorflow/tensorflow/python/kernel_tests/
Dcritical_section_test.py47 cs = critical_section_ops.CriticalSection(shared_name="cs")
73 cs = critical_section_ops.CriticalSection(shared_name="cs")
112 cs = critical_section_ops.CriticalSection(shared_name="cs")
139 cs = critical_section_ops.CriticalSection(shared_name="cs")
159 cs = critical_section_ops.CriticalSection(shared_name="cs")
177 cs = critical_section_ops.CriticalSection()
202 cs = critical_section_ops.CriticalSection(shared_name="cs")
230 cs = critical_section_ops.CriticalSection(shared_name="cs")
317 cs = critical_section_ops.CriticalSection(shared_name="cs")
318 cs_same = critical_section_ops.CriticalSection(shared_name="cs")
[all …]
/external/llvm-project/flang/runtime/
Dunit-map.h25 CriticalSection critical{lock_}; in LookUp()
31 CriticalSection critical{lock_}; in LookUpOrCreate()
39 CriticalSection critical{lock_}; in LookUp()
44 CriticalSection critical{lock_}; in NewUnit()
Dlock.h64 class CriticalSection {
66 explicit CriticalSection(Lock &lock) : lock_{lock} { lock_.Take(); } in CriticalSection() function
67 ~CriticalSection() { lock_.Drop(); } in ~CriticalSection()
Dunit-map.cpp14 CriticalSection critical{lock_}; in LookUpForClose()
35 CriticalSection critical{lock_}; in DestroyClosed()
55 CriticalSection critical{lock_}; in CloseAll()
67 CriticalSection critical{lock_}; in FlushAll()
Dunit.cpp30 CriticalSection critical{unitMapLock}; in FlushOutputOnCrash()
197 CriticalSection critical{unitMapLock}; in GetUnitMap()
217 CriticalSection critical{unitMapLock}; in CloseAll()
226 CriticalSection critical{unitMapLock}; in FlushAll()
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.-critical-section.pbtxt1 path: "tensorflow.CriticalSection"
3 is_instance: "<class \'tensorflow.python.ops.critical_section_ops.CriticalSection\'>"
Dtensorflow.pbtxt8 name: "CriticalSection"
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.-critical-section.pbtxt1 path: "tensorflow.CriticalSection"
3 is_instance: "<class \'tensorflow.python.ops.critical_section_ops.CriticalSection\'>"
Dtensorflow.pbtxt36 name: "CriticalSection"
/external/tensorflow/tensorflow/core/protobuf/
Dcritical_section.proto11 // Protocol buffer representing a CriticalSection.
17 // Protocol buffer representing a CriticalSection execution.
DBUILD146 # TODO(ebrevdo): Re-enable once CriticalSection is in core.
173 # TODO(ebrevdo): Re-enable once CriticalSection is in core.
/external/lzma/CPP/7zip/Archive/7z/
D7zEncode.h21 NWindows::NSynchronization::CCriticalSection CriticalSection; variable
34 NWindows::NSynchronization::CCriticalSectionLock lock(CriticalSection); in AddOutSize()
D7zDecode.cpp128 NWindows::NSynchronization::CCriticalSection CriticalSection; member
157 NWindows::NSynchronization::CCriticalSectionLock lock(_glob->CriticalSection); in Read()
D7zEncode.cpp111 NWindows::NSynchronization::CCriticalSectionLock lock(CriticalSection); in SetRatioInfo()
/external/llvm-project/llvm/lib/Support/Windows/
DSignals.inc204 static CRITICAL_SECTION CriticalSection;
418 InitializeCriticalSection(&CriticalSection);
432 EnterCriticalSection(&CriticalSection);
440 EnterCriticalSection(&CriticalSection);
446 // IMPORTANT NOTE: Caller must call LeaveCriticalSection(&CriticalSection) or
465 LeaveCriticalSection(&CriticalSection);
481 LeaveCriticalSection(&CriticalSection);
514 LeaveCriticalSection(&CriticalSection);
563 LeaveCriticalSection(&CriticalSection);
585 LeaveCriticalSection(&CriticalSection);
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DSignals.inc204 static CRITICAL_SECTION CriticalSection;
418 InitializeCriticalSection(&CriticalSection);
432 EnterCriticalSection(&CriticalSection);
440 EnterCriticalSection(&CriticalSection);
446 // IMPORTANT NOTE: Caller must call LeaveCriticalSection(&CriticalSection) or
465 LeaveCriticalSection(&CriticalSection);
481 LeaveCriticalSection(&CriticalSection);
514 LeaveCriticalSection(&CriticalSection);
562 LeaveCriticalSection(&CriticalSection);
584 LeaveCriticalSection(&CriticalSection);
[all …]
/external/llvm/lib/Support/Windows/
DSignals.inc206 static CRITICAL_SECTION CriticalSection;
414 InitializeCriticalSection(&CriticalSection);
428 EnterCriticalSection(&CriticalSection);
436 EnterCriticalSection(&CriticalSection);
442 // IMPORTANT NOTE: Caller must call LeaveCriticalSection(&CriticalSection) or
461 LeaveCriticalSection(&CriticalSection);
477 LeaveCriticalSection(&CriticalSection);
510 LeaveCriticalSection(&CriticalSection);
544 LeaveCriticalSection(&CriticalSection);
554 LeaveCriticalSection(&CriticalSection);
[all …]
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DSignals.inc207 static CRITICAL_SECTION CriticalSection;
417 InitializeCriticalSection(&CriticalSection);
431 EnterCriticalSection(&CriticalSection);
439 EnterCriticalSection(&CriticalSection);
445 // IMPORTANT NOTE: Caller must call LeaveCriticalSection(&CriticalSection) or
464 LeaveCriticalSection(&CriticalSection);
480 LeaveCriticalSection(&CriticalSection);
513 LeaveCriticalSection(&CriticalSection);
547 LeaveCriticalSection(&CriticalSection);
557 LeaveCriticalSection(&CriticalSection);
[all …]
/external/tensorflow/tensorflow/python/ops/
Dcritical_section_ops.py126 class CriticalSection(object): class
/external/tensorflow/
DRELEASE.md2202 * Expose CriticalSection in core as `tf.CriticalSection`.
2426 * Expose CriticalSection in core as tf.CriticalSection.
3217 * Distributed Mutex / CriticalSection added to `tf.contrib.framework.CriticalSection`.
3309 * Add `tf.contrib.framework.CriticalSection` that allows atomic variable access.