Home
last modified time | relevance | path

Searched refs:pending (Results 1 - 25 of 248) sorted by relevance

12345678910

/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DLLVMReactorDebugInfo.cpp282 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 in EmitVariable()
320 auto const &pending = scope.pending; emitPending() local
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
H A Dtime_zone_format.cc346 // [format.begin() ... pending) : already formatted into result in format()
347 // [pending ... cur) : formatting pending, but no special cases in format()
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()
359 // If the new pending text is all ordinary, copy it out. in format()
360 if (cur != start && pending == start) { in format()
361 result.append(pending, static_cast<std::size_t>(cur - pending)); in format()
[all...]
/third_party/ltp/testcases/kernel/syscalls/sigpending/
H A Dsigpending02.c12 * signal pending.
79 /* Initially no signal should be pending */ in test_sigpending()
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()
87 "initialization failed: no signal should be pending by now"); in test_sigpending()
96 /* now we should have exactly one pending signal (SIGUSR1) */ in test_sigpending()
97 sigemptyset(&pending); in test_sigpending()
98 TEST(tested_sigpending(&pending)); in test_sigpending()
[all...]
/third_party/rust/crates/clap/src/parser/
H A Darg_matcher.rs19 pending: Option<PendingArg>,
39 pending: None,
85 pending: None, in fill_in_global_values()
187 .pending
192 "ArgMatcher::needs_more_vals: o={}, pending={}",
205 self.pending.as_ref().map(|p| &p.id)
214 let pending = self.pending.get_or_insert_with(|| PendingArg {
220 debug_assert_eq!(pending.id, *id, "{INTERNAL_ERROR_MSG}");
222 debug_assert_eq!(pending
[all...]
/third_party/libuv/src/unix/
H A Dasync.c60 handle->pending = 0; in uv_async_init()
70 _Atomic int* pending; in uv_async_send() local
79 pending = (_Atomic int*) &handle->pending; in uv_async_send()
83 if (atomic_load_explicit(pending, memory_order_relaxed) != 0) in uv_async_send()
87 if (atomic_exchange(pending, 1) != 0) in uv_async_send()
98 atomic_exchange((_Atomic int*) &handle->pending, 0); in uv__async_close()
110 _Atomic int *pending; in uv__async_io() local
145 /* Atomically fetch and clear pending flag */ in uv__async_io()
146 pending in uv__async_io()
[all...]
/third_party/mbedtls/library/
H A Dmps_reader.c132 .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()
[all...]
/third_party/node/test/sequential/
H A Dtest-net-connect-econnrefused.js41 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/musl/src/multibyte/
H A Dmbrtoc16.c8 unsigned *pending = (unsigned *)ps; in mbrtoc16() local
13 * we use nonzero states without high bit for pending surrogates. */ in mbrtoc16()
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/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/gen/
H A Dgenerate.go250 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
[all...]
/third_party/python/Lib/test/test_asyncio/
H A Dtest_windows_utils.py28 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/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
H A D12-1.c19 * The child process is created with no pending signal
23 * -> send those signals and wait they are pending
25 * -> check the signals are blocked but not pending in the new process.
27 * The test fails if the signals are pending or if
57 sigset_t mask, pending; in main() local
86 /* Make the signals pending */ in main()
100 ret = sigpending(&pending); in main()
104 "failed to examine pending signal set"); in main()
107 ret = sigismember(&pending, SIGUSR1); in main()
115 ret = sigismember(&pending, SIGUSR in main()
[all...]
/third_party/libuv/test/
H A Dtest-ipc-send-recv.c91 uv_handle_type pending; in recv_cb() local
120 pending = uv_pipe_pending_type(pipe); in recv_cb()
121 ASSERT_EQ(pending, ctx.expected_type); in recv_cb()
123 if (pending == UV_NAMED_PIPE) in recv_cb()
125 else if (pending == UV_TCP) in recv_cb()
306 uv_handle_type pending; in read_cb() local
331 pending = uv_pipe_pending_type(pipe); in read_cb()
332 ASSERT(pending == UV_NAMED_PIPE || pending == UV_TCP); in read_cb()
334 if (pending in read_cb()
[all...]
/third_party/mesa3d/src/intel/vulkan/
H A Danv_bo_sync.c109 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()
127 /* This fence is not pending. If waitAll isn't set, we can return in anv_bo_sync_wait()
157 if (pending && !signaled) { in anv_bo_sync_wait()
167 * pending fences again and don't wait if it's changed. 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/python/Lib/lib2to3/fixes/
H A Dfix_import.py23 pending = [names]
24 while pending:
25 node = pending.pop()
31 pending.append(node.children[0])
33 pending.extend(node.children[::-2])
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcord_internal.cc39 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/selinux/libselinux/utils/
H A 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()
86 fprintf(stderr, "Error getting pending value for %s\n", in main()
98 if (pending != active) { in main()
99 printf("%s --> %s pending: %s\n", alt_name, in main()
101 (pending ? "on" : "off")); in main()
/third_party/node/test/parallel/
H A Dtest-tls-connect-stream-writes.js27 let pending = false;
29 if (pending)
35 pending = false;
41 pending = true;
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderControlFlow.cpp179 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()
[all...]
/third_party/toybox/scripts/
H A Dmkstatus.py26 blah,pending=readit(["sed -n 's/[^ \\t].*TOY(\\([^,]*\\),.*/\\1/p' toys/pending/*.c"], 1)
43 if (i in pending): print "barf %s" % i
46 for i in toystuff + pending:
78 # Sort/annotate done, pending, and todo item lists
89 if i in toystuff or i in pending:
103 outfile.write("<strike>pending</strike></h3>\n");
118 if j in pending: todo.append('<strike>%s</strike>' % j)
/third_party/musl/libc-test/src/functionalext/supplement/signal/
H A Dsigpending.c28 sigset_t pending; in sigpending_0100() local
29 sigemptyset(&pending); in sigpending_0100()
30 int result = sigpending(&pending); in sigpending_0100()
/third_party/libwebsockets/win32port/zlib/
H A Ddeflate.c405 s->pending = 0;
437 int ZEXPORT deflatePending (strm, pending, bits) in deflatePending()
438 unsigned *pending; in deflatePending()
443 *pending = strm->state->pending;
593 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
606 * Flush as much pending output as possible. All deflate() output goes
614 unsigned len = strm->state->pending;
624 strm->state->pending -= len;
625 if (strm->state->pending
[all...]
/third_party/node/deps/v8/third_party/zlib/
H A Ddeflate.c532 s->pending = 0;
579 int ZEXPORT deflatePending (strm, pending, bits) in deflatePending()
580 unsigned *pending; in deflatePending()
585 if (pending != Z_NULL)
586 *pending = strm->state->pending;
764 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
777 * Flush as much pending output as possible. All deflate() output, except for
789 len = s->pending;
798 s->pending
[all...]
/third_party/skia/third_party/externals/zlib/
H A Ddeflate.c527 s->pending = 0;
574 int ZEXPORT deflatePending (strm, pending, bits) in deflatePending()
575 unsigned *pending; in deflatePending()
580 if (pending != Z_NULL)
581 *pending = strm->state->pending;
758 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
771 * Flush as much pending output as possible. All deflate() output, except for
783 len = s->pending;
792 s->pending
[all...]
/third_party/node/deps/zlib/
H A Ddeflate.c685 s->pending = 0; in deflateResetKeep()
751 int ZEXPORT deflatePending(z_streamp strm, unsigned *pending, int *bits) { in deflatePending() argument
753 if (pending != Z_NULL) in deflatePending()
754 *pending = strm->state->pending; in deflatePending()
938 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
948 * Flush as much pending output as possible. All deflate() output, except for
958 len = s->pending; in flush_pending()
967 s->pending -= len; in flush_pending()
968 if (s->pending in flush_pending()
[all...]
/third_party/zlib/
H A Ddeflate.c651 s->pending = 0; in deflateResetKeep()
718 int ZEXPORT deflatePending(z_streamp strm, unsigned *pending, int *bits) { in deflatePending() argument
720 if (pending != Z_NULL) in deflatePending()
721 *pending = strm->state->pending; in deflatePending()
906 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
917 * Flush as much pending output as possible. All deflate() output, except for
928 len = s->pending; in flush_pending()
937 s->pending -= len; in flush_pending()
938 if (s->pending in flush_pending()
[all...]

Completed in 16 milliseconds

12345678910