Home
last modified time | relevance | path

Searched refs:start_offset (Results 1 – 25 of 68) sorted by relevance

123

/netbsd-src/external/ibm-public/postfix/dist/src/postcat/
H A Dpostcat.c163 off_t start_offset = 0; variable
193 if (start_offset > 0) { in postcat()
195 for (offset = 0; offset < start_offset; offset++) in postcat()
198 VSTREAM_PATH(fp), (long) start_offset, in postcat()
201 if (vstream_fseek(fp, start_offset, SEEK_SET) < 0) in postcat()
203 VSTREAM_PATH(fp), (long) start_offset); in postcat()
210 if (start_offset == 0 && (ch = VSTREAM_GETC(fp)) != VSTREAM_EOF) { in postcat()
221 if (start_offset == 0 && (flags & PC_FLAG_PRINT_ENV)) in postcat()
524 if (!alldig(optarg) || (start_offset = atol(optarg)) < 0) in main()
/netbsd-src/external/public-domain/xz/dist/src/liblzma/simple/
H A Dsimple_encoder.c20 *size = (opt == NULL || opt->start_offset == 0) ? 0 : 4; in lzma_simple_props_size()
32 if (opt == NULL || opt->start_offset == 0) in lzma_simple_props_encode()
35 unaligned_write32le(out, opt->start_offset); in lzma_simple_props_encode()
H A Dsimple_decoder.c31 opt->start_offset = unaligned_read32le(props); in lzma_simple_props_decode()
34 if (opt->start_offset == 0) in lzma_simple_props_decode()
/netbsd-src/external/public-domain/xz/dist/tests/
H A Dtest_filter_flags.c88 options.start_offset = 0; in test_bcj()
95 options.start_offset = 123456; in test_bcj()
102 expect(decoded->start_offset == options.start_offset); in test_bcj()
/netbsd-src/crypto/external/bsd/openssh/dist/
H A Dsshbuf-misc.c251 sshbuf_find(const struct sshbuf *b, size_t start_offset, in sshbuf_find() argument
260 if (start_offset > SSHBUF_SIZE_MAX || len > SSHBUF_SIZE_MAX || len == 0) in sshbuf_find()
262 if (start_offset > sshbuf_len(b) || start_offset + len > sshbuf_len(b)) in sshbuf_find()
264 if ((p = memmem(sshbuf_ptr(b) + start_offset, in sshbuf_find()
265 sshbuf_len(b) - start_offset, s, len)) == NULL) in sshbuf_find()
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/ia64/
H A Dfde-vms.c47 unw_word start_offset; member
154 ent->start_offset = vueblock.start_offset; in _Unwind_FindTableEntry()
H A Dunwind-ia64.h37 unw_word start_offset; member
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/ia64/
H A Dfde-vms.c47 unw_word start_offset; member
154 ent->start_offset = vueblock.start_offset; in _Unwind_FindTableEntry()
H A Dunwind-ia64.h37 unw_word start_offset; member
H A Dfde-glibc.c104 if (data->pc < f->start_offset + seg_base) in _Unwind_IteratePhdrCallback()
/netbsd-src/sys/external/bsd/drm2/dist/drm/vboxvideo/
H A Dmodesetting.c33 s32 origin_x, s32 origin_y, u32 start_offset, in hgsmi_process_display_info() argument
47 p->start_offset = start_offset; in hgsmi_process_display_info()
H A Dvboxvideo_guest.h55 s32 origin_x, s32 origin_y, u32 start_offset,
/netbsd-src/external/gpl3/binutils/dist/bfd/
H A Delf32-m68hc11.c583 unsigned long start_offset; in m68hc11_relax_group() local
616 start_offset = offset; in m68hc11_relax_group()
664 if (start_offset != offset) in m68hc11_relax_group()
666 m68hc11_elf_relax_delete_bytes (abfd, sec, start_offset, in m68hc11_relax_group()
667 offset - start_offset); in m68hc11_relax_group()
675 offset = start_offset + isize; in m68hc11_relax_group()
/netbsd-src/external/gpl3/binutils/dist/gold/
H A Dicf.cc309 section_offset_type start_offset = 0, in get_section_contents() argument
359 if (static_cast<section_offset_type>(*it_o) < start_offset in get_section_contents()
400 static_cast<unsigned long long>(*it_o - start_offset)); in get_section_contents()
605 if (contents + start_offset < slice_end) in get_section_contents()
607 buffer.append(reinterpret_cast<const char*>(contents + start_offset), in get_section_contents()
608 slice_end - (contents + start_offset)); in get_section_contents()
/netbsd-src/external/gpl3/binutils.old/dist/bfd/
H A Delf32-m68hc11.c583 unsigned long start_offset; in m68hc11_relax_group() local
616 start_offset = offset; in m68hc11_relax_group()
664 if (start_offset != offset) in m68hc11_relax_group()
666 m68hc11_elf_relax_delete_bytes (abfd, sec, start_offset, in m68hc11_relax_group()
667 offset - start_offset); in m68hc11_relax_group()
675 offset = start_offset + isize; in m68hc11_relax_group()
/netbsd-src/external/gpl3/binutils.old/dist/gold/
H A Dicf.cc309 section_offset_type start_offset = 0, in get_section_contents() argument
359 if (static_cast<section_offset_type>(*it_o) < start_offset in get_section_contents()
400 static_cast<unsigned long long>(*it_o - start_offset)); in get_section_contents()
605 if (contents + start_offset < slice_end) in get_section_contents()
607 buffer.append(reinterpret_cast<const char*>(contents + start_offset), in get_section_contents()
608 slice_end - (contents + start_offset)); in get_section_contents()
/netbsd-src/external/public-domain/xz/dist/src/xz/
H A Doptions.c202 opt->start_offset = value; in set_bcj()
218 .start_offset = 0, in options_bcj()
/netbsd-src/external/public-domain/xz/dist/src/liblzma/api/lzma/
H A Dbcj.h88 uint32_t start_offset; member
/netbsd-src/external/gpl2/dtc/dist/
H A Dyamltree.c38 int off, start_offset = markers->offset; in yaml_propval_int() local
71 if (m->offset == (start_offset + off)) { in yaml_propval_int()
/netbsd-src/external/gpl2/groff/dist/src/preproc/pic/
H A Dcommon.cpp261 distance start_offset = start - c; in dashed_arc() local
263 double start_angle = atan2(start_offset.y, start_offset.x); in dashed_arc()
292 distance start_offset = start - c; in dotted_arc() local
294 double start_angle = atan2(start_offset.y, start_offset.x); in dotted_arc()
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/
H A Damdgpu_dce_dmcu.c80 unsigned int start_offset, in dce_dmcu_load_iram() argument
94 REG_WRITE(DMCU_IRAM_WR_CTRL, start_offset); in dce_dmcu_load_iram()
461 unsigned int start_offset, in dcn10_dmcu_load_iram() argument
479 REG_WRITE(DMCU_IRAM_WR_CTRL, start_offset); in dcn10_dmcu_load_iram()
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/hw/
H A Ddmcu.h64 unsigned int start_offset,
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dedit-context.c760 int start_offset = start_column - 1; in apply_fixit() local
763 gcc_assert (start_offset >= 0); in apply_fixit()
768 if (start_offset >= (m_len + 1)) in apply_fixit()
773 size_t victim_len = next_offset - start_offset; in apply_fixit()
784 memmove (m_content + start_offset + replacement_len, in apply_fixit()
788 memcpy (m_content + start_offset, in apply_fixit()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dedit-context.cc766 int start_offset = start_column - 1; in apply_fixit() local
769 gcc_assert (start_offset >= 0); in apply_fixit()
774 if (start_offset >= (m_len + 1)) in apply_fixit()
779 size_t victim_len = next_offset - start_offset; in apply_fixit()
790 memmove (m_content + start_offset + replacement_len, in apply_fixit()
794 memcpy (m_content + start_offset, in apply_fixit()
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
H A Damdgpu_amdkfd.c96 size_t *start_offset) in amdgpu_doorbell_get_kfd_info() argument
105 *start_offset = adev->doorbell.num_doorbells * sizeof(u32); in amdgpu_doorbell_get_kfd_info()
109 *start_offset = 0; in amdgpu_doorbell_get_kfd_info()

123