HomeSort by relevance Sort by last modified time
    Searched refs:cond (Results 151 - 175 of 1101) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libcups/cups/
thread-private.h 90 extern void _cupsCondBroadcast(_cups_cond_t *cond);
91 extern void _cupsCondInit(_cups_cond_t *cond);
92 extern void _cupsCondWait(_cups_cond_t *cond, _cups_mutex_t *mutex, double timeout);
  /external/libopus/celt/
arch.h 80 #define celt_assert(cond) {if (!(cond)) {CELT_FATAL("assertion failed: " #cond);}}
81 #define celt_assert2(cond, message) {if (!(cond)) {CELT_FATAL("assertion failed: " #cond "\n" message);}}
84 #define celt_assert(cond)
85 #define celt_assert2(cond, message)
90 #define celt_sig_assert(cond) {if (!(cond)) {CELT_FATAL("signal assertion failed: " #cond);}
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/
2-2.c 10 * if the absolute time specified by abstime passes before the condition cond is
29 pthread_cond_t cond; member in struct:testdata
64 fprintf(stderr, "Thread1 is waiting for the cond\n");
65 rc = pthread_cond_timedwait(&td.cond, &td.mutex, &timeout);
86 if (pthread_cond_init(&td.cond, NULL) != 0) {
87 fprintf(stderr, "Fail to initialize cond\n");
  /external/mesa3d/src/compiler/nir/
nir_lower_bitmap.c 86 nir_ssa_def *cond; local
107 cond = nir_f2b(b, nir_channel(b, &tex->dest.ssa,
111 discard->src[0] = nir_src_for_ssa(cond);
  /external/speex/libspeexdsp/
os_support.h 155 #define speex_assert(cond) {if (!(cond)) {speex_fatal("assertion failed: " #cond);}}
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
versionpredicate.py 124 seq = [cond + " " + str(ver) for cond, ver in self.pred]
134 for cond, ver in self.pred:
135 if not compmap[cond](version, ver):
  /external/compiler-rt/test/lsan/TestCases/
leak_check_before_thread_started.cc 10 pthread_cond_t cond = PTHREAD_COND_INITIALIZER; variable
  /external/jemalloc_new/include/jemalloc/internal/
background_thread_structs.h 24 pthread_cond_t cond; member in struct:background_thread_info_s
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/
2-2.c 28 pthread_cond_t cond; member in struct:testdata
57 fprintf(stderr, "[Thread 0x%p] is waiting for the cond for at "
59 rc = pthread_cond_timedwait(&td.cond, &td.mutex, &timeout);
95 if (pthread_cond_init(&td.cond, NULL) != 0) {
96 fprintf(stderr, "Fail to initialize cond\n");
120 rc = pthread_cond_broadcast(&td.cond);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_signal/
2-1.c 26 pthread_cond_t cond; member in struct:testdata
60 fprintf(stderr, "[Thread 0x%p] is waiting for the cond\n",
62 rc = pthread_cond_wait(&td.cond, &td.mutex);
88 "[Thread 0x%p] did not owned the mutex after the cond wait\n",
116 if (pthread_cond_init(&td.cond, NULL) != 0) {
117 fprintf(stderr, "Fail to initialize cond\n");
141 if (pthread_cond_signal(&td.cond) != 0) {
2-2.c 28 pthread_cond_t cond; member in struct:testdata
58 "[Thread 0x%p] is waiting for the cond for at most %d secs\n",
60 rc = pthread_cond_timedwait(&td.cond, &td.mutex, &timeout);
87 "[Thread 0x%p] did not owned the mutex after the cond wait\n",
115 if (pthread_cond_init(&td.cond, NULL) != 0) {
116 fprintf(stderr, "Fail to initialize cond\n");
133 if (pthread_cond_signal(&td.cond) != 0) {
4-1.c 25 pthread_cond_t cond; member in struct:testdata
58 fprintf(stderr, "[Thread 0x%p] is waiting for the cond\n",
60 rc = pthread_cond_wait(&td.cond, &td.mutex);
85 if (pthread_cond_init(&td.cond, NULL) != 0) {
86 fprintf(stderr, "Fail to initialize cond\n");
108 rc = pthread_cond_signal(&td.cond);
  /external/ltp/testcases/realtime/perf/latency/
pthread_cond_latency.c 113 pthread_cond_t cond = PTHREAD_COND_INITIALIZER; local
142 if (pthread_create(&childid, &attr, childfunc, (void *)&cond) != 0) {
157 if (pthread_cond_broadcast(&cond) != 0) {
163 if (pthread_cond_signal(&cond) != 0) {
  /external/perfetto/src/traced/probes/ftrace/
ftrace_thread_sync.h 56 std::condition_variable cond; member in struct:perfetto::FtraceThreadSync
  /external/python/cpython2/Lib/distutils/
versionpredicate.py 124 seq = [cond + " " + str(ver) for cond, ver in self.pred]
134 for cond, ver in self.pred:
135 if not compmap[cond](version, ver):
  /external/python/cpython3/Lib/distutils/
versionpredicate.py 125 seq = [cond + " " + str(ver) for cond, ver in self.pred]
135 for cond, ver in self.pred:
136 if not compmap[cond](version, ver):
  /external/selinux/libsepol/include/sepol/policydb/
avrule_block.h 37 cond_list_t * cond);
  /external/tensorflow/tensorflow/cc/ops/
while_loop.h 25 // Function that takes cond graph inputs and returns cond graph boolean output.
42 // * cond: a function that builds the condition graph of the loop. Takes the
66 const CondGraphBuilderFn& cond,
  /external/vboot_reference/firmware/lib/include/
vboot_common.h 20 #define _BA1_(cond, line) \
21 extern int __build_assertion_ ## line[1 - 2*!(cond)] \
24 #define BUILD_ASSERT(cond) _BA0_(cond, __LINE__)
  /external/python/cpython2/Doc/includes/
mp_benchmarks.py 60 def pipe_func(c, cond, iterations):
62 cond.acquire()
63 cond.notify()
64 cond.release()
73 cond = multiprocessing.Condition()
81 args=(d, cond, iterations))
82 cond.acquire()
84 cond.wait()
85 cond.release()
  /external/tensorflow/tensorflow/python/autograph/operators/
control_flow.py 231 def if_stmt(cond, body, orelse, get_state, set_state):
235 cond: Boolean.
255 if tensor_util.is_tensor(cond):
256 return tf_if_stmt(cond, body, orelse, get_state, set_state)
258 return _py_if_stmt(cond, body, orelse)
261 def tf_if_stmt(cond, body, orelse, get_state, set_state):
262 """Overload of if_stmt that stages a TF cond."""
271 return control_flow_ops.cond(cond, protected_body, protected_orelse)
307 def _py_if_stmt(cond, body, orelse)
    [all...]
  /external/vixl/src/aarch32/
disasm-aarch32.cc 1127 void Disassembler::adc(Condition cond,
1133 os() << ToCString(kAdc) << ConditionPrinter(it_block_, cond) << size;
1141 void Disassembler::adcs(Condition cond,
1147 os() << ToCString(kAdcs) << ConditionPrinter(it_block_, cond) << size;
1155 void Disassembler::add(Condition cond,
1161 os() << ToCString(kAdd) << ConditionPrinter(it_block_, cond) << size;
1169 void Disassembler::add(Condition cond, Register rd, const Operand& operand) {
1171 os() << ToCString(kAdd) << ConditionPrinter(it_block_, cond) << " " << rd
1175 void Disassembler::adds(Condition cond,
1181 os() << ToCString(kAdds) << ConditionPrinter(it_block_, cond) << size
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64-inl.h 91 StatusFlags nzcv, Condition cond) {
94 ConditionalCompareMacro(rn, -operand.ImmediateValue(), nzcv, cond, CCMN);
96 ConditionalCompareMacro(rn, operand, nzcv, cond, CCMP);
104 Condition cond) {
107 ConditionalCompareMacro(rn, -operand.ImmediateValue(), nzcv, cond, CCMP);
109 ConditionalCompareMacro(rn, operand, nzcv, cond, CCMN);
294 void TurboAssembler::B(Condition cond, Label* label) {
296 B(label, cond);
346 Condition cond) {
349 DCHECK((cond != al) && (cond != nv))
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc 172 void TurboAssembler::Jump(Register target, Condition cond) { bx(target, cond); }
175 Condition cond) {
176 mov(pc, Operand(target, rmode), LeaveCC, cond);
180 Condition cond) {
182 Jump(static_cast<intptr_t>(target), rmode, cond); local
186 Condition cond) {
196 b(code_target_index * kInstrSize, cond, RelocInfo::RELATIVE_CODE_TARGET);
203 Jump(scratch, cond);
214 Jump(ip, cond);
219 Jump(static_cast<intptr_t>(code.address()), rmode, cond); local
    [all...]
  /external/v8/src/compiler/
common-operator-reducer.cc 22 Decision DecideCondition(JSHeapBroker* broker, Node* const cond) {
23 switch (cond->opcode()) {
25 Int32Matcher mcond(cond);
29 HeapObjectMatcher mcond(cond);
84 Node* const cond = node->InputAt(0); local
85 // Swap IfTrue/IfFalse on {branch} if {cond} is a BooleanNot and use the input
86 // to BooleanNot as new condition for {branch}. Note we assume that {cond} was
88 // reduction logic). The same applies if {cond} is a Select acting as boolean
90 if (cond->opcode() == IrOpcode::kBooleanNot ||
91 (cond->opcode() == IrOpcode::kSelect &
257 Node* const cond = branch->InputAt(0); local
386 Node* const cond = node->InputAt(0); local
    [all...]

Completed in 668 milliseconds

1 2 3 4 5 67 8 91011>>