Home
last modified time | relevance | path

Searched refs:UINTMAX_C (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/bc/include/
H A Dvm.h130 #define DC_FLAG_X (UINTMAX_C(1) << 0)
137 #define BC_FLAG_W (UINTMAX_C(1) << 1)
140 #define BC_FLAG_S (UINTMAX_C(1) << 2)
143 #define BC_FLAG_L (UINTMAX_C(1) << 3)
146 #define BC_FLAG_G (UINTMAX_C(1) << 4)
151 #define BC_FLAG_Q (UINTMAX_C(1) << 5)
154 #define BC_FLAG_I (UINTMAX_C(1) << 6)
157 #define BC_FLAG_P (UINTMAX_C(1) << 7)
160 #define BC_FLAG_R (UINTMAX_C(1) << 8)
163 #define BC_FLAG_Z (UINTMAX_C(1) << 9)
[all …]
H A Dbc.h150 #define BC_PARSE_FLAG_BRACE (UINTMAX_C(1) << 0)
155 #define BC_PARSE_FLAG_FUNC_INNER (UINTMAX_C(1) << 1)
161 #define BC_PARSE_FLAG_FUNC (UINTMAX_C(1) << 2)
166 #define BC_PARSE_FLAG_BODY (UINTMAX_C(1) << 3)
171 #define BC_PARSE_FLAG_LOOP (UINTMAX_C(1) << 4)
177 #define BC_PARSE_FLAG_LOOP_INNER (UINTMAX_C(1) << 5)
181 #define BC_PARSE_FLAG_IF (UINTMAX_C(1) << 6)
186 #define BC_PARSE_FLAG_ELSE (UINTMAX_C(1) << 7)
192 #define BC_PARSE_FLAG_IF_END (UINTMAX_C(1) << 8)
H A Dparse.h56 #define BC_PARSE_REL (UINTMAX_C(1) << 0)
59 #define BC_PARSE_PRINT (UINTMAX_C(1) << 1)
62 #define BC_PARSE_NOCALL (UINTMAX_C(1) << 2)
66 #define BC_PARSE_NOREAD (UINTMAX_C(1) << 3)
70 #define BC_PARSE_ARRAY (UINTMAX_C(1) << 4)
73 #define BC_PARSE_NEEDVAL (UINTMAX_C(1) << 5)
H A Dstatus.h324 #ifndef UINTMAX_C
325 #define UINTMAX_C __UINTMAX_C macro
H A Dvector.h50 #define BC_VEC_START_CAP (UINTMAX_C(1) << 5)
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DCSpecialSymbolMap.inc28 SYMBOL(UINTMAX_C, None, <stdint.h>)
H A DStdSpecialSymbolMap.inc849 SYMBOL(UINTMAX_C, None, <cstdint>)
850 SYMBOL(UINTMAX_C, None, <stdint.h>)
/freebsd/sys/riscv/include/
H A D_stdint.h45 #define UINTMAX_C(c) UINT64_C(c) macro
/freebsd/sys/arm64/include/
H A D_stdint.h49 #define UINTMAX_C(c) UINT64_C(c) macro
/freebsd/sys/arm/include/
H A D_stdint.h47 #define UINTMAX_C(c) UINT64_C(c) macro
/freebsd/sys/x86/include/
H A D_stdint.h60 #define UINTMAX_C(c) UINT64_C(c) macro
/freebsd/sys/powerpc/include/
H A D_stdint.h60 #define UINTMAX_C(c) UINT64_C(c) macro
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcstdint97 UINTMAX_C(value)
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dcstdint97 UINTMAX_C(value)
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dstdint.h831 #define UINTMAX_C(v) __UINTMAX_C(v) macro
/freebsd/contrib/llvm-project/libc/include/llvm-libc-macros/
H A Dstdint-macros.h868 #define UINTMAX_C(v) __int_c(v, __UINTMAX_C_SUFFIX__) macro
/freebsd/tests/sys/kern/
H A Dtimerfd.c1245 #define TIME_T_MAX (time_t)((UINTMAX_C(1) << ((sizeof(time_t) << 3) - 1)) - 1) in ATF_TC_BODY()