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

1 2 3 4 5 6 7

  /toolchain/binutils/binutils-2.25/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 24 private Sync mSync;
25 static class Sync {
33 mSync = new Sync();
  /libcore/luni/src/main/java/java/util/concurrent/
CountDownLatch.java 133 private static final class Sync extends AbstractQueuedSynchronizer {
136 Sync(int count) {
161 private final Sync sync; field in class:CountDownLatch
172 this.sync = new Sync(count);
203 sync.acquireSharedInterruptibly(1);
249 return sync.tryAcquireSharedNanos(1, unit.toNanos(timeout));
263 sync.releaseShared(1);
274 return sync.getCount()
    [all...]
Semaphore.java 136 private final Sync sync; field in class:Semaphore
143 abstract static class Sync extends AbstractQueuedSynchronizer {
146 Sync(int permits) {
198 static final class NonfairSync extends Sync {
213 static final class FairSync extends Sync {
242 sync = new NonfairSync(permits);
257 sync = fair ? new FairSync(permits) : new NonfairSync(permits);
289 sync.acquireSharedInterruptibly(1);
312 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 275 if (Sync.Get_Paused())
532 void CProgressDialog::OnCancel() { Sync.Set_Stopped(true); }
665 NSynchronization::CCriticalSectionLock lock(Sync._cs);
666 total = Sync._totalBytes;
667 completed = Sync._completedBytes;
668 totalFiles = Sync._totalFiles;
669 completedFiles = Sync._curFiles;
670 inSize = Sync._inSize;
671 outSize = Sync._outSize;
672 bytesProgressMode = Sync._bytesProgressMode;
1272 CProgressSync &sync = ProgressDialog.Sync; local
    [all...]
ExtractCallback.cpp 53 ProgressDialog->Sync.AddError_Message(s);
65 ProgressDialog->Sync.Set_NumFilesTotal(numFiles);
74 ProgressDialog->Sync.Set_NumBytesTotal(total);
80 return ProgressDialog->Sync.Set_NumBytesCur(value);
85 return ProgressDialog->Sync.CheckStop();
90 // if (numFiles != NULL) ProgressDialog->Sync.SetNumFilesTotal(*numFiles);
96 // if (numFiles != NULL) ProgressDialog->Sync.SetNumFilesCur(*numFiles);
97 return ProgressDialog->Sync.CheckStop();
130 ProgressDialog->Sync.Set_Ratio(inSize, outSize);
138 ProgressDialog->Sync.SetNumFilesTotal(total);
    [all...]
ProgressDialog.h 111 CProgressSync Sync;
  /cts/tests/app/src/android/app/cts/
LocalActivityManagerTest.java 32 private Sync mSync = new Sync();
33 private static class Sync {
41 mSync = new Sync();
  /external/webp/src/utils/
thread.h 61 int (*Sync)(WebPWorker* const worker);
64 // function, but not be changed afterward until the next call to Sync().
68 // mechanism while still using the WebPWorker structs. Sync() must
thread.c 221 // signal to the main thread that we're done (for Sync())
260 static int Sync(WebPWorker* const worker) {
300 ok = Sync(worker);
340 Init, Reset, Sync, Launch, Execute, End
346 winterface->Sync == NULL || winterface->Launch == NULL ||
  /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.
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 82 private final Sync sync; field in class:ReentrantLock
89 abstract static class Sync extends AbstractQueuedSynchronizer {
171 * Sync object for non-fair locks
173 static final class NonfairSync extends Sync {
194 * Sync object for fair locks
196 static final class FairSync extends Sync {
234 sync = new NonfairSync();
244 sync = fair ? new FairSync() : new NonfairSync();
262 sync.lock()
    [all...]
ReentrantReadWriteLock.java 196 final Sync sync; field in class:ReentrantReadWriteLock
213 sync = fair ? new FairSync() : new NonfairSync();
225 abstract static class Sync extends AbstractQueuedSynchronizer {
310 Sync() {
640 * Nonfair version of Sync
642 static final class NonfairSync extends Sync {
660 * Fair version of Sync
662 static final class FairSync extends Sync {
677 private final Sync sync field in class:ReentrantReadWriteLock.ReadLock
891 private final Sync sync; field in class:ReentrantReadWriteLock.WriteLock
    [all...]
  /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();
64 ProgressDialog.Sync.SetProgress(size, 0);
72 RINOK(ProgressDialog.Sync.ProcessStopAndPause());
74 ProgressDialog.Sync.SetPos(*completeValue);
94 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 {
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 68 private final Sync<V> sync = new Sync<V>(); field in class:AbstractFuture
96 return sync.get(unit.toNanos(timeout));
116 return sync.get();
121 return sync.isDone();
126 return sync.isCancelled();
131 if (!sync.cancel(mayInterruptIfRunning)) {
160 return sync.wasInterrupted();
176 * {@link AbstractFuture.Sync#COMPLETED} and invoke the listeners if th
    [all...]
  /external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
Sync.java 35 /** A highly accurate sync method that continually adapts to the system it runs on to provide reliable results.
39 class Sync {
53 /** An accurate sync method that will attempt to run at a constant frame rate. It should be called once every frame.
56 public static void sync (int fps) { method in class:Sync
83 /** This method will initialise the sync method by setting initial values for sleepDurations/yieldDurations and nextFrame.
110 timerAccuracyThread.setName("JGLFW Sync");
  /external/libvpx/libvpx/test/
vp9_thread_test.cc 58 EXPECT_NE(vpx_get_worker_interface()->sync(&worker_), 0);
70 EXPECT_NE(vpx_get_worker_interface()->sync(&worker_), 0);
75 EXPECT_NE(vpx_get_worker_interface()->sync(&worker_), 0);
89 EXPECT_FALSE(vpx_get_worker_interface()->sync(&worker_));
97 EXPECT_NE(vpx_get_worker_interface()->sync(&worker_), 0);
143 case 2: winterface.sync = NULL; break;
207 int Sync(VPxWorker *const worker) { return !worker->had_error; }
220 impl::Init, impl::Reset, impl::Sync, impl::Launch, impl::Execute, impl::End
  /art/runtime/
mem_map.h 129 bool Sync();

Completed in 1199 milliseconds

1 2 3 4 5 6 7