Home
last modified time | relevance | path

Searched refs:blocked (Results 1 – 25 of 310) sorted by relevance

12345678910>>...13

/external/swiftshader/src/System/
DResource.cpp24 blocked = 0; in Resource()
44 blocked++; in lock()
50 blocked--; in lock()
72 if(blocked) in lock()
90 blocked++; in lock()
96 blocked--; in lock()
116 if(blocked) in unlock()
144 if(blocked) in unlock()
166 if(count == 0 && !blocked) in destruct()
DResource.hpp50 volatile int blocked; member in sw::Resource
/external/swiftshader/src/Common/
DResource.cpp24 blocked = 0; in Resource()
44 blocked++; in lock()
50 blocked--; in lock()
72 if(blocked) in lock()
90 blocked++; in lock()
96 blocked--; in lock()
116 if(blocked) in unlock()
144 if(blocked) in unlock()
166 if(count == 0 && !blocked) in destruct()
DResource.hpp50 volatile int blocked; member in sw::Resource
/external/mesa3d/include/c11/
Dthreads_win32.h109 int blocked;
191 if (cond->blocked == 0) { in impl_cond_do_signal()
196 cond->to_unblock += nsignal = cond->blocked; in impl_cond_do_signal()
197 cond->blocked = 0; in impl_cond_do_signal()
201 cond->blocked--; in impl_cond_do_signal()
203 } else if (cond->blocked > cond->gone) { in impl_cond_do_signal()
206 cond->blocked -= cond->gone; in impl_cond_do_signal()
210 nsignal = cond->to_unblock = cond->blocked; in impl_cond_do_signal()
211 cond->blocked = 0; in impl_cond_do_signal()
214 cond->blocked--; in impl_cond_do_signal()
[all …]
/external/virglrenderer/src/gallium/include/c11/
Dthreads_win32.h95 int blocked;
177 if (cond->blocked == 0) { in impl_cond_do_signal()
182 cond->to_unblock += nsignal = cond->blocked; in impl_cond_do_signal()
183 cond->blocked = 0; in impl_cond_do_signal()
187 cond->blocked--; in impl_cond_do_signal()
189 } else if (cond->blocked > cond->gone) { in impl_cond_do_signal()
192 cond->blocked -= cond->gone; in impl_cond_do_signal()
196 nsignal = cond->to_unblock = cond->blocked; in impl_cond_do_signal()
197 cond->blocked = 0; in impl_cond_do_signal()
200 cond->blocked--; in impl_cond_do_signal()
[all …]
/external/wpa_supplicant_8/src/drivers/
Drfkill.c50 int blocked; member
93 if (new_blocked != rfkill->blocked) { in rfkill_receive()
94 rfkill->blocked = new_blocked; in rfkill_receive()
177 rfkill->blocked = 1; in rfkill_init()
180 rfkill->blocked = 1; in rfkill_init()
223 return rfkill->blocked; in rfkill_is_blocked()
/external/bcc/tools/
Ddeadlock_detector.py207 def _unblock(thisnode, blocked, B): argument
211 if node in blocked:
212 blocked.remove(node)
230 blocked = set() # vertex: blocked from search?
232 blocked.add(startnode)
242 elif nextnode not in blocked:
246 blocked.add(nextnode)
251 _unblock(thisnode, blocked, B)
Doffcputime_example.txt4 This program shows stack traces that were blocked, and the total duration they
5 were blocked. It works by tracing when threads block and when they return to
6 CPU, measuring both the time they were blocked (aka the "off-CPU time") and the
7 blocked stack trace and the task name. This data is summarized in kernel by
8 summing the blocked time by unique stack trace and task name.
591 are often blocked off-CPU waiting for work.
621 The stack trace shows "dd" is blocked waiting on disk I/O, as expected, for a
645 Here, dd was blocked for 4.4 seconds out of 5. Or put differently, likely
Dwakeuptime_example.txt6 and target processes, and the total blocked time. This blocked time is measured
14 blocked stacks. wakeuptime can then be used to show the stacks that performed
25 Tracing blocked time (us) by kernel stack... Hit Ctrl-C to end.
188 were blocked and woken up in this way was 4.5 seconds.
201 Tracing blocked time (us) by kernel stack... Hit Ctrl-C to end.
261 seconds of blocked time: I'd run a "sleep 1".
270 Tracing blocked time (us) by kernel stack for 5 secs.
442 task name on top. The 2nd column is the total blocked time.
477 ./wakeuptime # trace blocked time with waker stacks
/external/webrtc/talk/app/webrtc/test/
Dfakedatachannelprovider.h94 void set_send_blocked(bool blocked) { in set_send_blocked() argument
95 send_blocked_ = blocked; in set_send_blocked()
96 if (!blocked) { in set_send_blocked()
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
Dmath_utils_test.py139 blocked = math_utils.block_diagonal([completely_undefined,
143 blocked.get_shape().as_list())
149 blocked.eval(feed_dict={
158 blocked = math_utils.block_diagonal([[[2.]],
162 blocked.get_shape().as_list())
168 blocked.eval(feed_dict={
/external/google-breakpad/src/client/solaris/handler/
Dexception_handler.cc236 bool blocked = true; in InternalWriteMinidump() local
241 blocked = false; in InternalWriteMinidump()
249 if (blocked) in InternalWriteMinidump()
/external/syzkaller/pkg/report/testdata/linux/report/
D2211 TITLE: kernel panic: hung_task: blocked tasks
4 [ 246.756084] Kernel panic - not syncing: hung_task: blocked tasks
/external/eigen/lapack/
Dcholesky.cpp29 if(UPLO(*uplo)==UP) ret = int(internal::llt_inplace<Scalar, Upper>::blocked(A));
30 else ret = int(internal::llt_inplace<Scalar, Lower>::blocked(A));
/external/swiftshader/third_party/llvm-7.0/llvm/utils/release/
Dmerge-request.sh150 check_duplicates=`$BUGZILLA_CMD query --blocked=$release_metabug --field="cf_fixed_by_commits=$rev_…
186 -c "$bugzilla_component" --blocked=$release_metabug \
/external/eigen/Eigen/src/Cholesky/
DLLT_LAPACKE.h67 static Index blocked(MatrixType& m) \
78 static Index blocked(MatrixType& m) \
DLLT.h328 static Index blocked(MatrixType& m)
377 static EIGEN_STRONG_INLINE Index blocked(MatrixType& mat)
380 return llt_inplace<Scalar, Lower>::blocked(matt);
397 { return llt_inplace<typename MatrixType::Scalar, Lower>::blocked(m)==-1; }
407 { return llt_inplace<typename MatrixType::Scalar, Upper>::blocked(m)==-1; }
/external/autotest/client/site_tests/security_NosymfollowMountOption/
Dcontrol.baseline9 traversal should be blocked on the given filesystem. For user-supplied
25 This autotest ensures that symlink traversal is blocked on filesystems that
/external/mesa3d/src/gallium/auxiliary/rbug/
Drbug_context.h121 rbug_block_t blocked; member
182 rbug_block_t blocked,
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt136 # Illegal combinations and orderings are blocked in ast.c:
137 # multiple (test comp_for) arguments are blocked; keyword unpackings
138 # that precede iterable unpackings are blocked; etc.
/external/python/cpython3/Grammar/
DGrammar133 # Illegal combinations and orderings are blocked in ast.c:
134 # multiple (test comp_for) arguments are blocked; keyword unpackings
135 # that precede iterable unpackings are blocked; etc.
/external/tensorflow/tensorflow/core/kernels/
Dmkl_reshape_op.cc56 mkl_shape_input.GetTfDataFormat() != memory::format::blocked) { in SkipReorder()
191 memory::format::blocked); in Compute()
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt152 # Illegal combinations and orderings are blocked in ast.c:
153 # multiple (test comp_for) arguments are blocked; keyword unpackings
154 # that precede iterable unpackings are blocked; etc.
/external/autotest/client/site_tests/cheets_AppCompatTest/
Dcheets_AppCompatTest.py139 blocked = self._get_log_entry_count(",BLOCKED,")
146 blocked, skipped, ft))

12345678910>>...13