Searched refs:offset (Results 201 - 225 of 3197) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/binutils/opcodes/
H A Dia64-asmtab.h55 /* The tree of completers for this instruction; this is an offset into
109 /* The bit offset in the instruction where BITS and MASK should be
111 unsigned char offset : 7; member in struct:ia64_completer_table
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-helper-loop.c113 unsigned long offset; local
122 offset = ((octeon_has_feature(OCTEON_FEATURE_PKND)) ?
126 port_cfg.u64 = cvmx_read_csr(CVMX_PIP_PRT_CFGX(offset));
129 cvmx_write_csr(CVMX_PIP_PRT_CFGX(offset), port_cfg.u64);
/freebsd-11-stable/contrib/smbfs/lib/smb/
H A Dfile.c55 smb_read(struct smb_ctx *ctx, smbfh fh, off_t offset, size_t count, char *dst) argument
62 rwrq.ioc_offset = offset;
69 smb_write(struct smb_ctx *ctx, smbfh fh, off_t offset, size_t count, argument
77 rwrq.ioc_offset = offset;
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_buffer.h119 * Returns the pointer to the dword which is offset number of elements from the
128 * offset: The index of the dword relative to the internat iterator.
131 int offset)
133 int iter = buffer->iterator + offset * 4;
137 * Returns the pointer to the dword which is offset number of elements from
142 * offset: The index of the byte relative to the internat iterator.
145 int offset)
147 int iter = buffer->iterator + offset;
130 drm_buffer_pointer_to_dword(struct drm_buffer *buffer, int offset) argument
144 drm_buffer_pointer_to_byte(struct drm_buffer *buffer, int offset) argument
/freebsd-11-stable/sys/dev/bwn/
H A Dif_bwn_phy_common.h36 extern int bwn_radio_wait_value(struct bwn_mac *mac, uint16_t offset,
/freebsd-11-stable/gnu/usr.bin/grep/
H A Dkwset.h28 size_t offset[1]; /* Offset of each submatch. */ member in struct:kwsmatch
/freebsd-11-stable/sys/sys/
H A Dcfictl.h40 unsigned long offset; member in struct:cfiocqry
/freebsd-11-stable/usr.bin/mkuzip/
H A Dmkuz_blk.h32 uint64_t offset; member in struct:mkuz_blk_info
/freebsd-11-stable/sys/dev/extres/clk/
H A Dclk_div.h38 uint32_t offset; /* Divider register offset */ member in struct:clk_div_def
H A Dclk_gate.h36 uint32_t offset; member in struct:clk_gate_def
H A Dclk_mux.h35 uint32_t offset; member in struct:clk_mux_def
/freebsd-11-stable/sys/geom/
H A Dgeom_slice.h42 off_t offset; member in struct:g_slice
49 off_t offset; member in struct:g_slice_hot
72 int g_slice_config(struct g_geom *gp, u_int idx, int how, off_t offset, off_t length, u_int sectorsize, const char *fmt, ...) __printflike(7, 8);
80 int g_slice_conf_hot(struct g_geom *gp, u_int idx, off_t offset, off_t length, int ract, int dact, int wact);
/freebsd-11-stable/sys/arm/arm/
H A Dmachdep_ptrace.c86 ptrace_get_usr_int(void* cookie, vm_offset_t offset, u_int* val) argument
91 error = ptrace_read_int(td, offset, val);
226 u_int addr, nregs, offset = 0; local
231 case 0x0: /* add pc, reg1, reg2, lsl #offset */
236 offset = (insn >> 7) & 0x1e;
237 offset = (insn & 0xff) << (32 - offset) |
238 (insn & 0xff) >> offset;
241 offset = fetch_reg(cookie, insn & 0x0f);
251 offset
[all...]
/freebsd-11-stable/lib/libc/stdio/
H A Dfseek.c54 fseek(FILE *fp, long offset, int whence) argument
64 ret = _fseeko(fp, (off_t)offset, whence, 1);
72 fseeko(FILE *fp, off_t offset, int whence) argument
82 ret = _fseeko(fp, offset, whence, 0);
90 * Seek the given file to the given offset.
94 _fseeko(FILE *fp, off_t offset, int whence, int ltest) argument
118 * In order to seek relative to the current stream offset,
119 * we have to first find the current stream offset via
129 if (offset > 0 && curoff > OFF_MAX - offset) {
[all...]
/freebsd-11-stable/sys/dev/ixgbe/
H A Dixgbe_osdep.c65 ixgbe_read_reg_array(struct ixgbe_hw *hw, u32 reg, u32 offset) argument
69 reg + (offset << 2));
73 ixgbe_write_reg_array(struct ixgbe_hw *hw, u32 reg, u32 offset, u32 val) argument
77 reg + (offset << 2), val);
H A Dixgbe_x540.h50 s32 ixgbe_read_eerd_X540(struct ixgbe_hw *hw, u16 offset, u16 *data);
51 s32 ixgbe_read_eerd_buffer_X540(struct ixgbe_hw *hw, u16 offset, u16 words,
53 s32 ixgbe_write_eewr_X540(struct ixgbe_hw *hw, u16 offset, u16 data);
54 s32 ixgbe_write_eewr_buffer_X540(struct ixgbe_hw *hw, u16 offset, u16 words,
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dio-mapping.h93 io_mapping_map_atomic_wc(struct io_mapping *mapping, unsigned long offset) argument
96 return ((char *)mapping->mem + offset);
105 io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset, argument
109 return ((char *)mapping->mem + offset);
/freebsd-11-stable/usr.sbin/bhyve/
H A Dpci_uart.c68 int baridx, uint64_t offset, int size, uint64_t value)
74 uart_write(pi->pi_arg, offset, value);
79 int baridx, uint64_t offset, int size)
86 val = uart_read(pi->pi_arg, offset);
67 pci_uart_write(struct vmctx *ctx, int vcpu, struct pci_devinst *pi, int baridx, uint64_t offset, int size, uint64_t value) argument
78 pci_uart_read(struct vmctx *ctx, int vcpu, struct pci_devinst *pi, int baridx, uint64_t offset, int size) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_report.h29 uptr offset);
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBTrace.i15 size_t size, size_t offset,
19 size_t size, size_t offset,
/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_abbrev.c100 _dwarf_abbrev_parse(Dwarf_Debug dbg, Dwarf_CU cu, Dwarf_Unsigned *offset, argument
116 if (ds == NULL || *offset >= ds->ds_size)
119 aboff = *offset;
121 entry = _dwarf_read_uleb128(ds->ds_data, offset);
132 tag = _dwarf_read_uleb128(ds->ds_data, offset);
133 children = dbg->read(ds->ds_data, offset, 1);
140 adoff = *offset;
141 attr = _dwarf_read_uleb128(ds->ds_data, offset);
142 form = _dwarf_read_uleb128(ds->ds_data, offset);
149 (*abp)->ab_length = *offset
160 Dwarf_Unsigned offset; local
[all...]
/freebsd-11-stable/contrib/ntp/libparse/
H A Dclk_dcf7000.c102 if (Stoi(&buffer[format->field_offsets[O_DAY].offset], &clock_time->day,
104 Stoi(&buffer[format->field_offsets[O_MONTH].offset], &clock_time->month,
106 Stoi(&buffer[format->field_offsets[O_YEAR].offset], &clock_time->year,
108 Stoi(&buffer[format->field_offsets[O_HOUR].offset], &clock_time->hour,
110 Stoi(&buffer[format->field_offsets[O_MIN].offset], &clock_time->minute,
112 Stoi(&buffer[format->field_offsets[O_SEC].offset], &clock_time->second,
119 unsigned char *f = &buffer[format->field_offsets[O_FLAGS].offset];
H A Dclk_varitext.c148 if (Stoi(&buffer[format->field_offsets[O_DAY].offset], &clock_time->day,
150 Stoi(&buffer[format->field_offsets[O_MONTH].offset], &clock_time->month,
152 Stoi(&buffer[format->field_offsets[O_YEAR].offset], &clock_time->year,
154 Stoi(&buffer[format->field_offsets[O_HOUR].offset], &clock_time->hour,
156 Stoi(&buffer[format->field_offsets[O_MIN].offset], &clock_time->minute,
158 Stoi(&buffer[format->field_offsets[O_SEC].offset], &clock_time->second,
162 u_char *f = (u_char*) &buffer[format->field_offsets[O_FLAGS].offset];
167 if (((*f) & VT_BST)) /* BST flag is set so set to indicate daylight saving time is active and utc offset */
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dlzjb.c58 int mlen, offset, hash; local
78 offset = (intptr_t)(src - *hp) & OFFSET_MASK;
80 cpy = src - offset;
88 (offset >> NBBY);
89 *dst++ = (uchar_t)offset;
116 int offset = ((src[0] << NBBY) | src[1]) & OFFSET_MASK; local
118 if ((cpy = dst - offset) < (uchar_t *)d_start)
/freebsd-11-stable/sys/dev/fdt/
H A Dfdt_pinctrl.c67 int i, offset, nameslen; local
73 for (i = 0, offset = 0; offset < nameslen; i++) {
74 if (strcmp(name, &names[offset]) == 0)
76 offset += strlen(&names[offset]) + 1;
79 if (offset < nameslen)

Completed in 158 milliseconds

1234567891011>>