HomeSort by: relevance | last modified time | path
    Searched refs:toklen (Results 1 - 12 of 12) sorted by relevancy

  /src/external/bsd/libpcap/dist/rpcapd/
fileconf.c 89 size_t toklen; local
238 toklen = strcspn(ptr, RPCAP_HOSTLIST_SEP "#");
239 ptr += toklen; // skip to the terminator
240 if (toklen == 0)
305 toklen = strcspn(ptr, " \t#\r\n");
306 ptr += toklen;
307 if (toklen == 0)
367 toklen = strcspn(ptr, " \t#\r\n");
368 if (toklen == 0)
382 ptr += toklen;
    [all...]
  /src/external/bsd/mdocml/dist/
manpath.c 171 size_t linesz, tok, toklen; local
191 toklen = strlen(toks[tok]);
192 if (cp + toklen < ep &&
193 isspace((unsigned char)cp[toklen]) &&
194 strncmp(cp, toks[tok], toklen) == 0) {
195 cp += toklen;
  /src/external/bsd/tcpdump/dist/
util-print.c 721 size_t toklen = 0; local
742 if (toklen + 2 > tbuflen) {
746 tbuf[toklen] = c;
747 toklen++;
749 if (toklen == 0) {
753 tbuf[toklen] = '\0';
  /src/external/mpl/bind/dist/lib/isc/
picohttpparser.c 75 #define ADVANCE_TOKEN(tok, toklen) \
100 toklen = buf - tok_start; \
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-format.cc 3121 unsigned toklen = tokens[i].len;
3123 if (toklen < wlen
3124 || strncmp (format_chars, tokens[i].name, toklen))
3127 if (toklen == 2
3131 return format_chars + toklen - 1; /* Reference to C++ or G++. */
3133 if (ISPUNCT (format_chars[toklen - 1]))
3135 if (format_chars[toklen - 1] == format_chars[toklen])
3138 else if (ISALNUM (format_chars[toklen]))
3141 if (toklen ==
3119 unsigned toklen = tokens[i].len; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-format.cc 3077 unsigned toklen = tokens[i].len;
3079 if (toklen < wlen
3080 || strncmp (format_chars, tokens[i].name, toklen))
3083 if (toklen == 2
3087 return format_chars + toklen - 1; /* Reference to C++ or G++. */
3089 if (ISPUNCT (format_chars[toklen - 1]))
3091 if (format_chars[toklen - 1] == format_chars[toklen])
3094 else if (ISALNUM (format_chars[toklen]))
3097 if (toklen ==
3075 unsigned toklen = tokens[i].len; local
    [all...]
  /src/external/bsd/pcc/dist/pcc/f77/fcom/
init.c 46 int toklen; variable
lex.c 233 toklen = 0;
663 toklen = p - token;
688 toklen = p - token;
704 toklen = p - token;
764 toklen = p - token;
771 if(toklen>=8 && eqn(8, token, "function") &&
774 nextch -= (toklen - 8);
777 if(toklen > VL)
780 toklen = VL;
783 if(toklen==1 && *nextch==MYQUOTE
    [all...]
io.c 340 if(toklen==(int)strlen(ioc[i].iocname) && eqn(toklen, token, ioc[i].iocname)) {
350 err1("unknown iocontrol %s", varstr(toklen, token) );
defs.h 65 extern int toklen;
  /src/external/gpl3/gdb.old/dist/gdb/
breakpoint.c 10305 int toklen = -1;
10349 toklen = end_tok - tok + 1;
10351 if (toklen == 6 && startswith (tok, "thread"))
10375 else if (toklen == 4 && startswith (tok, "task"))
10394 else if (toklen == 8 && startswith (tok, "inferior"))
10399 else if (toklen == 4 && startswith (tok, "mask"))
10489 toklen = end_tok - tok;
10490 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
10297 int toklen = -1; local
  /src/external/gpl3/gdb/dist/gdb/
breakpoint.c 10334 int toklen = -1;
10378 toklen = end_tok - tok + 1;
10380 if (toklen == 6 && startswith (tok, "thread"))
10404 else if (toklen == 4 && startswith (tok, "task"))
10423 else if (toklen == 8 && startswith (tok, "inferior"))
10428 else if (toklen == 4 && startswith (tok, "mask"))
10518 toklen = end_tok - tok;
10519 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
10326 int toklen = -1; local

Completed in 66 milliseconds