Home
last modified time | relevance | path

Searched refs:valtype (Results 1 – 10 of 10) sorted by relevance

/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dinterval_tree_generic.h31 #define INTERVAL_TREE_DEFINE(type, field, valtype, dummy, START, LAST, \ argument
33 __IT_DEFINE_ITER_FROM(type, field, valtype, START, LAST, name) \
34 __IT_DEFINE_ITER_FIRST(type, valtype, attr, name) \
35 __IT_DEFINE_ITER_NEXT(type, field, valtype, attr, name) \
39 #define __IT_DEFINE_ITER_FROM(type, field, valtype, START, LAST, name) \ argument
41 name##_iter_from(struct rb_node *rb, valtype start, valtype last) \
56 #define __IT_DEFINE_ITER_FIRST(type, valtype, attr, name) \ argument
58 name##_iter_first(struct rb_root_cached *root, valtype start, valtype last) \
63 #define __IT_DEFINE_ITER_NEXT(type, field, valtype, attr, name) \ argument
65 name##_iter_next(type *node, valtype start, valtype last) \
/freebsd/crypto/openssl/apps/lib/
H A Dopt.c184 i = o->valtype; in opt_init()
188 if (o->valtype == '.') in opt_init()
236 OPENSSL_assert(unknown->valtype == 0 || unknown->valtype == '-');
930 if (o->valtype == 0 || o->valtype == '-') { in opt_next()
950 switch (o->valtype) { in opt_next()
975 if (o->valtype == 'p' && ival <= 0) { in opt_next()
980 if (o->valtype == 'N' && ival < 0) { in opt_next()
1009 o->valtype in opt_next()
[all...]
/freebsd/sys/contrib/openzfs/include/
H A Dlibnvpair.h144 #define NVLIST_PRINTCTL_SVDECL(funcname, valtype) \ argument
146 int (*)(nvlist_prtctl_t, void *, nvlist_t *, const char *, valtype), \
/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-generic.c470 #define define_ddi_strtox(type, valtype) \ argument
472 int base, valtype *result) \
474 valtype last_value, value = 0; \
/freebsd/crypto/openssl/doc/internal/man3/
H A DOPTIONS.pod100 int valtype;
111 The B<valtype> defines what the option's parameter must be. It should
173 The B<retval> and B<valtype> are ignored, and the B<helpstr> should
264 will also do range-check on the argument if the appropriate B<valtype>
/freebsd/bin/expr/
H A Dexpr.y29 enum valtype { enum
34 enum valtype type;
/freebsd/contrib/jemalloc/src/
H A Dstats.c1233 #define GET_AND_EMIT_ALLOC_STAT(small_or_large, name, valtype) \ in stats_print_helper()
1235 &small_or_large##_##name, valtype##_t); \ in stats_print_helper()
1236 emitter_json_kv(emitter, #name, emitter_type_##valtype, \ in stats_print_helper()
1238 col_count_##name.type = emitter_type_##valtype; \ in stats_print_helper()
1239 col_count_##name.valtype##_val = small_or_large##_##name; in stats_print_helper()
851 GET_AND_EMIT_ALLOC_STAT(small_or_large,name,valtype) stats_arena_print() argument
/freebsd/crypto/openssl/apps/include/
H A Dopt.h363 int valtype;
352 int valtype; global() member
/freebsd/crypto/openssl/apps/
H A Dcmp.c2752 switch (opt->valtype) { in read_config()
2762 if (opt->valtype == 'p' && num <= 0) { in read_config()
2767 if (opt->valtype == 'N' && num < 0) { in read_config()
2784 opt->valtype, opt->name); in opt_str()
2796 if (opt->valtype == '-') {
2816 switch (opt->valtype) { in get_opts()
H A Dlist.c1152 char c = o->valtype; in list_options_for_command()