Home
last modified time | relevance | path

Searched refs:skip_in (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_data_sprom_subr.c473 uint8_t skip_in, bool skip_in_negative, uint8_t skip_out) in bhnd_sprom_opcode_set_bind() argument
499 iskip_scaled = skip_in; in bhnd_sprom_opcode_set_bind()
505 SPROM_OP_BAD(state, "skip_in %hhu would overflow", skip_in); in bhnd_sprom_opcode_set_bind()
516 "offset %u\n", skip_in, state->offset); in bhnd_sprom_opcode_set_bind()
522 "offset %u\n", skip_in, state->offset); in bhnd_sprom_opcode_set_bind()
530 state->var.bind.skip_in = skip_in; in bhnd_sprom_opcode_set_bind()
563 skip = state->var.bind.skip_in * state->var.bind.count; in bhnd_sprom_opcode_flush_bind()
933 uint8_t count, skip_in, skip_out; in bhnd_sprom_opcode_rewrite_opcode() local
938 skip_in = 1; in bhnd_sprom_opcode_rewrite_opcode()
943 skip_in, skip_in_negative, skip_out); in bhnd_sprom_opcode_rewrite_opcode()
[all …]
H A Dbhnd_nvram_data_spromvar.h90 uint32_t skip_in; /**< input element skips */ member
H A Dbhnd_nvram_data_sprom.c547 skip_out_bytes = binding->skip_in; in bhnd_nvram_sprom_write_var()
1164 skip_in_bytes = binding->skip_in; in bhnd_nvram_sprom_read_var()
/freebsd/sys/dev/bhnd/tools/
H A Dnvram_map_gen.awk1071 function srom_ops_can_encode_skip_in(skip_in) {
1072 return (skip_in >= SPROM_OP_BIND_SKIP_IN_MIN &&
1073 skip_in <= SPROM_OP_BIND_SKIP_IN_MAX)
1080 return (skip_in >= SPROM_OP_BIND_SKIP_IN_MIN &&
1081 skip_in <= SPROM_OP_BIND_SKIP_IN_MAX)
1087 function srom_ops_can_encode_skip(skip_in, skip_out) {
1088 return (srom_ops_can_encode_skip_in(skip_in) &&
1093 function srom_opbind_new(segment, skip_in, skip_out, _obj, _type, _width,
1099 if (!srom_ops_can_encode_skip_in(skip_in)) {
1101 "range %d-%d", skip_in,
[all …]