/third_party/gstreamer/gstreamer/tests/check/generic/ |
D | sinks.c | 30 GstState new, GstState pending) in pop_state_change_message() argument 45 fail_unless (pending == _pending, "Unexpected pending state"); in pop_state_change_message() 55 GstState current, pending; in GST_START_TEST() local 65 ret = gst_element_get_state (sink, ¤t, &pending, 0); in GST_START_TEST() 68 fail_unless (pending == GST_STATE_PLAYING, "bad pending state"); in GST_START_TEST() 89 GstState current, pending; in GST_START_TEST() local 97 ret = gst_element_get_state (sink, ¤t, &pending, 0); in GST_START_TEST() 100 fail_unless (pending == GST_STATE_PLAYING, "bad pending state"); in GST_START_TEST() 110 ret = gst_element_get_state (sink, ¤t, &pending, GST_CLOCK_TIME_NONE); in GST_START_TEST() 113 fail_unless (pending == GST_STATE_VOID_PENDING, "bad pending state"); in GST_START_TEST() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | LLVMReactorDebugInfo.cpp | 282 if(scope.pending.location != location) in EmitVariable() 296 scope.pending = Pending{}; in EmitVariable() 297 scope.pending.name = name; in EmitVariable() 298 scope.pending.location = location; in EmitVariable() 299 scope.pending.diLocation = getLocation(backtrace, i); in EmitVariable() 300 scope.pending.value = value; in EmitVariable() 301 scope.pending.block = block; in EmitVariable() 302 scope.pending.insertAfter = insertAfter; in EmitVariable() 303 scope.pending.scope = scope.di; in EmitVariable() 309 scope.pending.addNopOnNextLine = true; in EmitVariable() [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_format.cc | 350 const char* pending = format.c_str(); // NUL terminated in format() local 351 const char* cur = pending; in format() 352 const char* end = pending + format.length(); in format() 360 if (cur != start && pending == start) { in format() 361 result.append(pending, static_cast<std::size_t>(cur - pending)); in format() 362 pending = start = cur; in format() 371 if (cur != start && pending == start) { in format() 372 std::size_t escaped = static_cast<std::size_t>(cur - pending) / 2; in format() 373 result.append(pending, escaped); in format() 374 pending += escaped * 2; in format() [all …]
|
/third_party/rust/crates/clap/src/parser/ |
D | arg_matcher.rs | 19 pending: Option<PendingArg>, field 39 pending: None, in new() 85 pending: None, in fill_in_global_values() 187 .pending in needs_more_vals() 205 self.pending.as_ref().map(|p| &p.id) in pending_arg_id() 214 let pending = self.pending.get_or_insert_with(|| PendingArg { in pending_values_mut() localVariable 220 debug_assert_eq!(pending.id, *id, "{}", INTERNAL_ERROR_MSG); in pending_values_mut() 222 debug_assert_eq!(pending.ident, ident, "{}", INTERNAL_ERROR_MSG); in pending_values_mut() 225 pending.trailing_idx.get_or_insert(pending.raw_vals.len()); in pending_values_mut() 227 &mut pending.raw_vals in pending_values_mut() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/sigpending/ |
D | sigpending02.c | 80 sigset_t pending; in test_sigpending() local 81 sigemptyset(&pending); in test_sigpending() 82 TEST(tested_sigpending(&pending)); in test_sigpending() 85 if (sigismember(&pending, i)) in test_sigpending() 97 sigemptyset(&pending); in test_sigpending() 98 TEST(tested_sigpending(&pending)); in test_sigpending() 100 if ((i == SIGUSR1) != sigismember(&pending, i)) in test_sigpending() 111 sigemptyset(&pending); in test_sigpending() 112 TEST(tested_sigpending(&pending)); in test_sigpending() 114 if ((i == SIGUSR1 || i == SIGUSR2) != sigismember(&pending, i)) in test_sigpending()
|
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/ |
D | gstrtprtxqueue.c | 183 g_list_foreach (rtx->pending, (GFunc) gst_buffer_unref, NULL); in gst_rtp_rtx_queue_reset() 184 g_list_free (rtx->pending); in gst_rtp_rtx_queue_reset() 185 rtx->pending = NULL; in gst_rtp_rtx_queue_reset() 264 rtx->pending = g_list_prepend (rtx->pending, gst_buffer_ref (buffer)); in push_seqnum() 392 GList *pending; in gst_rtp_rtx_queue_chain() local 400 pending = rtx->pending; in gst_rtp_rtx_queue_chain() 401 rtx->pending = NULL; in gst_rtp_rtx_queue_chain() 404 pending = g_list_reverse (pending); in gst_rtp_rtx_queue_chain() 405 g_list_foreach (pending, (GFunc) do_push, rtx); in gst_rtp_rtx_queue_chain() 406 g_list_free (pending); in gst_rtp_rtx_queue_chain() [all …]
|
/third_party/mbedtls/library/ |
D | mps_reader.c | 132 .pending = 0, in mps_reader_zero() 345 rd->pending = 0; in mbedtls_mps_reader_get() 369 rd->pending = desired - frag_remaining; in mbedtls_mps_reader_get() 372 (unsigned) rd->pending); in mbedtls_mps_reader_get() 393 rd->pending = 0; in mbedtls_mps_reader_get() 415 mbedtls_mps_size_t pending, commit; in mbedtls_mps_reader_reclaim() local 429 pending = rd->pending; in mbedtls_mps_reader_reclaim() 435 if (pending == 0) { in mbedtls_mps_reader_reclaim() 465 (unsigned) pending); in mbedtls_mps_reader_reclaim() 492 acc_len_needed = backup_len + pending; in mbedtls_mps_reader_reclaim() [all …]
|
/third_party/node/test/sequential/ |
D | test-net-connect-econnrefused.js | 41 let pending; 42 for (pending = 0; pending < ATTEMPTS_PER_ROUND; pending++) { 44 console.log('pending', pending, 'rounds', rounds); 46 if (--pending > 0) return;
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/ |
D | 12-1.c | 57 sigset_t mask, pending; in main() local 100 ret = sigpending(&pending); in main() 107 ret = sigismember(&pending, SIGUSR1); in main() 115 ret = sigismember(&pending, SIGUSR2); in main() 176 ret = sigpending(&pending); in main() 183 ret = sigismember(&pending, SIGUSR1); in main() 195 ret = sigismember(&pending, SIGUSR2); in main()
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/gen/ |
D | generate.go | 250 pending := strings.Builder{} 254 if pending.Len() > 0 { 255 parts = append(parts, fmt.Sprintf(`"%v"`, pending.String())) 256 pending.Reset() 259 if pending.Len() > 0 { 260 parts = append(parts, pending.String()) 261 pending.Reset() 264 pending.WriteRune(r) 267 if pending.Len() > 0 { 268 parts = append(parts, fmt.Sprintf(`"%v"`, pending.String()))
|
/third_party/musl/src/multibyte/ |
D | mbrtoc16.c | 8 unsigned *pending = (unsigned *)ps; in mbrtoc16() local 14 if ((int)*pending > 0) { in mbrtoc16() 15 if (pc16) *pc16 = *pending; in mbrtoc16() 16 *pending = 0; in mbrtoc16() 24 *pending = (wc & 0x3ff) + 0xdc00; in mbrtoc16()
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_windows_utils.py | 28 self.assertFalse(ov1.pending) 32 self.assertTrue(ov1.pending) 43 self.assertFalse(ov2.pending) 52 self.assertFalse(ov1.pending) 54 self.assertFalse(ov2.pending) 113 self.assertFalse(ovout.pending) 114 self.assertFalse(overr.pending) 115 self.assertFalse(ovin.pending)
|
/third_party/gstreamer/gstplugins_bad/ext/wpe/ |
D | WPEThreadedView.cpp | 506 if (egl.pending) { in ~WPEView() 507 egl_pending = egl.pending; in ~WPEView() 508 egl.pending = nullptr; in ~WPEView() 514 if (shm.pending) { in ~WPEView() 515 GST_TRACE ("%p freeing shm pending %" GST_PTR_FORMAT, this, shm.pending); in ~WPEView() 516 shm_pending = shm.pending; in ~WPEView() 517 shm.pending = nullptr; in ~WPEView() 599 … GST_TRACE("pending %" GST_PTR_FORMAT " (%d) committed %" GST_PTR_FORMAT " (%d)", egl.pending, in image() 600 …GST_IS_EGL_IMAGE(egl.pending) ? GST_MINI_OBJECT_REFCOUNT_VALUE(GST_MINI_OBJECT_CAST(egl.pending)) … in image() 604 if (egl.pending) { in image() [all …]
|
/third_party/jerryscript/tests/debugger/ |
D | do_pending_breakpoints.expected | 4 No breakpoint found, do you want to add a pending breakpoint? (y or [n]) 7 No breakpoint found, do you want to add a pending breakpoint? (y or [n]) 11 1: :1 (pending) 12 2: f() (pending) 14 out: pending-breakpoints
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
D | cord_internal.cc | 39 absl::InlinedVector<CordRep*, Constants::kInlinedVectorSize> pending; in Destroy() local 46 pending.push_back(right); in Destroy() 78 if (!pending.empty()) { in Destroy() 79 rep = pending.back(); in Destroy() 80 pending.pop_back(); in Destroy()
|
/third_party/mesa3d/src/intel/vulkan/ |
D | anv_bo_sync.c | 109 uint32_t pending = wait_count; in anv_bo_sync_wait() local 110 while (pending) { in anv_bo_sync_wait() 111 pending = 0; in anv_bo_sync_wait() 123 pending++; in anv_bo_sync_wait() 157 if (pending && !signaled) { in anv_bo_sync_wait() 175 assert(now_pending <= pending); in anv_bo_sync_wait() 177 if (now_pending == pending) { in anv_bo_sync_wait()
|
/third_party/libuv/test/ |
D | test-ipc-send-recv.c | 89 uv_handle_type pending; in recv_cb() local 116 pending = uv_pipe_pending_type(pipe); in recv_cb() 117 ASSERT(pending == ctx.expected_type); in recv_cb() 119 if (pending == UV_NAMED_PIPE) in recv_cb() 121 else if (pending == UV_TCP) in recv_cb() 302 uv_handle_type pending; in read_cb() local 325 pending = uv_pipe_pending_type(pipe); in read_cb() 326 ASSERT(pending == UV_NAMED_PIPE || pending == UV_TCP); in read_cb() 328 if (pending == UV_NAMED_PIPE) in read_cb() 330 else if (pending == UV_TCP) in read_cb()
|
/third_party/node/deps/undici/src/lib/mock/ |
D | mock-agent.js | 151 .filter(({ pending }) => pending) field 155 const pending = this.pendingInterceptors() 157 if (pending.length === 0) { 161 const pluralizer = new Pluralizer('interceptor', 'interceptors').pluralize(pending.length) 166 ${pendingInterceptorsFormatter.format(pending)}
|
/third_party/node/test/parallel/ |
D | test-fs-ready-event-stream.js | 9 assert.strictEqual(readStream.pending, true); 11 assert.strictEqual(readStream.pending, false); 17 assert.strictEqual(writeStream.pending, true); 19 assert.strictEqual(writeStream.pending, false);
|
/third_party/selinux/libselinux/utils/ |
D | getsebool.c | 17 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()
|
/third_party/python/Lib/lib2to3/fixes/ |
D | fix_import.py | 23 pending = [names] 24 while pending: 25 node = pending.pop() 31 pending.append(node.children[0]) 33 pending.extend(node.children[::-2])
|
/third_party/libuv/src/unix/ |
D | async.c | 54 handle->pending = 0; in uv_async_init() 65 if (ACCESS_ONCE(int, handle->pending) != 0) in uv_async_send() 69 if (cmpxchgi(&handle->pending, 0, 1) != 0) in uv_async_send() 79 cmpxchgi(&handle->pending, 1, 0); in uv__async_close() 120 if (0 == cmpxchgi(&h->pending, 1, 0)) in uv__async_io() 153 while (r == -1 && errno == EINTR && ACCESS_ONCE(int, handle->pending) == 1); in uv__async_send()
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
D | SpirvShaderControlFlow.cpp | 179 std::queue<Block::ID> pending; in ExistsPath() local 180 pending.emplace(from); in ExistsPath() 182 while(pending.size() > 0) in ExistsPath() 184 auto id = pending.front(); in ExistsPath() 185 pending.pop(); in ExistsPath() 190 pending.emplace(out); in ExistsPath() 229 auto oldPending = state->pending; in EmitBlocks() 232 std::deque<Block::ID> pending; in EmitBlocks() local 233 state->pending = &pending; in EmitBlocks() 234 pending.push_front(id); in EmitBlocks() [all …]
|
/third_party/libwebsockets/win32port/zlib/ |
D | deflate.c | 368 s->pending = 0; 400 int ZEXPORT deflatePending (strm, pending, bits) in deflatePending() argument 401 unsigned *pending; in deflatePending() 406 *pending = strm->state->pending; 577 unsigned len = strm->state->pending; 587 strm->state->pending -= len; 588 if (strm->state->pending == 0) { 659 s->pending); 696 uInt beg = s->pending; /* start of bytes to update crc */ 699 if (s->pending == s->pending_buf_size) { [all …]
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_gcm.cpp | 50 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 …]
|