Home
last modified time | relevance | path

Searched refs:bind_args (Results 1 – 25 of 171) sorted by relevance

1234567

/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/pps/
H A Dkc.c36 int pps_kc_bind(struct pps_device *pps, struct pps_bind_args *bind_args) in pps_kc_bind() argument
41 if (bind_args->edge == 0) in pps_kc_bind()
57 pps_kc_hardpps_mode = bind_args->edge; in pps_kc_bind()
61 "edge=0x%x\n", bind_args->edge); in pps_kc_bind()
H A Dpps.c207 struct pps_bind_args bind_args; in pps_cdev_ioctl() local
215 if (copy_from_user(&bind_args, uarg, in pps_cdev_ioctl()
220 if ((bind_args.edge & ~pps->info.mode) != 0) { in pps_cdev_ioctl()
222 bind_args.edge); in pps_cdev_ioctl()
227 if (bind_args.tsformat != PPS_TSFMT_TSPEC || in pps_cdev_ioctl()
228 (bind_args.edge & ~PPS_CAPTUREBOTH) != 0 || in pps_cdev_ioctl()
229 bind_args.consumer != PPS_KC_HARDPPS) { in pps_cdev_ioctl()
231 " parameters (%x)\n", bind_args.edge); in pps_cdev_ioctl()
235 err = pps_kc_bind(pps, &bind_args); in pps_cdev_ioctl()
H A Dkc.h17 struct pps_bind_args *bind_args);
26 struct pps_bind_args *bind_args) { return -EOPNOTSUPP; } in pps_kc_bind() argument
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/pps/
H A Dkc.c36 int pps_kc_bind(struct pps_device *pps, struct pps_bind_args *bind_args) in pps_kc_bind() argument
41 if (bind_args->edge == 0) in pps_kc_bind()
57 pps_kc_hardpps_mode = bind_args->edge; in pps_kc_bind()
61 "edge=0x%x\n", bind_args->edge); in pps_kc_bind()
H A Dpps.c207 struct pps_bind_args bind_args; in pps_cdev_ioctl() local
215 if (copy_from_user(&bind_args, uarg, in pps_cdev_ioctl()
220 if ((bind_args.edge & ~pps->info.mode) != 0) { in pps_cdev_ioctl()
222 bind_args.edge); in pps_cdev_ioctl()
227 if (bind_args.tsformat != PPS_TSFMT_TSPEC || in pps_cdev_ioctl()
228 (bind_args.edge & ~PPS_CAPTUREBOTH) != 0 || in pps_cdev_ioctl()
229 bind_args.consumer != PPS_KC_HARDPPS) { in pps_cdev_ioctl()
231 " parameters (%x)\n", bind_args.edge); in pps_cdev_ioctl()
235 err = pps_kc_bind(pps, &bind_args); in pps_cdev_ioctl()
H A Dkc.h17 struct pps_bind_args *bind_args);
26 struct pps_bind_args *bind_args) { return -EOPNOTSUPP; } in pps_kc_bind() argument
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/pps/
H A Dkc.c36 int pps_kc_bind(struct pps_device *pps, struct pps_bind_args *bind_args) in pps_kc_bind() argument
41 if (bind_args->edge == 0) in pps_kc_bind()
57 pps_kc_hardpps_mode = bind_args->edge; in pps_kc_bind()
61 "edge=0x%x\n", bind_args->edge); in pps_kc_bind()
H A Dpps.c207 struct pps_bind_args bind_args; in pps_cdev_ioctl() local
215 if (copy_from_user(&bind_args, uarg, in pps_cdev_ioctl()
220 if ((bind_args.edge & ~pps->info.mode) != 0) { in pps_cdev_ioctl()
222 bind_args.edge); in pps_cdev_ioctl()
227 if (bind_args.tsformat != PPS_TSFMT_TSPEC || in pps_cdev_ioctl()
228 (bind_args.edge & ~PPS_CAPTUREBOTH) != 0 || in pps_cdev_ioctl()
229 bind_args.consumer != PPS_KC_HARDPPS) { in pps_cdev_ioctl()
231 " parameters (%x)\n", bind_args.edge); in pps_cdev_ioctl()
235 err = pps_kc_bind(pps, &bind_args); in pps_cdev_ioctl()
H A Dkc.h17 struct pps_bind_args *bind_args);
26 struct pps_bind_args *bind_args) { return -EOPNOTSUPP; } in pps_kc_bind() argument
/dports/devel/hyperscan/hyperscan-5.4.0/tools/hsbench/
H A Dsqldb_bind.h73 void bind_args(sqlite3_stmt *stmt, int param, T obj) { in bind_args() function
83 void bind_args(sqlite3_stmt *stmt, int param, T obj, Args&&... args) { in bind_args() function
84 bind_args(stmt, param, obj); in bind_args()
85 bind_args(stmt, param + 1, args...); in bind_args()
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/syntax_tools/examples/merl/
H A Dlisp.erl90 bind_args([P | Ps], [A | As], E) -> function
91 bind_args(Ps, As, dict:store(P, A, E));
92 bind_args([], [], E) -> function
94 bind_args(_, _, _) -> function
98 {X, St1} = eval(B, St#st{env=bind_args(Ps, As, E)}),
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/syntax_tools/examples/merl/
H A Dlisp.erl90 bind_args([P | Ps], [A | As], E) -> function
91 bind_args(Ps, As, dict:store(P, A, E));
92 bind_args([], [], E) -> function
94 bind_args(_, _, _) -> function
98 {X, St1} = eval(B, St#st{env=bind_args(Ps, As, E)}),
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/syntax_tools/examples/merl/
H A Dlisp.erl90 bind_args([P | Ps], [A | As], E) -> function
91 bind_args(Ps, As, dict:store(P, A, E));
92 bind_args([], [], E) -> function
94 bind_args(_, _, _) -> function
98 {X, St1} = eval(B, St#st{env=bind_args(Ps, As, E)}),
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/syntax_tools/examples/merl/
H A Dlisp.erl90 bind_args([P | Ps], [A | As], E) -> function
91 bind_args(Ps, As, dict:store(P, A, E));
92 bind_args([], [], E) -> function
94 bind_args(_, _, _) -> function
98 {X, St1} = eval(B, St#st{env=bind_args(Ps, As, E)}),
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/syntax_tools/examples/merl/
H A Dlisp.erl90 bind_args([P | Ps], [A | As], E) -> function
91 bind_args(Ps, As, dict:store(P, A, E));
92 bind_args([], [], E) -> function
94 bind_args(_, _, _) -> function
98 {X, St1} = eval(B, St#st{env=bind_args(Ps, As, E)}),
/dports/lang/erlang/otp-OTP-24.1.7/lib/syntax_tools/examples/merl/
H A Dlisp.erl90 bind_args([P | Ps], [A | As], E) -> function
91 bind_args(Ps, As, dict:store(P, A, E));
92 bind_args([], [], E) -> function
94 bind_args(_, _, _) -> function
98 {X, St1} = eval(B, St#st{env=bind_args(Ps, As, E)}),
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/syntax_tools/examples/merl/
H A Dlisp.erl90 bind_args([P | Ps], [A | As], E) -> function
91 bind_args(Ps, As, dict:store(P, A, E));
92 bind_args([], [], E) -> function
94 bind_args(_, _, _) -> function
98 {X, St1} = eval(B, St#st{env=bind_args(Ps, As, E)}),
/dports/devel/boost-docs/boost_1_72_0/libs/fusion/example/cookbook/
H A Ddo_the_bind.cpp120 fused_bound_function(BindArgs const & bind_args) in fused_bound_function() argument
121 : fsq_bind_args(bind_args) in fused_bound_function()
197 operator()(BindArgs & bind_args) const in operator ()()
201 ! n_placeholders::apply<BindArgs>::value >(bind_args) ); in operator ()()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/fusion/example/cookbook/
H A Ddo_the_bind.cpp120 fused_bound_function(BindArgs const & bind_args) in fused_bound_function() argument
121 : fsq_bind_args(bind_args) in fused_bound_function()
197 operator()(BindArgs & bind_args) const in operator ()()
201 ! n_placeholders::apply<BindArgs>::value >(bind_args) ); in operator ()()
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/fusion/example/cookbook/
H A Ddo_the_bind.cpp120 fused_bound_function(BindArgs const & bind_args) in fused_bound_function() argument
121 : fsq_bind_args(bind_args) in fused_bound_function()
197 operator()(BindArgs & bind_args) const in operator ()()
201 ! n_placeholders::apply<BindArgs>::value >(bind_args) ); in operator ()()
/dports/databases/percona57-server/boost_1_59_0/libs/fusion/example/cookbook/
H A Ddo_the_bind.cpp120 fused_bound_function(BindArgs const & bind_args) in fused_bound_function() argument
121 : fsq_bind_args(bind_args) in fused_bound_function()
197 operator()(BindArgs & bind_args) const in operator ()()
201 ! n_placeholders::apply<BindArgs>::value >(bind_args) ); in operator ()()
/dports/databases/xtrabackup/boost_1_59_0/libs/fusion/example/cookbook/
H A Ddo_the_bind.cpp120 fused_bound_function(BindArgs const & bind_args) in fused_bound_function() argument
121 : fsq_bind_args(bind_args) in fused_bound_function()
197 operator()(BindArgs & bind_args) const in operator ()()
201 ! n_placeholders::apply<BindArgs>::value >(bind_args) ); in operator ()()
/dports/databases/percona57-client/boost_1_59_0/libs/fusion/example/cookbook/
H A Ddo_the_bind.cpp120 fused_bound_function(BindArgs const & bind_args) in fused_bound_function() argument
121 : fsq_bind_args(bind_args) in fused_bound_function()
197 operator()(BindArgs & bind_args) const in operator ()()
201 ! n_placeholders::apply<BindArgs>::value >(bind_args) ); in operator ()()
/dports/devel/boost-libs/boost_1_72_0/libs/fusion/example/cookbook/
H A Ddo_the_bind.cpp120 fused_bound_function(BindArgs const & bind_args) in fused_bound_function() argument
121 : fsq_bind_args(bind_args) in fused_bound_function()
197 operator()(BindArgs & bind_args) const in operator ()()
201 ! n_placeholders::apply<BindArgs>::value >(bind_args) ); in operator ()()
/dports/devel/boost-python-libs/boost_1_72_0/libs/fusion/example/cookbook/
H A Ddo_the_bind.cpp120 fused_bound_function(BindArgs const & bind_args) in fused_bound_function() argument
121 : fsq_bind_args(bind_args) in fused_bound_function()
197 operator()(BindArgs & bind_args) const in operator ()()
201 ! n_placeholders::apply<BindArgs>::value >(bind_args) ); in operator ()()

1234567