Searched refs:ios (Results 1 - 25 of 55) sorted by relevance

123

/freebsd-12-stable/contrib/libstdc++/src/
H A Dios-inst.cc35 #include <ios>
H A Dios_failure.cc35 #include <ios>
H A Dstreambuf-inst.cc35 #include <ios>
H A Dios_locale.cc35 #include <ios>
H A Dfunctexcept.cc34 #include <ios>
/freebsd-12-stable/contrib/unbound/contrib/ios/
H A Dinstall_openssl.sh20 if ! cp ../contrib/ios/15-ios.conf Configurations/; then
21 echo "Failed to copy OpenSSL ios config"
28 if ! patch -u -p0 < ../contrib/ios/openssl.patch; then
/freebsd-12-stable/sys/cam/
H A Dcam_iosched.c305 cam_iosched_limiter_init(struct iop_stats *ios) argument
307 int lim = ios->limiter;
314 return limsw[lim].l_init(ios);
320 cam_iosched_limiter_tick(struct iop_stats *ios) argument
322 int lim = ios->limiter;
329 return limsw[lim].l_tick(ios);
335 cam_iosched_limiter_iop(struct iop_stats *ios, struct bio *bp) argument
337 int lim = ios->limiter;
344 return limsw[lim].l_iop(ios, bp);
350 cam_iosched_limiter_caniop(struct iop_stats *ios, struc argument
365 cam_iosched_limiter_iodone(struct iop_stats *ios, struct bio *bp) argument
384 cam_iosched_qd_iop(struct iop_stats *ios, struct bio *bp) argument
394 cam_iosched_qd_caniop(struct iop_stats *ios, struct bio *bp) argument
404 cam_iosched_qd_iodone(struct iop_stats *ios, struct bio *bp) argument
414 cam_iosched_iops_init(struct iop_stats *ios) argument
426 cam_iosched_iops_tick(struct iop_stats *ios) argument
457 cam_iosched_iops_caniop(struct iop_stats *ios, struct bio *bp) argument
471 cam_iosched_iops_iop(struct iop_stats *ios, struct bio *bp) argument
483 cam_iosched_bw_init(struct iop_stats *ios) argument
493 cam_iosched_bw_tick(struct iop_stats *ios) argument
516 cam_iosched_bw_caniop(struct iop_stats *ios, struct bio *bp) argument
543 cam_iosched_bw_iop(struct iop_stats *ios, struct bio *bp) argument
776 cam_iosched_iop_stats_init(struct cam_iosched_softc *isc, struct iop_stats *ios) argument
798 struct iop_stats *ios; local
936 cam_iosched_iop_stats_sysctl_init(struct cam_iosched_softc *isc, struct iop_stats *ios, char *name) argument
1006 cam_iosched_iop_stats_fini(struct iop_stats *ios) argument
[all...]
/freebsd-12-stable/sys/dev/mmc/host/
H A Ddwmmc_rockchip.c64 static int dwmmc_rockchip_update_ios(struct dwmmc_softc *sc, struct mmc_ios *ios);
109 dwmmc_rockchip_update_ios(struct dwmmc_softc *sc, struct mmc_ios *ios) argument
114 if (ios->clock && ios->clock != sc->bus_hz) {
115 sc->bus_hz = clock = ios->clock;
H A Ddwmmc.c832 struct mmc_ios *ios; local
837 ios = &sc->host.ios;
840 ios->clock, ios->bus_width);
842 if (ios->bus_width == bus_width_8)
844 else if (ios->bus_width == bus_width_4)
856 if (ios->timing == bus_timing_uhs_ddr50 ||
857 ios->timing == bus_timing_mmc_ddr52 ||
858 ios
[all...]
H A Ddwmmc_var.h68 int (*update_ios)(struct dwmmc_softc *sc, struct mmc_ios *ios);
/freebsd-12-stable/contrib/libstdc++/include/backward/
H A Diostream.h37 using std::ios;
/freebsd-12-stable/sys/dev/sdhci/
H A Dsdhci.c1234 const struct mmc_ios *ios; local
1241 ios = &slot->host.ios;
1245 if (ios->clock > SD_SDR50_MAX) {
1246 if (ios->timing == bus_timing_mmc_hs400 ||
1247 ios->timing == bus_timing_mmc_hs400es)
1252 else if (ios->clock > SD_SDR25_MAX)
1254 else if (ios->clock > SD_SDR12_MAX) {
1255 if (ios->timing == bus_timing_uhs_ddr50 ||
1256 ios
1270 struct mmc_ios *ios = &slot->host.ios; local
1367 const struct mmc_ios *ios = &slot->host.ios; local
[all...]
H A Dsdhci_xenon.c204 sdhci_xenon_phy_init(device_t brdev, struct mmc_ios *ios) argument
213 switch (ios->timing) {
250 sdhci_xenon_phy_set(device_t brdev, struct mmc_ios *ios) argument
270 if (ios->timing == bus_timing_normal)
271 return (sdhci_xenon_phy_init(brdev, ios));
294 switch (ios->timing) {
317 if (ios->timing == bus_timing_mmc_hs400)
332 return (sdhci_xenon_phy_init(brdev, ios));
340 struct mmc_ios *ios; local
350 ios
[all...]
/freebsd-12-stable/contrib/libstdc++/include/precompiled/
H A Dstdc++.h63 #include <ios>
/freebsd-12-stable/sys/contrib/libsodium/dist-build/
H A DMakefile.am12 ios.sh \
/freebsd-12-stable/usr.sbin/ppp/
H A Dtty.c103 struct termios ios; /* To be able to reset from raw mode */ member in struct:ttydevice
437 struct termios ios; local
451 tcgetattr(p->fd, &ios);
452 cfmakeraw(&ios);
454 ios.c_cflag |= CLOCAL | CCTS_OFLOW | CRTS_IFLOW;
456 ios.c_cflag |= CLOCAL;
459 ios.c_cflag |= HUPCL;
461 if (tcsetattr(p->fd, TCSANOW, &ios) == -1)
504 if (!physical_IsSync(p) && tcsetattr(p->fd, TCSAFLUSH, &dev->ios) == -1)
536 struct termios ios; local
680 struct termios ios; local
[all...]
/freebsd-12-stable/contrib/llvm-project/libcxx/src/
H A Dstrstream.cpp236 bool pos_in = (__which & ios::in) != 0;
237 bool pos_out = (__which & ios::out) != 0;
241 case ios::beg:
242 case ios::end:
246 case ios::cur:
261 case ios::beg:
264 case ios::cur:
267 case ios::end:
296 bool pos_in = (__which & ios::in) != 0;
297 bool pos_out = (__which & ios
[all...]
/freebsd-12-stable/sys/arm/allwinner/
H A Daw_mmc.c264 memcpy(&cts->proto_specific.mmc.ios, &sc->aw_host.ios, sizeof(struct mmc_ios));
311 struct mmc_ios *ios; local
315 ios = &sc->aw_host.ios;
318 new_ios = &cts->ios;
322 ios->clock = new_ios->clock;
323 device_printf(sc->aw_dev, "Clock => %d\n", ios->clock);
326 ios->vdd = new_ios->vdd;
327 device_printf(sc->aw_dev, "VDD => %d\n", ios
1394 struct mmc_ios *ios; local
[all...]
/freebsd-12-stable/contrib/libstdc++/config/io/
H A Dbasic_file_stdio.h46 #include <ios>
/freebsd-12-stable/sys/arm/amlogic/aml8726/
H A Daml8726_mmc.c216 struct mmc_ios *ios = &sc->host.ios; local
296 bus_width = (ios->bus_width == bus_width_4) ? 4 : 1;
848 struct mmc_ios *ios = &sc->host.ios; local
858 switch (ios->bus_width) {
869 cfgr |= aml8726_mmc_div(sc, ios->clock) <<
876 switch (ios->power_mode) {
884 if ((sc->voltages[i] & (1 << ios->vdd)) != 0)
939 *(int *)result = sc->host.ios
[all...]
H A Daml8726_sdxc-m8.c1032 struct mmc_ios *ios = &sc->host.ios; local
1046 switch (ios->bus_width) {
1082 divisor = sc->ref_freq / ios->clock - 1;
1085 if ((sc->ref_freq / (divisor + 1)) > ios->clock)
1116 (1 << ios->vdd)) != 0 &&
1131 switch (ios->power_mode) {
1139 if ((sc->voltages[i] & (1 << ios->vdd)) != 0)
1219 *(int *)result = sc->host.ios.bus_mode;
1222 *(int *)result = sc->host.ios
[all...]
/freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/
H A DextractExternal.cpp70 ifstream raw(fileName, ios::binary | ios::in);
73 raw.seekg(0, ios::end);
78 raw.seekg(0, ios::beg);
244 f.seekg(0, ios::end);
276 f.seekg(e.nAux * 18, ios::cur);
300 in.seekg(0, ios::end);
332 ofstream out(fileName, ios::trunc | ios::out | ios
[all...]
/freebsd-12-stable/sys/mips/ingenic/
H A Djz4780_mmc.c748 *(int *)result = sc->sc_host.ios.bus_mode;
751 *(int *)result = sc->sc_host.ios.bus_width;
754 *(int *)result = sc->sc_host.ios.chip_select;
757 *(int *)result = sc->sc_host.ios.clock;
775 *(int *)result = sc->sc_host.ios.power_mode;
781 *(int *)result = sc->sc_host.ios.vdd;
784 *result = sc->sc_host.ios.vccq;
790 *(int *)result = sc->sc_host.ios.timing;
814 sc->sc_host.ios.bus_mode = value;
817 sc->sc_host.ios
902 struct mmc_ios *ios; local
[all...]
/freebsd-12-stable/crypto/openssl/crypto/perlasm/
H A Darm-xlate.pl32 if ($flavour =~ /ios/) { ".private_extern\t".join(',',@_); }
59 /ios/ && do { $name = "_$name";
/freebsd-12-stable/sys/cam/mmc/
H A Dmmc_xpt.c404 printf("XPT info: CLK %04X, ...\n", cts.proto_specific.mmc.ios.clock);
583 if (cts->ios.power_mode != power_off) {
585 cts->ios.power_mode = power_off;
597 cts->ios.vdd = hv;
598 cts->ios.bus_mode = opendrain;
599 cts->ios.chip_select = cs_dontcare;
600 cts->ios.power_mode = power_up;
601 cts->ios.bus_width = bus_width_1;
602 cts->ios.clock = 0;
609 cts->ios
[all...]

Completed in 328 milliseconds

123