Searched refs:offset (Results 476 - 500 of 2575) sorted by relevance

<<11121314151617181920>>

/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Host/common/
H A DFile.cpp433 File::SeekFromStart (off_t offset, Error *error_ptr) argument
438 result = ::lseek (m_descriptor, offset, SEEK_SET);
450 result = ::fseek(m_stream, offset, SEEK_SET);
468 File::SeekFromCurrent (off_t offset, Error *error_ptr) argument
473 result = ::lseek (m_descriptor, offset, SEEK_CUR);
485 result = ::fseek(m_stream, offset, SEEK_CUR);
503 File::SeekFromEnd (off_t offset, Error *error_ptr) argument
508 result = ::lseek (m_descriptor, offset, SEEK_END);
520 result = ::fseek(m_stream, offset, SEEK_END);
677 File::Read (void *buf, size_t &num_bytes, off_t &offset) argument
718 Read(size_t &num_bytes, off_t &offset, bool null_terminate, DataBufferSP &data_buffer_sp) argument
771 Write(const void *buf, size_t &num_bytes, off_t &offset) argument
[all...]
/freebsd-10.2-release/contrib/ncurses/ncurses/tinfo/
H A Dwrite_entry.c70 unsigned offset = 0; local
79 if (write_object(tp, buffer, &offset, limit) == ERR
80 || fwrite(buffer, sizeof(char), offset, fp) != offset) {
254 unsigned offset = 0; local
312 if (write_object(tp, buffer + 1, &offset, limit - 1) != ERR) {
325 data.size = offset + 1;
465 unsigned *offset,
471 int have = (limit - *offset);
477 memcpy(dst + *offset, sr
464 fake_write(char *dst, unsigned *offset, unsigned limit, char *src, unsigned want, unsigned size) argument
594 write_object(TERMTYPE *tp, char *buffer, unsigned *offset, unsigned limit) argument
[all...]
H A Dinit_keytry.c85 if (_nc_tinfo_fkeys[n].offset < STRCOUNT) {
87 CUR Strings[_nc_tinfo_fkeys[n].offset],
/freebsd-10.2-release/contrib/binutils/bfd/
H A Dstabs.c83 /* The offset to this symbol in the section contents. */
84 bfd_size_type offset; member in struct:stab_excl_list
259 /* Special type 0 stabs indicate the offset to the next
381 ne->offset = sym - stabbuf;
470 bfd_size_type i, offset;
480 offset = 0;
484 *pskips = offset;
486 offset += STABSIZE;
489 BFD_ASSERT (offset != 0);
622 bfd_size_type i, offset;
468 bfd_size_type i, offset; local
619 bfd_size_type i, offset; local
758 _bfd_stab_section_offset(asection *stabsec, void * psecinfo, bfd_vma offset) argument
[all...]
H A Dbfdwin.c111 file_ptr offset,
122 abfd, (long) offset, (long) size,
149 /* Find the real file and the real offset into it. */
152 offset += abfd->origin;
159 || abfd->iovec->bseek (abfd, offset, SEEK_SET) != 0))
164 offset2 = offset % pagesize;
167 file_offset = offset - offset2;
168 real_size = offset + size - file_offset;
196 fprintf (stderr, "\n\tmapped %ld at %p, offset is %ld\n",
236 if (bfd_seek (abfd, offset, SEEK_SE
110 bfd_get_file_window(bfd *abfd, file_ptr offset, bfd_size_type size, bfd_window *windowp, bfd_boolean writable) argument
[all...]
/freebsd-10.2-release/sys/geom/raid/
H A Dtr_raid1e.c149 int *disk, off_t *offset, off_t *start)
162 *offset = ((nstrip * N) / vol->v_disks_count) * strip_size;
166 P2V(struct g_raid_volume *vol, int disk, off_t offset, argument
174 start = offset % strip_size;
176 nstrip = (offset / strip_size) * vol->v_disks_count + disk;
437 off_t len, virtual, vend, offset, start; local
452 /* Get virtual offset from physical rebuild position. */
454 /* Get physical offset back to get first stripe position. */
455 V2P(vol, virtual, &disk, &offset, &start);
463 offset
148 V2P(struct g_raid_volume *vol, off_t virt, int *disk, off_t *offset, off_t *start) argument
644 off_t offset; local
700 off_t offset, start, length, remain; local
770 off_t offset, start, length, remain; local
896 off_t virtual, offset, start; local
1159 off_t offset, start, length, remain; local
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Core/
H A DValueObjectConstResultChild.cpp57 ValueObjectConstResultChild::GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create) argument
59 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create);
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAbbrev.h36 DWARFAbbreviationDeclarationSet(dw_offset_t offset, uint32_t idx_offset) : argument
37 m_offset(offset),
H A DDWARFDebugArangeSet.h25 uint32_t cu_offset; // The offset from the beginning of the .debug_info section of the compilation unit entry referenced by the table.
26 uint8_t addr_size; // The size in bytes of an address on the target architecture. For segmented addressing, this is the size of the offset portion of the address
40 void SetOffset(uint32_t offset) { m_offset = offset; } argument
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Edit/
H A DFileOffset.h31 FileOffset getWithOffset(unsigned offset) const {
33 NewOffs.Offs += offset;
/freebsd-10.2-release/contrib/llvm/lib/DebugInfo/
H A DDWARFDebugAbbrev.h35 DWARFAbbreviationDeclarationSet(uint32_t offset, uint32_t idxOffset) argument
36 : Offset(offset), IdxOffset(idxOffset) {}
/freebsd-10.2-release/contrib/llvm/include/llvm/Support/
H A DWin64EH.h114 /// \brief Return image-relative offset of language-specific exception handler.
119 /// \brief Set image-relative offset of language-specific exception handler.
120 void setLanguageSpecificHandlerOffset(uint32_t offset) { argument
121 *reinterpret_cast<uint32_t *>(getLanguageSpecificData()) = offset;
/freebsd-10.2-release/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_optimum_normal.c34 uint32_t offset = 0x100; local
40 const uint32_t match_bit = match_byte & offset;
42 = offset + match_bit + (symbol >> 8);
47 offset &= ~(match_byte ^ symbol);
591 const uint32_t offset = cur + 1 + len_test; local
593 while (len_end < offset)
600 if (cur_and_len_price < coder->opts[offset].price) {
601 coder->opts[offset].price = cur_and_len_price;
602 coder->opts[offset].pos_prev = cur + 1;
603 coder->opts[offset]
682 const uint32_t offset = cur + len_test + 1 + len_test_2; local
781 const uint32_t offset = cur + len_test + 1 + len_test_2; local
[all...]
/freebsd-10.2-release/contrib/sendmail/libsm/
H A Dsyslogio.c114 ** SM_SYSLOGSEEK -- position the syslog file offset
121 ** offset -- the new offset position relative to 'whence'
122 ** whence -- flag indicating start of 'offset'
129 sm_syslogseek(fp, offset, whence)
131 off_t offset;
/freebsd-10.2-release/contrib/gdb/gdb/
H A Dcp-abi.h104 this is the type containing F. OFFSET is the offset of that base
108 struct type *type, int offset);
120 - If *USING_ENC is zero, then *TOP is the offset from the start
125 - If *USING_ENC is non-zero, then *TOP is the offset from the
137 /* Compute the offset of the baseclass which is
140 The result is the offset of the baseclass value relative
160 int j, struct type * type, int offset);
/freebsd-10.2-release/contrib/gdb/gdb/tui/
H A Dtui-source.c90 int offset, cur_line_no, cur_line, cur_len, threshold; local
103 and the offset to start the display. */
104 offset = src->horizontal_offset;
105 threshold = (line_width - 1) + offset;
110 if (offset > 0)
121 if (offset == 0)
199 /* Now copy the line taking the offset into account */
200 if (strlen (src_line) > offset)
203 &src_line[offset]);
211 if (offset >
[all...]
/freebsd-10.2-release/contrib/gdb/include/gdb/
H A Dsim-d10v.h42 The following translate a virtual DMAP/IMAP offset into a physical
46 offset) is returned. */
58 (unsigned long offset,
65 (unsigned long offset,
/freebsd-10.2-release/contrib/libarchive/libarchive/test/
H A Dtest_read_format_isorr_ce.c95 int64_t offset; local
124 archive_read_data_block(a, &p, &size, &offset));
142 archive_read_data_block(a, &p, &size, &offset));
143 assertEqualInt(0, offset);
156 archive_read_data_block(a, &p, &size, &offset));
157 assertEqualInt(0, offset);
170 archive_read_data_block(a, &p, &size, &offset));
171 assertEqualInt(0, offset);
/freebsd-10.2-release/contrib/apr/include/
H A Dapr_mmap.h74 /** The physical start, size and offset */
124 * @param offset The offset into the file to start the data pointer at.
134 apr_file_t *file, apr_off_t offset,
155 * Move the pointer into the mmap'ed file to the specified offset.
156 * @param addr The pointer to the offset specified.
158 * @param offset The offset to move to.
161 apr_off_t offset);
/freebsd-10.2-release/contrib/groff/src/preproc/pic/
H A Dcommon.cpp365 double offset = lt.dash_width/2.0; local
367 -M_PI/4.0, 0, slt, lt.dash_width, vert_gap_width, &offset);
370 slt, lt.dash_width, vert_gap_width, &offset);
372 0, M_PI/4.0, slt, lt.dash_width, vert_gap_width, &offset);
374 offset = lt.dash_width/2.0;
376 M_PI/4.0, M_PI/2, slt, lt.dash_width, hor_gap_width, &offset);
379 slt, lt.dash_width, hor_gap_width, &offset);
381 M_PI/2, 3*M_PI/4.0, slt, lt.dash_width, hor_gap_width, &offset);
383 offset = lt.dash_width/2.0;
385 3.0*M_PI/4.0, M_PI, slt, lt.dash_width, vert_gap_width, &offset);
502 double offset = 0.0; local
[all...]
/freebsd-10.2-release/contrib/gcc/config/rs6000/
H A Dlinux-unwind.h243 fs->regs.reg[i].loc.offset = (long) &regs->gpr[i] - new_cfa;
247 fs->regs.reg[CR2_REGNO].loc.offset = (long) &regs->ccr - new_cfa;
250 fs->regs.reg[LINK_REGISTER_REGNUM].loc.offset = (long) &regs->link - new_cfa;
253 fs->regs.reg[ARG_POINTER_REGNUM].loc.offset = (long) &regs->nip - new_cfa;
275 fs->regs.reg[i + 32].loc.offset = (long) &regs->fpr[i] - new_cfa;
292 fs->regs.reg[i + FIRST_ALTIVEC_REGNO].loc.offset
297 fs->regs.reg[VSCR_REGNO].loc.offset = (long) &vregs->vscr - new_cfa;
301 fs->regs.reg[VRSAVE_REGNO].loc.offset = (long) &vregs->vsave - new_cfa;
/freebsd-10.2-release/contrib/binutils/gas/
H A Dfrags.c211 symbolS *symbol, offsetT offset, char *opcode)
222 frag_now->fr_offset = offset;
244 relax_substateT subtype, symbolS *symbol, offsetT offset,
254 frag_now->fr_offset = offset;
402 frag_offset_fixed_p (const fragS *frag1, const fragS *frag2, bfd_vma *offset)
407 /* Start with offset initialised to difference between the two frags.
412 *offset = off;
426 *offset = off;
442 *offset = off;
204 frag_var(relax_stateT type, int max_chars, int var, relax_substateT subtype, symbolS *symbol, offsetT offset, char *opcode) argument
236 frag_variant(relax_stateT type, int max_chars, int var, relax_substateT subtype, symbolS *symbol, offsetT offset, char *opcode) argument
392 frag_offset_fixed_p(const fragS *frag1, const fragS *frag2, bfd_vma *offset) argument
H A Dfrags.h36 of a particular frag}+offset.
42 /* Object file address (as an octet offset). */
140 offsetT offset,
148 offsetT offset,
/freebsd-10.2-release/sys/dev/pccard/
H A Dpccardvar.h160 pccard_attr_read_1(device_t dev, uint32_t offset, uint8_t *val) argument
162 return (CARD_ATTR_READ(device_get_parent(dev), dev, offset, val));
166 pccard_attr_write_1(device_t dev, uint32_t offset, uint8_t val) argument
168 return (CARD_ATTR_WRITE(device_get_parent(dev), dev, offset, val));
172 pccard_ccr_read_1(device_t dev, uint32_t offset, uint8_t *val) argument
174 return (CARD_CCR_READ(device_get_parent(dev), dev, offset, val));
178 pccard_ccr_write_1(device_t dev, uint32_t offset, uint8_t val) argument
180 return (CARD_CCR_WRITE(device_get_parent(dev), dev, offset, val));
/freebsd-10.2-release/sys/boot/userboot/
H A Duserboot.h101 int (*seek)(void *arg, void *h, uint64_t offset,
115 * Read from a disk image at the given offset
117 int (*diskread)(void *arg, int unit, uint64_t offset,

Completed in 169 milliseconds

<<11121314151617181920>>