/external/guava/guava/src/com/google/common/cache/ |
D | Striped64.java | 156 transient volatile int busy; field in Striped64 207 if (busy == 0) { // Try to attach new Cell in retryUpdate() 209 if (busy == 0 && casBusy()) { in retryUpdate() 220 busy = 0; in retryUpdate() 237 else if (busy == 0 && casBusy()) { in retryUpdate() 245 busy = 0; in retryUpdate() 254 else if (busy == 0 && cells == as && casBusy()) { in retryUpdate() 264 busy = 0; in retryUpdate()
|
D | LongAdder.java | 206 busy = 0; in readObject()
|
/external/skia/src/gpu/ |
D | GrPlotMgr.h | 38 char* busy = fBusy; in newPlot() local 41 if (!*busy) { in newPlot() 42 *busy = true; in newPlot() 46 busy++; in newPlot()
|
/external/webrtc/src/system_wrappers/source/ |
D | cpu_linux.cc | 66 long long busy = 0; in CpuUsageMultiCore() local 68 if (GetData(busy, idle, m_busyArray, m_idleArray) != 0) in CpuUsageMultiCore() 71 long long deltaBusy = busy - m_oldBusyTime; in CpuUsageMultiCore() 73 m_oldBusyTime = busy; in CpuUsageMultiCore() 110 int CpuLinux::GetData(long long& busy, long long& idle, long long*& busyArray, in GetData() argument 147 busy = luser + lnice + lsystem; in GetData()
|
D | cpu_linux.h | 34 int GetData(long long& busy, long long& idle, long long*& busyArray,
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
D | DFA.java | 829 boolean _hasSynPred(DFAState d, Set<DFAState> busy) { 830 busy.add(d); 842 if ( !busy.contains(edgeTarget) && _hasSynPred(edgeTarget, busy) ) return true; 853 boolean _hasSemPred(DFAState d, Set<DFAState> busy) { 854 busy.add(d); 862 if ( !busy.contains(edgeTarget) && _hasSemPred(edgeTarget, busy) ) return true; 874 boolean _hasCycle(DFAState d, Map<DFAState, Integer> busy) { 875 busy.put(d, CYCLIC_BUSY); 880 if ( busy.get(target)!=null ) cond = busy.get(target); 882 if ( cond!=CYCLIC_DONE && _hasCycle(target, busy) ) return true; [all …]
|
/external/compiler-rt/test/tsan/ |
D | signal_reset.cc | 20 static void* busy(void *p) { in busy() function 61 pthread_create(&th[0], 0, busy, 0); in main()
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCStatement.java | 96 int busy = 0; in executeQuery() local 121 conn.busy3(conn.db, ++busy)) { in executeQuery() 130 int ms = 20 + busy * 10; in executeQuery()
|
/external/wpa_supplicant_8/src/ap/ |
D | acs.c | 295 long double factor, busy, total; in acs_survey_interference_factor() local 298 busy = survey->channel_time_busy; in acs_survey_interference_factor() 300 busy = survey->channel_time_rx; in acs_survey_interference_factor() 311 busy -= survey->channel_time_tx; in acs_survey_interference_factor() 317 (busy / total) * in acs_survey_interference_factor()
|
/external/javasqlite/src/main/java/SQLite/ |
D | BusyHandler.java | 19 public boolean busy(String table, int count); in busy() method
|
/external/chromium-trace/trace-viewer/third_party/Paste/docs/ |
D | paste-httpserver-threadpool.txt | 44 * For a reasonable amount of time ("busy") 57 then the server looks at the workers; all workers are busy or hung. 59 there are less than ``spawn_if_under`` busy threads. So if you have 61 4 busy threads, another thread will be opened (bringing the number of 62 busy threads back to 5). Later those threads may be collected again
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/ |
D | httpserver.py | 652 busy = 0 663 busy += 1 664 if busy < self.spawn_if_under: 667 'workers', busy, self.spawn_if_under-busy) 669 for i in range(self.spawn_if_under - busy): 674 busy) 694 result = dict(idle=[], busy=[], hung=[], dying=[], zombie=[])
|
/external/libunwind/src/ia64/ |
D | Gscript.c | 52 .busy = AO_TS_INITIALIZER 105 if (!spin_trylock_irqsave (&cache->busy, *saved_maskp)) in get_script_cache() 113 if (AO_test_and_set (&cache->busy) == AO_TS_SET) in get_script_cache() 140 spin_unlock_irqrestore (&cache->busy, *saved_maskp); in put_script_cache() 143 AO_CLEAR (&cache->busy); in put_script_cache()
|
/external/libpcap/msdos/ |
D | pktdrvr.c | 802 PUBLIC void PktQueueBusy (BOOL busy) in PktQueueBusy() argument 804 *rxOutOfsFp = busy ? (*rxInOfsFp + sizeof(RX_ELEMENT)) : *rxInOfsFp; in PktQueueBusy() 857 PUBLIC void PktQueueBusy (BOOL busy) in PktQueueBusy() argument 863 if (busy) in PktQueueBusy() 923 PUBLIC void PktQueueBusy (BOOL busy) in PktQueueBusy() argument 929 if (busy) in PktQueueBusy() 983 PUBLIC void PktQueueBusy (BOOL busy) in PktQueueBusy() argument 985 rxOutOfs = busy ? (rxInOfs + sizeof(RX_ELEMENT)) : rxInOfs; in PktQueueBusy()
|
D | pktdrvr.h | 145 extern void PktQueueBusy (BOOL busy);
|
/external/valgrind/coregrind/m_gdbserver/ |
D | m_gdbserver.c | 778 static volatile int busy = 0; variable 782 busy++; in VG_() 800 busy--; in VG_() 844 busy, vgdb_interrupted_tid); in give_control_back_to_vgdb() 869 if (busy) { in VG_() 920 busy++; in VG_() 933 busy--; in VG_()
|
/external/libunwind/include/tdep-ia64/ |
D | script.h | 63 AO_TS_t busy; /* is the script-cache busy? */ member
|
/external/valgrind/gdbserver_tests/ |
D | nlsigvgdb.stdinB.gdb | 9 # an invocation while the gdbserver is already busy.
|
D | mcinvokeRU.vgtest | 7 # as the Valgrind process is always busy, we do not need the vgdb.invoker prereq.
|
/external/valgrind/helgrind/tests/ |
D | bar_bad.stderr.exp | 53 with error code 16 (EBUSY: Device or resource busy)
|
D | pth_cond_destroy_busy.stderr.exp | 42 with error code 16 (EBUSY: Device or resource busy)
|
D | pth_cond_destroy_busy.stderr.exp-ppc64 | 42 with error code 16 (EBUSY: Device or resource busy)
|
/external/e2fsprogs/e2fsck/ |
D | mtrace.h | 136 } busy; member
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_buffer_objects.c | 182 bool busy; in intel_bufferobj_subdata() local 204 busy = in intel_bufferobj_subdata() 208 if (busy) { in intel_bufferobj_subdata()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_buffer_objects.c | 182 bool busy; in intel_bufferobj_subdata() local 204 busy = in intel_bufferobj_subdata() 208 if (busy) { in intel_bufferobj_subdata()
|