Searched refs:seq (Results 151 - 175 of 431) sorted by relevance

1234567891011>>

/macosx-10.9.5/remote_cmds-41.90.1/timed.tproj/timed.tproj/
H A Dslave.c72 u_short seq; local
91 seq = 0;
242 if (seq != msg->tsp_seq) {
243 seq = msg->tsp_seq;
255 if (seq == msg->tsp_seq)
257 seq = msg->tsp_seq;
406 seq = 0;
668 u_short seq; local
676 seq = msg->tsp_seq;
694 xmit(TSP_DATEACK, seq,
[all...]
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/plugins/
H A Dotp.c146 algorithm_option_t *alg, unsigned seq, char *seed,
169 while (seq-- > 0)
179 unsigned *seq, char *seed, int is_init)
228 if ((*seq = strtoul(c, &c, 10)) > OTP_SEQUENCE_MAX) {
298 unsigned seq; member in struct:server_context
583 const char *alg, unsigned seq, char *seed, char *otp,
593 * <alg> \t <seq> \t <seed> \t <otp> \t <timeout> \0
611 alg, seq, seed, buf, timeout);
618 char *alg, unsigned *seq, char *seed,
628 * <alg> \0 <seq> \
145 generate_otp(const sasl_utils_t *utils, algorithm_option_t *alg, unsigned seq, char *seed, char *secret, char *otp) argument
177 parse_challenge(const sasl_utils_t *utils, char *chal, algorithm_option_t **alg, unsigned *seq, char *seed, int is_init) argument
582 make_secret(const sasl_utils_t *utils, const char *alg, unsigned seq, char *seed, char *otp, time_t timeout, sasl_secret_t **secret) argument
616 parse_secret(const sasl_utils_t *utils, char *secret, size_t seclen, char *alg, unsigned *seq, char *seed, unsigned char *otp, time_t *timeout) argument
861 unsigned seq; local
1654 unsigned seq; local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/asn1/
H A Dcheck-gen.c1240 TESTSeqOf seq; local
1244 seq.val = NULL;
1245 seq.len = 0;
1247 ret = add_TESTSeqOf(&seq, &i);
1249 ret = add_TESTSeqOf(&seq, &i);
1251 ret = add_TESTSeqOf(&seq, &i);
1253 ret = add_TESTSeqOf(&seq, &i);
1256 ret = remove_TESTSeqOf(&seq, seq.len - 1);
1258 ret = remove_TESTSeqOf(&seq,
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/mh-e/
H A Dmh-search.el390 (mh-index-sequenced-messages folders mh-unseen-seq))
396 All messages in `mh-tick-seq' from the folders in
405 (mh-index-sequenced-messages folders mh-tick-seq))
423 (mh-read-seq-default "Search" nil)))
424 (unless sequence (setq sequence mh-unseen-seq))
470 (let ((seq (symbol-name mh-flists-sequence)))
480 " -sequence " seq " -noshowzero -fast` ; do\n"
481 (expand-file-name "mhpath" mh-progs) " \"+$folder\" " seq "\n"
1593 (let ((seq-hash (make-hash-table :test #'equal))
1594 (seq
[all...]
/macosx-10.9.5/CPANInternal-140/Text-WordDiff/lib/Text/
H A DWordDiff.pm36 for my $seq (@seqs) {
37 my $type = ref $seq;
40 $seq = $seq->( $opts );
41 $type = ref $seq;
54 $seq = [ split $BEGIN_WORD, $$seq ];
59 $$filename = $seq unless defined $$filename;
60 $$mtime = (stat $seq)[9] unless defined $$mtime;
63 my $seq_fh = IO::File->new($seq, '<');
[all...]
/macosx-10.9.5/CPANInternal-140/Text-WordDiff-0.08/lib/Text/
H A DWordDiff.pm35 for my $seq (@seqs) {
36 my $type = ref $seq;
39 $seq = $seq->( $opts );
40 $type = ref $seq;
53 $seq = [ split $BEGIN_WORD, $$seq ];
58 $$filename = $seq unless defined $$filename;
59 $$mtime = (stat $seq)[9] unless defined $$mtime;
62 my $seq_fh = IO::File->new($seq, '<');
[all...]
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dprint-tcp.c86 tcp_seq seq; member in struct:tcp_seq_hash
159 u_int32_t seq, ack, thseq, thack; local
258 seq = EXTRACT_32BITS(&tp->th_seq);
384 th->ack = seq, th->seq = ack - 1;
386 th->seq = seq, th->ack = ack - 1;
389 seq -= th->ack, ack -= th->seq;
391 seq
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/uuid/
H A Duuid.c284 #define CLOCK_SEQ_BUMP(seq) ((*seq) = ((*seq) + 1) & CLOCK_SEQ_LAST)
286 #define CLOCK_SEQ_BUMP(seq) ((*seq) = ((*seq) + 1) % (CLOCK_SEQ_LAST+1))
/macosx-10.9.5/ppp-727.90.1/Drivers/PPTP/PPTP-extension/
H A Dppp_mppe.c519 int seq, isize; local
540 seq = MPPE_CCOUNT_FROM_PACKET(ppp_mppe_tmp);
544 state->ccount = seq;
551 if (seq != state->ccount) {
553 IOLog("mppe_decompress%d: bad seq # %d, expected %d\n",
554 state->unit, seq, state->ccount);
557 while(state->ccount != seq) {
/macosx-10.9.5/ruby-104/ruby/test/openssl/
H A Dtest_asn1.rb320 seq = asn1.value[0]
321 assert_equal(1, seq.value.size)
322 inner_seq = seq.value[0]
425 seq = OpenSSL::ASN1::Sequence.new(content, 2, :EXPLICIT)
428 assert_equal(raw, seq.to_der)
437 seq = OpenSSL::ASN1::Sequence.new(content, 2, :EXPLICIT)
438 seq.infinite_length = true
441 assert_equal(raw, seq.to_der)
449 seq = OpenSSL::ASN1::Sequence.new(content, 1, :IMPLICIT)
452 assert_equal(raw, seq
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/db185/
H A Ddb185_int.in45 #define R_CURSOR 1 /* del, put, seq */
47 #define R_FIRST 3 /* seq */
50 #define R_LAST 6 /* seq (BTREE, RECNO) */
51 #define R_NEXT 7 /* seq */
53 #define R_PREV 9 /* seq (BTREE, RECNO) */
71 int (*seq)
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader/lib/DBIx/Class/Schema/Loader/DBI/
H A DDB2.pm60 my ($col, $constname, $seq) = @$row;
61 push(@{$keydata{$constname}}, [ $seq, lc $col ]);
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/lib/DBIx/Class/Schema/Loader/DBI/
H A DDB2.pm60 my ($col, $constname, $seq) = @$row;
61 push(@{$keydata{$constname}}, [ $seq, lc $col ]);
/macosx-10.9.5/Libc-997.90.3/db/hash/FreeBSD/
H A Dndbm.c130 status = (db->seq)(db, &dbtretkey, &dbtretdata, R_FIRST);
158 status = (db->seq)(db, &dbtretkey, &dbtretdata, R_NEXT);
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
H A Dnoauthdg.c249 unsigned32 *seq,
268 seq, cas_uuid, outbuf, &outlen, stp);
243 rpc__noauth_dg_who_are_you( rpc_auth_info_p_t info, handle_t h, idl_uuid_t *actuid, unsigned32 boot_time, unsigned32 *seq, idl_uuid_t *cas_uuid, unsigned32 *stp ) argument
/macosx-10.9.5/ncurses-42/ncurses/ncurses/tinfo/
H A Dhashed_db.c172 result = db->seq(db, key, data, 0);
195 result = db->seq(db, key, data, 0);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Examples/NonFunctional/RemotePyInterpreter/
H A Dtest_client.py74 seq = eval(command[1])
102 code = '__result__[%r] = %r' % (seq, rval)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Examples/NonFunctional/RemotePyInterpreter/
H A Dtest_client.py74 seq = eval(command[1])
102 code = '__result__[%r] = %r' % (seq, rval)
/macosx-10.9.5/securityd-55199.3/src/
H A Dnotifications.cpp127 NotificationEvent inEvent, uint32 seq, const CssmData &inData)
128 : domain(inDomain), event(inEvent), sequence(seq), data(Allocator::standard(), inData)
130 secdebug("notify", "%p notification created domain 0x%lx event %ld seq %ld",
136 secdebug("notify", "%p notification done domain 0x%lx event %ld seq %ld",
126 Notification(NotificationDomain inDomain, NotificationEvent inEvent, uint32 seq, const CssmData &inData) argument
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/src/
H A Dview.cpp428 c4_Sequence *seq = f4_CreateProject(*_seq, *up_._seq, true); local
430 return f4_CreateSort(*seq);
445 c4_Sequence *seq = f4_CreateProject(*_seq, *up_._seq, true); local
447 return f4_CreateSort(*seq, down_._seq);
1040 c4_Sequence *seq = d4_new c4_HandlerSeq(0); local
1041 seq->IncRef();
1043 seq->Resize(1);
1045 return c4_Cursor(*seq, 0);
/macosx-10.9.5/CPANInternal-140/Class-C3-XS-0.13/
H A DXS.xs169 indices, one per seq, which point at the virtual "head"
170 of the seq (initially zero) */
181 AV* const seq = (AV*)*seqs_ptr++;
182 I32 seq_items = AvFILLp(seq);
184 SV** seq_ptr = AvARRAY(seq) + 1;
219 /* "foreach $seq (@seqs)" */
223 AV * const seq = (AV*)(avptr[s]);
225 if(!seq) continue; /* skip empty seqs */
226 svp = av_fetch(seq, heads[s], 0);
227 seqhead = *svp; /* seqhead = head of this seq */
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblutil/
H A Duuid.c342 * Theoretically we should delay if seq wraps within 100usec but for now
346 static unsigned short seq;
349 lutil_entropy( (unsigned char *) &seq, sizeof(seq) );
370 s1 = ( ++seq & 0x1fff ) | 0x8000; /* clock_seq_and_reserved */
/macosx-10.9.5/network_cmds-433/alias/
H A Dalias_cuseeme.c69 u_int32_t seq; member in struct:cu_header
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/
H A Dobjc_support.h44 extern Py_ssize_t c_array_nullterminated_size(PyObject* object, PyObject** seq);
/macosx-10.9.5/ruby-104/ruby/lib/rss/maker/
H A D1.0.rb52 seq = items.Seq
53 set_parent(items, seq)
58 seq.lis << li
59 set_parent(li, seq)

Completed in 509 milliseconds

1234567891011>>