Searched refs:VAL (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-13-stable/lib/libc/string/
H A Dmemset.c52 #define VAL 0 macro
61 #define VAL c0
93 *dst++ = VAL;
115 *dst++ = VAL;
130 *dst++ = VAL;
/freebsd-13-stable/sys/compat/cloudabi32/
H A Dcloudabi32_module.c119 #define VAL(type, val) { .a_type = (type), .a_val = (val) } macro
122 VAL(CLOUDABI_AT_ARGDATALEN, argdatalen),
123 VAL(CLOUDABI_AT_BASE, args->base),
125 VAL(CLOUDABI_AT_CANARYLEN, sizeof(canarybuf)),
126 VAL(CLOUDABI_AT_NCPUS, mp_ncpus),
127 VAL(CLOUDABI_AT_PAGESZ, args->pagesz),
129 VAL(CLOUDABI_AT_PHNUM, args->phnum),
133 VAL(CLOUDABI_AT_TID, td->td_tid),
134 #undef VAL macro
/freebsd-13-stable/sys/compat/cloudabi64/
H A Dcloudabi64_module.c119 #define VAL(type, val) { .a_type = (type), .a_val = (val) } macro
122 VAL(CLOUDABI_AT_ARGDATALEN, argdatalen),
123 VAL(CLOUDABI_AT_BASE, args->base),
125 VAL(CLOUDABI_AT_CANARYLEN, sizeof(canarybuf)),
126 VAL(CLOUDABI_AT_NCPUS, mp_ncpus),
127 VAL(CLOUDABI_AT_PAGESZ, args->pagesz),
129 VAL(CLOUDABI_AT_PHNUM, args->phnum),
133 VAL(CLOUDABI_AT_TID, td->td_tid),
134 #undef VAL macro
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h91 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
93 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:llvm::APInt::__anon3021
154 U.VAL &= mask;
163 return isSingleWord() ? U.VAL : U.pVal[whichWord(bitPosition)];
281 U.VAL = val;
323 U.VAL = that.U.VAL;
345 explicit APInt() : BitWidth(1) { U.VAL = 0; }
402 return U.VAL == WORDTYPE_MAX >> (APINT_BITS_PER_WORD - BitWidth);
417 return U.VAL
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/bootfs/
H A Dbootfs_006_pos.ksh63 VAL=$(zpool get bootfs $POOL | tail -1 | awk '{print $3}' )
64 if [ $VAL != "$POOL/$TESTFS" ]
68 "set/get failed on $POOL - expected $VAL == $POOL/$TESTFS"
77 VAL=$(zpool get bootfs $POOL | tail -1 | awk '{print $3}' )
78 if [ $VAL == "$POOL/$TESTFS" ]
81 log_fail "set/get unexpectedly failed $VAL != $POOL/$TESTFS"
/freebsd-13-stable/share/examples/drivers/
H A Dmake_pseudo_driver.sh41 read VAL
42 if [ "-z" "$VAL" ]; then
43 VAL=YES
45 case ${VAL} in
404 read VAL
405 if [ "-z" "$VAL" ]; then
406 VAL=YES
408 case ${VAL} in
419 read VAL
420 if [ "-z" "$VAL" ]; the
[all...]
H A Dmake_device_driver.sh43 read VAL
44 if [ "-z" "$VAL" ]; then
45 VAL=YES
47 case ${VAL} in
976 read VAL
977 if [ "-z" "$VAL" ]; then
978 VAL=YES
980 case ${VAL} in
991 read VAL
992 if [ "-z" "$VAL" ]; the
[all...]
/freebsd-13-stable/tests/sys/cddl/zfs/tests/bootfs/
H A Dbootfs_006_pos.ksh82 VAL=$($ZPOOL get bootfs $POOL | $TAIL -1 | $AWK '{print $3}' )
83 if [ $VAL != "$POOL/$FS" ]
86 log_fail "set/get failed on $POOL - expected $VAL == $POOL/$FS"
95 VAL=$($ZPOOL get bootfs $POOL | $TAIL -1 | $AWK '{print $3}' )
96 if [ $VAL == "$POOL/$FS" ]
99 log_fail "set/get unexpectedly failed $VAL != $POOL/$FS"
/freebsd-13-stable/contrib/netbsd-tests/lib/libm/
H A Dt_round.c45 #define VAL 0x0.7ffffffffffffcp0 macro
63 double a = VAL, b, c;
/freebsd-13-stable/sys/contrib/ck/include/
H A Dck_pr.h167 #define CK_PR_STORE_SAFE(DST, VAL, TYPE) \
169 ((void)sizeof(*(DST) = (VAL)), (DST)), \
170 (VAL))
172 #define ck_pr_store_ptr(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), ptr)
173 #define ck_pr_store_char(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), char)
175 #define ck_pr_store_double(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), double)
177 #define ck_pr_store_uint(DST, VAL) CK_PR_STORE_SAF
[all...]
/freebsd-13-stable/tools/tools/tinybsd/
H A Dtinybsd45 VAL=`splitarg2 $arg`
48 SECTUNIT=$VAL
51 TRACKCYL=$VAL
54 SECTRACK=$VAL
57 CONF=$VAL
60 MFSROOT=$VAL
63 IMG=$VAL
/freebsd-13-stable/sbin/fsdb/
H A Dfsdb.c1155 #define VAL() ((*p++) - '0') macro
1156 t.tm_year = VAL();
1157 t.tm_year = VAL() + t.tm_year * 10;
1158 t.tm_year = VAL() + t.tm_year * 10;
1159 t.tm_year = VAL() + t.tm_year * 10 - 1900;
1160 t.tm_mon = VAL();
1161 t.tm_mon = VAL() + t.tm_mon * 10 - 1;
1162 t.tm_mday = VAL();
1163 t.tm_mday = VAL() + t.tm_mday * 10;
1164 t.tm_hour = VAL();
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp95 U.VAL = bigVal[0];
153 U.VAL = RHS.U.VAL;
163 ID.AddInteger(U.VAL);
175 ++U.VAL;
184 --U.VAL;
196 U.VAL += RHS.U.VAL;
204 U.VAL += RHS;
216 U.VAL
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAMDHSAKernelDescriptor.h42 #define AMDHSA_BITS_SET(DST, MSK, VAL) \
44 DST |= ((VAL << MSK ## _SHIFT) & MSK)
/freebsd-13-stable/sys/contrib/ngatm/netnatm/api/
H A Datmapi.h121 #define DEF(NAME,VAL,STR) NAME = (VAL),
/freebsd-13-stable/sys/contrib/ngatm/netnatm/sig/
H A Dunidef.h245 #define DEF(NAME, VAL, STR) UNIAPI_##NAME = VAL,
H A Dsig_print.c59 #define DEF(NAME, VAL, STR) [UNIAPI_##NAME] = STR,
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateBase.h110 uint64_t VAL; member in union:clang::TemplateArgument::I::__anon1363
308 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
H A DExpr.h1420 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:clang::APNumericStorage::__anon1319
1431 APNumericStorage() : VAL(0), BitWidth(0) { }
1438 return llvm::APInt(BitWidth, VAL);
/freebsd-13-stable/sys/contrib/ena-com/
H A Dena_plat.h406 #define ATOMIC32_SET(I32_PTR, VAL) atomic_store_rel_int(I32_PTR, VAL)
/freebsd-13-stable/sys/contrib/ngatm/netnatm/msg/
H A Dunistruct.h625 #define D(NAME,VAL,DIAG,STD,STR) UNI_CAUSE_##NAME = VAL,
626 #define N(NAME,VAL,DIAG,STD,STR) UNI_CAUSE_##NAME = VAL,
H A Duni_ie.c851 #define D(NAME,VAL,DIAG,STD,STR) [UNI_CAUSE_##NAME] = { STR, UNI_DIAG_##DIAG },
852 #define N(NAME,VAL,DIAG,STD,STR)
861 #define D(NAME,VAL,DIAG,STD,STR)
862 #define N(NAME,VAL,DIAG,STD,STR) [UNI_CAUSE_##NAME] = { STR, UNI_DIAG_##DIAG },
/freebsd-13-stable/crypto/openssl/crypto/aria/
H A Daria.c46 #define PUT_U32_BE(DEST, IDX, VAL) \
48 ((uint8_t *)(DEST))[IDX * 4 ] = GET_U8_BE(VAL, 0); \
49 ((uint8_t *)(DEST))[IDX * 4 + 1] = GET_U8_BE(VAL, 1); \
50 ((uint8_t *)(DEST))[IDX * 4 + 2] = GET_U8_BE(VAL, 2); \
51 ((uint8_t *)(DEST))[IDX * 4 + 3] = GET_U8_BE(VAL, 3); \
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h63 V.U.VAL = 0;
69 V.U.VAL = 1;
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp872 VAL = Words[0];
874 VAL = 0;

Completed in 310 milliseconds

12