Home
last modified time | relevance | path

Searched refs:_func_ (Results 1 – 25 of 191) sorted by relevance

12345678

/dports/misc/rump/buildrump.sh-b914579/src/lib/libc/citrus/
H A Dcitrus_prop.h42 #define _CITRUS_PROP_CB0_T(_func_, _type_) \ argument
43 typedef int (*_citrus_prop_##_func_##_cb_func_t) \
46 _citrus_prop_##_func_##_cb_func_t func; \
47 } _citrus_prop_##_func_##_cb_t;
52 #define _CITRUS_PROP_CB1_T(_func_, _type_) \ argument
53 typedef int (*_citrus_prop_##_func_##_cb_func_t) \
56 _citrus_prop_##_func_##_cb_func_t func; \
57 } _citrus_prop_##_func_##_cb_t;
H A Dcitrus_prop.c141 obj->u._func_ = 0; \ in _CITRUS_PROP_READ_UINT_COMMON()
149 return _citrus_prop_read_##_func_##_common \ in _CITRUS_PROP_READ_UINT_COMMON()
150 (ms, &obj->u._func_, base); \ in _CITRUS_PROP_READ_UINT_COMMON()
399 #define CALL0(_func_) \ in _citrus_prop_parse_element() argument
401 _DIAGASSERT(hint->cb._func_.func != NULL); \ in _citrus_prop_parse_element()
402 errnum = (*hint->cb._func_.func)(context, \ in _citrus_prop_parse_element()
403 hint->name, ostart.u._func_); \ in _citrus_prop_parse_element()
405 #define CALL1(_func_) \ in _citrus_prop_parse_element() argument
407 _DIAGASSERT(hint->cb._func_.func != NULL); \ in _citrus_prop_parse_element()
408 errnum = (*hint->cb._func_.func)(context, \ in _citrus_prop_parse_element()
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/sys/dev/raidframe/
H A Drf_shutdown.h63 #define rf_ShutdownCreate(_listp_,_func_,_arg_) \ argument
64 _rf_ShutdownCreate(_listp_,_func_,_arg_,__FILE__,__LINE__)
68 #define rf_ShutdownCreate(_listp_,_func_,_arg_) \ argument
69 _rf_ShutdownCreate(_listp_,_func_,_arg_)
H A Drf_threadstuff.h85 #define RF_CREATE_THREAD(_handle_, _func_, _arg_, _name_) \ argument
86 kthread_create(PRI_SOFTBIO, 0, NULL, (void (*)(void *))(_func_), \
89 #define RF_CREATE_ENGINE_THREAD(_handle_, _func_, _arg_, _fmt_, _fmt_arg_) \ argument
90 kthread_create(PRI_SOFTBIO, 0, NULL, (void (*)(void *))(_func_), \
/dports/astro/libosmium/libosmium-2.17.2/include/osmium/handler/
H A Dchain.hpp40 #define OSMIUM_CHAIN_HANDLER_CALL(_func_, _type_) \ argument
42 struct call_ ## _func_ { \
44 std::get<N>(handlers)._func_(object); \
45 call_ ## _func_<N+1, SIZE, THandlers>()(handlers, object); \
49 struct call_ ## _func_<SIZE, SIZE, THandlers> { \
/dports/converters/osm2pgsql/osm2pgsql-1.5.1/contrib/libosmium/include/osmium/handler/
H A Dchain.hpp40 #define OSMIUM_CHAIN_HANDLER_CALL(_func_, _type_) \ argument
42 struct call_ ## _func_ { \
44 std::get<N>(handlers)._func_(object); \
45 call_ ## _func_<N+1, SIZE, THandlers>()(handlers, object); \
49 struct call_ ## _func_<SIZE, SIZE, THandlers> { \
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/libosmium/include/osmium/handler/
H A Dchain.hpp40 #define OSMIUM_CHAIN_HANDLER_CALL(_func_, _type_) \ argument
42 struct call_ ## _func_ { \
44 std::get<N>(handlers)._func_(object); \
45 call_ ## _func_<N+1, SIZE, THandlers>()(handlers, object); \
49 struct call_ ## _func_<SIZE, SIZE, THandlers> { \
/dports/science/py-scimath/scimath-4.2.0/scimath/units/
H A Dhas_units.py223 def units_wrap(_func_):
225 if isinstance(_func_, numpy.vectorize):
226 thefunc = getattr(_func_, 'pyfunc', None)
229 thefunc = _func_.thefunc
231 thefunc = _func_
292 '_func_': _func_,
/dports/math/hs-Agda/Agda-2.6.2/_cabal_deps/unordered-containers-0.2.10.0/Data/HashMap/
H A DArray.hs162 # define CHECK_BOUNDS(_func_,_len_,_k_) \
163 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Array." ++ (_func_) ++ ": bounds error, …
164 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
166 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
167 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
168 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
170 # define CHECK_BOUNDS(_func_,_len_,_k_)
171 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
172 # define CHECK_GT(_func_,_lhs_,_rhs_)
173 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/converters/hs-aeson-pretty/aeson-pretty-0.8.8/_cabal_deps/unordered-containers-0.2.10.0/Data/HashMap/
H A DArray.hs162 # define CHECK_BOUNDS(_func_,_len_,_k_) \
163 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Array." ++ (_func_) ++ ": bounds error, …
164 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
166 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
167 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
168 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
170 # define CHECK_BOUNDS(_func_,_len_,_k_)
171 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
172 # define CHECK_GT(_func_,_lhs_,_rhs_)
173 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/devel/hs-hpack/hpack-0.34.4/_cabal_deps/unordered-containers-0.2.10.0/Data/HashMap/
H A DArray.hs162 # define CHECK_BOUNDS(_func_,_len_,_k_) \
163 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Array." ++ (_func_) ++ ": bounds error, …
164 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
166 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
167 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
168 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
170 # define CHECK_BOUNDS(_func_,_len_,_k_)
171 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
172 # define CHECK_GT(_func_,_lhs_,_rhs_)
173 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/devel/hs-hasktags/hasktags-0.72.0/_cabal_deps/unordered-containers-0.2.10.0/Data/HashMap/
H A DArray.hs162 # define CHECK_BOUNDS(_func_,_len_,_k_) \
163 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Array." ++ (_func_) ++ ": bounds error, …
164 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
166 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
167 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
168 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
170 # define CHECK_BOUNDS(_func_,_len_,_k_)
171 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
172 # define CHECK_GT(_func_,_lhs_,_rhs_)
173 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/devel/hs-profiteur/profiteur-0.4.6.0/_cabal_deps/unordered-containers-0.2.10.0/Data/HashMap/
H A DArray.hs162 # define CHECK_BOUNDS(_func_,_len_,_k_) \
163 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Array." ++ (_func_) ++ ": bounds error, …
164 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
166 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
167 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
168 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
170 # define CHECK_BOUNDS(_func_,_len_,_k_)
171 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
172 # define CHECK_GT(_func_,_lhs_,_rhs_)
173 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/devel/hs-shake/shake-0.19.6/_cabal_deps/unordered-containers-0.2.10.0/Data/HashMap/
H A DArray.hs162 # define CHECK_BOUNDS(_func_,_len_,_k_) \
163 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Array." ++ (_func_) ++ ": bounds error, …
164 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
166 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
167 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
168 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
170 # define CHECK_BOUNDS(_func_,_len_,_k_)
171 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
172 # define CHECK_GT(_func_,_lhs_,_rhs_)
173 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/devel/hs-hoogle/hoogle-5.0.18.2/_cabal_deps/unordered-containers-0.2.10.0/Data/HashMap/
H A DArray.hs162 # define CHECK_BOUNDS(_func_,_len_,_k_) \
163 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Array." ++ (_func_) ++ ": bounds error, …
164 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
166 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
167 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
168 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
170 # define CHECK_BOUNDS(_func_,_len_,_k_)
171 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
172 # define CHECK_GT(_func_,_lhs_,_rhs_)
173 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/lang/elm/compiler-0.19.1/_cabal_deps/unordered-containers-0.2.10.0/Data/HashMap/
H A DArray.hs162 # define CHECK_BOUNDS(_func_,_len_,_k_) \
163 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Array." ++ (_func_) ++ ": bounds error, …
164 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
166 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
167 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
168 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
170 # define CHECK_BOUNDS(_func_,_len_,_k_)
171 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
172 # define CHECK_GT(_func_,_lhs_,_rhs_)
173 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/devel/elm-format/elm-format-0.8.3/_cabal_deps/unordered-containers-0.2.10.0/Data/HashMap/
H A DArray.hs162 # define CHECK_BOUNDS(_func_,_len_,_k_) \
163 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Array." ++ (_func_) ++ ": bounds error, …
164 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
166 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
167 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
168 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
170 # define CHECK_BOUNDS(_func_,_len_,_k_)
171 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
172 # define CHECK_GT(_func_,_lhs_,_rhs_)
173 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/textproc/hs-yaml/yaml-0.11.5.0/_cabal_deps/unordered-containers-0.2.10.0/Data/HashMap/
H A DArray.hs162 # define CHECK_BOUNDS(_func_,_len_,_k_) \
163 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Array." ++ (_func_) ++ ": bounds error, …
164 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
166 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
167 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
168 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
170 # define CHECK_BOUNDS(_func_,_len_,_k_)
171 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
172 # define CHECK_GT(_func_,_lhs_,_rhs_)
173 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/textproc/cgrep/cgrep-6.6.32/_cabal_deps/unordered-containers-0.2.10.0/Data/HashMap/
H A DArray.hs162 # define CHECK_BOUNDS(_func_,_len_,_k_) \
163 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Array." ++ (_func_) ++ ": bounds error, …
164 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
166 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
167 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
168 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
170 # define CHECK_BOUNDS(_func_,_len_,_k_)
171 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
172 # define CHECK_GT(_func_,_lhs_,_rhs_)
173 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/lang/purescript/purescript-0.14.5/_cabal_deps/unordered-containers-0.2.14.0/Data/HashMap/Internal/
H A DArray.hs185 # define CHECK_BOUNDS(_func_,_len_,_k_) \
186 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Internal.Array." ++ (_func_) ++ ": bound…
187 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
189 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
190 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
191 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
193 # define CHECK_BOUNDS(_func_,_len_,_k_)
194 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
195 # define CHECK_GT(_func_,_lhs_,_rhs_)
196 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/games/hedgewars-server/hedgewars-src-1.0.0/gameServer/_cabal_deps/unordered-containers-0.2.11.0/Data/HashMap/
H A DArray.hs166 # define CHECK_BOUNDS(_func_,_len_,_k_) \
167 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Array." ++ (_func_) ++ ": bounds error, …
168 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
170 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
171 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
172 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
174 # define CHECK_BOUNDS(_func_,_len_,_k_)
175 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
176 # define CHECK_GT(_func_,_lhs_,_rhs_)
177 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/finance/hs-hledger/hledger-1.19/_cabal_deps/unordered-containers-0.2.12.0/Data/HashMap/Internal/
H A DArray.hs181 # define CHECK_BOUNDS(_func_,_len_,_k_) \
182 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Internal.Array." ++ (_func_) ++ ": bound…
183 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
185 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
186 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
187 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
189 # define CHECK_BOUNDS(_func_,_len_,_k_)
190 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
191 # define CHECK_GT(_func_,_lhs_,_rhs_)
192 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/finance/hs-hledger-web/hledger-web-1.19/_cabal_deps/unordered-containers-0.2.12.0/Data/HashMap/Internal/
H A DArray.hs181 # define CHECK_BOUNDS(_func_,_len_,_k_) \
182 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Internal.Array." ++ (_func_) ++ ": bound…
183 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
185 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
186 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
187 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
189 # define CHECK_BOUNDS(_func_,_len_,_k_)
190 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
191 # define CHECK_GT(_func_,_lhs_,_rhs_)
192 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/finance/hs-hledger-ui/hledger-ui-1.19/_cabal_deps/unordered-containers-0.2.14.0/Data/HashMap/Internal/
H A DArray.hs185 # define CHECK_BOUNDS(_func_,_len_,_k_) \
186 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Internal.Array." ++ (_func_) ++ ": bound…
187 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
189 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
190 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
191 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
193 # define CHECK_BOUNDS(_func_,_len_,_k_)
194 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
195 # define CHECK_GT(_func_,_lhs_,_rhs_)
196 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/install/_cabal_deps/unordered-containers-0.2.13.0/Data/HashMap/Internal/
H A DArray.hs181 # define CHECK_BOUNDS(_func_,_len_,_k_) \
182 if (_k_) < 0 || (_k_) >= (_len_) then error ("Data.HashMap.Internal.Array." ++ (_func_) ++ ": bound…
183 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_) \
185 # define CHECK_GT(_func_,_lhs_,_rhs_) CHECK_OP(_func_,>,_lhs_,_rhs_)
186 # define CHECK_LE(_func_,_lhs_,_rhs_) CHECK_OP(_func_,<=,_lhs_,_rhs_)
187 # define CHECK_EQ(_func_,_lhs_,_rhs_) CHECK_OP(_func_,==,_lhs_,_rhs_)
189 # define CHECK_BOUNDS(_func_,_len_,_k_)
190 # define CHECK_OP(_func_,_op_,_lhs_,_rhs_)
191 # define CHECK_GT(_func_,_lhs_,_rhs_)
192 # define CHECK_LE(_func_,_lhs_,_rhs_)
[all …]

12345678