Searched refs:offsets (Results 1 - 25 of 46) sorted by relevance

12

/freebsd-10.1-release/contrib/ntp/include/
H A Dieee754io.h55 int fetch_ieee754 (unsigned char **bufp, int size, l_fp *lfpp, offsets_t offsets);
56 int put_ieee754 (unsigned char **bufpp, int size, l_fp *lfpp, offsets_t offsets);
/freebsd-10.1-release/contrib/gcc/
H A Dtree-stdarg.h31 int *offsets; member in struct:stdarg_info
H A Dtree-stdarg.c124 if (si->offsets == NULL)
128 si->offsets = XNEWVEC (int, num_ssa_names);
130 si->offsets[i] = -1;
138 if (si->offsets[SSA_NAME_VERSION (lhs)] != -1)
146 ret -= counter_val - si->offsets[SSA_NAME_VERSION (lhs)];
204 if (si->offsets[SSA_NAME_VERSION (lhs)] != -1)
208 si->offsets[SSA_NAME_VERSION (lhs)] = max_size;
210 si->offsets[SSA_NAME_VERSION (lhs)] = val;
538 && si->offsets[SSA_NAME_VERSION (use)] != -1)
543 gpr_size = si->offsets[SSA_NAME_VERSIO
[all...]
/freebsd-10.1-release/contrib/dialog/
H A Dcolumns.c62 * Parse the source string, storing the offsets and widths of each column in
66 split_row(char *source, unsigned *offsets, unsigned *widths) argument
76 widths[result - 1] = offset - offsets[result - 1] - (unsigned) mark;
78 offsets[result] = offset;
83 widths[result - 1] = offset - offsets[result - 1];
103 unsigned *offsets; local
116 offsets = dlg_calloc(unsigned, maxcols);
120 assert_ptr(offsets, "dlg_align_columns");
125 unsigned cols = split_row(*value, offsets, widths);
140 unsigned cols = split_row(*value, offsets, width
[all...]
/freebsd-10.1-release/contrib/ncurses/ncurses/tinfo/
H A DMKcaptab.awk31 offsets[num_strings] = offset;
35 offsets[num_strings] = -1;
41 return offsets[num_strings - 1];
H A Dalloc_entry.c148 int offsets[MAX_ENTRY_SIZE / sizeof(short)]; local
178 if (i < SIZEOF(offsets)) {
180 offsets[i] = ABSENT_OFFSET;
182 offsets[i] = CANCELLED_OFFSET;
184 offsets[i] = tp->Strings[i] - stringbuf;
202 if (i < SIZEOF(offsets)) {
203 if (offsets[i] == ABSENT_OFFSET) {
205 } else if (offsets[i] == CANCELLED_OFFSET) {
208 tp->Strings[i] = tp->str_table + offsets[i];
216 if (n < SIZEOF(offsets)) {
[all...]
H A Dwrite_entry.c495 compute_offsets(char **Strings, unsigned strmax, short *offsets) argument
502 offsets[i] = -1;
504 offsets[i] = -2;
506 offsets[i] = nextfree;
601 short offsets[MAX_ENTRY_SIZE / 2]; local
642 nextfree = compute_offsets(tp->Strings, strmax, offsets);
676 TRACE_OUT(("String offsets begin at %04x", *offset));
678 /* the string offsets */
679 convert_shorts(buf, offsets, strmax);
700 offsets);
[all...]
/freebsd-10.1-release/contrib/ntp/libparse/
H A Dieee754io.c147 offsets_t offsets,
152 *(bufp + offsets[*fieldindex]) = val;
166 offsets_t offsets
208 val = get_byte(bufp, offsets, &fieldindex); /* fetch sign byte & first part of characteristic */
213 val = get_byte(bufp, offsets, &fieldindex); /* fetch rest of characteristic and start of mantissa */
224 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8;
225 mantissa_low |= get_byte(bufp, offsets, &fieldindex);
233 mantissa_high |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8;
234 mantissa_high |= get_byte(bufp, offsets, &fieldindex);
236 mantissa_low = (u_long)get_byte(bufp, offsets,
145 put_byte( unsigned char *bufp, offsets_t offsets, int *fieldindex, unsigned char val ) argument
[all...]
/freebsd-10.1-release/sys/geom/uncompress/
H A Dg_uncompress.c74 * Integer values (block size, number of blocks, offsets)
91 uint64_t *offsets; member in struct:g_uncompress_softc
117 if (sc->offsets != NULL) {
118 free(sc->offsets, M_GEOM_UNCOMPRESS);
119 sc->offsets = NULL;
205 * pos(in stream from parent) = sc->offsets[start_blk] % bsize =
206 * = sc->offsets[1] % 4 = 1020 % 4 = 0
215 pos = sc->offsets[start_blk] % bsize;
229 len = sc->offsets[i + 1] - sc->offsets[
[all...]
/freebsd-10.1-release/sys/geom/uzip/
H A Dg_uzip.c64 * Integer values (block size, number of blocks, offsets)
81 uint64_t *offsets; member in struct:g_uzip_softc
100 if (sc->offsets != NULL) {
101 free(sc->offsets, M_GEOM_UZIP);
102 sc->offsets = NULL;
196 (u_int)start_blk, (intmax_t)sc->offsets[start_blk],
197 (u_int)end_blk, (intmax_t)sc->offsets[end_blk]));
199 bp2->bio_offset = sc->offsets[start_blk] -
200 sc->offsets[start_blk] % pp->sectorsize;
202 bp2->bio_length = sc->offsets[end_bl
[all...]
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dsomsolib.c1389 struct section_offsets *offsets)
1395 /* Oh what a pain! We need the offsets before so_list->objfile
1402 offsets->offsets[SECT_OFF_TEXT (objfile)]
1405 offsets->offsets[SECT_OFF_RODATA (objfile)]
1406 = ANOFFSET (offsets, SECT_OFF_TEXT (objfile));
1415 offsets->offsets[SECT_OFF_DATA (objfile)] = 0;
1416 offsets
1388 som_solib_section_offsets(struct objfile *objfile, struct section_offsets *offsets) argument
[all...]
H A Dsymtab.h730 Each struct contains an array of offsets.
731 The ordering and meaning of the offsets is file-type-dependent;
736 of these offsets, the ANOFFSET macro must be used to insert and
741 CORE_ADDR offsets[1]; /* As many as needed. */
747 : secoff->offsets[whichone])
752 + sizeof (((struct section_offsets *) 0)->offsets) * ((n)-1))
888 /* Set of relocation offsets to apply to each section. */
738 CORE_ADDR offsets[1]; /* As many as needed. */ member in struct:section_offsets
H A Dsymfile.c444 for the objectfile OBJFILE and stuffs ADDR into all of the offsets. */
459 /* Now calculate offsets for section that were specified by the
469 /* Record all sections in offsets */
472 (objfile->section_offsets)->offsets[osp->sectindex] = osp->addr;
487 an 'add-symbol-file' command, then this is the list of offsets and
497 OFFSETS is a table of section offsets already in the right
499 elements present in OFFSETS->offsets. If OFFSETS is non-zero, we
516 struct section_offsets *offsets,
524 gdb_assert (! (addrs && offsets));
539 if (! addrs && ! offsets)
513 syms_from_objfile(struct objfile *objfile, struct section_addr_info *addrs, struct section_offsets *offsets, int num_offsets, int mainline, int verbo) argument
779 symbol_file_add_with_addrs_or_offsets(char *name, int from_tty, struct section_addr_info *addrs, struct section_offsets *offsets, int num_offsets, int mainline, int flags) argument
1810 struct section_offsets *offsets; local
[all...]
H A Drs6000-nat.c665 /* If symbols are not yet loaded, offsets are not yet valid. */
673 new_offsets->offsets[i] = ANOFFSET (objfile->section_offsets, i);
677 new_offsets->offsets[SECT_OFF_TEXT (objfile)] = vp->tstart - vp->tvma;
678 new_offsets->offsets[SECT_OFF_DATA (objfile)] = vp->dstart - vp->dvma;
679 new_offsets->offsets[SECT_OFF_BSS (objfile)] = vp->dstart - vp->dvma;
H A Dobjfiles.c507 delta->offsets[i] =
625 (objfile->section_offsets)->offsets[i] = ANOFFSET (new_offsets, i);
/freebsd-10.1-release/contrib/libgnuregex/
H A Dregex_internal.c147 if (pstr->offsets != NULL)
149 int *new_offsets = re_realloc (pstr->offsets, int, new_buf_len);
152 pstr->offsets = new_offsets;
404 if (pstr->offsets == NULL)
406 pstr->offsets = re_malloc (int, pstr->bufs_len);
408 if (pstr->offsets == NULL)
414 pstr->offsets[i] = i;
420 pstr->offsets[byte_idx] = src_idx;
423 pstr->offsets[byte_idx + i]
446 pstr->offsets[byte_id
[all...]
/freebsd-10.1-release/contrib/gcc/config/arm/
H A Darm.c1483 arm_stack_offsets *offsets;
1500 offsets = arm_get_frame_offsets ();
1501 stack_adjust = offsets->outgoing_args - offsets->saved_regs;
3732 least common denominator, e.g. SImode, and offsets from 0 to 64.
4035 /* VFP addressing modes actually allow greater offsets, but for
4160 /* Small negative offsets are best done with a subtract before the
4261 TLS offsets, not real symbol references. */
5395 /* Constants are converted into offsets from labels. */
5661 are constant offsets, no
1478 arm_stack_offsets *offsets; local
9533 arm_stack_offsets *offsets; local
9847 arm_stack_offsets *offsets; local
10184 arm_stack_offsets *offsets; local
10488 struct arm_stack_offsets *offsets; local
10599 arm_stack_offsets *offsets; local
10687 arm_stack_offsets *offsets; local
13654 arm_stack_offsets *offsets; local
13710 arm_stack_offsets *offsets; local
13872 arm_stack_offsets *offsets; local
15272 arm_stack_offsets *offsets; local
15312 arm_stack_offsets *offsets; local
[all...]
/freebsd-10.1-release/contrib/ntp/ntpq/
H A Dntpq.c848 u_short offsets[MAXFRAGS+1]; local
949 (u_int)f, offsets[f],
950 offsets[f] +
1148 f < numfrags && offsets[f] < offset;
1153 if (f < numfrags && offset == offsets[f]) {
1155 count, offset, counts[f], offsets[f]));
1159 if (f > 0 && (offsets[f-1] + counts[f-1]) > offset) {
1161 offset, counts[f-1], offsets[f-1]));
1165 if (f < numfrags && (offset + count) > offsets[f]) {
1167 count, offset, offsets[
[all...]
/freebsd-10.1-release/tools/tools/drm/radeon/mkregtable/
H A Dmkregtable.c560 struct list_head offsets; member in struct:table
581 list_add_tail(&offset->list, &t->offsets);
586 INIT_LIST_HEAD(&t->offsets);
632 list_for_each_entry(offset, &t->offsets, list) {
/freebsd-10.1-release/contrib/gcc/cp/
H A Dclass.c87 offsets. */
520 therefore virtual bases can be found at their static offsets. */
1354 primary base, make sure the offsets match. */
1417 base, make sure the offsets match. */
1763 vbase and vcall offsets, etc. Set its type and call the backend
3109 record_subobject_offset (tree type, tree offset, splay_tree offsets)
3117 n = splay_tree_lookup (offsets, (splay_tree_key) offset);
3119 n = splay_tree_insert (offsets,
3134 check_subobject_offset (tree type, tree offset, splay_tree offsets)
3143 n = splay_tree_lookup (offsets, (splay_tree_ke
3105 record_subobject_offset(tree type, tree offset, splay_tree offsets) argument
3130 check_subobject_offset(tree type, tree offset, splay_tree offsets) argument
3162 walk_subobject_offsets(tree type, subobject_offset_fn f, tree offset, splay_tree offsets, tree max_offset, int vbases_p) argument
3360 record_subobject_offsets(tree type, tree offset, splay_tree offsets, bool is_data_member) argument
3393 layout_conflict_p(tree type, tree offset, splay_tree offsets, int vbases_p) argument
3420 layout_nonempty_base_or_field(record_layout_info rli, tree decl, tree binfo, splay_tree offsets) argument
3529 layout_empty_base(tree binfo, tree eoc, splay_tree offsets) argument
3588 build_base_field(record_layout_info rli, tree binfo, splay_tree offsets, tree *next_field) argument
3692 build_base_fields(record_layout_info rli, splay_tree offsets, tree *next_field) argument
4349 layout_virtual_bases(record_layout_info rli, splay_tree offsets) argument
[all...]
/freebsd-10.1-release/contrib/binutils/ld/scripttempl/
H A Dnw.sc105 /* We want the small data sections together, so single-instruction offsets
/freebsd-10.1-release/sys/contrib/v4l/
H A Dvideodev.h199 int offsets[VIDEO_MAX_FRAME]; member in struct:video_mbuf
/freebsd-10.1-release/sys/dev/drm2/
H A Ddrm_mode.h295 uint32_t offsets[4]; /* offset of each plane */ member in struct:drm_mode_fb_cmd2
/freebsd-10.1-release/contrib/ntp/parseutil/
H A Ddcfd.c353 * offsets for parity field descriptions
1393 int offsets = 0; local
1420 offsets = 1;
1429 offsets = 1;
1803 PRINTF(offsets ? "%s, %2ld:%02ld:%02d, %ld.%02ld.%02ld, <%s%s%s%s> (%c%ld.%06lds)" :
/freebsd-10.1-release/contrib/binutils/bfd/
H A Dcoff-rs6000.c1195 /* After the count comes a list of four byte file offsets. */
1253 /* After the count comes a list of eight byte file offsets. */
1260 /* After the file offsets come null terminated symbol names. */
1860 0x0078 offsets [0x08 * num_syms], binary
1906 /* loop over the 32 bit offsets */
2002 /* loop over the 64 bit offsets */
2088 file_ptr *offsets;
2111 offsets = (file_ptr *) bfd_alloc (abfd, count * sizeof (file_ptr));
2112 if (offsets == NULL)
2189 offsets[
2085 file_ptr *offsets; local
2317 file_ptr *offsets; local
[all...]

Completed in 480 milliseconds

12