/openbsd/include/ |
H A D | ctype.h | 117 return (_c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)_c] & in isalnum() 123 return (_c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)_c] & in isalpha() 129 return (_c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)_c] & _CTYPE_C)); in iscntrl() 134 return (_c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)_c] & _CTYPE_N)); in isdigit() 139 return (_c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)_c] & in isgraph() 150 return (_c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)_c] & in isprint() 171 return (_c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)_c] & in isxdigit() 178 return (_c); in tolower() 185 return (_c); in toupper() 193 return (_c == ' ' || _c == '\t'); in isblank() [all …]
|
H A D | siphash.h | 71 #define SipHash24_Init(_c, _k) SipHash_Init((_c), (_k)) argument 72 #define SipHash24_Update(_c, _p, _l) SipHash_Update((_c), 2, 4, (_p), (_l)) argument 74 #define SipHash24_Final(_d, _c) SipHash_Final((_d), (_c), 2, 4) argument 77 #define SipHash48_Init(_c, _k) SipHash_Init((_c), (_k)) argument 78 #define SipHash48_Update(_c, _p, _l) SipHash_Update((_c), 4, 8, (_p), (_l)) argument 80 #define SipHash48_Final(_d, _c) SipHash_Final((_d), (_c), 4, 8) argument
|
H A D | stdio.h | 395 static __inline int __sputc(int _c, FILE *_p) { in __sputc() argument 396 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')) in __sputc() 397 return (*_p->_p++ = _c); in __sputc() 399 return (__swbuf(_c, _p)); in __sputc()
|
/openbsd/lib/libc/hidden/ |
H A D | ctype.h | 22 __only_inline int isalnum(int _c); 23 __only_inline int isalpha(int _c); 24 __only_inline int iscntrl(int _c); 25 __only_inline int isdigit(int _c); 26 __only_inline int isgraph(int _c); 27 __only_inline int islower(int _c); 28 __only_inline int isprint(int _c); 29 __only_inline int ispunct(int _c); 30 __only_inline int isspace(int _c); 31 __only_inline int isupper(int _c); [all …]
|
/openbsd/sys/arch/amd64/include/ |
H A D | bus.h | 169 ((_t)->read_multi_1((_h), (_o), (_a), (_c))) 171 ((_t)->read_multi_2((_h), (_o), (_a), (_c))) 173 ((_t)->read_multi_4((_h), (_o), (_a), (_c))) 175 ((_t)->read_multi_8((_h), (_o), (_a), (_c))) 215 ((_t)->read_region_1((_h), (_o), (_a), (_c))) 217 ((_t)->read_region_2((_h), (_o), (_a), (_c))) 219 ((_t)->read_region_4((_h), (_o), (_a), (_c))) 382 ((_t)->set_multi_1((_h), (_o), (_a), (_c))) 384 ((_t)->set_multi_2((_h), (_o), (_a), (_c))) 386 ((_t)->set_multi_4((_h), (_o), (_a), (_c))) [all …]
|
/openbsd/sys/sys/ |
H A D | stdint.h | 217 #define INT8_C(_c) (_c) argument 218 #define INT16_C(_c) (_c) argument 219 #define INT32_C(_c) (_c) argument 220 #define INT64_C(_c) __CONCAT(_c, LL) argument 222 #define UINT8_C(_c) (_c) argument 223 #define UINT16_C(_c) (_c) argument 224 #define UINT32_C(_c) __CONCAT(_c, U) argument 225 #define UINT64_C(_c) __CONCAT(_c, ULL) argument 228 #define INTMAX_C(_c) __CONCAT(_c, LL) argument 229 #define UINTMAX_C(_c) __CONCAT(_c, ULL) argument
|
H A D | srp.h | 55 #define SRP_GC_INITIALIZER(_d, _c) { (_d), (_c), REFCNT_INITIALIZER() } argument 67 #define SRPL_RC_INITIALIZER(_r, _u, _c) { _r, SRP_GC_INITIALIZER(_u, _c) } argument 125 for ((_c) = SRPL_FIRST(_sr, _sl); \ 126 (_c) != NULL; \ 127 (_c) = SRPL_FOLLOW(_sr, _c, _ENTRY)) 138 for ((_c) = SRPL_FIRST_LOCKED(_sl); \ 139 (_c) != NULL; \ 140 (_c) = SRPL_NEXT_LOCKED((_c), _ENTRY)) 143 for ((_c) = SRPL_FIRST_LOCKED(_sl); \ 144 (_c) && ((_tc) = SRPL_NEXT_LOCKED(_c, _ENTRY), 1); \ [all …]
|
/openbsd/sys/arch/i386/include/ |
H A D | bus.h | 153 ((_t)->read_multi_1((_h), (_o), (_a), (_c))) 155 ((_t)->read_multi_2((_h), (_o), (_a), (_c))) 157 ((_t)->read_multi_4((_h), (_o), (_a), (_c))) 202 ((_t)->read_region_1((_h), (_o), (_a), (_c))) 204 ((_t)->read_region_2((_h), (_o), (_a), (_c))) 206 ((_t)->read_region_4((_h), (_o), (_a), (_c))) 381 ((_t)->set_multi_1((_h), (_o), (_a), (_c))) 383 ((_t)->set_multi_2((_h), (_o), (_a), (_c))) 385 ((_t)->set_multi_4((_h), (_o), (_a), (_c))) 409 ((_t)->set_region_1((_h), (_o), (_a), (_c))) [all …]
|
/openbsd/sys/crypto/ |
H A D | siphash.h | 75 #define SipHash24_Init(_c, _k) SipHash_Init((_c), (_k)) argument 76 #define SipHash24_Update(_c, _p, _l) SipHash_Update((_c), 2, 4, (_p), (_l)) argument 78 #define SipHash24_Final(_d, _c) SipHash_Final((_d), (_c), 2, 4) argument 81 #define SipHash48_Init(_c, _k) SipHash_Init((_c), (_k)) argument 82 #define SipHash48_Update(_c, _p, _l) SipHash_Update((_c), 4, 8, (_p), (_l)) argument 84 #define SipHash48_Final(_d, _c) SipHash_Final((_d), (_c), 4, 8) argument
|
/openbsd/sys/net80211/ |
H A D | ieee80211_var.h | 158 #define IEEE80211_IS_CHAN_A(_c) \ argument 160 #define IEEE80211_IS_CHAN_B(_c) \ argument 162 #define IEEE80211_IS_CHAN_PUREG(_c) \ argument 164 #define IEEE80211_IS_CHAN_G(_c) \ argument 166 #define IEEE80211_IS_CHAN_N(_c) \ argument 168 #define IEEE80211_IS_CHAN_AC(_c) \ argument 171 #define IEEE80211_IS_CHAN_2GHZ(_c) \ argument 173 #define IEEE80211_IS_CHAN_5GHZ(_c) \ argument 175 #define IEEE80211_IS_CHAN_OFDM(_c) \ argument 177 #define IEEE80211_IS_CHAN_CCK(_c) \ argument [all …]
|
/openbsd/etc/ |
H A D | netstart | 42 set -A _c -- "$@" 45 case ${_c[_af]} in 50 if [[ ${_c[_name]} == autoconf ]]; then 56 [[ -n ${_c[_mask]} ]] && _c[_mask]="netmask ${_c[_mask]}" 57 if [[ -n ${_c[_bc]} ]]; then 58 _c[_bc]="broadcast ${_c[_bc]}" 59 [[ ${_c[_bc]} == *NONE ]] && _c[_bc]= 70 [[ -n ${_c[_prefix]} ]] && _c[_prefix]="prefixlen ${_c[_prefix]}" 76 set -A _c -- ${_cmds[_prev]} 79 _c[_name]="${_c[_name]} $_daddr" [all …]
|
/openbsd/gnu/lib/libstdc++/libstdc++/include/bits/ |
H A D | concept_check.h | 54 #define __glibcpp_class_requires2(_a,_b,_c) argument 55 #define __glibcpp_class_requires3(_a,_b,_c,_d) argument 56 #define __glibcpp_class_requires4(_a,_b,_c,_d,_e) argument 78 #define __glibcpp_class_requires3(_a,_b,_c,_C) \ argument 79 _GLIBCPP_CLASS_REQUIRES3(_a, _b, _c, __gnu_cxx, _C); 80 #define __glibcpp_class_requires4(_a,_b,_c,_d,_C) \ argument 81 _GLIBCPP_CLASS_REQUIRES4(_a, _b, _c, _d, __gnu_cxx, _C);
|
/openbsd/gnu/gcc/libstdc++-v3/include/bits/ |
H A D | concept_check.h | 54 #define __glibcxx_class_requires2(_a,_b,_c) argument 55 #define __glibcxx_class_requires3(_a,_b,_c,_d) argument 56 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e) argument 78 #define __glibcxx_class_requires3(_a,_b,_c,_C) \ argument 79 _GLIBCXX_CLASS_REQUIRES3(_a, _b, _c, __gnu_cxx, _C); 80 #define __glibcxx_class_requires4(_a,_b,_c,_d,_C) \ argument 81 _GLIBCXX_CLASS_REQUIRES4(_a, _b, _c, _d, __gnu_cxx, _C);
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/ |
H A D | p658.C | 34 char _c; 79 _c('a') in Char() 84 _c(c) in Char() 89 _c(other._c) in Char() 99 return _c;
|
H A D | p12306a.C | 26 virtual class b* get() {return &_c;} in get() 27 c _c; variable 33 D._c.i = 42; in main() 34 return &D._c.i != &bp->i; in main()
|
H A D | p11110.C | 15 conatiner& _c; 19 return (_c.contents (_c.first)); // ERROR - in data1()
|
/openbsd/gnu/gcc/gcc/config/soft-fp/ |
H A D | op-common.h | 64 X##_c = FP_CLS_NORMAL; \ 74 X##_c = FP_CLS_NAN; \ 173 switch (X##_c) \ 192 X##_c = FP_CLS_INF; \ 733 R##_c = X##_c; \ 746 switch (_FP_CLS_COMBINE(X##_c, Y##_c)) \ 774 R##_c = X##_c; \ 785 R##_c = Y##_c; \ 809 switch (_FP_CLS_COMBINE(X##_c, Y##_c)) \ 827 R##_c = X##_c; \ [all …]
|
/openbsd/regress/sys/net/rtable/ |
H A D | srp_compat.h | 61 #define SRPL_FOREACH(_c, _srp, _sl, _ENTRY) \ argument 62 SLIST_FOREACH(_c, _sl, _ENTRY) 69 #define SRPL_FOREACH_LOCKED(_c, _sl, _ENTRY) \ argument 70 SLIST_FOREACH(_c, _sl, _ENTRY) 72 #define SRPL_FOREACH_SAFE_LOCKED(_c, _sl, _ENTRY, _tc) \ argument 73 SLIST_FOREACH_SAFE(_c, _sl, _ENTRY, _tc)
|
/openbsd/sys/dev/pci/ |
H A D | if_nxe.c | 84 #define NXE_DB_COUNT(_c) ((_c)<<3) /* count */ argument 85 #define NXE_DB_CTXID(_c) ((_c)<<18) /* context id */ argument 288 #define NXE_1_SW_RX_PRODUCER(_c) (nxe_regmap[6][(_c)]) argument 290 #define NXE_1_SW_RX_CONSUMER(_c) (nxe_regmap[7][(_c)]) argument 292 #define NXE_1_SW_RX_RING(_c) (nxe_regmap[8][(_c)]) argument 294 #define NXE_1_SW_RX_SIZE(_c) (nxe_regmap[9][(_c)]) argument 310 #define NXE_1_SW_RX_LRO_RING(_c) (nxe_regmap[16][(_c)]) argument 312 #define NXE_1_SW_RX_LRO_SIZE(_c) (nxe_regmap[17][(_c)]) argument 315 #define NXE_1_SW_STATUS_RING(_c) (nxe_regmap[18][(_c)]) argument 321 #define NXE_1_SW_STATUS_STATE(_c) (nxe_regmap[21][(_c)]) argument [all …]
|
/openbsd/regress/lib/libc/locale/setlocale/ |
H A D | setlocale.c | 28 #define test_setlocale(_e, _c, _l) _test_setlocale(_e, _c, _l, __LINE__) argument 30 #define test_isalpha(_e, _c) _test_isalpha(_e, _c, __LINE__) argument
|
/openbsd/usr.sbin/syspatch/ |
H A D | syspatch.sh | 168 local _c _f _cmd _l="$(ls_installed)" _p _sha=${_TMP}/SHA256 181 while read _c; do _c=${_c##syspatch${_OSrev}-} && 182 [[ -n ${_l} ]] && echo ${_c} | grep -qw -- "${_l}" || echo ${_c}
|
/openbsd/sys/arch/sparc64/include/ |
H A D | atomic.h | 54 #define _def_atomic_swap(_f, _t, _c) \ argument 64 r = _c(p, e, v); \ 92 #define _def_atomic_op_nv(_f, _t, _c, _op) \ argument 102 r = _c(p, e, f); \
|
/openbsd/usr.sbin/sysupgrade/ |
H A D | sysupgrade.sh | 66 local _a=$1 _b _c 70 [[ $_a != "$_b" ]] && _c="${_c:+$_c }$_b" 72 echo -n "$_c"
|
/openbsd/distrib/miniroot/ |
H A D | install.sub | 135 local _a=$1 _b _c 139 [[ $_a != "$_b" ]] && _c="${_c:+$_c }$_b" 141 echo "$_c" 2454 set -A _c -- "$@" 2460 case ${_c[_af]} in 2471 [[ -n ${_c[_mask]} ]] && _c[_mask]="netmask ${_c[_mask]}" 2472 if [[ -n ${_c[_bc]} ]]; then 2474 [[ ${_c[_bc]} == *NONE ]] && _c[_bc]= 2486 [[ -n ${_c[_prefix]} ]] && _c[_prefix]="prefixlen ${_c[_prefix]}" 2493 set -A _c -- ${_cmds[_prev]} [all …]
|
/openbsd/sys/dev/fdt/ |
H A D | rkusbphy.c | 231 #define RKUSBPHY_ID(_n, _c) { _n, _c, nitems(_c) } argument
|