Symbol: VAL
common/lib/libc/string/memset.c
125
*dst++ = VAL;
common/lib/libc/string/memset.c
147
*dst++ = VAL;
common/lib/libc/string/memset.c
162
*dst++ = VAL;
games/cribbage/crib.c
531
sum += VAL(crd.rank);
games/cribbage/crib.c
573
if (sum + VAL(crd.rank) <= 31)
games/cribbage/crib.c
581
sum += VAL(crd.rank);
games/cribbage/score.c
299
sum += VAL(crd.rank);
games/cribbage/support.c
101
l = s + VAL(h[i].rank);
games/cribbage/support.c
112
l = s + VAL(h[i].rank);
games/cribbage/support.c
306
return (sum + VAL(j) <= 31);
games/cribbage/support.c
319
if (s + VAL(hand[i].rank) == t)
games/cribbage/support.c
335
if (VAL(h[i].rank) == v)
games/cribbage/support.c
80
if (l > 1 || VAL(h[j].rank) != i)
games/cribbage/support.c
92
VAL(h[j].rank) != 15 - tv[i])
sbin/fsdb/fsdb.c
1636
t.tm_year = VAL();
sbin/fsdb/fsdb.c
1637
t.tm_year = VAL() + t.tm_year * 10;
sbin/fsdb/fsdb.c
1638
t.tm_year = VAL() + t.tm_year * 10;
sbin/fsdb/fsdb.c
1639
t.tm_year = VAL() + t.tm_year * 10 - 1900;
sbin/fsdb/fsdb.c
1640
t.tm_mon = VAL();
sbin/fsdb/fsdb.c
1641
t.tm_mon = VAL() + t.tm_mon * 10 - 1;
sbin/fsdb/fsdb.c
1642
t.tm_mday = VAL();
sbin/fsdb/fsdb.c
1643
t.tm_mday = VAL() + t.tm_mday * 10;
sbin/fsdb/fsdb.c
1644
t.tm_hour = VAL();
sbin/fsdb/fsdb.c
1645
t.tm_hour = VAL() + t.tm_hour * 10;
sbin/fsdb/fsdb.c
1646
t.tm_min = VAL();
sbin/fsdb/fsdb.c
1647
t.tm_min = VAL() + t.tm_min * 10;
sbin/fsdb/fsdb.c
1648
t.tm_sec = VAL();
sbin/fsdb/fsdb.c
1649
t.tm_sec = VAL() + t.tm_sec * 10;
sys/arch/sgimips/dev/scnvar.h
77
#define SCN_OP_BIS(SC,VAL) ((SC)->sc_duart->base[DU_OPSET] = (VAL))
sys/arch/sgimips/dev/scnvar.h
78
#define SCN_OP_BIC(SC,VAL) ((SC)->sc_duart->base[DU_OPCLR] = (VAL))
sys/net/if_pppoe.c
125
#define PPPOE_ADD_16(PTR, VAL) \
sys/net/if_pppoe.c
126
*(PTR)++ = (VAL) / 256; \
sys/net/if_pppoe.c
127
*(PTR)++ = (VAL) % 256
sys/ufs/lfs/lfs_accessors.h
1009
#define LFS_PUT_HEADFREE(FS, CIP, BP, VAL) do { \
sys/ufs/lfs/lfs_accessors.h
1010
lfs_sb_setfreehd(FS, VAL); \
sys/ufs/lfs/lfs_accessors.h
1013
lfs_ci_setfree_head(FS, CIP, VAL); \
sys/ufs/lfs/lfs_accessors.h
1014
if ((VAL) == LFS_UNUSED_INUM) \
sys/ufs/lfs/lfs_accessors.h
1015
lfs_ci_setfree_tail(FS, CIP, VAL); \
sys/ufs/lfs/lfs_accessors.h
1030
#define LFS_PUT_TAILFREE(FS, CIP, BP, VAL) do { \
sys/ufs/lfs/lfs_accessors.h
1032
lfs_ci_setfree_tail(FS, CIP, VAL); \
sys/ufs/lfs/lfs_accessors.h
1033
if ((VAL) == LFS_UNUSED_INUM) \
sys/ufs/lfs/lfs_accessors.h
1034
lfs_ci_setfree_head(FS, CIP, VAL); \
tests/lib/libc/atomic/t_atomic_dec.c
55
val = (TYPE)VAL; \
tests/lib/libc/atomic/t_atomic_dec.c
84
val = (TYPE)VAL; \
tests/lib/libc/atomic/t_atomic_inc.c
55
val = (TYPE)VAL; \
tests/lib/libc/atomic/t_atomic_inc.c
84
val = (TYPE)VAL; \
tests/lib/libm/t_round.c
62
double a = VAL, b, c;