Searched refs:tsec (Results 1 - 14 of 14) sorted by relevance

/freebsd-11-stable/share/man/man4/man4.powerpc/
H A DMakefile17 tsec.4
/freebsd-11-stable/sys/modules/tsec/
H A DMakefile1 # $FreeBSD: stable/11/sys/modules/tsec/Makefile 319182 2017-05-30 04:11:12Z ngie $
5 .PATH: ${SYSDIR}/dev/tsec
/freebsd-11-stable/usr.sbin/rtsold/
H A Ddump.c146 time_t tsec; local
149 tsec = total->tv_sec;
150 tsec += total->tv_nsec / 1000 / 1000000;
151 tsec -= now.tv_sec;
152 tsec -= now.tv_nsec / 1000 / 1000000;
154 days = tsec / 3600 / 24;
155 hours = (tsec / 3600) % 24;
156 mins = (tsec / 60) % 60;
157 secs = tsec % 60;
/freebsd-11-stable/sbin/fdisk_pc98/
H A Dfdisk.c467 int tsec,tcyl,thd; local
470 tsec = partp->dp_ssect;
473 Decimal("beginning sector", tsec, tmp);
475 partp->dp_ssect = tsec;
483 tsec = partp->dp_esect;
486 Decimal("ending sector", tsec, tmp);
488 partp->dp_esect = tsec;
/freebsd-11-stable/sbin/fdisk/
H A Dfdisk.c581 int tsec,tcyl,thd; local
584 tsec = DPSECT(partp->dp_ssect);
587 Decimal("beginning sector", tsec, tmp, NO_TRACK_SECTORS);
589 partp->dp_ssect = DOSSECT(tsec,tcyl);
594 tsec = DPSECT(partp->dp_esect);
597 Decimal("ending sector", tsec, tmp, NO_TRACK_SECTORS);
599 partp->dp_esect = DOSSECT(tsec,tcyl);
/freebsd-11-stable/sys/dev/tsec/
H A Dif_tsec_fdt.c26 * From: FreeBSD: head/sys/dev/tsec/if_tsec_ocp.c 188712 2009-02-17 14:59:47Z raj
33 __FBSDID("$FreeBSD: stable/11/sys/dev/tsec/if_tsec_fdt.c 310444 2016-12-23 03:23:14Z jhibbits $");
62 #include <dev/tsec/if_tsec.h>
63 #include <dev/tsec/if_tsecreg.h>
98 "tsec",
103 DRIVER_MODULE(tsec, simplebus, tsec_fdt_driver, tsec_devclass, 0, 0);
H A Dif_tsec.c67 #include <dev/tsec/if_tsec.h>
68 #include <dev/tsec/if_tsecreg.h>
111 DRIVER_MODULE(miibus, tsec, miibus_driver, miibus_devclass, 0, 0);
112 MODULE_DEPEND(tsec, ether, 1, 1, 1);
113 MODULE_DEPEND(tsec, miibus, 1, 1, 1);
129 mtx_init(&tsec_phy_mtx, "tsec mii", NULL, MTX_DEF);
1060 printf("tsec: bus_dmamap_load_mbuf_sg() returned: %d!\n",
1713 * dev.tsec.<unit>.int_coal.rx_time
1714 * dev.tsec.<unit>.int_coal.rx_count
1715 * dev.tsec
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Delf32-ppc.c5279 asection *tsec;
5324 asection *tsec;
5371 tsec = bfd_abs_section_ptr;
5373 tsec = bfd_com_section_ptr;
5375 tsec = bfd_section_from_elf_index (abfd, isym->st_shndx);
5393 tsec = NULL;
5404 tsec = htab->glink;
5409 tsec = htab->plt;
5414 if (tsec != NULL)
5419 tsec
5266 asection *tsec; member in struct:one_fixup
5311 asection *tsec; local
[all...]
H A Delf64-alpha.c2903 asection *tsec;
3061 if (info->sec == info->tsec)
3070 (info->abfd, info->tsec, (PTR) NULL,
3075 tsec_relend = tsec_relocs + info->tsec->reloc_count;
3080 ofs = (symval - info->tsec->output_section->vma
3081 - info->tsec->output_offset);
3099 if (info->link_info->hash->creator != info->tsec->owner->xvec
3100 || info->gotobj != alpha_elf_tdata (info->tsec->owner)->gotobj)
3728 info.tsec = bfd_abs_section_ptr;
3737 info.tsec
2894 asection *tsec; member in struct:alpha_relax_info
[all...]
H A Delfxx-ia64.c900 asection *tsec;
960 asection *tsec;
1029 tsec = bfd_abs_section_ptr;
1031 tsec = bfd_com_section_ptr;
1033 tsec = bfd_com_section_ptr;
1035 tsec = bfd_section_from_elf_index (abfd, isym->st_shndx);
1065 tsec = ia64_info->plt_sec;
1081 tsec = h->root.u.def.section;
1088 if (tsec->sec_info_type == ELF_INFO_TYPE_MERGE)
1109 toff = _bfd_merged_section_offset (abfd, &tsec,
897 asection *tsec; member in struct:one_fixup
957 asection *tsec; local
[all...]
H A Dxcofflink.c828 asection *tsec;
832 tsec = bfd_make_section_anyway_with_flags (abfd, ".tc", flags);
833 if (tsec == NULL)
836 xcoff_hash_table (info)->toc_section = tsec;
837 tsec->alignment_power = 2;
4895 asection *tsec;
4980 tsec = coff_section_from_bfd_index (output_bfd,
4988 irel->r_symndx = tsec->output_section->target_index;
4995 if (strcmp (tsec->output_section->name, ".text") == 0)
4997 else if (strcmp (tsec
824 asection *tsec; local
4889 asection *tsec; local
[all...]
H A Delflink.c1001 asection *ntsec, *tsec;
1009 tsec = oldsec;
1018 tsec = sec;
1025 tbfd, tsec, ntbfd, ntsec, h->root.root.string);
1033 tbfd, tsec, ntbfd, h->root.root.string);
998 asection *ntsec, *tsec; local
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_main.c5887 time_t tsec; local
5890 tsec = fnvlist_lookup_uint64(records[i],
5892 (void) localtime_r(&tsec, &t);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zdb/
H A Dzdb.c1293 time_t tsec; local
1361 tsec = time;
1362 (void) localtime_r(&tsec, &t);

Completed in 208 milliseconds