Searched refs:ops (Results 1 - 25 of 999) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/wpa/dist/src/pae/
H A Dieee802_1x_secy_ops.c30 struct ieee802_1x_kay_ctx *ops; local
37 ops = kay->ctx;
38 if (!ops || !ops->enable_protect_frames) {
44 return ops->enable_protect_frames(ops->ctx, enabled);
50 struct ieee802_1x_kay_ctx *ops; local
57 ops = kay->ctx;
58 if (!ops || !ops
70 struct ieee802_1x_kay_ctx *ops; local
90 struct ieee802_1x_kay_ctx *ops; local
118 struct ieee802_1x_kay_ctx *ops; local
138 struct ieee802_1x_kay_ctx *ops; local
159 struct ieee802_1x_kay_ctx *ops; local
180 struct ieee802_1x_kay_ctx *ops; local
201 struct ieee802_1x_kay_ctx *ops; local
222 struct ieee802_1x_kay_ctx *ops; local
242 struct ieee802_1x_kay_ctx *ops; local
262 struct ieee802_1x_kay_ctx *ops; local
282 struct ieee802_1x_kay_ctx *ops; local
302 struct ieee802_1x_kay_ctx *ops; local
322 struct ieee802_1x_kay_ctx *ops; local
344 struct ieee802_1x_kay_ctx *ops; local
367 struct ieee802_1x_kay_ctx *ops; local
388 struct ieee802_1x_kay_ctx *ops; local
409 struct ieee802_1x_kay_ctx *ops; local
430 struct ieee802_1x_kay_ctx *ops; local
451 struct ieee802_1x_kay_ctx *ops; local
474 struct ieee802_1x_kay_ctx *ops; local
497 struct ieee802_1x_kay_ctx *ops; local
524 struct ieee802_1x_kay_ctx *ops; local
[all...]
/netbsd-current/usr.sbin/gspa/gspa/
H A Dgsp_pseu.c45 pseudo(int code, operand ops) argument
54 if( ops == NULL )
56 if( ops->type != EXPR ){
60 if( !eval_expr(ops->op_u.value, &val, &ln) ){
75 if( ops == NULL )
77 if( ops->type != EXPR ){
81 do_asg(label, ops->op_u.value, 0);
86 if( ops == NULL )
88 for( o = ops; o != NULL; o = o->next ){
109 if( ops
[all...]
/netbsd-current/sys/dev/wscons/
H A Dwsemulconf.c47 const struct wsemul_ops *ops; member in struct:wsemulentry
69 const struct wsemul_ops **ops; local
82 if (!strcmp(name, wep->ops->name)) {
84 return wep->ops;
87 for (ops = &wsemul_conf[0]; *ops != NULL; ops++)
88 if (strcmp(name, (*ops)->name) == 0)
91 return (*ops);
95 wsemul_drop(const struct wsemul_ops *ops) argument
107 wsemul_add(const struct wsemul_ops *ops) argument
119 wsemul_remove(const struct wsemul_ops *ops) argument
[all...]
/netbsd-current/sys/dev/onewire/
H A Donewire_bitbang.c78 onewire_bb_reset(const struct onewire_bbops *ops, void *arg) argument
84 ops->bb_tx(arg);
85 ops->bb_set(arg, 0);
87 ops->bb_set(arg, 1);
88 ops->bb_rx(arg);
91 if ((rv = ops->bb_get(arg)) == 0)
112 ops->bb_tx(arg);
113 ops->bb_set(arg, 1);
130 onewire_bb_write_bit(const struct onewire_bbops *ops, void *arg, int value) argument
143 ops
163 onewire_bb_read_bit(const struct onewire_bbops *ops, void *arg) argument
[all...]
/netbsd-current/sys/dev/mii/
H A Dmii_bitbang.c48 ops->mbo_write(sc, (x)); \
52 #define READ ops->mbo_read(sc)
54 #define MDO ops->mbo_bits[MII_BIT_MDO]
55 #define MDI ops->mbo_bits[MII_BIT_MDI]
56 #define MDC ops->mbo_bits[MII_BIT_MDC]
57 #define MDIRPHY ops->mbo_bits[MII_BIT_DIR_HOST_PHY]
58 #define MDIRHOST ops->mbo_bits[MII_BIT_DIR_PHY_HOST]
66 mii_bitbang_sync(device_t sc, mii_bitbang_ops_t ops) argument
86 mii_bitbang_sendbits(device_t sc, mii_bitbang_ops_t ops, uint32_t data, argument
112 mii_bitbang_readreg(device_t sc, mii_bitbang_ops_t ops, in argument
166 mii_bitbang_writereg(device_t sc, mii_bitbang_ops_t ops, int phy, int reg, uint16_t val) argument
[all...]
/netbsd-current/sys/dev/i2c/
H A Di2c_bitbang.c51 #define SETBITS(x) ops->ibo_set_bits(v, (x))
52 #define DIR(x) ops->ibo_set_dir(v, (x))
53 #define READ ops->ibo_read_bits(v)
55 #define SDA ops->ibo_bits[I2C_BIT_SDA] /* i2c signal */
56 #define SCL ops->ibo_bits[I2C_BIT_SCL] /* i2c signal */
57 #define OUTPUT ops->ibo_bits[I2C_BIT_OUTPUT] /* SDA is output */
58 #define INPUT ops->ibo_bits[I2C_BIT_INPUT] /* SDA is input */
67 i2c_wait_for_scl(void *v, i2c_bitbang_ops_t ops) argument
76 i2c_bitbang_send_stop(v, 0, ops);
84 i2c_bitbang_send_start(void *v, int flags, i2c_bitbang_ops_t ops) argument
105 i2c_bitbang_send_stop(void *v, int flags, i2c_bitbang_ops_t ops) argument
120 i2c_bitbang_initiate_xfer(void *v, i2c_addr_t addr, int flags, i2c_bitbang_ops_t ops) argument
159 i2c_bitbang_read_byte(void *v, uint8_t *valp, int flags, i2c_bitbang_ops_t ops) argument
215 i2c_bitbang_write_byte(void *v, uint8_t val, int flags, i2c_bitbang_ops_t ops) argument
[all...]
/netbsd-current/sys/fs/v7fs/
H A Dv7fs_endian.c160 struct endian_conversion_ops *ops = &fs->val; local
166 ops->conv32 = val32_normal_order;
167 ops->conv16 = val16_normal_order;
168 ops->conv24read = val24_normal_order_read;
169 ops->conv24write = val24_normal_order_write;
172 ops->conv32 = val32_reverse_order;
173 ops->conv16 = val16_reverse_order;
174 ops->conv24read = val24_reverse_order_read;
175 ops->conv24write = val24_reverse_order_write;
178 ops
[all...]
/netbsd-current/external/lgpl3/gmp/dist/tests/devel/
H A Dgen-test-longlong_h.c35 mp_limb_t ops[1000]; variable
65 ops[n_operands++] = 1 << i;
66 ops[n_operands++] = -(1 << i);
67 ops[n_operands++] = (1 << i) - 1;
68 ops[n_operands++] = -(1 << i) - 1;
76 /* Print out ops[] definition. */
77 printf ("static const int ops[%zu] = {\n", n_operands);
80 printf ("%ld,", (long) ops[i]);
91 one (op, n_functions++, ops[i], ops[
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dvarobj-iter.h38 const struct varobj_iter_ops *ops; member in struct:varobj_iter
63 #define varobj_iter_next(ITER) (ITER)->ops->next (ITER)
72 (ITER)->ops->dtor (ITER); \
H A Dserial.c148 for (const serial_ops *ops : serial_ops_list)
149 if (strcmp (name, ops->name) == 0)
150 return ops;
179 new_serial (const struct serial_ops *ops)
185 scb->ops = ops;
194 static struct serial *serial_open_ops_1 (const struct serial_ops *ops,
202 const struct serial_ops *ops;
207 ops = serial_interface_lookup ("pipe");
216 ops
177 new_serial(const struct serial_ops *ops) argument
200 const struct serial_ops *ops; local
237 serial_open_ops_1(const struct serial_ops *ops, const char *open_name) argument
270 serial_open_ops(const struct serial_ops *ops) argument
279 serial_fdopen_ops(const int fd, const struct serial_ops *ops) argument
603 const struct serial_ops *ops; local
[all...]
H A Dextension.c160 if (extlang->ops != NULL)
163 gdb_assert (extlang->ops->initialized != NULL);
164 return extlang->ops->initialized (extlang);
316 if (extlang->ops != nullptr
317 && extlang->ops->finish_initialization != NULL)
318 extlang->ops->finish_initialization (extlang);
340 if (extlang->ops != NULL
341 && extlang->ops->eval_from_control_command != NULL)
343 extlang->ops->eval_from_control_command (extlang, cmd);
369 if (extlang->ops !
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/d10v/
H A Dimmediate-002.s0 ;; ops with immediate args
H A Dimmediate-003.s0 ;; ops with immediate args
H A Dimmediate-004.s0 ;; ops with immediate args
H A Dimmediate-005.s0 ;; ops with immediate args
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/arc/
H A Dcpu-warn2.s1 ; Test warnings when multiple .cpu pseudo-ops are defined.
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dextension.c161 if (extlang->ops != NULL)
164 gdb_assert (extlang->ops->initialized != NULL);
165 return extlang->ops->initialized (extlang);
339 if (extlang->ops != nullptr
340 && extlang->ops->initialize != NULL)
343 extlang->ops->initialize (extlang);
366 if (extlang->ops != NULL
367 && extlang->ops->eval_from_control_command != NULL)
369 extlang->ops->eval_from_control_command (extlang, cmd);
395 if (extlang->ops !
[all...]
H A Dserial.c148 for (const serial_ops *ops : serial_ops_list)
149 if (strcmp (name, ops->name) == 0)
150 return ops;
179 new_serial (const struct serial_ops *ops)
185 scb->ops = ops;
194 static struct serial *serial_open_ops_1 (const struct serial_ops *ops,
202 const struct serial_ops *ops;
206 ops = serial_interface_lookup ("pipe");
211 ops
177 new_serial(const struct serial_ops *ops) argument
200 const struct serial_ops *ops; local
232 serial_open_ops_1(const struct serial_ops *ops, const char *open_name) argument
265 serial_open_ops(const struct serial_ops *ops) argument
274 serial_fdopen_ops(const int fd, const struct serial_ops *ops) argument
597 const struct serial_ops *ops; local
[all...]
/netbsd-current/sys/dev/pci/ixgbe/
H A Dixgbe_api.c75 if (hw->mac.ops.get_rtrup2tc)
76 hw->mac.ops.get_rtrup2tc(hw, map);
239 return ixgbe_call_func(hw, hw->mac.ops.init_hw, (hw),
252 return ixgbe_call_func(hw, hw->mac.ops.reset_hw, (hw),
268 return ixgbe_call_func(hw, hw->mac.ops.start_hw, (hw),
282 if (hw->mac.ops.enable_relaxed_ordering)
283 hw->mac.ops.enable_relaxed_ordering(hw);
295 return ixgbe_call_func(hw, hw->mac.ops.clear_hw_cntrs, (hw),
307 return ixgbe_call_func(hw, hw->mac.ops.get_media_type, (hw),
323 return ixgbe_call_func(hw, hw->mac.ops
[all...]
/netbsd-current/sys/arch/hpcmips/dev/
H A Dmq200machdep.c63 static void mq200_setupregs(struct mq200_softc *sc, u_int32_t *ops);
211 mq200_setupregs(struct mq200_softc *sc, u_int32_t *ops) argument
216 switch (ops[0] & 0x3) {
219 mq200_write(sc, ops[0], ops[1]);
221 reg = mq200_read(sc, ops[0]);
222 reg = (reg & ~mask) | (ops[1] & mask);
223 mq200_write(sc, ops[0], reg);
227 switch (ops[0]) {
231 mask = ops[
[all...]
/netbsd-current/sys/dev/pci/igc/
H A Digc_api.c27 if (hw->mac.ops.init_params) {
28 ret_val = hw->mac.ops.init_params(hw);
53 if (hw->nvm.ops.init_params) {
54 ret_val = hw->nvm.ops.init_params(hw);
79 if (hw->phy.ops.init_params) {
80 ret_val = hw->phy.ops.init_params(hw);
225 if (hw->mac.ops.update_mc_addr_list)
226 hw->mac.ops.update_mc_addr_list(hw, mc_addr_list,
241 if (hw->mac.ops.check_for_link)
242 return hw->mac.ops
[all...]
/netbsd-current/sys/arch/sun68k/stand/libsa/
H A Dpromdev.c66 struct boottab *ops; local
73 ops = si->si_boottab;
74 dip = ops->b_devinfo;
78 DPRINTF("Boot device type: %s", ops->b_desc);
118 error = (*ops->b_open)(si);
123 ops->b_desc, error);
137 struct boottab *ops; local
142 ops = si->si_boottab;
145 (*ops->b_close)(si);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dgimple-match.h133 tree ops[MAX_NUM_OPS]; member in class:gimple_match_op
164 ops[0] = op0;
174 ops[0] = op0;
175 ops[1] = op1;
185 ops[0] = op0;
186 ops[1] = op1;
187 ops[2] = op2;
197 ops[0] = op0;
198 ops[1] = op1;
199 ops[
[all...]
H A Dtree-ssa-scopedtables.c126 enum tree_code code = expr->ops.binary.op;
153 expr.ops.binary.op = EQ_EXPR;
154 expr.ops.binary.opnd0 = gimple_assign_rhs1 (stmt);
155 expr.ops.binary.opnd1 = gimple_assign_rhs2 (stmt);
250 && (TREE_CODE (element.expr()->ops.single.rhs) == SSA_NAME
251 || is_gimple_min_invariant (element.expr()->ops.single.rhs)))
395 inchash::add_expr (expr->ops.single.rhs, hstate);
399 hstate.add_object (expr->ops.unary.op);
405 if (CONVERT_EXPR_CODE_P (expr->ops.unary.op)
406 || expr->ops
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-scopedtables.cc126 enum tree_code code = expr->ops.binary.op;
153 expr.ops.binary.op = EQ_EXPR;
154 expr.ops.binary.opnd0 = gimple_assign_rhs1 (stmt);
155 expr.ops.binary.opnd1 = gimple_assign_rhs2 (stmt);
250 && (TREE_CODE (element.expr()->ops.single.rhs) == SSA_NAME
251 || is_gimple_min_invariant (element.expr()->ops.single.rhs)))
395 inchash::add_expr (expr->ops.single.rhs, hstate);
399 hstate.add_object (expr->ops.unary.op);
405 if (CONVERT_EXPR_CODE_P (expr->ops.unary.op)
406 || expr->ops
[all...]

Completed in 396 milliseconds

1234567891011>>