Home
last modified time | relevance | path

Searched refs:pending (Results 1 – 25 of 375) sorted by relevance

12345678910>>...15

/external/tensorflow/tensorflow/core/common_runtime/
Dpending_counts_test.cc37 EXPECT_EQ(c.pending(h[id]), id); in TEST()
54 EXPECT_EQ(c.pending(h[1]), 0); in TEST()
55 EXPECT_EQ(c.pending(h[3]), 1); in TEST()
56 EXPECT_EQ(c.pending(h[5]), 1); in TEST()
57 EXPECT_EQ(c.pending(h[170]), 156); in TEST()
73 EXPECT_EQ(c.pending(h[id]), c2.pending(h[id])); in TEST()
90 EXPECT_EQ(c.pending(h), count); in TEST()
92 EXPECT_EQ(c.pending(h), count - 1); in TEST()
95 EXPECT_EQ(c.pending(h), count - 1); in TEST()
98 EXPECT_EQ(c.pending(h), 0); in TEST()
[all …]
Dpending_counts.h97 c->pending = pending_count; in set_initial_count()
103 c->pending = pending_count; in set_initial_count()
117 DCHECK_EQ(pending(h), 0); in mark_started()
132 c->pending = 1; in mark_completed()
136 c->pending = 1; in mark_completed()
139 int pending(Handle h) { in pending() function
143 return c->pending; in pending()
152 return c->pending; in pending()
161 DCHECK_GE(pending(h), v); in decrement_pending()
164 c->pending -= v; in decrement_pending()
[all …]
/external/valgrind/docs/internals/
D3_2_BUGSTATUS.txt3 pending = is scheduled to be fixed (or at least considered) on this branch
134 pending pending 140939 --track-fds reports leakage of
137 pending pending 141366 Add sys_vserver support to valgrind (w/ patch)
139 pending pending 140522 valgrind 3.2.2 libmpiwrap: MPI_STATUS_IGNORE
158 r6630 pending n-i-bz add additional ptrace reason codes
160 r6631 pending 142186 add I2C ioctl support
163 r7028 pending 151209 valgrind unable to execute programs for users with UID > 2^16
229 r6746/7/8 pending n-i-bz Improve callgrind documentation
231 r6749 pending n-i-bz callgrind_annotate: Fix a warning
233 r6751 pending n-i-bz callgrind: fix build with srcdir != builddir
[all …]
D3_1_BUGSTATUS.txt3 pending = is scheduled to be fixed (or at least considered) on this branch
73 vx1554 pending n-i-bz re-add stfiwx support (PPC32)
84 v5968 pending 117172 FUTEX_WAKE does not use uaddr2
86 pending pending 117362 partially defined equality
93 pending wontfix n-i-bz ppc32: jm-insns doesn't do FP tests
94 pending wontfix 117564 __NR_clone param test (w/ partial patch)
98 pending pending 118118 SIGBUS in disInstr_AMD64 after long run
100 pending pending 118466 add %r,%r mishandled by memcheck
120 pending pending 120732 Generating trapno for sigcontext (x86)
125 pending pending 121617 Assertion 'sizeof(*regs) == sizeof(prs->pr_reg)
[all …]
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_reset.c40 uint32_t pending; in brw_get_graphics_reset_status() local
56 &pending); in brw_get_graphics_reset_status()
72 if (pending != 0) { in brw_get_graphics_reset_status()
85 uint32_t pending; in brw_check_for_reset() local
89 &pending); in brw_check_for_reset()
93 if (active > 0 || pending > 0) in brw_check_for_reset()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
D12-1.c59 sigset_t mask, pending; in main() local
102 ret = sigpending(&pending); in main()
109 ret = sigismember(&pending, SIGUSR1); in main()
117 ret = sigismember(&pending, SIGUSR2); in main()
178 ret = sigpending(&pending); in main()
185 ret = sigismember(&pending, SIGUSR1); in main()
197 ret = sigismember(&pending, SIGUSR2); in main()
/external/toybox/
DAndroid.mk149 toys/pending/dd.c \
150 toys/pending/diff.c \
151 toys/pending/expr.c \
152 toys/pending/fmt.c \
153 toys/pending/getfattr.c \
154 toys/pending/gzip.c \
155 toys/pending/lsof.c \
156 toys/pending/modprobe.c \
157 toys/pending/more.c \
158 toys/pending/stty.c \
[all …]
/external/selinux/libselinux/utils/
Dgetsebool.c17 int i, get_all = 0, rc = 0, active, pending, len = 0, opt; in main() local
84 pending = security_get_boolean_pending(names[i]); in main()
85 if (pending < 0) { in main()
98 if (pending != active) { in main()
101 (pending ? "on" : "off")); in main()
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_import.py23 pending = [names]
24 while pending:
25 node = pending.pop()
31 pending.append(node.children[0])
33 pending.extend(node.children[::-2])
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_import.py23 pending = [names]
24 while pending:
25 node = pending.pop()
31 pending.append(node.children[0])
33 pending.extend(node.children[::-2])
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_windows_utils.py78 self.assertFalse(ov1.pending)
82 self.assertTrue(ov1.pending)
93 self.assertFalse(ov2.pending)
102 self.assertFalse(ov1.pending)
104 self.assertFalse(ov2.pending)
162 self.assertFalse(ovout.pending)
163 self.assertFalse(overr.pending)
164 self.assertFalse(ovin.pending)
/external/python/cpython2/Modules/zlib/
Ddeflate.c407 s->pending = 0;
450 int ZEXPORT deflatePending (strm, pending, bits) in deflatePending() argument
451 unsigned *pending; in deflatePending()
456 if (pending != Z_NULL)
457 *pending = strm->state->pending;
516 if (err == Z_BUF_ERROR && s->pending == 0)
649 len = s->pending;
658 s->pending -= len;
659 if (s->pending == 0) {
730 s->pending);
[all …]
/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_gcm.cpp50 init_def_count(uses, pending); in run()
52 for (node_iterator N, I = pending.begin(), E = pending.end(); in run()
71 pending.remove_node(o); in run()
79 if (!pending.empty()) { in run()
81 dump::dump_op(pending.front()); in run()
84 assert(pending.empty()); in run()
92 init_use_count(uses, pending); in run()
95 if (!pending.empty()) { in run()
97 dump::dump_op(pending.front()); in run()
101 assert(pending.empty()); in run()
[all …]
/external/jemalloc/src/
Dtsd.c42 bool pending[MALLOC_TSD_CLEANUPS_MAX], again; in _malloc_thread_cleanup() local
46 pending[i] = true; in _malloc_thread_cleanup()
51 if (pending[i]) { in _malloc_thread_cleanup()
52 pending[i] = cleanups[i](); in _malloc_thread_cleanup()
53 if (pending[i]) in _malloc_thread_cleanup()
/external/toybox/scripts/
Dmkstatus.py26 blah,pending=readit(["sed -n 's/[^ \\t].*TOY(\\([^,]*\\),.*/\\1/p' toys/pending/*.c"], 1) variable
43 if (i in pending): print "barf %s" % i
46 for i in toystuff + pending:
89 if i in toystuff or i in pending:
118 if j in pending: todo.append('<strike>%s</strike>' % j)
/external/syslinux/com32/lib/zlib/
Ddeflate.c368 s->pending = 0;
565 unsigned len = strm->state->pending;
575 strm->state->pending -= len;
576 if (strm->state->pending == 0) {
647 s->pending);
684 uInt beg = s->pending; /* start of bytes to update crc */
687 if (s->pending == s->pending_buf_size) {
688 if (s->gzhead->hcrc && s->pending > beg)
690 s->pending - beg);
692 beg = s->pending;
[all …]
/external/python/cpython3/Lib/test/libregrtest/
Druntest_mp.py104 def __init__(self, pending, output, ns): argument
106 self.pending = pending
114 test = next(self.pending)
155 pending = MultiprocessIterator(regrtest.tests)
159 workers = [MultiprocessThread(pending, output, regrtest.ns)
225 pending.interrupted = True
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/
Dtemplate_23-1.in28 * The test fails if signal handler if reentered or signal is not pending when raised again.
90 sigset_t pending;
109 /* check the signal is pending */
110 ret = sigpending( &pending );
114 UNRESOLVED( ret, "Failed to get pending signal set" );
117 ret = sigismember( &pending, SIGNAL );
121 FAILED( "signal is not pending" );
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dstatic_schedule.cc104 int pending = pending_inputs[fanout]; in EstimateEarliestExecutionTimes() local
105 if (pending == 0) { in EstimateEarliestExecutionTimes()
108 } else if (pending == 1) { in EstimateEarliestExecutionTimes()
174 int pending = pending_fanouts[fanin]; in EstimateRequiredTimes() local
175 if (pending == 0) { in EstimateRequiredTimes()
178 } else if (pending == 1) { in EstimateRequiredTimes()
/external/python/cpython3/Modules/zlib/
Ddeflate.c481 s->pending = 0;
528 int ZEXPORT deflatePending (strm, pending, bits) in deflatePending() argument
529 unsigned *pending; in deflatePending()
534 if (pending != Z_NULL)
535 *pending = strm->state->pending;
737 len = s->pending;
746 s->pending -= len;
747 if (s->pending == 0) {
757 if (s->gzhead->hcrc && s->pending > (beg)) \
759 s->pending - (beg)); \
[all …]
/external/zlib/src/
Ddeflate.c481 s->pending = 0;
528 int ZEXPORT deflatePending (strm, pending, bits) in deflatePending() argument
529 unsigned *pending; in deflatePending()
534 if (pending != Z_NULL)
535 *pending = strm->state->pending;
737 len = s->pending;
746 s->pending -= len;
747 if (s->pending == 0) {
757 if (s->gzhead->hcrc && s->pending > (beg)) \
759 s->pending - (beg)); \
[all …]
/external/adhd/cras/src/server/
Dcras_alert.c29 int pending; member
97 if (!alert->pending) in cras_alert_process()
100 alert->pending = 0; in cras_alert_process()
120 alert->pending = 1; in cras_alert_pending()
129 alert->pending = 1; in cras_alert_pending_data()
/external/syslinux/gpxe/src/drivers/net/ath5k/
Dath5k_dma.c170 u32 tx_queue, pending; in ath5k_hw_stop_tx_dma() local
193 pending = ath5k_hw_reg_read(ah, in ath5k_hw_stop_tx_dma()
197 } while (--i && pending); in ath5k_hw_stop_tx_dma()
201 if (ah->ah_mac_version >= (AR5K_SREV_AR2414 >> 4) && pending) { in ath5k_hw_stop_tx_dma()
228 pending = ath5k_hw_reg_read(ah, in ath5k_hw_stop_tx_dma()
232 } while (--i && pending); in ath5k_hw_stop_tx_dma()
240 if (pending) in ath5k_hw_stop_tx_dma()
/external/sonivox/arm-wt-22k/lib_src/
Deas_midi.c93 pMIDIStream->pending = EAS_FALSE; in EAS_InitMIDIStream()
137 pMIDIStream->pending = EAS_TRUE; in EAS_ParseMIDIStream()
149 pMIDIStream->pending = EAS_FALSE; in EAS_ParseMIDIStream()
166 pMIDIStream->pending = EAS_TRUE; in EAS_ParseMIDIStream()
175 pMIDIStream->pending = EAS_FALSE; in EAS_ParseMIDIStream()
185 pMIDIStream->pending = EAS_TRUE; in EAS_ParseMIDIStream()
211 pMIDIStream->pending = EAS_FALSE; in EAS_ParseMIDIStream()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
D23-26.c88 sigset_t pending; in handler() local
105 ret = sigpending(&pending); in handler()
111 ret = sigismember(&pending, SIGNAL); in handler()

12345678910>>...15