代码搜索结果
找到约 10,000 项符合
L 的代码
l7200.h
#undef CONFIG_ARCH_L7200
l3.h
#undef CONFIG_L3
l1.h
/* $Id$
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright
wc5.l
/* Oops; slight change from wc3.l introduces backtracking */
ws [ \t]
nonws [^ \t\n]
word {ws}*{nonws}+
words {word}{ws}+
%%
int cc = 0, wc = 0, lc = 0;
{word}{ws}* cc += yyleng; ++wc;
{word}
wc4.l
/* Fastest version of wc: add rules to pick up newlines, too */
ws [ \t]
nonws [^ \t\n]
word {ws}*{nonws}+
words {word}{ws}+
%%
int cc = 0, wc = 0, lc = 0;
{word}{ws}* ++wc; cc += yyleng;
{wo
wc1.l
/* First cut at a flex-based "wc" tool. */
ws [ \t]
nonws [^ \t\n]
%%
int cc = 0, wc = 0, lc = 0;
{nonws}+ cc += yyleng; ++wc;
{ws}+ cc += yyleng;
\n ++lc; ++cc;
{
printf( "%8d
wc2.l
/* Somewhat faster "wc" tool: match more text with each rule */
ws [ \t]
nonws [^ \t\n]
word {ws}*{nonws}+
%%
int cc = 0, wc = 0, lc = 0;
{word}{ws}* cc += yyleng; ++wc;
{word}{ws}*\n cc += yy
wc3.l
/* Somewhat faster still: potentially match a lot of text with each rule */
ws [ \t]
nonws [^ \t\n]
word {ws}*{nonws}+
words {word}{ws}+
%%
int cc = 0, wc = 0, lc = 0;
{word}{ws}* cc += yylen
ifs_lex.l
%{ /* $Id: ifs_lex.l,v 1.12 91/12/31 14:30:36 bill Exp $ */
/*============================================================================
FILE ifs_lex.l
MEMBER OF process cmpp
Copyright 1991
Geor
mod_lex.l
%{ /* $Id: mod_lex.l,v 1.13 91/12/19 13:37:27 bill Exp $ */
/*============================================================================
FILE mod_lex.l
MEMBER OF process cmpp
Copyright 1991
Geor