代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/418028/10967077
awk mkopcodeh.awk
#!/usr/bin/awk -f
#
# Generate the file opcodes.h.
#
# This AWK script scans a concatenation of the parse.h output file from the
# parser and the vdbe.c source file in order to generate the opcodes nu
www.eeworm.com/read/418028/10967085
awk addopcodes.awk
#!/usr/bin/awk
#
# This script appends additional token codes to the end of the
# parse.h file that lemon generates. These extra token codes are
# not used by the parser. But they are used by the to
www.eeworm.com/read/418028/10967107
awk memleak.awk
#
# This script looks for memory leaks by analyzing the output of "sqlite"
# when compiled with the SQLITE_DEBUG=2 option.
#
/[0-9]+ malloc / {
mem[$6] = $0
}
/[0-9]+ realloc / {
mem[$8] = "";
www.eeworm.com/read/418028/10967128
awk opcodedoc.awk
#
# Extract opcode documentation for sqliteVdbe.c and generate HTML
#
BEGIN {
print ""
print "SQLite Virtual Database Engine Opcodes"
print ""
}
/ Opcod
www.eeworm.com/read/418028/10967202
awk mkopcodec.awk
#!/usr/bin/awk -f
#
# This AWK script scans the opcodes.h file (which is itself generated by
# another awk script) and uses the information gleaned to create the
# opcodes.c source file.
#
# Opcodes.c
www.eeworm.com/read/436131/7117779
awk getnoderecv.awk
# getData.awk
BEGIN {
if(step ==0)
step = 10;
base = 0;
start = 0;
bytes = 0;
total_bytes = 0;
max = 0;
calc = 0;
}
$0 ~/^s.* AGT/ {
if (base == 0 && $3 == ("_" src "_")) {
base = $2;
www.eeworm.com/read/436131/7117783
awk getratio.awk
# 初始化设定
BEGIN {
sendLine = 0;
recvLine = 0;
fowardLine = 0;
}
# 应用层收到包
$0 ~/^s.* AGT/ {
sendLine ++ ;
}
# 应用层发送包
$0 ~/^r.* AGT/ {
recvLine ++ ;
}
# 路由层转发包
$0 ~/^f.* R
www.eeworm.com/read/131172/7122500
awk mimetable.awk
#
#
# C++ Portable Types Library (PTypes)
# Version 2.0.2 Released 17-May-2004
#
# Copyright (C) 2001-2004 Hovik Melikyan
#
# http://www.melikyan.com/ptypes/
#
#
#
# Convert Apache's mime.types