Searched refs:toklen (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/loader/
H A DFTPDirectoryParser.cpp83 unsigned int toklen[WTF_ARRAY_LENGTH(tokens)]; local
94 toklen[0] = carry_buf_len;
112 toklen[numtoks] = (&line[pos] - tokens[numtoks]);
121 linelen_sans_wsp = &(tokens[numtoks-1][toklen[numtoks-1]]) - tokens[0];
224 (numtoks == 1 || (numtoks == 2 && toklen[0] == 9 &&
232 pos = toklen[0];
236 pos = toklen[1];
282 else if ((tokens[0][toklen[0]-1]) != ';')
288 else if (toklen[1] >= 10 && memcmp(tokens[1], "%RMS-E-PRV", 10) == 0)
296 toklen[
[all...]
/macosx-10.10/rsync-45/rsync/
H A Dtoken.c167 int32 nb, int32 toklen)
281 int32 n1 = toklen > 0xffff ? 0xffff : toklen;
282 toklen -= n1;
293 } while (toklen > 0);
487 int32 n, int32 toklen)
492 send_deflated_token(f, token, buf, offset, n, toklen);
516 void see_token(char *data, int32 toklen) argument
519 see_deflate_token(data, toklen);
166 send_deflated_token(int f, int32 token, struct map_struct *buf, OFF_T offset, int32 nb, int32 toklen) argument
486 send_token(int f, int32 token, struct map_struct *buf, OFF_T offset, int32 n, int32 toklen) argument
H A Dproto.h269 int32 n, int32 toklen);
271 void see_token(char *data, int32 toklen);
/macosx-10.10/smb-759.0/kernel/netsmb/
H A Dsmb_gss.c489 uint16_t bc, toklen; local
582 md_get_uint16le(mdp, &toklen); /* Spnego token length */
583 gp->gss_tokenlen = toklen;
595 bc = (toklen > bc) ? 0 : bc - toklen;
600 * is odd or even. If the security blob toklen is even then we need to skip
603 if (SMB_UNICODE_STRINGS(vcp) && (bc > 0) && (!(toklen & 1))) {
H A Dsmb_smb.c299 uint16_t toklen; local
469 toklen = bc;
476 toklen -= sblen;
490 toklen = (toklen >= SMB_GUIDLEN) ? toklen - SMB_GUIDLEN : 0;
492 if (toklen) {
493 SMB_MALLOC(vcp->negotiate_token, uint8_t *, toklen, M_SMBTEMP, M_WAITOK);
499 vcp->negotiate_tokenlen = toklen;
/macosx-10.10/xnu-2782.1.97/bsd/nfs/
H A Dnfs_gss.c486 int pad, toklen; local
602 toklen = nfs_gss_token_put(ki, ALG_MIC(ki), tokbuf, 1, 0, cksum);
604 nfsm_chain_add_32(error, nmc, toklen); // length
605 nfsm_chain_add_opaque(error, nmc, tokbuf, toklen);
635 toklen = nfs_gss_token_put(ki, ALG_MIC(ki), tokbuf, 1, 0, cksum);
637 nfsm_chain_add_32(error, nmc, toklen);
638 nfsm_chain_add_opaque(error, nmc, tokbuf, toklen);
676 toklen = nfs_gss_token_put(ki, ALG_WRAP(ki), tokbuf, 1, len, cksum);
677 nfsm_chain_add_32(error, nmc, toklen + len); // token + args length
678 nfsm_chain_add_opaque_nopad(error, nmc, tokbuf, toklen);
722 uint32_t reslen, start, cksumlen, toklen; local
2343 uint32_t arglen, start, toklen, cksumlen; local
2653 int toklen; local
2744 int pad, toklen; local
3327 int toklen, i; local
[all...]
/macosx-10.10/apache-793/httpd/modules/arch/win32/
H A Dmod_isapi.c674 int toklen = statlen; local
675 while (toklen && *stattok && !apr_isspace(*stattok)) {
676 ++stattok; --toklen;
678 while (toklen && apr_isspace(*stattok)) {
679 ++stattok; --toklen;
684 if (toklen && apr_isdigit(*stattok)) {
685 statlen = toklen;
/macosx-10.10/libxml2-26/libxml2/
H A Drngparser.c58 int toklen; member in struct:_token
291 token->toklen = cur - ctxt->cur;
292 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen);
308 token->toklen = 2;
310 token->toklen = 1;
312 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen);
315 ctxt->cur += token->toklen;
328 token->toklen = cur - ctxt->cur;
329 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen);
347 token->toklen
[all...]
/macosx-10.10/ruby-106/ruby/ext/ripper/
H A Dripper.c365 #define TOK_INTERN(mb) rb_intern3(tok(), toklen(), current_enc)
12214 #define toklen() tokidx macro
12546 if (toklen()) {
12549 toklen() > 1 ? "s" : "", tok());
12862 set_yylval_str(STR_NEW3(tok(), toklen(), enc, func));
12923 STR_NEW(tok(), toklen()), /* nd_lit */
13062 set_yylval_str(STR_NEW3(tok(), toklen(), enc, func));
13070 str = STR_NEW3(tok(), toklen(), enc, func);
13823 set_yylval_str(STR_NEW3(tok(), toklen(), enc, 0));
13970 int start = toklen();
[all...]
H A Dripper.y305 #define TOK_INTERN(mb) rb_intern3(tok(), toklen(), current_enc)
5628 #define toklen() tokidx
5960 if (toklen()) {
5963 toklen() > 1 ? "s" : "", tok());
6276 set_yylval_str(STR_NEW3(tok(), toklen(), enc, func));
6337 STR_NEW(tok(), toklen()), /* nd_lit */
6476 set_yylval_str(STR_NEW3(tok(), toklen(), enc, func));
6484 str = STR_NEW3(tok(), toklen(), enc, func);
7237 set_yylval_str(STR_NEW3(tok(), toklen(), enc, 0));
7384 int start = toklen();
[all...]
/macosx-10.10/ruby-106/ruby/
H A Dparse.c365 #define TOK_INTERN(mb) rb_intern3(tok(), toklen(), current_enc)
12124 #define toklen() tokidx macro
12456 if (toklen()) {
12459 toklen() > 1 ? "s" : "", tok());
12772 set_yylval_str(STR_NEW3(tok(), toklen(), enc, func));
12833 STR_NEW(tok(), toklen()), /* nd_lit */
12972 set_yylval_str(STR_NEW3(tok(), toklen(), enc, func));
12980 str = STR_NEW3(tok(), toklen(), enc, func);
13733 set_yylval_str(STR_NEW3(tok(), toklen(), enc, 0));
13880 int start = toklen();
[all...]
H A Dparse.y305 #define TOK_INTERN(mb) rb_intern3(tok(), toklen(), current_enc)
5628 #define toklen() tokidx
5960 if (toklen()) {
5963 toklen() > 1 ? "s" : "", tok());
6276 set_yylval_str(STR_NEW3(tok(), toklen(), enc, func));
6337 STR_NEW(tok(), toklen()), /* nd_lit */
6476 set_yylval_str(STR_NEW3(tok(), toklen(), enc, func));
6484 str = STR_NEW3(tok(), toklen(), enc, func);
7237 set_yylval_str(STR_NEW3(tok(), toklen(), enc, 0));
7384 int start = toklen();
[all...]
/macosx-10.10/emacs-93/emacs/lib-src/
H A Detags.c3259 register int toklen; /* length of current token */
3283 tokoff = toklen = typdefbracelev = 0; /* keep compiler quiet */
3487 toklen += 2;
3496 || consider_token (newlb.buffer + tokoff, toklen, c,
3510 toklen += lp - oldlp;
3519 token_name.len+qlen+toklen);
3522 newlb.buffer + tokoff, toklen);
3528 int len = strlen (objtag) + 2 + toklen;
3533 newlb.buffer + tokoff, toklen);
3548 int len = toklen;
3248 register int toklen; /* length of current token */ local
[all...]

Completed in 291 milliseconds