代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/126411/6017617
awk mtrace.awk
#
# Awk program to analyze mtrace.c output.
#
$1 == "+" { if (allocated[$2] != "")
print "+", $2, "Alloc", NR, "duplicate:", allocated[$2];
else
allocated[$2] = $3;
}
$1 == "-" { if
www.eeworm.com/read/125381/6030420
scr awk.scr
/.*\(0x3da.*/||/.*\(0x3ba.*/ {
if (v_3da != 1) print "_v_retrace_";
v_3da = 1;
next;
}
/.*\(0x42.*/||/.*\(0x43.*/ {
if (v_4x != 1) print "_timer_";
www.eeworm.com/read/125279/6031613
awk contents.awk
# table-of-contents extractor
# Copyright (C) 1999 Sandy Harris.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as pu
www.eeworm.com/read/125133/6032867
awk gen.awk
BEGIN {
count = 20000;
increment = 17; # must be coprime to count
printf("def 0 1 main 52527 foo%d 127 and emit 0 ;\n", count);
printf("def 1 1 foo0 ;\n");
j = 1;
for (i = 1; i
www.eeworm.com/read/125133/6032915
awk profile.awk
#!/usr/bin/awk -f
{ count[$1, $2] = $3; lsum[$1] += $3; rsum[$2] += $3; }
END {
if (totals_by_op) {
for (i in rsum) {
printf("%-17s %10u\n",
i, rsum[i]);
}
} else {
for (
www.eeworm.com/read/125133/6032931
awk opcodes.awk
# Generate the inner interpreter and related tables from the opcodes file.
# Copyright (C) 2001-2002 Darius Bacon
BEGIN {
gnu_c = (cc == "gcc");
nesting = 0;
opcode = -1;
code_file = "src/in
www.eeworm.com/read/125133/6033047
awk gen.awk
BEGIN {
count = 20000;
increment = 17; # must be coprime to count
printf("def 0 1 main 52527 foo%d 127 and emit 0 ;\n", count);
printf("def 1 1 foo0 ;\n");
j = 1;
for (i = 1; i
www.eeworm.com/read/125133/6033095
awk profile.awk
#!/usr/bin/awk -f
{ count[$1, $2] = $3; lsum[$1] += $3; rsum[$2] += $3; }
END {
if (totals_by_op) {
for (i in rsum) {
printf("%-17s %10u\n",
i, rsum[i]);
}
} else {
for (
www.eeworm.com/read/125133/6033111
awk opcodes.awk
# Generate the inner interpreter and related tables from the opcodes file.
# Copyright (C) 2001-2002 Darius Bacon
BEGIN {
gnu_c = (cc == "gcc");
nesting = 0;
opcode = -1;
code_file = "src/in