Symbol: VAL
games/cribbage/crib.c
489
sum += VAL(crd.rank);
games/cribbage/crib.c
531
if (sum + VAL(crd.rank) <= 31)
games/cribbage/crib.c
539
sum += VAL(crd.rank);
games/cribbage/score.c
289
sum += VAL(crd.rank);
games/cribbage/support.c
105
l = s + VAL(h[i].rank);
games/cribbage/support.c
295
return (sum + VAL(j) <= 31);
games/cribbage/support.c
308
if (s + VAL(hand[i].rank) == t)
games/cribbage/support.c
324
if (VAL(h[i].rank) == v)
games/cribbage/support.c
73
if (l > 1 || VAL(h[j].rank) != i)
games/cribbage/support.c
85
VAL(h[j].rank) != 15 - tv[i])
games/cribbage/support.c
94
l = s + VAL(h[i].rank);
lib/libc/string/memset.c
107
*dst++ = VAL;
lib/libc/string/memset.c
122
*dst++ = VAL;
lib/libc/string/memset.c
85
*dst++ = VAL;
sbin/fsdb/fsdb.c
834
t.tm_year = VAL();
sbin/fsdb/fsdb.c
835
t.tm_year = VAL() + t.tm_year * 10;
sbin/fsdb/fsdb.c
836
t.tm_year = VAL() + t.tm_year * 10;
sbin/fsdb/fsdb.c
837
t.tm_year = VAL() + t.tm_year * 10 - 1900;
sbin/fsdb/fsdb.c
838
t.tm_mon = VAL();
sbin/fsdb/fsdb.c
839
t.tm_mon = VAL() + t.tm_mon * 10 - 1;
sbin/fsdb/fsdb.c
840
t.tm_mday = VAL();
sbin/fsdb/fsdb.c
841
t.tm_mday = VAL() + t.tm_mday * 10;
sbin/fsdb/fsdb.c
842
t.tm_hour = VAL();
sbin/fsdb/fsdb.c
843
t.tm_hour = VAL() + t.tm_hour * 10;
sbin/fsdb/fsdb.c
844
t.tm_min = VAL();
sbin/fsdb/fsdb.c
845
t.tm_min = VAL() + t.tm_min * 10;
sbin/fsdb/fsdb.c
846
t.tm_sec = VAL();
sbin/fsdb/fsdb.c
847
t.tm_sec = VAL() + t.tm_sec * 10;
sys/dev/virtual/amazon/ena/ena-com/ena_plat.h
366
#define ATOMIC32_SET(I32_PTR, VAL) atomic_store_rel_int(I32_PTR, VAL)