| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 277 U.VAL = val; 319 U.VAL = that.U.VAL; 757 U.VAL = RHS.U.VAL; 813 U.VAL &= RHS.U.VAL; 843 U.VAL |= RHS.U.VAL; 872 U.VAL ^= RHS.U.VAL; 1153 return U.VAL == RHS.U.VAL; 1344 return (U.VAL & RHS.U.VAL) != 0; 1352 return (U.VAL & ~RHS.U.VAL) == 0; 1517 U.VAL = 0; [all …]
|
| /freebsd-13.1/sys/compat/cloudabi32/ |
| H A D | cloudabi32_module.c | 119 #define VAL(type, val) { .a_type = (type), .a_val = (val) } in cloudabi32_fixup() macro 122 VAL(CLOUDABI_AT_ARGDATALEN, argdatalen), in cloudabi32_fixup() 123 VAL(CLOUDABI_AT_BASE, args->base), in cloudabi32_fixup() 125 VAL(CLOUDABI_AT_CANARYLEN, sizeof(canarybuf)), in cloudabi32_fixup() 126 VAL(CLOUDABI_AT_NCPUS, mp_ncpus), in cloudabi32_fixup() 127 VAL(CLOUDABI_AT_PAGESZ, args->pagesz), in cloudabi32_fixup() 129 VAL(CLOUDABI_AT_PHNUM, args->phnum), in cloudabi32_fixup() 133 VAL(CLOUDABI_AT_TID, td->td_tid), in cloudabi32_fixup() 134 #undef VAL in cloudabi32_fixup()
|
| /freebsd-13.1/sys/compat/cloudabi64/ |
| H A D | cloudabi64_module.c | 119 #define VAL(type, val) { .a_type = (type), .a_val = (val) } in cloudabi64_fixup() macro 122 VAL(CLOUDABI_AT_ARGDATALEN, argdatalen), in cloudabi64_fixup() 123 VAL(CLOUDABI_AT_BASE, args->base), in cloudabi64_fixup() 125 VAL(CLOUDABI_AT_CANARYLEN, sizeof(canarybuf)), in cloudabi64_fixup() 126 VAL(CLOUDABI_AT_NCPUS, mp_ncpus), in cloudabi64_fixup() 127 VAL(CLOUDABI_AT_PAGESZ, args->pagesz), in cloudabi64_fixup() 129 VAL(CLOUDABI_AT_PHNUM, args->phnum), in cloudabi64_fixup() 133 VAL(CLOUDABI_AT_TID, td->td_tid), in cloudabi64_fixup() 134 #undef VAL in cloudabi64_fixup()
|
| /freebsd-13.1/share/examples/drivers/ |
| H A D | make_pseudo_driver.sh | 41 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 421 VAL=YES [all …]
|
| H A D | make_device_driver.sh | 43 read VAL 44 if [ "-z" "$VAL" ]; then 45 VAL=YES 47 case ${VAL} in
|
| /freebsd-13.1/lib/libc/string/ |
| H A D | memset.c | 52 #define VAL 0 macro 61 #define VAL c0 in bzero() 93 *dst++ = VAL; in bzero() 115 *dst++ = VAL; in bzero() 130 *dst++ = VAL; in bzero()
|
| /freebsd-13.1/sys/contrib/ck/include/ |
| H A D | ck_pr.h | 170 (VAL)) 172 #define ck_pr_store_ptr(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), ptr) argument 173 #define ck_pr_store_char(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), char) argument 175 #define ck_pr_store_double(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), double) argument 177 #define ck_pr_store_uint(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), uint) argument 178 #define ck_pr_store_int(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), int) argument 179 #define ck_pr_store_32(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), 32) argument 180 #define ck_pr_store_16(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), 16) argument 181 #define ck_pr_store_8(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), 8) argument 183 #define ck_pr_store_ptr_unsafe(DST, VAL) ck_pr_md_store_ptr((DST), (VAL)) argument [all …]
|
| /freebsd-13.1/tests/sys/cddl/zfs/tests/bootfs/ |
| H A D | bootfs_006_pos.ksh | 82 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.1/sys/contrib/openzfs/tests/zfs-tests/tests/functional/bootfs/ |
| H A D | bootfs_006_pos.ksh | 63 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.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APInt.cpp | 153 U.VAL = RHS.U.VAL; in AssignSlowCase() 175 ++U.VAL; in operator ++() 196 U.VAL += RHS.U.VAL; in operator +=() 216 U.VAL -= RHS.U.VAL; in operator -=() 233 return APInt(BitWidth, U.VAL * RHS.U.VAL); in operator *() 278 return U.VAL < RHS.U.VAL ? -1 : U.VAL > RHS.U.VAL; in compare() 359 U.VAL |= (subBits.U.VAL << bitPosition); in insertBits() 1610 return APInt(BitWidth, U.VAL / RHS.U.VAL); in udiv() 1701 return APInt(BitWidth, U.VAL % RHS.U.VAL); in urem() 1797 uint64_t QuotVal = LHS.U.VAL / RHS.U.VAL; in udivrem() [all …]
|
| /freebsd-13.1/sbin/fsdb/ |
| H A D | fsdb.c | 1155 #define VAL() ((*p++) - '0') in dotime() macro 1156 t.tm_year = VAL(); in dotime() 1157 t.tm_year = VAL() + t.tm_year * 10; in dotime() 1158 t.tm_year = VAL() + t.tm_year * 10; in dotime() 1160 t.tm_mon = VAL(); in dotime() 1162 t.tm_mday = VAL(); in dotime() 1164 t.tm_hour = VAL(); in dotime() 1166 t.tm_min = VAL(); in dotime() 1167 t.tm_min = VAL() + t.tm_min * 10; in dotime() 1168 t.tm_sec = VAL(); in dotime() [all …]
|
| /freebsd-13.1/tools/tools/tinybsd/ |
| H A D | tinybsd | 45 VAL=`splitarg2 $arg` 48 SECTUNIT=$VAL 51 TRACKCYL=$VAL 54 SECTRACK=$VAL 57 CONF=$VAL 60 MFSROOT=$VAL 63 IMG=$VAL
|
| /freebsd-13.1/contrib/netbsd-tests/lib/libm/ |
| H A D | t_round.c | 45 #define VAL 0x0.7ffffffffffffcp0 macro 63 double a = VAL, b, c; in ATF_TC_BODY()
|
| /freebsd-13.1/sys/contrib/ngatm/netnatm/api/ |
| H A D | atmapi.h | 121 #define DEF(NAME,VAL,STR) NAME = (VAL), argument
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | AMDHSAKernelDescriptor.h | 42 #define AMDHSA_BITS_SET(DST, MSK, VAL) \ argument 44 DST |= ((VAL << MSK ## _SHIFT) & MSK)
|
| /freebsd-13.1/sys/contrib/ngatm/netnatm/sig/ |
| H A D | unidef.h | 245 #define DEF(NAME, VAL, STR) UNIAPI_##NAME = VAL, argument
|
| H A D | sig_print.c | 59 #define DEF(NAME, VAL, STR) [UNIAPI_##NAME] = STR, in uni_strerr() argument
|
| /freebsd-13.1/sys/contrib/openzfs/tests/zfs-tests/include/ |
| H A D | math.shlib | 52 # within_tolerance VAL TAR TOL && $action 54 # within_tolerance VAL TAR TOL || $action
|
| /freebsd-13.1/sys/contrib/ngatm/netnatm/msg/ |
| H A D | unistruct.h | 625 #define D(NAME,VAL,DIAG,STD,STR) UNI_CAUSE_##NAME = VAL, argument 626 #define N(NAME,VAL,DIAG,STD,STR) UNI_CAUSE_##NAME = VAL, argument
|
| /freebsd-13.1/crypto/openssl/crypto/aria/ |
| H A D | aria.c | 46 #define PUT_U32_BE(DEST, IDX, VAL) \ argument 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.1/sys/contrib/ena-com/ |
| H A D | ena_plat.h | 399 #define ATOMIC32_SET(I32_PTR, VAL) atomic_store_rel_int(I32_PTR, VAL) argument
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TemplateBase.h | 121 uint64_t VAL; 319 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | arm_neon_incl.td | 76 // The syntax is (cast MOD* VAL). The last argument is the value to 78 // starts off as the type of VAL, and is modified by MOD in sequence. 100 // The VAL argument is saved to a temporary so it can be used
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | TemplateBase.cpp | 174 Integer.VAL = Value.getZExtValue(); in TemplateArgument()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectType.cpp | 40 #define CHECK_FORMATTER_KIND_MASK(VAL) \ argument 41 ((m_formatter_kind_mask & (VAL)) == (VAL))
|