| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 112 U.VAL = val; in BitWidth() 156 U.VAL = that.U.VAL; in APInt() 600 U.VAL = RHS.U.VAL; 638 U.VAL = RHS; 655 U.VAL &= RHS.U.VAL; 685 U.VAL |= RHS.U.VAL; 714 U.VAL ^= RHS.U.VAL; 1031 return U.VAL == RHS.U.VAL; 1224 return (U.VAL & RHS.U.VAL) != 0; in intersects() 1232 return (U.VAL & ~RHS.U.VAL) == 0; in isSubsetOf() [all …]
|
| /freebsd-14.2/share/examples/drivers/ |
| H A D | make_pseudo_driver.sh | 40 read VAL 41 if [ "-z" "$VAL" ]; then 42 VAL=YES 44 case ${VAL} in 397 read VAL 398 if [ "-z" "$VAL" ]; then 399 VAL=YES 401 case ${VAL} in 412 read VAL 414 VAL=YES [all …]
|
| H A D | make_device_driver.sh | 40 read VAL 41 if [ "-z" "$VAL" ]; then 42 VAL=YES 44 case ${VAL} in
|
| /freebsd-14.2/lib/libc/string/ |
| H A D | memset.c | 49 #define VAL 0 macro 58 #define VAL c0 in bzero() 90 *dst++ = VAL; in bzero() 112 *dst++ = VAL; in bzero() 127 *dst++ = VAL; in bzero()
|
| /freebsd-14.2/sys/contrib/ck/include/ |
| H A D | ck_pr.h | 183 (VAL)) 185 #define ck_pr_store_ptr(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), ptr) argument 186 #define ck_pr_store_char(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), char) argument 188 #define ck_pr_store_double(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), double) argument 190 #define ck_pr_store_uint(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), uint) argument 191 #define ck_pr_store_int(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), int) argument 192 #define ck_pr_store_32(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), 32) argument 193 #define ck_pr_store_16(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), 16) argument 194 #define ck_pr_store_8(DST, VAL) CK_PR_STORE_SAFE((DST), (VAL), 8) argument 196 #define ck_pr_store_ptr_unsafe(DST, VAL) ck_pr_md_store_ptr((DST), (VAL)) argument [all …]
|
| /freebsd-14.2/tests/sys/cddl/zfs/tests/bootfs/ |
| H A D | bootfs_006_pos.ksh | 80 VAL=$($ZPOOL get bootfs $POOL | $TAIL -1 | $AWK '{print $3}' ) 81 if [ $VAL != "$POOL/$FS" ] 84 log_fail "set/get failed on $POOL - expected $VAL == $POOL/$FS" 93 VAL=$($ZPOOL get bootfs $POOL | $TAIL -1 | $AWK '{print $3}' ) 94 if [ $VAL == "$POOL/$FS" ] 97 log_fail "set/get unexpectedly failed $VAL != $POOL/$FS"
|
| /freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/tests/functional/bootfs/ |
| H A D | bootfs_006_pos.ksh | 57 VAL=$(zpool get bootfs $POOL | awk 'END {print $3}' ) 58 if [ $VAL != "$POOL/$TESTFS" ] 62 "set/get failed on $POOL - expected $VAL == $POOL/$TESTFS" 71 VAL=$(zpool get bootfs $POOL | awk 'END {print $3}' ) 72 if [ $VAL == "$POOL/$TESTFS" ] 75 log_fail "set/get unexpectedly failed $VAL != $POOL/$TESTFS"
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APInt.cpp | 149 U.VAL = RHS.U.VAL; in assignSlowCase() 179 ++U.VAL; in operator ++() 200 U.VAL += RHS.U.VAL; in operator +=() 220 U.VAL -= RHS.U.VAL; in operator -=() 237 return APInt(BitWidth, U.VAL * RHS.U.VAL); in operator *() 285 return U.VAL < RHS.U.VAL ? -1 : U.VAL > RHS.U.VAL; in compare() 386 U.VAL |= (subBits.U.VAL << bitPosition); in insertBits() 1585 return APInt(BitWidth, U.VAL / RHS.U.VAL); in udiv() 1676 return APInt(BitWidth, U.VAL % RHS.U.VAL); in urem() 1772 uint64_t QuotVal = LHS.U.VAL / RHS.U.VAL; in udivrem() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | APNumericStorage.h | 28 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member 39 APNumericStorage() : VAL(0), BitWidth(0) {} in APNumericStorage() 46 return llvm::APInt(BitWidth, VAL); in getIntValue()
|
| H A D | TemplateBase.h | 134 uint64_t VAL; 369 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
|
| /freebsd-14.2/sbin/fsdb/ |
| H A D | fsdb.c | 1193 #define VAL() ((*p++) - '0') in dotime() macro 1194 t.tm_year = VAL(); in dotime() 1195 t.tm_year = VAL() + t.tm_year * 10; in dotime() 1196 t.tm_year = VAL() + t.tm_year * 10; in dotime() 1198 t.tm_mon = VAL(); in dotime() 1200 t.tm_mday = VAL(); in dotime() 1202 t.tm_hour = VAL(); in dotime() 1204 t.tm_min = VAL(); in dotime() 1205 t.tm_min = VAL() + t.tm_min * 10; in dotime() 1206 t.tm_sec = VAL(); in dotime() [all …]
|
| /freebsd-14.2/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-14.2/sys/contrib/openzfs/tests/zfs-tests/include/ |
| H A D | math.shlib | 49 # within_tolerance VAL TAR TOL && $action 51 # within_tolerance VAL TAR TOL || $action
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | AMDHSAKernelDescriptor.h | 49 #define AMDHSA_BITS_SET(DST, MSK, VAL) \ argument 51 DST |= ((VAL << MSK ## _SHIFT) & MSK)
|
| /freebsd-14.2/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-14.2/sys/contrib/ena-com/ |
| H A D | ena_plat.h | 444 #define ATOMIC32_SET(I32_PTR, VAL) atomic_store_rel_int(I32_PTR, VAL) argument
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MLRegAllocEvictAdvisor.cpp | 913 #define SET(ID, TYPE, VAL) \ in extractFeatures() argument 915 Runner->getTensor<TYPE>(FeatureIDs::ID)[Pos] = static_cast<TYPE>(VAL); \ in extractFeatures() 918 std::max(Largest[FeatureIDs::ID], static_cast<float>(VAL)); \ in extractFeatures()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | TemplateBase.cpp | 195 Integer.VAL = Value.getZExtValue(); in initFromIntegral()
|
| H A D | Expr.cpp | 931 VAL = Words[0]; in setIntValue() 933 VAL = 0; in setIntValue()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/VE/ |
| H A D | VEInstrInfo.td | 1833 multiclass ZXATMLDm<SDPatternOperator from, int VAL, 1836 def : Pat<(i64 (and (anyext (from ADDRrri:$addr)), VAL)), 1838 def : Pat<(i64 (and (anyext (from ADDRrii:$addr)), VAL)), 1840 def : Pat<(i64 (and (anyext (from ADDRzri:$addr)), VAL)), 1842 def : Pat<(i64 (and (anyext (from ADDRzii:$addr)), VAL)),
|
| /freebsd-14.2/crypto/heimdal/include/ |
| H A D | config.h.in | 92 /* Define this if you want support for broken ENV_{VAR,VAL} telnets. */
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Headers/ |
| H A D | altivec.h | 3176 #define __vec_strmb(PTR, CNT, VAL) \ argument 3177 vec_xst_len_r((VAL), (unsigned char *)(PTR), (CNT))
|
| /freebsd-14.2/contrib/sqlite3/ |
| H A D | sqlite3.c | 13992 # define AtomicStore(PTR,VAL) __atomic_store_n((PTR),(VAL),__ATOMIC_RELAXED) argument 13996 # define AtomicStore(PTR,VAL) (*(PTR) = (VAL)) argument
|