Searched refs:pending (Results 26 - 50 of 142) sorted by relevance

123456

/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dsplay-tree.c54 splay_tree_node pending = 0; local
67 node->key = (splay_tree_key)pending;
68 pending = (splay_tree_node)node;
70 /* Now, keep processing the pending list until there aren't any
74 while (pending)
76 active = pending;
77 pending = 0;
89 active->left->key = (splay_tree_key)pending;
90 pending = (splay_tree_node)(active->left);
96 active->right->key = (splay_tree_key)pending;
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_asn1/
H A Dsecasn1d.c271 unsigned long pending; member in struct:sec_asn1d_state_struct
856 * Actually, we have no idea how many bytes are pending, but we
860 state->pending = 1;
873 state->pending = 2;
900 PORT_Assert (state->pending == 1);
910 while (len && state->pending) {
929 state->pending = 0;
932 if (state->pending == 0)
989 state->pending = LONG_FORM_LENGTH (byte);
990 if (state->pending
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_asn1/Security/
H A Dsecasn1d.c271 unsigned long pending; member in struct:sec_asn1d_state_struct
856 * Actually, we have no idea how many bytes are pending, but we
860 state->pending = 1;
873 state->pending = 2;
900 PORT_Assert (state->pending == 1);
910 while (len && state->pending) {
929 state->pending = 0;
932 if (state->pending == 0)
989 state->pending = LONG_FORM_LENGTH (byte);
990 if (state->pending
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_asn1/lib/
H A Dsecasn1d.c271 unsigned long pending; member in struct:sec_asn1d_state_struct
856 * Actually, we have no idea how many bytes are pending, but we
860 state->pending = 1;
873 state->pending = 2;
900 PORT_Assert (state->pending == 1);
910 while (len && state->pending) {
929 state->pending = 0;
932 if (state->pending == 0)
989 state->pending = LONG_FORM_LENGTH (byte);
990 if (state->pending
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_asn1/security_asn1/
H A Dsecasn1d.c271 unsigned long pending; member in struct:sec_asn1d_state_struct
856 * Actually, we have no idea how many bytes are pending, but we
860 state->pending = 1;
873 state->pending = 2;
900 PORT_Assert (state->pending == 1);
910 while (len && state->pending) {
929 state->pending = 0;
932 if (state->pending == 0)
989 state->pending = LONG_FORM_LENGTH (byte);
990 if (state->pending
[all...]
/macosx-10.9.5/sudo-72/src/zlib/
H A Ddeflate.c407 s->pending = 0;
450 int ZEXPORT deflatePending (strm, pending, bits)
451 unsigned *pending;
456 if (pending != Z_NULL)
457 *pending = strm->state->pending;
622 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
635 * Flush as much pending output as possible. All deflate() output goes
647 len = s->pending;
656 s->pending
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rake/
H A Dfile_list.rb19 # FileList/Array is requested, the pending patterns are resolved into a real
99 @pending = false
115 # TODO: check for pending
123 @pending = true
155 resolve_exclude if ! @pending
200 # Resolve all the pending adds now.
202 if @pending
203 @pending = false
/macosx-10.9.5/tcl-102/tcl/tcl/win/
H A DtclWinNotify.c38 int pending; /* Alert message pending, this field is locked member in struct:ThreadSpecificData
115 tsdPtr->pending = 0;
210 * isn't already one pending.
229 * We do need to lock around access to the pending flag.
233 if (!tsdPtr->pending) {
236 tsdPtr->pending = 1;
376 * Services any pending events.
392 tsdPtr->pending = 0;
/macosx-10.9.5/tcl-102/tcl84/tcl/win/
H A DtclWinNotify.c38 int pending; /* Alert message pending, this field is member in struct:ThreadSpecificData
117 tsdPtr->pending = 0;
212 * if there isn't already one pending.
231 * We do need to lock around access to the pending flag.
235 if (!tsdPtr->pending) {
238 tsdPtr->pending = 1;
380 * Services any pending events.
396 tsdPtr->pending = 0;
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/
H A Dpt_peg_op.tcl211 set pending [pt::pe::op called [$container start]]
214 while {[llength $pending]} {
215 set new $pending
216 set pending {}
223 struct::set add pending \
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/generic/
H A DtclXselect.c195 * Scan a list of read files to determine if any of them have data pending
203 * every file that has data pending it its buffer.
205 * TRUE if any where found that had pending data, FALSE if none were found.
274 * pending in the stdio buffer first before doing a select.
295 int numSelected, maxFileId = 0, pending;
350 * Check if any data is pending in the read buffers. If there is,
353 pending = FindPendingData (descCnts [0], descLists [0], &readPendingFDSet);
354 if (pending) {
373 * If there is read data pending in the buffers, force the bits to be set
376 if (pending) {
291 int numSelected, maxFileId = 0, pending; local
[all...]
/macosx-10.9.5/rsync-42/rsync/zlib/
H A Ddeflate.c374 s->pending = 0;
516 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
529 * Flush as much pending output as possible. All deflate() output goes
537 unsigned len = strm->state->pending;
547 strm->state->pending -= len;
548 if (strm->state->pending == 0) {
619 s->pending);
656 uInt beg = s->pending; /* start of bytes to update crc */
659 if (s->pending == s->pending_buf_size) {
660 if (s->gzhead->hcrc && s->pending > be
[all...]
/macosx-10.9.5/xnu-2422.115.4/libkern/zlib/
H A Ddeflate.c401 s->pending = 0;
543 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
556 * Flush as much pending output as possible. All deflate() output goes
564 unsigned len = strm->state->pending;
574 strm->state->pending -= len;
575 if (strm->state->pending == 0) {
646 s->pending);
683 uInt beg = s->pending; /* start of bytes to update crc */
686 if (s->pending == s->pending_buf_size) {
687 if (s->gzhead->hcrc && s->pending > be
[all...]
/macosx-10.9.5/zlib-53/zlib/
H A Ddeflate.c368 s->pending = 0;
544 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
557 * Flush as much pending output as possible. All deflate() output goes
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 > be
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/metadata/
H A Dtests.sh33 pending=`sed 's/^K'${czone}'.+005+0*\([0-9]\)/\1/' < pending.key`
92 echo "I:checking that pending key was not published ($n)"
94 grep " $pending"'$' keys > /dev/null && ret=1
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/comm/
H A Dcomm.tcl85 # $ch,pending,$id list of outstanding send serial numbers for id
488 lappend comm($chan,pending,$id) [list $ser callback]
492 upvar 0 comm($chan,pending,$id) pending ;# shorter variable name
494 lappend pending $ser
500 # if connection was lost, pending is gone
501 if {[info exists pending]} {
502 set pos [lsearch -exact $pending $ser]
503 set pending [lreplace $pending
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/speech/
H A DSpeechSynthesis.h49 bool pending() const;
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/transfer/
H A Dtqueue.tcl13 # (#pending transfer requests, busy).
41 method pending {} {}
115 method pending {} {
123 # Get the next pending request. It is already fully-parsed.
179 # Depending on the status of the queue of pending requests we
209 ## - Queue of pending requests.
/macosx-10.9.5/vim-53/src/
H A Dif_xcmdsrv.c70 * NULL means command still pending. */
373 PendingCommand pending; local
489 pending.serial = serial;
490 pending.code = 0;
491 pending.result = NULL;
492 pending.nextPtr = pendingCommands;
493 pendingCommands = &pending;
495 ServerWait(dpy, w, WaitForPend, &pending, localLoop, 600);
498 * Unregister the information about the pending command
501 if (pendingCommands == &pending)
526 PendingCommand *pending = (PendingCommand *) p; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/mach/
H A Dthread_policy.h246 integer_t pending; member in struct:thread_policy_state
/macosx-10.9.5/file_cmds-230/dd/
H A Ddd.c86 off_t pending = 0; /* pending seek if sparse */ variable
382 if (out.dbcnt || pending)
424 pending += cnt;
427 if (pending != 0) {
429 pending--;
430 if (lseek(out.fd, pending, SEEK_CUR) ==
436 pending = 0;
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/tcl/tequila/
H A Dtequilas.tcl17 # tqs_info(pending) - id of pending "after" request, unset if none
295 catch {unset tqs_info(pending)}
308 if {[info exists tqs_info(pending)]} {
309 set tqs_info(pending) [after $timer TqsCommit]
345 if {![info exists tqs_info(pending)] &&
347 set tqs_info(pending) [after $tqs_info(timeout) TqsCommit]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_x509_tp/lib/
H A DtpOcspVerify.cpp490 PendingRequest **pending = coder.mallocn<PendingRequest *>(numCerts); local
491 memset(pending, 0, (numCerts * sizeof(PendingRequest *)));
519 pending[dex] = new PendingRequest(*subject, *issuer, *certID, urls, dex);
541 PendingRequest *pendReq = pending[dex];
617 pending[0]->subject.addStatusCode(CSSMERR_APPLETP_OCSP_BAD_RESPONSE);
654 if((pending[pdex])->certID.compareToExist(reply->certID)) {
655 reqWithIdMatch = pending[pdex];
770 } /* a reply which matches a pending request */
788 PendingRequest *pendReq = pending[dex];
861 PendingRequest *pendReq = pending[de
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/grammar_fa/
H A Dfa.tcl807 set pending $reach
809 while {[llength $pending]} {
810 set s [struct::list shift pending]
818 struct::set add pending $jump($sym)
854 set pending $useful
856 while {[llength $pending]} {
857 set s [struct::list shift pending]
868 lappend pending $before
906 set pending [list $s]
908 while {[llength $pending]} {
[all...]
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/eg/
H A Ddragon.pl42 $$dataref =~ s!<TITLE>.*?</TITLE>!<TITLE>$n go game$s pending</TITLE>!s;

Completed in 208 milliseconds

123456