Home
last modified time | relevance | path

Searched defs:v (Results 1 – 25 of 1644) sorted by relevance

12345678910>>...66

/freebsd/sys/compat/linuxkpi/common/include/asm/
H A Datomic64.h42 #define atomic64_add(i, v) atomic64_add_return((i), (v)) argument
43 #define atomic64_sub(i, v) atomic64_sub_return((i), (v)) argument
44 #define atomic64_inc_return(v) atomic64_add_return(1, (v)) argument
45 #define atomic64_add_negative(i, v) (atomic64_add_return((i), (v)) < 0) argument
46 #define atomic64_add_and_test(i, v) (atomic64_add_return((i), (v)) == 0) argument
47 #define atomic64_sub_and_test(i, v) (atomic64_sub_return((i), (v)) == 0) argument
48 #define atomic64_dec_and_test(v) (atomic64_sub_return(1, (v)) == 0) argument
49 #define atomic64_inc_and_test(v) (atomic64_add_return(1, (v)) == 0) argument
50 #define atomic64_dec_return(v) atomic64_sub_return(1, (v)) argument
51 #define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1, 0) argument
[all …]
H A Datomic-long.h41 #define atomic_long_add(i, v) atomic_long_add_return((i), (v)) argument
42 #define atomic_long_sub(i, v) atomic_long_sub_return((i), (v)) argument
43 #define atomic_long_inc_return(v) atomic_long_add_return(1, (v)) argument
44 #define atomic_long_inc_not_zero(v) atomic_long_add_unless((v), 1, 0) argument
47 atomic_long_add_return(long i, atomic_long_t *v) in atomic_long_add_return()
53 atomic_long_sub_return(long i, atomic_long_t *v) in atomic_long_sub_return()
59 atomic_long_set(atomic_long_t *v, long i) in atomic_long_set()
65 atomic_long_read(atomic_long_t *v) in atomic_long_read()
71 atomic_long_inc(atomic_long_t *v) in atomic_long_inc()
77 atomic_long_dec(atomic_long_t *v) in atomic_long_dec()
[all …]
H A Datomic.h46 #define atomic_add(i, v) atomic_add_return((i), (v)) argument
47 #define atomic_sub(i, v) atomic_sub_return((i), (v)) argument
48 #define atomic_inc_return(v) atomic_add_return(1, (v)) argument
49 #define atomic_add_negative(i, v) (atomic_add_return((i), (v)) < 0) argument
50 #define atomic_add_and_test(i, v) (atomic_add_return((i), (v)) == 0) argument
51 #define atomic_sub_and_test(i, v) (atomic_sub_return((i), (v)) == 0) argument
52 #define atomic_dec_and_test(v) (atomic_sub_return(1, (v)) == 0) argument
53 #define atomic_inc_and_test(v) (atomic_add_return(1, (v)) == 0) argument
54 #define atomic_dec_return(v) atomic_sub_return(1, (v)) argument
55 #define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0) argument
[all …]
/freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Datomic.h42 #define atomic_inc_32(v) atomic_inc((atomic_t *)(v)) argument
43 #define atomic_dec_32(v) atomic_dec((atomic_t *)(v)) argument
44 #define atomic_add_32(v, i) atomic_add((i), (atomic_t *)(v)) argument
45 #define atomic_sub_32(v, i) atomic_sub((i), (atomic_t *)(v)) argument
46 #define atomic_inc_32_nv(v) atomic_inc_return((atomic_t *)(v)) argument
47 #define atomic_dec_32_nv(v) atomic_dec_return((atomic_t *)(v)) argument
48 #define atomic_add_32_nv(v, i) atomic_add_return((i), (atomic_t *)(v)) argument
49 #define atomic_sub_32_nv(v, i) atomic_sub_return((i), (atomic_t *)(v)) argument
50 #define atomic_cas_32(v, x, y) atomic_cmpxchg((atomic_t *)(v), x, y) argument
51 #define atomic_swap_32(v, x) atomic_xchg((atomic_t *)(v), x) argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dhexagon_types.h76 #define HEXAGON_V64_GET_D(v) (v) argument
77 #define HEXAGON_V64_GET_UD(v) ((unsigned long long)(v)) argument
81 #define HEXAGON_V64_GET_W0(v) \ argument
90 #define HEXAGON_V64_GET_W1(v) \ argument
99 #define HEXAGON_V64_GET_UW0(v) \ argument
108 #define HEXAGON_V64_GET_UW1(v) \ argument
120 #define HEXAGON_V64_GET_H0(v) \ argument
129 #define HEXAGON_V64_GET_H1(v) \ argument
138 #define HEXAGON_V64_GET_H2(v) \ argument
147 #define HEXAGON_V64_GET_H3(v) \ argument
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DScalar.h36 static llvm::APSInt MakeAPSInt(T v) { in MakeAPSInt()
53 Scalar(int v) : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar()
54 Scalar(unsigned int v) in Scalar()
56 Scalar(long v) : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar()
57 Scalar(unsigned long v) in Scalar()
59 Scalar(long long v) in Scalar()
61 Scalar(unsigned long long v) in Scalar()
63 Scalar(float v) : m_type(e_float), m_float(v) {} in Scalar()
64 Scalar(double v) : m_type(e_float), m_float(v) {} in Scalar()
65 Scalar(long double v) : m_type(e_float), m_float(double(v)) { in Scalar()
[all …]
/freebsd/contrib/bc/src/
H A Dvector.c46 bc_vec_grow(BcVec* restrict v, size_t n) in bc_vec_grow()
76 bc_vec_init(BcVec* restrict v, size_t esize, BcDtorType dtor) in bc_vec_init()
91 bc_vec_expand(BcVec* restrict v, size_t req) in bc_vec_expand()
112 bc_vec_npop(BcVec* restrict v, size_t n) in bc_vec_npop()
140 bc_vec_npopAt(BcVec* restrict v, size_t n, size_t idx) in bc_vec_npopAt()
177 bc_vec_npush(BcVec* restrict v, size_t n, const void* data) in bc_vec_npush()
202 bc_vec_push(BcVec* restrict v, const void* data) in bc_vec_push()
208 bc_vec_pushEmpty(BcVec* restrict v) in bc_vec_pushEmpty()
231 bc_vec_pushByte(BcVec* restrict v, uchar data) in bc_vec_pushByte()
238 bc_vec_pushIndex(BcVec* restrict v, size_t idx) in bc_vec_pushIndex()
[all …]
/freebsd/sys/sys/
H A Datomic_common.h40 #define __atomic_store_bool_relaxed(p, v) \ argument
52 #define __atomic_store_char_relaxed(p, v) \ argument
54 #define __atomic_store_short_relaxed(p, v) \ argument
56 #define __atomic_store_int_relaxed(p, v) \ argument
58 #define __atomic_store_long_relaxed(p, v) \ argument
60 #define __atomic_store_8_relaxed(p, v) \ argument
62 #define __atomic_store_16_relaxed(p, v) \ argument
64 #define __atomic_store_32_relaxed(p, v) \ argument
66 #define __atomic_store_64_relaxed(p, v) \ argument
76 #define atomic_store_bool(p, v) \ argument
[all …]
/freebsd/contrib/libucl/klib/
H A Dkvec.h58 #define kv_init(v) ((v).n = (v).m = 0, (v).a = 0) argument
59 #define kv_destroy(v) free((v).a) argument
60 #define kv_A(v, i) ((v).a[(i)]) argument
61 #define kv_pop(v) ((v).a[--(v).n]) argument
62 #define kv_size(v) ((v).n) argument
63 #define kv_max(v) ((v).m) argument
65 #define kv_resize_safe(type, v, s, el) do { \ argument
76 #define kv_grow_safe(type, v, el) do { \ argument
93 #define kv_push_safe(type, v, x, el) do { \ argument
100 #define kv_prepend_safe(type, v, x, el) do { \ argument
[all …]
/freebsd/sbin/zfsbootcfg/
H A Dzfsbootcfg.c63 uint64_t v; in add_pair() local
71 int64_t v; in add_pair() local
79 uint32_t v; in add_pair() local
87 int32_t v; in add_pair() local
95 uint16_t v; in add_pair() local
103 int16_t v; in add_pair() local
111 uint8_t v; in add_pair() local
119 int8_t v; in add_pair() local
127 uint8_t v; in add_pair() local
135 int32_t v; in add_pair() local
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interface_atomic.cpp60 T func_xchg(volatile T *v, T op) { in func_xchg()
68 T func_add(volatile T *v, T op) { in func_add()
73 T func_sub(volatile T *v, T op) { in func_sub()
78 T func_and(volatile T *v, T op) { in func_and()
83 T func_or(volatile T *v, T op) { in func_or()
88 T func_xor(volatile T *v, T op) { in func_xor()
93 T func_nand(volatile T *v, T op) { in func_nand()
106 T func_cas(volatile T *v, T cmp, T xch) { in func_cas()
116 a128 func_xchg(volatile a128 *v, a128 op) { in func_xchg()
123 a128 func_add(volatile a128 *v, a128 op) { in func_add()
[all …]
/freebsd/contrib/unbound/services/
H A Dview.c59 struct views* v = (struct views*)calloc(1, views_create() local
75 view_delete(struct view * v) view_delete() argument
89 struct view* v = (struct view*)n; delviewnode() local
94 views_delete(struct views * v) views_delete() argument
107 struct view* v = (struct view*)calloc(1, sizeof(*v)); view_create() local
124 struct view* v = view_create(name); views_enter_view_name() local
148 struct view* v; views_apply_cfg() local
227 struct view* v; views_find_view() local
245 views_print(struct views * v) views_print() argument
[all...]
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dio.h84 __raw_writeb(uint8_t v, volatile void *addr) in __raw_writeb()
88 #define __raw_writeb(v, addr) __raw_writeb(v, addr) argument
98 __raw_writew(uint16_t v, volatile void *addr) in __raw_writew()
102 #define __raw_writew(v, addr) __raw_writew(v, addr) argument
112 __raw_writel(uint32_t v, volatile void *addr) in __raw_writel()
116 #define __raw_writel(v, addr) __raw_writel(v, addr) argument
127 __raw_writeq(uint64_t v, volatile void *addr) in __raw_writeq()
131 #define __raw_writeq(v, addr) __raw_writeq(v, addr) argument
142 uint8_t v; in readb() local
153 writeb(uint8_t v, volatile void *addr) in writeb()
[all …]
/freebsd/sys/contrib/openzfs/lib/libspl/include/
H A Datomic.h269 #define atomic_store_char(p, v) \ argument
271 #define atomic_store_short(p, v) \ argument
273 #define atomic_store_int(p, v) \ argument
275 #define atomic_store_long(p, v) \ argument
277 #define atomic_store_ptr(p, v) \ argument
279 #define atomic_store_8(p, v) \ argument
281 #define atomic_store_16(p, v) \ argument
283 #define atomic_store_32(p, v) \ argument
286 #define atomic_store_64(p, v) \ argument
/freebsd/crypto/krb5/src/lib/gssapi/krb5/
H A Dimport_cred.c42 k5_json_value v; in check_element() local
53 json_to_optional_string(k5_json_value v, char **string_out) in json_to_optional_string()
66 json_to_principal(krb5_context context, k5_json_value v, in json_to_principal()
81 json_to_etypes(k5_json_value v, krb5_enctype **etypes_out) in json_to_etypes()
112 json_to_kgname(krb5_context context, k5_json_value v, in json_to_kgname()
151 json_to_keytab(krb5_context context, k5_json_value v, krb5_keytab *keytab_out) in json_to_keytab()
165 json_to_rcache(krb5_context context, k5_json_value v, krb5_rcache *rcache_out) in json_to_rcache()
182 json_to_keyblock(k5_json_value v, krb5_keyblock *keyblock) in json_to_keyblock()
213 json_to_address(k5_json_value v, krb5_address **addr_out) in json_to_address()
252 json_to_addresses(krb5_context context, k5_json_value v, in json_to_addresses()
[all …]
/freebsd/contrib/nvi/regex/
H A Dregexec.c63 #define CLEAR(v) ((v) = 0) argument
64 #define SET0(v, n) ((v) &= ~(1 << (n))) argument
65 #define SET1(v, n) ((v) |= 1 << (n)) argument
66 #define ISSET(v, n) ((v) & (1 << (n))) argument
72 #define SETUP(v) ((v) = 0) argument
76 #define ISSTATEIN(v, o) ((v) & (o)) argument
81 #define ISSETBACK(v, n) ((v) & ((unsigned)here >> (n))) argument
110 #define CLEAR(v) memset(v, 0, m->g->nstates) argument
111 #define SET0(v, n) ((v)[n] = 0) argument
112 #define SET1(v, n) ((v)[n] = 1) argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Dregexec.c60 #define CLEAR(v) ((v) = 0) argument
61 #define SET0(v, n) ((v) &= ~((unsigned long)1 << (n))) argument
62 #define SET1(v, n) ((v) |= (unsigned long)1 << (n)) argument
63 #define ISSET(v, n) (((v) & ((unsigned long)1 << (n))) != 0) argument
69 #define SETUP(v) ((v) = 0) argument
73 #define ISSTATEIN(v, o) (((v) & (o)) != 0) argument
78 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0) argument
107 #define CLEAR(v) memset(v, 0, m->g->nstates) argument
108 #define SET0(v, n) ((v)[n] = 0) argument
109 #define SET1(v, n) ((v)[n] = 1) argument
[all …]
/freebsd/sys/arm/freescale/imx/
H A Dimx6_ipu.c92 #define TEMPLATE_SYNC(v) ((v) << 0) argument
93 #define TEMPLATE_GLUELOGIC(v) ((v) << 4) argument
94 #define TEMPLATE_MAPPING(v) ((v) << 15) argument
95 #define TEMPLATE_WAVEFORM(v) ((v) << 11) argument
99 #define TEMPLATE_OPCODE(v) ((v) << 4) argument
137 #define DI_RUN_VALUE_M1(v) ((v) << 19) argument
138 #define DI_RUN_RESOLUTION(v) ((v) << 16) argument
139 #define DI_OFFSET_VALUE(v) ((v) << 3) argument
141 #define DI_CNT_POLARITY_GEN_EN(v) ((v) << 29) argument
143 #define DI_CNT_CLR_SEL(v) ((v) << 25) argument
[all …]
/freebsd/tests/sys/kern/acct/
H A Dacct_test.c56 check_result(const char *name, float expected, union cf v) in check_result()
78 union cf v; in ATF_TC_BODY() local
94 union cf v; in ATF_TC_BODY() local
109 union cf v; in ATF_TC_BODY() local
126 union cf v; in ATF_TC_BODY() local
143 union cf v; in ATF_TC_BODY() local
162 union cf v; in ATF_TC_BODY() local
182 union cf v; in ATF_TC_BODY() local
200 union cf v; in ATF_TC_BODY() local
/freebsd/contrib/elftoolchain/libelftc/
H A Dlibelftc_vstr.c49 get_strlen_sum(const struct vector_str *v) in get_strlen_sum()
68 vector_str_dest(struct vector_str *v) in vector_str_dest()
89 vector_str_find(const struct vector_str *v, const char *o, size_t l) in vector_str_find()
112 vector_str_get_flat(const struct vector_str *v, size_t *l) in vector_str_get_flat()
145 vector_str_grow(struct vector_str *v) in vector_str_grow()
178 vector_str_init(struct vector_str *v) in vector_str_init()
202 vector_str_pop(struct vector_str *v) in vector_str_pop()
224 vector_str_push(struct vector_str *v, const char *str, size_t len) in vector_str_push()
331 vector_str_substr(const struct vector_str *v, size_t begin, size_t end, in vector_str_substr()
/freebsd/contrib/elftoolchain/libpe/
H A Dlibpe_coff.c98 #define READ_OPT8(v) do { READ_OPT(1); (v) = *tmp; } while(0) in libpe_parse_coff_header() argument
99 #define READ_OPT16(v) do { READ_OPT(2); (v) = le16dec(tmp); } while(0) in libpe_parse_coff_header() argument
100 #define READ_OPT32(v) do { READ_OPT(4); (v) = le32dec(tmp); } while(0) in libpe_parse_coff_header() argument
101 #define READ_OPT64(v) do { READ_OPT(8); (v) = le64dec(tmp); } while(0) in libpe_parse_coff_header() argument
443 #define WRITE_OPT8(v) do { *tmp = (v); WRITE_OPT(1); } while(0) in libpe_write_coff_header() argument
444 #define WRITE_OPT16(v) do { le16enc(tmp, (v)); WRITE_OPT(2); } while(0) in libpe_write_coff_header() argument
445 #define WRITE_OPT32(v) do { le32enc(tmp, (v)); WRITE_OPT(4); } while(0) in libpe_write_coff_header() argument
446 #define WRITE_OPT64(v) do { le64enc(tmp, (v)); WRITE_OPT(8); } while(0) in libpe_write_coff_header() argument
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValue.h305 bool SetValueAs(bool v) { return SetBooleanValue(v); } in SetValueAs()
307 bool SetValueAs(char v) { return SetCharValue(v); } in SetValueAs()
309 bool SetValueAs(uint64_t v) { return SetUInt64Value(v); } in SetValueAs()
311 bool SetValueAs(int64_t v) { return SetSInt64Value(v); } in SetValueAs()
313 bool SetValueAs(UUID v) { return SetUUIDValue(v); } in SetValueAs()
315 bool SetValueAs(llvm::StringRef v) { return SetStringValue(v); } in SetValueAs()
317 bool SetValueAs(lldb::LanguageType v) { return SetLanguageValue(v); } in SetValueAs()
319 bool SetValueAs(lldb::Format v) { return SetFormatValue(v); } in SetValueAs()
321 bool SetValueAs(FileSpec v) { return SetFileSpecValue(v); } in SetValueAs()
323 bool SetValueAs(ArchSpec v) { return SetArchSpecValue(v); } in SetValueAs()
[all …]
/freebsd/contrib/kyua/utils/format/
H A Dcontainers_test.cpp78 std::map< char, int > v; in ATF_TEST_CASE_BODY() local
85 std::map< int, std::string > v; in ATF_TEST_CASE_BODY() local
131 std::set< char > v; in ATF_TEST_CASE_BODY() local
138 std::set< int > v; in ATF_TEST_CASE_BODY() local
159 std::vector< char > v; in ATF_TEST_CASE_BODY() local
166 std::vector< int > v; in ATF_TEST_CASE_BODY() local
/freebsd/usr.bin/mail/
H A Dcmd2.c50 next(void *v) in next()
128 save(void *v) in save()
139 copycmd(void *v) in copycmd()
208 swrite(void *v) in swrite()
261 deletecmd(void *v) in deletecmd()
273 deltype(void *v) in deltype()
336 undeletecmd(void *v) in undeletecmd()
415 retfield(void *v) in retfield()
427 igfield(void *v) in igfield()
435 saveretfield(void *v) in saveretfield()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DExtractRanges.h18 #define HEX8(v) llvm::format_hex(v, 4) argument
19 #define HEX16(v) llvm::format_hex(v, 6) argument
20 #define HEX32(v) llvm::format_hex(v, 10) argument
21 #define HEX64(v) llvm::format_hex(v, 18) argument

12345678910>>...66