/freebsd/contrib/one-true-awk/ |
H A D | awkgram.y | 176 pa_pat { $$ = stat2(PASTAT, $1, stat2(PRINT, rectonode(), NIL)); } 177 | pa_pat lbrace stmtlist '}' { $$ = stat2(PASTAT, $1, $3); } 178 | pa_pat ',' opt_nl pa_pat { $$ = pa2stat($1, $4, stat2(PRINT, rectonode(), NIL)); } 180 | lbrace stmtlist '}' { $$ = stat2(PASTAT, NIL, $2); } 308 | DELETE varname '[' patlist ']' { $$ = stat2(DELETE, makearr($2), $4); } 309 | DELETE varname { $$ = stat2(DELETE, makearr($2), 0); } 325 { $$ = stat2(DO, $3, notnull($7)); } 341 | while {inloop++;} stmt { --inloop; $$ = stat2(WHILE, $1, $3); }
|
H A D | proto.h | 81 extern Node *stat2(int, Node *, Node *);
|
H A D | parse.c | 119 Node *stat2(int a, Node *b, Node *c) in stat2() function
|
/freebsd/sys/dev/cxgb/common/ |
H A D | cxgb_ael1002.c | 289 unsigned int stat0, stat1, stat2; in get_link_status_r() local 295 err = mdio_read(phy, MDIO_DEV_XGXS, XS_LN_STAT, &stat2); in get_link_status_r() 301 stat2 = (stat2 >> 12) & 1; in get_link_status_r() 302 if (stat0 & stat1 & stat2) in get_link_status_r() 304 else if (stat0 == 1 && stat1 == 0 && stat2 == 1) in get_link_status_r() 2166 unsigned int stat0, stat1, stat2; in get_link_status_x() local 2172 err = mdio_read(phy, MDIO_DEV_XGXS, XS_LN_STAT, &stat2); in get_link_status_x() 2175 if ((stat0 & (stat1 >> 12) & (stat2 >> 12)) & 1) in get_link_status_x()
|
/freebsd/sys/contrib/dev/mediatek/mt76/ |
H A D | mt76x02_mac.c | 255 u32 stat1, stat2; in mt76x02_mac_load_tx_status() local 257 stat2 = mt76_rr(dev, MT_TX_STAT_FIFO_EXT); in mt76x02_mac_load_tx_status() 270 stat->retry = FIELD_GET(MT_TX_STAT_FIFO_EXT_RETRY, stat2); in mt76x02_mac_load_tx_status() 271 stat->pktid = FIELD_GET(MT_TX_STAT_FIFO_EXT_PKTID, stat2); in mt76x02_mac_load_tx_status()
|
/freebsd/contrib/ntp/ntpd/ |
H A D | refclock_oncore.c | 602 struct stat stat1, stat2; in oncore_start() local 680 if (stat(device2, &stat2)) { in oncore_start() 681 stat2.st_dev = stat2.st_ino = -2; in oncore_start() 700 if ((stat1.st_dev == stat2.st_dev) && (stat1.st_ino == stat2.st_ino)) /* same device here */ in oncore_start()
|
/freebsd/contrib/ofed/libcxgb4/ |
H A D | t4fw_api.h | 2149 __be64 stat2; member 2683 __be64 stat2; member 2775 __be64 stat2; member
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/include/ |
H A D | libtest.shlib | 3717 while $do_once || [ $stat1 -ne $stat2 ] || [ $stat2 -eq 0 ]; do 3720 typeset stat2=$(kstat arcstats.$stat) 3725 echo $stat2
|
/freebsd/sys/dev/cxgbe/firmware/ |
H A D | t4fw_interface.h | 6973 __be64 stat2; member 7939 __be64 stat2; member 8056 __be64 stat2; member 9172 __be64 stat2; member
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | arc.c | 647 #define ARCSTAT_CONDSTAT(cond1, stat1, notstat1, cond2, stat2, notstat2, stat) \ argument 650 ARCSTAT_BUMP(arcstat_##stat1##_##stat2##_##stat); \ 656 ARCSTAT_BUMP(arcstat_##notstat1##_##stat2##_##stat); \
|