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.c185 i = o->valtype; in opt_init()
189 if (o->valtype == '.') in opt_init()
220 OPENSSL_assert(unknown->valtype == 0 || unknown->valtype == '-'); in opt_init()
888 if (o->valtype == 0 || o->valtype == '-') { in opt_next()
908 switch (o->valtype) { in opt_next()
933 if (o->valtype == 'p' && ival <= 0) { in opt_next()
938 if (o->valtype == 'N' && ival < 0) { in opt_next()
965 o->valtype == 'c' ? OPT_FMT_PDS : in opt_next()
966 o->valtype == 'E' ? OPT_FMT_PDE : in opt_next()
967 o->valtype == 'F' ? OPT_FMT_PEMDER in opt_next()
[all …]
/freebsd/sys/contrib/openzfs/include/
H A Dlibnvpair.h143 #define NVLIST_PRINTCTL_SVDECL(funcname, valtype) \ argument
145 int (*)(nvlist_prtctl_t, void *, nvlist_t *, const char *, valtype), \
/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-generic.c469 #define define_ddi_strtox(type, valtype) \ argument
471 int base, valtype *result) \
473 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.c851 #define GET_AND_EMIT_ALLOC_STAT(small_or_large, name, valtype) \ in stats_arena_print() argument
853 &small_or_large##_##name, valtype##_t); \ in stats_arena_print()
854 emitter_json_kv(emitter, #name, emitter_type_##valtype, \ in stats_arena_print()
856 col_count_##name.type = emitter_type_##valtype; \ in stats_arena_print()
857 col_count_##name.valtype##_val = small_or_large##_##name; in stats_arena_print()
/freebsd/crypto/openssl/apps/include/
H A Dopt.h317 int valtype; member
/freebsd/crypto/openssl/apps/
H A Dcmp.c2219 switch (opt->valtype) { in read_config()
2229 if (opt->valtype == 'p' && num <= 0) { in read_config()
2234 if (opt->valtype == 'N' && num < 0) { in read_config()
2251 opt->valtype, opt->name); in read_config()
2263 if (opt->valtype == '-') { in read_config()
2283 switch (opt->valtype) { in read_config()
H A Dlist.c998 char c = o->valtype; in list_options_for_command()