/netbsd-src/usr.sbin/makefs/chfs/ |
H A D | chfs_mkfs.c | 281 struct chfs_flash_data_node fdata; in write_data() local 283 memset(&fdata, 0, sizeof(fdata)); in write_data() 288 pad_block_if_less_than(fsopts, sizeof(fdata) + len); in write_data() 290 fdata.magic = htole16(CHFS_FS_MAGIC_BITMASK); in write_data() 291 fdata.type = htole16(CHFS_NODETYPE_DATA); in write_data() 292 fdata.length = htole32(CHFS_PAD(sizeof(fdata) + len)); in write_data() 293 fdata.hdr_crc = htole32(crc32(0, (uint8_t *)&fdata, in write_data() 295 fdata.vno = htole64(node->inode->ino); in write_data() 296 fdata.data_length = htole32(len); in write_data() 297 fdata.offset = htole32(ofs); in write_data() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libbacktrace/ |
H A D | xcoff.c | 727 struct xcoff_fileline_data *fdata, uintptr_t pc, in xcoff_lookup_pc() argument 748 bsearch (&pc, fdata->func_vec.vec.base, fdata->func_vec.count, in xcoff_lookup_pc() 764 lineptr = fdata->linenos + (lnnoptr - fdata->lnnoptr0); in xcoff_lookup_pc() 765 while (lineptr + LINESZ <= fdata->linenos + fdata->linenos_size) in xcoff_lookup_pc() 770 if (pc <= fdata->base_address + lineno->l_addr.l_paddr - fn->sect_base) in xcoff_lookup_pc() 783 bsearch (&match, fdata->incl_vec.vec.base, in xcoff_lookup_pc() 784 fdata->incl_vec.count, sizeof (struct xcoff_incl), in xcoff_lookup_pc() 789 bsearch (&fn->lnnoptr, fdata->incl_vec.vec.base, in xcoff_lookup_pc() 790 fdata->incl_vec.count, sizeof (struct xcoff_incl), in xcoff_lookup_pc() 819 struct xcoff_fileline_data *fdata; in xcoff_fileline() local [all …]
|
H A D | dwarf.c | 3846 struct dwarf_data *fdata; in build_dwarf_data() local 3865 fdata = ((struct dwarf_data *) in build_dwarf_data() 3868 if (fdata == NULL) in build_dwarf_data() 3871 fdata->next = NULL; in build_dwarf_data() 3872 fdata->altlink = altlink; in build_dwarf_data() 3873 fdata->base_address = base_address; in build_dwarf_data() 3874 fdata->addrs = addrs; in build_dwarf_data() 3875 fdata->addrs_count = addrs_count; in build_dwarf_data() 3876 fdata->units = units; in build_dwarf_data() 3877 fdata->units_count = units_count; in build_dwarf_data() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libbacktrace/ |
H A D | xcoff.c | 726 struct xcoff_fileline_data *fdata, uintptr_t pc, in xcoff_lookup_pc() argument 747 bsearch (&pc, fdata->func_vec.vec.base, fdata->func_vec.count, in xcoff_lookup_pc() 763 lineptr = fdata->linenos + (lnnoptr - fdata->lnnoptr0); in xcoff_lookup_pc() 764 while (lineptr + LINESZ <= fdata->linenos + fdata->linenos_size) in xcoff_lookup_pc() 769 if (pc <= fdata->base_address + lineno->l_addr.l_paddr) in xcoff_lookup_pc() 782 bsearch (&match, fdata->incl_vec.vec.base, in xcoff_lookup_pc() 783 fdata->incl_vec.count, sizeof (struct xcoff_incl), in xcoff_lookup_pc() 788 bsearch (&fn->lnnoptr, fdata->incl_vec.vec.base, in xcoff_lookup_pc() 789 fdata->incl_vec.count, sizeof (struct xcoff_incl), in xcoff_lookup_pc() 818 struct xcoff_fileline_data *fdata; in xcoff_fileline() local [all …]
|
H A D | dwarf.c | 3967 struct dwarf_data *fdata; in build_dwarf_data() local 3986 fdata = ((struct dwarf_data *) in build_dwarf_data() 3989 if (fdata == NULL) in build_dwarf_data() 3992 fdata->next = NULL; in build_dwarf_data() 3993 fdata->altlink = altlink; in build_dwarf_data() 3994 fdata->base_address = base_address; in build_dwarf_data() 3995 fdata->addrs = addrs; in build_dwarf_data() 3996 fdata->addrs_count = addrs_count; in build_dwarf_data() 3997 fdata->units = units; in build_dwarf_data() 3998 fdata->units_count = units_count; in build_dwarf_data() [all …]
|
/netbsd-src/external/bsd/ntp/dist/tests/libntp/ |
H A D | timespecops.c | 164 static const struct lfpfracdata fdata[] = { variable 634 for (i = 0; i < COUNTOF(fdata); ++i) { in test_ToLFPrelPos() 635 struct timespec a = timespec_init(1, fdata[i].nsec); in test_ToLFPrelPos() 636 l_fp E = l_fp_init(1, fdata[i].frac); in test_ToLFPrelPos() 652 for (i = 0; i < COUNTOF(fdata); ++i) { in test_ToLFPrelNeg() 653 struct timespec a = timespec_init(-1, fdata[i].nsec); in test_ToLFPrelNeg() 654 l_fp E = l_fp_init(~0, fdata[i].frac); in test_ToLFPrelNeg() 670 for (i = 0; i < COUNTOF(fdata); ++i) { in test_ToLFPabs() 671 struct timespec a = timespec_init(1, fdata[i].nsec); in test_ToLFPabs() 672 l_fp E = l_fp_init(1 + JAN_1970, fdata[i].frac); in test_ToLFPabs() [all …]
|
/netbsd-src/lib/libc/db/recno/ |
H A D | rec_put.c | 68 DBT fdata, tdata; in __rec_put() local 99 fdata.data = t->bt_rdata.data; in __rec_put() 100 fdata.size = t->bt_reclen; in __rec_put() 102 fdata.data = data->data; in __rec_put() 103 fdata.size = data->size; in __rec_put() 165 if ((status = __rec_iput(t, nrec - 1, &fdata, flags)) != RET_SUCCESS) in __rec_put()
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/test/profile/Linux/ |
H A D | coverage_shared.test | 2 RUN: %clang_profgen -fdata-sections -ffunction-sections -fcoverage-mapping -c -o %t.d/a.shared.o -f… 3 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -fcoverage-… 4 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -o %t-share… 6 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -o %t-stati…
|
H A D | instrprof-dynamic-one-shared.test | 2 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -o %t.d/a.s… 3 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -o %t-share… 5 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -o %t-stati…
|
H A D | instrprof-dynamic-two-shared.test | 2 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -o %t.d/a.s… 3 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -o %t.d/b.s… 4 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -o %t-share…
|
H A D | instrprof-dlopen.test | 2 RUN: %clang_profgen -o %t.d/func.shared -fPIC -shared -fdata-sections -ffunction-sections -fuse-ld=… 3 RUN: %clang_profgen -o %t.d/func2.shared -fPIC -shared -fdata-sections -ffunction-sections -fuse-ld… 8 RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -o %t-stat…
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/ |
H A D | crossconfig.m4 | 40 SECTION_FLAGS='-ffunction-sections -fdata-sections' 88 SECTION_FLAGS='-ffunction-sections -fdata-sections' 135 SECTION_FLAGS='-ffunction-sections -fdata-sections' 140 SECTION_FLAGS='-ffunction-sections -fdata-sections' 203 SECTION_FLAGS='-ffunction-sections -fdata-sections' 261 SECTION_FLAGS='-ffunction-sections -fdata-sections' 284 SECTION_FLAGS='-ffunction-sections -fdata-sections'
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/ |
H A D | crossconfig.m4 | 40 SECTION_FLAGS='-ffunction-sections -fdata-sections' 92 SECTION_FLAGS='-ffunction-sections -fdata-sections' 140 SECTION_FLAGS='-ffunction-sections -fdata-sections' 145 SECTION_FLAGS='-ffunction-sections -fdata-sections' 210 SECTION_FLAGS='-ffunction-sections -fdata-sections' 268 SECTION_FLAGS='-ffunction-sections -fdata-sections' 291 SECTION_FLAGS='-ffunction-sections -fdata-sections'
|
/netbsd-src/sys/arch/hpcsh/conf/ |
H A D | shl-elf.x | 26 fdata = . ; 27 PROVIDE (fdata = .);
|
/netbsd-src/sys/arch/dreamcast/conf/ |
H A D | shl.x | 25 fdata = . ; 26 PROVIDE (fdata = .);
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/m4/ |
H A D | druntime.m4 | 122 # Check for -ffunction-sections nad -fdata-sections. 127 GDCFLAGS="$GDCFLAGS -g -Werror -ffunction-sections -fdata-sections" 131 SECTION_FLAGS='-ffunction-sections -fdata-sections'
|
/netbsd-src/sys/external/bsd/ipf/netinet/ |
H A D | ip_state.c | 1974 tcpdata_t *fdata, *tdata; in ipf_state_tcp() local 1981 fdata = &is->is_tcp.ts_data[!source]; in ipf_state_tcp() 2007 ret = ipf_state_tcpinwindow(fin, fdata, tdata, tcp, in ipf_state_tcp() 2039 fdata) == -1) in ipf_state_tcp() 2048 fdata) == -1) in ipf_state_tcp() 2115 ipf_state_tcpinwindow(fr_info_t *fin, tcpdata_t *fdata, tcpdata_t *tdata, in ipf_state_tcpinwindow() argument 2134 win = ntohs(tcp->th_win) << fdata->td_winscale; in ipf_state_tcpinwindow() 2156 if (!(tcpflags & TH_SYN) && (fdata->td_winflags & TCP_WSCALE_FIRST)) { in ipf_state_tcpinwindow() 2157 fdata->td_winflags &= ~TCP_WSCALE_FIRST; in ipf_state_tcpinwindow() 2158 fdata->td_maxwin = win; in ipf_state_tcpinwindow() [all …]
|
/netbsd-src/external/cddl/osnet/dist/tools/ctf/cvt/ |
H A D | ctf.c | 186 ushort_t fdata[2]; in write_functions() local 192 fdata[0] = 0; in write_functions() 193 ctf_buf_write(b, &fdata[0], sizeof (fdata[0])); in write_functions() 206 fdata[0] = CTF_TYPE_INFO(CTF_K_FUNCTION, 1, nargs); in write_functions() 207 fdata[1] = idp->ii_dtype->t_id; in write_functions() 210 SWAP_16(fdata[0]); in write_functions() 211 SWAP_16(fdata[1]); in write_functions() 214 ctf_buf_write(b, fdata, sizeof (fdata)); in write_functions()
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/ssl/ |
H A D | bio_ssl.c | 481 BIO_SSL *tdata, *fdata; in BIO_ssl_copy_session_id() local 487 fdata = BIO_get_data(f); in BIO_ssl_copy_session_id() 488 if ((tdata->ssl == NULL) || (fdata->ssl == NULL)) in BIO_ssl_copy_session_id() 490 if (!SSL_copy_session_id(tdata->ssl, (fdata->ssl))) in BIO_ssl_copy_session_id()
|
/netbsd-src/external/gpl3/gcc.old/dist/libgfortran/ |
H A D | configure.ac | 219 # Figure out whether the compiler supports "-ffunction-sections -fdata-sections", 224 # Check for -ffunction-sections -fdata-sections 225 AC_MSG_CHECKING([for gcc that supports -ffunction-sections -fdata-sections]) 226 CFLAGS='-Werror -ffunction-sections -fdata-sections' 235 SECTION_FLAGS='-ffunction-sections -fdata-sections'
|
/netbsd-src/external/gpl3/gcc/lib/libstdc++-v3/ |
H A D | Makefile | 82 COPTS.bitmap_allocator.cc+= -ffunction-sections -fdata-sections 83 COPTS.pool_allocator.cc+= -ffunction-sections -fdata-sections
|
/netbsd-src/external/gpl3/gcc.old/lib/libstdc++-v3/ |
H A D | Makefile | 82 COPTS.bitmap_allocator.cc+= -ffunction-sections -fdata-sections 83 COPTS.pool_allocator.cc+= -ffunction-sections -fdata-sections
|
/netbsd-src/sys/ufs/chfs/ |
H A D | chfs_gc.c | 706 struct chfs_flash_data_node *fdata; in chfs_gcollect_pristine() local 775 fdata = (struct chfs_flash_data_node *)data; in chfs_gcollect_pristine() 776 crc = crc32(0, (uint8_t *)fdata, sizeof(struct chfs_flash_data_node) - 4); in chfs_gcollect_pristine() 777 if (crc != le32toh(fdata->node_crc)) { in chfs_gcollect_pristine()
|
/netbsd-src/external/gpl3/gcc/dist/libgfortran/ |
H A D | configure.ac | 246 # Figure out whether the compiler supports "-ffunction-sections -fdata-sections", 251 # Check for -ffunction-sections -fdata-sections 252 AC_MSG_CHECKING([for gcc that supports -ffunction-sections -fdata-sections]) 253 CFLAGS='-Werror -ffunction-sections -fdata-sections' 262 SECTION_FLAGS='-ffunction-sections -fdata-sections'
|
/netbsd-src/external/apache2/llvm/ |
H A D | Makefile.inc | 54 CXXFLAGS+= -ffunction-sections -fdata-sections
|