Searched refs:offset (Results 351 - 375 of 3197) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/tools/regression/geom/ConfCmp/
H A Da1a.conf194 <offset>8585256960</offset>
208 <offset>3220439040</offset>
222 <offset>32256</offset>
256 <offset>10682408960</offset>
269 <offset>8585256960</offset>
[all...]
H A Da1b.conf194 <offset>8585256960</offset>
208 <offset>3220439040</offset>
222 <offset>32256</offset>
256 <offset>10682408960</offset>
269 <offset>8585256960</offset>
[all...]
H A Da1c.conf194 <offset>8585256960</offset>
208 <offset>3220439040</offset>
222 <offset>32256</offset>
256 <offset>10682408960</offset>
269 <offset>8585256960</offset>
[all...]
H A Da1d.conf194 <offset>8585256960</offset>
208 <offset>3220439040</offset>
222 <offset>32256</offset>
256 <offset>10682408960</offset>
269 <offset>8585256960</offset>
[all...]
/freebsd-11-stable/usr.bin/grep/regex/
H A Dglue.h47 size_t offset = pmatch[0].rm_so; \
55 pmatch[i].rm_so += offset; \
56 pmatch[i].rm_eo += offset; \
/freebsd-11-stable/sys/dev/ips/
H A Dips.h59 #define ips_read_1(sc,offset) bus_read_1(sc->iores, offset)
60 #define ips_read_2(sc,offset) bus_read_2(sc->iores, offset)
61 #define ips_read_4(sc,offset) bus_read_4(sc->iores, offset)
63 #define ips_write_1(sc,offset,value) bus_write_1(sc->iores, offset, value)
64 #define ips_write_2(sc,offset,value) bus_write_2(sc->iores, offset, valu
[all...]
/freebsd-11-stable/sys/dev/sound/pci/hda/
H A Dhdac_private.h41 #define HDAC_READ_1(mem, offset) \
42 bus_space_read_1((mem)->mem_tag, (mem)->mem_handle, (offset))
43 #define HDAC_READ_2(mem, offset) \
44 bus_space_read_2((mem)->mem_tag, (mem)->mem_handle, (offset))
45 #define HDAC_READ_4(mem, offset) \
46 bus_space_read_4((mem)->mem_tag, (mem)->mem_handle, (offset))
47 #define HDAC_WRITE_1(mem, offset, value) \
48 bus_space_write_1((mem)->mem_tag, (mem)->mem_handle, (offset), (value))
49 #define HDAC_WRITE_2(mem, offset, value) \
50 bus_space_write_2((mem)->mem_tag, (mem)->mem_handle, (offset), (valu
[all...]
/freebsd-11-stable/usr.bin/w/
H A Dpr_time.c59 int len, width, offset = 0; local
94 offset = width - 7;
96 return (offset);
/freebsd-11-stable/contrib/dtc/
H A Dtreesource.c72 while (m && (m->offset == 0)) {
112 while (m && (m->offset <= (i + 1))) {
114 assert(m->offset == (i+1));
132 assert (m->offset == val.len);
145 while (m && (m->offset <= ((char *)cp - val.val))) {
147 assert(m->offset == ((char *)cp - val.val));
161 assert (m->offset == val.len);
175 while (m && (m->offset == (bp-val.val))) {
189 assert (m->offset == val.len);
217 if ((m->offset >
[all...]
/freebsd-11-stable/sys/dev/smartpqi/
H A Dsmartpqi_cmd.c39 uint32_t offset; local
55 offset = ib_q->pi_local * ib_q->elem_size;
56 slot = ib_q->array_virt_addr + offset;
/freebsd-11-stable/sys/arm/at91/
H A Dat91_common.c57 int offset; local
60 offset = 0;
64 *interrupt = fdt32_to_cpu(intr[0]) + offset;
/freebsd-11-stable/sys/dev/cxgbe/cudbg/
H A Dcudbg_common.c45 if (pdbg_buff->offset > (int)scratch_offset || pdbg_buff->size < size) {
50 pscratch_buff->offset = 0;
68 pscratch_buff->offset = 0;
/freebsd-11-stable/sys/dev/drm/
H A Ddrm_bufs.c98 int drm_addmap(struct drm_device * dev, unsigned long offset, argument
115 if ((offset & PAGE_MASK) || (size & PAGE_MASK)) {
116 DRM_ERROR("offset/size not page aligned: 0x%lx/0x%lx\n",
117 offset, size);
120 if (offset + size < offset) {
121 DRM_ERROR("offset and size wrap around: 0x%lx/0x%lx\n",
122 offset, size);
126 DRM_DEBUG("offset = 0x%08lx, size = 0x%08lx, type = %d\n", offset,
415 unsigned long offset; local
550 unsigned long offset; local
694 unsigned long offset; local
[all...]
/freebsd-11-stable/sbin/hastd/
H A Dactivemap.h46 bool activemap_write_start(struct activemap *amp, off_t offset, off_t length);
47 bool activemap_write_complete(struct activemap *amp, off_t offset,
67 bool activemap_need_sync(struct activemap *amp, off_t offset, off_t length);
/freebsd-11-stable/usr.bin/etdump/
H A Detdump.c119 dump_section(char *buffer, size_t offset, FILE *outfile, const char *filename, argument
128 sh = (boot_catalog_section_header *)&buffer[offset];
137 entry_offset = offset + i * ET_BOOT_ENTRY_SIZE;
155 size_t offset; local
175 offset = 0;
183 offset += ET_BOOT_ENTRY_SIZE;
184 entry = &buffer[offset];
189 offset += ET_BOOT_ENTRY_SIZE;
191 while (offset < ISO_DEFAULT_BLOCK_SIZE) {
192 entry = &buffer[offset];
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DIterable.h64 E operator[](typename BackingIterator::difference_type offset) { argument
65 return AdaptedConstIterator(m_iter + offset);
82 operator+=(typename BackingIterator::difference_type offset) { argument
83 m_iter += offset;
88 operator-=(typename BackingIterator::difference_type offset) { argument
89 m_iter -= offset;
95 operator+(typename BackingIterator::difference_type offset) { argument
96 return AdaptedConstIterator(m_iter + offset);
100 operator-(typename BackingIterator::difference_type offset) { argument
101 return AdaptedConstIterator(m_iter - offset);
132 operator +( typename AdaptedConstIterator<C, E, A>::BackingIterator::difference_type offset, AdaptedConstIterator<C, E, A> &rhs) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_arm.cpp46 lldb::offset_t offset = reg_info->byte_offset; local
47 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size);
48 if (offset == reg_info->byte_offset + reg_info->byte_size) {
H A DRegisterContextPOSIXCore_arm64.cpp47 lldb::offset_t offset = reg_info->byte_offset; local
48 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size);
49 if (offset == reg_info->byte_offset + reg_info->byte_size) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DVMRange.cpp38 void VMRange::Dump(llvm::raw_ostream &s, lldb::addr_t offset,
40 DumpAddressRange(s, offset + GetBaseAddress(), offset + GetEndAddress(),
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/
H A DMSP430.cpp81 int16_t offset = ((int16_t)val >> 1) - 1; local
82 checkInt(loc, offset, 10, type);
83 write16le(loc, (read16le(loc) & 0xFC00) | (offset & 0x3FF));
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DThunks.h42 void setOffset(uint64_t offset);
62 uint64_t offset = 0; member in class:lld::elf::Thunk
74 void writePPC64LoadAndBranch(uint8_t *buf, int64_t offset);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.cpp673 {"SD", &EmulateInstructionMIPS64::Emulate_SD, "SD rt, offset(rs)"},
674 {"LD", &EmulateInstructionMIPS64::Emulate_LD, "LD rt, offset(base)"},
694 "LB rt, offset(base)"},
696 "LBE rt, offset(base)"},
698 "LBU rt, offset(base)"},
700 "LBUE rt, offset(base)"},
702 "LDC1 ft, offset(base)"},
704 "LDL rt, offset(base)"},
706 "LDR rt, offset(base)"},
708 "LLD rt, offset(bas
1345 int64_t offset, pc, rs_val, rt_val, target = 0; local
1396 int64_t offset, pc, target = 0; local
1440 int64_t offset, pc, target; local
1471 int64_t offset, pc, target; local
1507 int64_t offset, pc, rs_val, target = 0; local
1575 int64_t offset, pc, rs_val, target = 0; local
1626 int64_t offset, pc, target; local
1660 int64_t offset, pc, rs_val, rt_val, target = 0; local
1739 int64_t offset, pc, target = 0; local
1798 uint64_t offset, pc; local
1822 uint64_t offset, target, pc; local
1889 int64_t target, offset, pc, rt_val; local
1927 int64_t target, offset, rt_val; local
1980 int64_t pc, offset, target = 0; local
2027 int64_t target, pc, offset; local
2063 int64_t target, pc, offset; local
2105 int64_t pc, offset, target = 0; local
2196 int64_t offset = insn.getOperand(1).getImm(); local
2265 int64_t offset = insn.getOperand(1).getImm(); local
[all...]
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-sli-defs.h67 static inline uint64_t CVMX_SLI_CTL_PORTX(unsigned long offset) argument
70 (OCTEON_IS_MODEL(OCTEON_CN61XX) && ((offset <= 1))) ||
71 (OCTEON_IS_MODEL(OCTEON_CN63XX) && ((offset <= 1))) ||
72 (OCTEON_IS_MODEL(OCTEON_CN66XX) && ((offset <= 3))) ||
73 (OCTEON_IS_MODEL(OCTEON_CN68XX) && ((offset <= 1))) ||
74 (OCTEON_IS_MODEL(OCTEON_CNF71XX) && ((offset <= 1)))))
75 cvmx_warn("CVMX_SLI_CTL_PORTX(%lu) is invalid on this chip\n", offset);
76 return 0x0000000000000050ull + ((offset) & 3) * 16;
79 #define CVMX_SLI_CTL_PORTX(offset) (0x0000000000000050ull + ((offset)
126 CVMX_SLI_DMAX_CNT(unsigned long offset) argument
141 CVMX_SLI_DMAX_INT_LEVEL(unsigned long offset) argument
156 CVMX_SLI_DMAX_TIM(unsigned long offset) argument
182 CVMX_SLI_INT_ENB_PORTX(unsigned long offset) argument
296 CVMX_SLI_MEM_ACCESS_SUBIDX(unsigned long offset) argument
553 CVMX_SLI_PKTX_CNTS(unsigned long offset) argument
568 CVMX_SLI_PKTX_INSTR_BADDR(unsigned long offset) argument
583 CVMX_SLI_PKTX_INSTR_BAOFF_DBELL(unsigned long offset) argument
598 CVMX_SLI_PKTX_INSTR_FIFO_RSIZE(unsigned long offset) argument
613 CVMX_SLI_PKTX_INSTR_HEADER(unsigned long offset) argument
628 CVMX_SLI_PKTX_IN_BP(unsigned long offset) argument
642 CVMX_SLI_PKTX_OUT_SIZE(unsigned long offset) argument
657 CVMX_SLI_PKTX_SLIST_BADDR(unsigned long offset) argument
672 CVMX_SLI_PKTX_SLIST_BAOFF_DBELL(unsigned long offset) argument
687 CVMX_SLI_PKTX_SLIST_FIFO_RSIZE(unsigned long offset) argument
845 CVMX_SLI_PKT_IN_DONEX_CNTS(unsigned long offset) argument
1014 CVMX_SLI_PORTX_PKIND(unsigned long offset) argument
1025 CVMX_SLI_S2M_PORTX_CTL(unsigned long offset) argument
[all...]
/freebsd-11-stable/contrib/mtree/
H A Dcreate.c185 int fd, offset; local
191 offset = fprintf(fp, "%*s%s%s", indent, "",
194 if (offset > (INDENTNAMELEN + indent))
195 offset = MAXLINELEN;
197 offset += fprintf(fp, "%*s",
198 (INDENTNAMELEN + indent) - offset, "");
201 output(fp, indent, &offset, "type=%s",
206 output(fp, indent, &offset, "uname=%s", name);
208 output(fp, indent, &offset, "uid=%u",
214 output(fp, indent, &offset, "gnam
463 output(FILE *fp, int indent, int *offset, const char *fmt, ...) argument
[all...]
/freebsd-11-stable/usr.bin/truss/
H A Dsyscalls.c878 int offset, prev; local
881 offset = 0;
884 /* This arg type is a dummy that doesn't use offset. */
888 assert(prev < sc->args[i].offset);
889 prev = sc->args[i].offset;
890 sc->args[i].offset += offset;
897 * 64-bit aligned. If the current offset is
901 if (sc->args[i].offset % 2 == 1) {
902 sc->args[i].offset
1015 get_struct(pid_t pid, void *offset, void *buf, int len) argument
1040 size_t offset, size, totalsize; local
[all...]

Completed in 354 milliseconds

<<11121314151617181920>>