HomeSort by relevance Sort by last modified time
    Searched refs:Sync (Results 1 - 25 of 351) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sparc/
membar.s 5 membar #Sync|#MemIssue|#Lookaside|#StoreStore|#LoadStore|#StoreLoad|#LoadLoad
6 membar #Sync
membar.d 11 4: 81 43 e0 7f membar #Sync|#MemIssue|#Lookaside|#StoreStore|#LoadStore|#StoreLoad|#LoadLoad
12 8: 81 43 e0 7f membar #Sync|#MemIssue|#Lookaside|#StoreStore|#LoadStore|#StoreLoad|#LoadLoad
13 c: 81 43 e0 40 membar #Sync
  /cts/tests/app/app/src/android/app/stubs/
CTSActivityTestCaseBase.java 25 private Sync mSync;
26 static class Sync {
34 mSync = new Sync();
  /libcore/ojluni/src/main/java/java/util/concurrent/
CountDownLatch.java 162 private static final class Sync extends AbstractQueuedSynchronizer {
165 Sync(int count) {
190 private final Sync sync; field in class:CountDownLatch
201 this.sync = new Sync(count);
232 sync.acquireSharedInterruptibly(1);
278 return sync.tryAcquireSharedNanos(1, unit.toNanos(timeout));
292 sync.releaseShared(1);
303 return sync.getCount()
    [all...]
Semaphore.java 165 private final Sync sync; field in class:Semaphore
172 abstract static class Sync extends AbstractQueuedSynchronizer {
175 Sync(int permits) {
227 static final class NonfairSync extends Sync {
242 static final class FairSync extends Sync {
271 sync = new NonfairSync(permits);
286 sync = fair ? new FairSync(permits) : new NonfairSync(permits);
318 sync.acquireSharedInterruptibly(1);
341 sync.acquireShared(1)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CommonTokenStream.cs 87 Sync(_p);
90 Sync(_p);
137 Sync(i);
141 Sync(i);
156 Sync(0);
160 Sync(i);
BufferedTokenStream.cs 184 Sync(_p);
188 protected virtual void Sync(int i) {
262 Sync(i);
275 Sync(0);
365 Sync(i);
368 Sync(i);
  /external/lzma/CPP/7zip/UI/FileManager/
ProgressDialog.cpp 74 void CProgressDialog::OnCancel() { Sync.SetStopped(true); }
103 if (Sync.GetPaused())
109 Sync.GetProgress(total, completed);
165 bool paused = Sync.GetPaused();
166 Sync.SetPaused(true);
170 Sync.SetPaused(paused);
ProgressDialog2.cpp 296 if (Sync.Get_Paused())
553 void CProgressDialog::OnCancel() { Sync.Set_Stopped(true); }
685 NSynchronization::CCriticalSectionLock lock(Sync._cs);
686 total = Sync._totalBytes;
687 completed = Sync._completedBytes;
688 totalFiles = Sync._totalFiles;
689 completedFiles = Sync._curFiles;
690 inSize = Sync._inSize;
691 outSize = Sync._outSize;
692 bytesProgressMode = Sync._bytesProgressMode;
1298 CProgressSync &sync = ProgressDialog.Sync; local
    [all...]
  /external/deqp/external/openglcts/modules/gl/
gl4cSyncTests.hpp 39 namespace Sync
65 * behaves like Flush was inserted immediately after the creation of sync. This shall
105 } /* Sync namespace */
  /external/ltp/testcases/kernel/io/disktest/
io.h 60 int Sync (fd_t);
  /bootable/recovery/minui/
graphics_adf.h 47 void Sync(GRSurfaceAdf* surf);
  /cts/tests/app/src/android/app/cts/
LocalActivityManagerTest.java 33 private Sync mSync = new Sync();
34 private static class Sync {
42 mSync = new Sync();
  /external/tensorflow/tensorflow/core/common_runtime/
threadpool_device.h 38 Status Sync() override { return Status::OK(); }
  /external/webp/src/utils/
thread_utils.h 58 int (*Sync)(WebPWorker* const worker);
61 // function, but not be changed afterward until the next call to Sync().
65 // mechanism while still using the WebPWorker structs. Sync() must
  /system/extras/tests/sdcard/
testcase.h 46 enum Sync {NO_SYNC, FSYNC, SYNC};
84 Sync sync() const { return mSync; } function in class:android_test::TestCase
85 void setSync(Sync s);
141 Sync mSync;
162 StopWatch *mSyncTimer; // Used to time the sync/fsync calls.
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_compilation_device.h 60 Status Sync() override;
  /external/tensorflow/tensorflow/core/lib/io/
zlib_outputbuffer.h 81 Status Sync() override;
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 110 private final Sync sync; field in class:ReentrantLock
117 abstract static class Sync extends AbstractQueuedSynchronizer {
197 * Sync object for non-fair locks
199 static final class NonfairSync extends Sync {
219 * Sync object for fair locks
221 static final class FairSync extends Sync {
258 sync = new NonfairSync();
268 sync = fair ? new FairSync() : new NonfairSync();
286 sync.lock()
    [all...]
ReentrantReadWriteLock.java 225 final Sync sync; field in class:ReentrantReadWriteLock
242 sync = fair ? new FairSync() : new NonfairSync();
254 abstract static class Sync extends AbstractQueuedSynchronizer {
339 Sync() {
669 * Nonfair version of Sync
671 static final class NonfairSync extends Sync {
689 * Fair version of Sync
691 static final class FairSync extends Sync {
706 private final Sync sync field in class:ReentrantReadWriteLock.ReadLock
920 private final Sync sync; field in class:ReentrantReadWriteLock.WriteLock
    [all...]
  /test/vts/drivers/hal/libcodecoverage/
GcdaFile.h 43 void Sync(unsigned base, unsigned length);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonTokenStream.cs 149 Sync(i);
154 Sync(i);
BufferedTokenStream.cs 212 Sync(_p);
216 protected virtual void Sync(int i)
298 Sync(i);
313 Sync(0);
417 Sync(i);
421 Sync(i);
  /external/lzma/CPP/7zip/Bundles/SFXSetup/
ExtractCallbackSfx.cpp 41 return ProgressDialog.Sync.ProcessStopAndPause();
55 return ProgressDialog.Sync.ProcessStopAndPause();
69 ProgressDialog.Sync.SetProgress(size, 0);
77 RINOK(ProgressDialog.Sync.ProcessStopAndPause());
79 ProgressDialog.Sync.SetPos(*completeValue);
99 if (ProgressDialog.Sync.GetStopped())
  /cts/tests/tests/os/src/android/os/cts/
RemoteCallbackListTest.java 35 private Sync mSync = new Sync();
71 private static class Sync {

Completed in 499 milliseconds

1 2 3 4 5 6 7 8 91011>>