Home
last modified time | relevance | path

Searched refs:VAL (Results 1 – 25 of 256) sorted by relevance

1234567891011

/netbsd-src/external/gpl3/gcc/dist/gcc/ginclude/
H A Dstdatomic.h82 #define atomic_init(PTR, VAL) \ argument
83 atomic_store_explicit (PTR, VAL, __ATOMIC_RELAXED)
121 #define atomic_store_explicit(PTR, VAL, MO) \ argument
125 __typeof__ ((void)0, *__atomic_store_ptr) __atomic_store_tmp = (VAL); \
129 #define atomic_store(PTR, VAL) \ argument
130 atomic_store_explicit (PTR, VAL, __ATOMIC_SEQ_CST)
145 #define atomic_exchange_explicit(PTR, VAL, MO) \ argument
149 __typeof__ ((void)0, *__atomic_exchange_ptr) __atomic_exchange_val = (VAL); \
156 #define atomic_exchange(PTR, VAL) \ argument
157 atomic_exchange_explicit (PTR, VAL, __ATOMIC_SEQ_CST)
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ginclude/
H A Dstdatomic.h82 #define atomic_init(PTR, VAL) \ argument
83 atomic_store_explicit (PTR, VAL, __ATOMIC_RELAXED)
121 #define atomic_store_explicit(PTR, VAL, MO) \ argument
125 __typeof__ (*__atomic_store_ptr) __atomic_store_tmp = (VAL); \
129 #define atomic_store(PTR, VAL) \ argument
130 atomic_store_explicit (PTR, VAL, __ATOMIC_SEQ_CST)
145 #define atomic_exchange_explicit(PTR, VAL, MO) \ argument
149 __typeof__ (*__atomic_exchange_ptr) __atomic_exchange_val = (VAL); \
156 #define atomic_exchange(PTR, VAL) \ argument
157 atomic_exchange_explicit (PTR, VAL, __ATOMIC_SEQ_CST)
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Dobj-coff-seh.h161 #define PEX64_UNWCODE_CODE(VAL) ((VAL) & 0xf) argument
162 #define PEX64_UNWCODE_INFO(VAL) (((VAL) >> 4) & 0xf) argument
186 #define PEX64_UWI_VERSION(VAL) ((VAL) & 7) argument
187 #define PEX64_UWI_FLAGS(VAL) (((VAL) >> 3) & 0x1f) argument
188 #define PEX64_UWI_FRAMEREG(VAL) ((VAL) & 0xf) argument
189 #define PEX64_UWI_FRAMEOFF(VAL) (((VAL) >> 4) & 0xf) argument
190 #define PEX64_UWI_SIZEOF_UWCODE_ARRAY(VAL) \ argument
191 ((((VAL) + 1) & ~1) * 2)
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dobj-coff-seh.h161 #define PEX64_UNWCODE_CODE(VAL) ((VAL) & 0xf) argument
162 #define PEX64_UNWCODE_INFO(VAL) (((VAL) >> 4) & 0xf) argument
186 #define PEX64_UWI_VERSION(VAL) ((VAL) & 7) argument
187 #define PEX64_UWI_FLAGS(VAL) (((VAL) >> 3) & 0x1f) argument
188 #define PEX64_UWI_FRAMEREG(VAL) ((VAL) & 0xf) argument
189 #define PEX64_UWI_FRAMEOFF(VAL) (((VAL) >> 4) & 0xf) argument
190 #define PEX64_UWI_SIZEOF_UWCODE_ARRAY(VAL) \ argument
191 ((((VAL) + 1) & ~1) * 2)
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DAPInt.h94 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member
155 U.VAL &= mask;
164 return isSingleWord() ? U.VAL : U.pVal[whichWord(bitPosition)];
282 U.VAL = val;
324 U.VAL = that.U.VAL;
346 explicit APInt() : BitWidth(1) { U.VAL = 0; }
403 return U.VAL == WORDTYPE_MAX >> (APINT_BITS_PER_WORD - BitWidth);
418 return U.VAL == 1;
434 return U.VAL == ((WordType(1) << (BitWidth - 1)) - 1);
450 return U.VAL == (WordType(1) << (BitWidth - 1));
[all …]
/netbsd-src/external/gpl3/binutils/dist/include/coff/
H A Dti.h228 #define PUT_SCNHDR_NRELOC(ABFD, VAL, LOC) \ argument
229 (COFF2_P (ABFD) ? H_PUT_32 (ABFD, VAL, LOC) : H_PUT_16 (ABFD, VAL, LOC))
241 #define PUT_SCNHDR_NLNNO(ABFD, VAL, LOC) \ argument
246 H_PUT_32 (ABFD, VAL, ptr); \
248 H_PUT_16 (ABFD, VAL, ptr - 2); \
261 #define PUT_SCNHDR_FLAGS(ABFD, VAL, LOC) \ argument
266 H_PUT_32 (ABFD, VAL, ptr); \
268 H_PUT_16 (ABFD, VAL, ptr - 4); \
282 #define PUT_SCNHDR_PAGE(ABFD, VAL, LOC) \ argument
287 H_PUT_16 (ABFD, VAL, ptr); \
[all …]
H A Dpe.h485 #define PEX64_UNWCODE_CODE(VAL) ((VAL) & 0xf) argument
486 #define PEX64_UNWCODE_INFO(VAL) (((VAL) >> 4) & 0xf) argument
554 #define PEX64_UWI_VERSION(VAL) ((VAL) & 7) argument
555 #define PEX64_UWI_FLAGS(VAL) (((VAL) >> 3) & 0x1f) argument
556 #define PEX64_UWI_FRAMEREG(VAL) ((VAL) & 0xf) argument
557 #define PEX64_UWI_FRAMEOFF(VAL) (((VAL) >> 4) & 0xf) argument
558 #define PEX64_UWI_SIZEOF_UWCODE_ARRAY(VAL) \ argument
559 ((((VAL) + 1) & ~1) * 2)
/netbsd-src/external/gpl3/binutils.old/dist/include/coff/
H A Dti.h228 #define PUT_SCNHDR_NRELOC(ABFD, VAL, LOC) \ argument
229 (COFF2_P (ABFD) ? H_PUT_32 (ABFD, VAL, LOC) : H_PUT_16 (ABFD, VAL, LOC))
241 #define PUT_SCNHDR_NLNNO(ABFD, VAL, LOC) \ argument
246 H_PUT_32 (ABFD, VAL, ptr); \
248 H_PUT_16 (ABFD, VAL, ptr - 2); \
261 #define PUT_SCNHDR_FLAGS(ABFD, VAL, LOC) \ argument
266 H_PUT_32 (ABFD, VAL, ptr); \
268 H_PUT_16 (ABFD, VAL, ptr - 4); \
282 #define PUT_SCNHDR_PAGE(ABFD, VAL, LOC) \ argument
287 H_PUT_16 (ABFD, VAL, ptr); \
[all …]
H A Dpe.h482 #define PEX64_UNWCODE_CODE(VAL) ((VAL) & 0xf) argument
483 #define PEX64_UNWCODE_INFO(VAL) (((VAL) >> 4) & 0xf) argument
551 #define PEX64_UWI_VERSION(VAL) ((VAL) & 7) argument
552 #define PEX64_UWI_FLAGS(VAL) (((VAL) >> 3) & 0x1f) argument
553 #define PEX64_UWI_FRAMEREG(VAL) ((VAL) & 0xf) argument
554 #define PEX64_UWI_FRAMEOFF(VAL) (((VAL) >> 4) & 0xf) argument
555 #define PEX64_UWI_SIZEOF_UWCODE_ARRAY(VAL) \ argument
556 ((((VAL) + 1) & ~1) * 2)
/netbsd-src/external/mit/isl/dist/
H A Disl_pw_add_constant_templ.c12 #undef VAL
13 #define VAL CAT(isl_,VAL_BASE) macro
18 __isl_take VAL *v) in FN()
24 zero = FN(VAL,is_zero)(v); in FN()
29 FN(VAL,free)(v); in FN() local
37 el = FN(FN(EL,add_constant),VAL_BASE)(el, FN(VAL,copy)(v)); in FN()
41 FN(VAL,free)(v); in FN() local
45 FN(VAL,free)(v); in FN() local
/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/shtest-env/
H A Denv-calls-env.txt10 # RUN: | FileCheck -check-prefix=CHECK-2-VAL %s
12 # CHECK-2-VAL: BAR = 1
13 # CHECK-2-VAL: FOO = 2
22 # RUN: | FileCheck -check-prefix=CHECK-2-U-VAL %s
24 # CHECK-2-U-VAL-NOT: BAR
25 # CHECK-2-U-VAL: FOO = 2
/netbsd-src/external/gpl3/gcc/dist/include/
H A Dbtf.h120 #define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24) argument
121 #define BTF_INT_OFFSET(VAL) (((VAL) & 0x00ff0000) >> 16) argument
122 #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff) argument
/netbsd-src/external/bsd/nvi/dist/clib/
H A Dmemset.c61 #define VAL 0 macro
70 #define VAL c0
100 *dst++ = VAL;
122 *dst++ = VAL;
137 *dst++ = VAL;
/netbsd-src/common/lib/libc/string/
H A Dmemset.c69 #define VAL 0 macro
76 #define VAL c0 in bzero()
125 *dst++ = VAL;
147 *dst++ = VAL;
162 *dst++ = VAL;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPInt.cpp95 U.VAL = bigVal[0]; in initFromArray()
153 U.VAL = RHS.U.VAL; in AssignSlowCase()
163 ID.AddInteger(U.VAL); in Profile()
175 ++U.VAL; in operator ++()
184 --U.VAL; in operator --()
196 U.VAL += RHS.U.VAL; in operator +=()
204 U.VAL += RHS; in operator +=()
216 U.VAL -= RHS.U.VAL; in operator -=()
224 U.VAL -= RHS; in operator -=()
233 return APInt(BitWidth, U.VAL * RHS.U.VAL); in operator *()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/pa/
H A Dfptr.c47 #define SIGN_EXTEND(VAL,BITS) \ argument
48 ((int) ((VAL) >> ((BITS) - 1) ? ((unsigned)(-1) << (BITS)) | (VAL) : (VAL)))
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/pa/
H A Dfptr.c47 #define SIGN_EXTEND(VAL,BITS) \ argument
48 ((int) ((VAL) >> ((BITS) - 1) ? ((unsigned)(-1) << (BITS)) | (VAL) : (VAL)))
/netbsd-src/games/cribbage/
H A Dsupport.c80 if (l > 1 || VAL(h[j].rank) != i) in cchose()
92 VAL(h[j].rank) != 15 - tv[i]) in cchose()
101 l = s + VAL(h[i].rank); in cchose()
112 l = s + VAL(h[i].rank); in cchose()
306 return (sum + VAL(j) <= 31); in anymove()
319 if (s + VAL(hand[i].rank) == t) in anysumto()
335 if (VAL(h[i].rank) == v) in numofval()
/netbsd-src/sys/arch/sgimips/dev/
H A Dscnvar.h77 #define SCN_OP_BIS(SC,VAL) ((SC)->sc_duart->base[DU_OPSET] = (VAL)) argument
78 #define SCN_OP_BIC(SC,VAL) ((SC)->sc_duart->base[DU_OPCLR] = (VAL)) argument
/netbsd-src/external/gpl3/gdb/dist/sim/ppc/
H A Dbits.h257 #define MBLIT32(V, LO, HI, VAL) \ argument
260 | INSERTED32(VAL, LO, HI)); \
269 #define _ROTLn(N, VAL, SHIFT) \ argument
270 (((VAL) << (SHIFT)) | ((VAL) >> ((N)-(SHIFT))))
/netbsd-src/tests/lib/libc/atomic/
H A Dt_atomic_inc.c39 #define VAL (0x1122334455667788UL) macro
55 val = (TYPE)VAL; \
84 val = (TYPE)VAL; \
H A Dt_atomic_dec.c39 #define VAL (0x1122334455667788UL) macro
55 val = (TYPE)VAL; \
84 val = (TYPE)VAL; \
/netbsd-src/sbin/fsdb/
H A Dfsdb.c1635 #define VAL() ((*p++) - '0') in dotime() macro
1636 t.tm_year = VAL(); in dotime()
1637 t.tm_year = VAL() + t.tm_year * 10; in dotime()
1638 t.tm_year = VAL() + t.tm_year * 10; in dotime()
1639 t.tm_year = VAL() + t.tm_year * 10 - 1900; in dotime()
1640 t.tm_mon = VAL(); in dotime()
1641 t.tm_mon = VAL() + t.tm_mon * 10 - 1; in dotime()
1642 t.tm_mday = VAL(); in dotime()
1643 t.tm_mday = VAL() + t.tm_mday * 10; in dotime()
1644 t.tm_hour = VAL(); in dotime()
[all …]
/netbsd-src/external/lgpl3/gmp/dist/tests/
H A Dx86check.c47 #define VAL 12 macro
97 CHECK (calling_conventions_values[VAL+i], regname[i], calling_conventions_values[WANT+i]); in calling_conventions_check()
H A Damd64check.c48 #define VAL 16 macro
91 CHECK (calling_conventions_values[VAL+i], regname[i], calling_conventions_values[WANT+i]); in calling_conventions_check()

1234567891011