代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/264291/11322723
awk genplotdelrate.awk
/*compute the delivery rate h point*/
NR == 2 {
speed = $1;
sent = $2;
del = $3;
}
NR > 2 {
if( speed != $1)
{
tmp = 0;
printf"%d
www.eeworm.com/read/264291/11322728
awk genplothost.awk
/*compute the delivery rate h point*/
NR == 1 {
h = $2;
sp = $1
samples = 1;
}
NR >1 {
if( sp != $1)
{
printf"%d \t %.2f\n", sp, h /samples;
www.eeworm.com/read/264291/11322732
awk extractlatency.awk
BEGIN { printf"speed \t nHops \t latency\n";
speed =0;
}
/Speed/ { speed = $3; }
/latency/ { printf"%d \t %d \t %.6f \n",speed, $4, $5;}
www.eeworm.com/read/264291/11322739
awk extracthops.awk
/Speed/ { speed = $3; }
/Hops Avarage/ { printf"%d \t %.2f\n",speed, $3;}
www.eeworm.com/read/261904/11616418
awk function.awk
#
# FIX ME please !!
#
# - bushi@mizi.com
#
BEGIN {
VIVI_MAP = "../vivi.map"
FUNCTION_MAP = "function.map"
name_of_function = ""
prototype = ""
print("/* ") > FUNCTION_MAP
print(" * Auto gen
www.eeworm.com/read/158283/11627495
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/158283/11627501
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/158283/11627538
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/158283/11627562
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/158283/11627583
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