Home
last modified time | relevance | path

Searched refs:spd (Results 1 – 25 of 44) sorted by relevance

12

/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dstringpool.cc246 static GTY(()) struct string_pool_data * spd; variable
253 spd = ggc_alloc<string_pool_data> (); in gt_pch_save_stringpool()
254 spd->nslots = ident_hash->nslots; in gt_pch_save_stringpool()
255 spd->nelements = ident_hash->nelements; in gt_pch_save_stringpool()
256 spd->entries = ggc_vec_alloc<ht_identifier_ptr> (spd->nslots); in gt_pch_save_stringpool()
257 memcpy (spd->entries, ident_hash->entries, in gt_pch_save_stringpool()
258 spd->nslots * sizeof (spd->entries[0])); in gt_pch_save_stringpool()
275 ht_load (ident_hash, spd->entries, spd->nslots, spd->nelements, false); in gt_pch_restore_stringpool()
276 spd = NULL; in gt_pch_restore_stringpool()
H A Dipa-inline.cc413 int64_t spd = opt_for_fn (n->decl, param_inline_heuristics_hint_percent); in inline_insns_single() local
414 spd = spd * spd; in inline_insns_single()
415 if (spd > 1000000) in inline_insns_single()
416 spd = 1000000; in inline_insns_single()
417 return opt_for_fn (n->decl, param_max_inline_insns_single) * spd / 100; in inline_insns_single()
434 int64_t spd = opt_for_fn (n->decl, param_inline_heuristics_hint_percent); in inline_insns_auto() local
435 spd = spd * spd; in inline_insns_auto()
436 if (spd > 1000000) in inline_insns_auto()
437 spd = 1000000; in inline_insns_auto()
438 return max_inline_insns_auto * spd / 100; in inline_insns_auto()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dstringpool.c240 static GTY(()) struct string_pool_data * spd; variable
247 spd = ggc_alloc<string_pool_data> (); in gt_pch_save_stringpool()
248 spd->nslots = ident_hash->nslots; in gt_pch_save_stringpool()
249 spd->nelements = ident_hash->nelements; in gt_pch_save_stringpool()
250 spd->entries = ggc_vec_alloc<ht_identifier_ptr> (spd->nslots); in gt_pch_save_stringpool()
251 memcpy (spd->entries, ident_hash->entries, in gt_pch_save_stringpool()
252 spd->nslots * sizeof (spd->entries[0])); in gt_pch_save_stringpool()
269 ht_load (ident_hash, spd->entries, spd->nslots, spd->nelements, false); in gt_pch_restore_stringpool()
270 spd = NULL; in gt_pch_restore_stringpool()
/netbsd-src/usr.bin/tip/aculib/
H A Ddf.c71 speed_t volatile spd; in df_dialer() local
74 spd = 0; in df_dialer()
92 spd = cfgetospeed(&cntrl); in df_dialer()
93 if (spd != B1200) { /* must dial at 1200 baud */ in df_dialer()
111 if (df03 && spd != B1200) { in df_dialer()
112 (void)cfsetospeed(&cntrl, spd); in df_dialer()
113 (void)cfsetispeed(&cntrl, spd); in df_dialer()
/netbsd-src/sys/dev/pci/
H A Doptiide.c175 int drive, spd, s; in opti_setup_channel() local
192 spd = (int) opti_read_config(chp, OPTI_REG_STRAP); in opti_setup_channel()
193 spd &= OPTI_STRAP_PCI_SPEED_MASK; in opti_setup_channel()
224 (opti_tim_as[spd][mode[0]] != opti_tim_as[spd][mode[1]])) { in opti_setup_channel()
230 int d = (opti_tim_as[spd][mode[0]] > in opti_setup_channel()
231 opti_tim_as[spd][mode[1]]) ? 0 : 1; in opti_setup_channel()
248 rv = opti_tim_as[spd][m] << OPTI_MISC_ADDR_SETUP_SHIFT; in opti_setup_channel()
253 rv = opti_tim_cp[spd][m] << OPTI_PULSE_WIDTH_SHIFT; in opti_setup_channel()
254 rv |= opti_tim_rt[spd][m] << OPTI_RECOVERY_TIME_SHIFT; in opti_setup_channel()
/netbsd-src/sys/arch/playstation2/conf/
H A Dfiles.playstation264 define spd {}
65 device spd: spd
66 attach spd at sbus
67 file arch/playstation2/dev/spd.c
72 attach wdc at spd with wdc_spd
76 attach smap at spd
H A Dconfig.playstation245 spd* at sbus? # HDD and Ethernet I/F for PS2
48 wdc* at spd?
49 smap* at spd?
/netbsd-src/sys/dev/ieee1394/
H A Dfwmem.c320 fwmem_read_quad(struct fw_device *fwdev, void * sc, uint8_t spd, in fwmem_read_quad() argument
327 xfer = fwmem_xfer_req(fwdev, (void *)sc, spd, 0, 4, hand); in fwmem_read_quad()
351 fwmem_write_quad(struct fw_device *fwdev, void *sc, uint8_t spd, in fwmem_write_quad() argument
358 xfer = fwmem_xfer_req(fwdev, sc, spd, 0, 0, hand); in fwmem_write_quad()
382 fwmem_read_block(struct fw_device *fwdev, void *sc, uint8_t spd, in fwmem_read_block() argument
389 xfer = fwmem_xfer_req(fwdev, sc, spd, 0, roundup2(len, 4), hand); in fwmem_read_block()
414 fwmem_write_block(struct fw_device *fwdev, void *sc, uint8_t spd, in fwmem_write_block() argument
421 xfer = fwmem_xfer_req(fwdev, sc, spd, len, 0, hand); in fwmem_write_block()
447 fwmem_xfer_req(struct fw_device *fwdev, void *sc, int spd, int slen, int rlen, in fwmem_xfer_req() argument
458 if (spd < 0) in fwmem_xfer_req()
[all …]
H A Dfwohcireg.h355 uint32_t spd:16, /* XXX include reserved field */ member
363 spd:16; /* XXX include reserved fields */
371 spd:3,
379 spd:3,
389 spd:3,
397 spd:3,
H A Dfirewirereg.h256 uint8_t spd; member
270 uint8_t spd; member
H A Dif_fwip.c403 xfer->send.spd = tx_speed; in fwip_init()
603 xfer->send.spd = 0; in fwip_async_output()
650 xfer->send.spd = uimin(destfw->sspd, fc->speed); in fwip_async_output()
/netbsd-src/sys/external/gpl2/dts/dist/include/dt-bindings/usb/
H A Dpd.h210 #define VDO_UFP(ver, cap, conn, vcpwr, vcr, vbr, alt, spd) \ argument
213 | ((spd) & 0x7))
348 #define VDO_PCABLE(hw, fw, ver, conn, lat, term, vbm, cur, spd) \ argument
351 | ((vbm) & 0x3) << 9 | ((cur) & 0x3) << 5 | ((spd) & 0x7))
352 #define VDO_ACABLE1(hw, fw, ver, conn, lat, term, vbm, sbu, sbut, cur, vbt, sopp, spd) \ argument
356 | (vbt) << 4 | (sopp) << 3 | ((spd) & 0x7))
/netbsd-src/games/mille/
H A Dcomp.c408 CARD bat, spd, card; in onecard() local
411 spd = pp->speed; in onecard()
413 if (pp->can_go || ((is_repair(bat) || bat == C_STOP || spd == C_LIMIT) && in onecard()
426 if (spd == C_LIMIT) in onecard()
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/freescale/
H A Dfsl-lx2160a-cex7.dtsi74 compatible = "atmel,spd";
79 compatible = "atmel,spd";
/netbsd-src/sys/arch/macppc/dev/
H A Dobio.c554 obio_get_freq(void *cookie, void *spd) in obio_get_freq() argument
559 freq = spd; in obio_get_freq()
567 obio_set_freq(void *cookie, void *spd) in obio_set_freq() argument
572 freq = spd; in obio_set_freq()
/netbsd-src/usr.bin/tip/
H A Dtip.c558 ttysetup(speed_t spd) in ttysetup() argument
563 (void)cfsetospeed(&cntrl, spd); in ttysetup()
564 (void)cfsetispeed(&cntrl, spd); in ttysetup()
/netbsd-src/crypto/external/bsd/heimdal/dist/kdc/
H A Dkrb5tgs.c127 KRB5SignedPathData spd; in _kdc_add_KRB5SignedPath() local
129 spd.client = rk_UNCONST(client); in _kdc_add_KRB5SignedPath()
130 spd.authtime = tkt->authtime; in _kdc_add_KRB5SignedPath()
131 spd.delegated = principals; in _kdc_add_KRB5SignedPath()
132 spd.method_data = NULL; in _kdc_add_KRB5SignedPath()
135 &spd, &size, ret); in _kdc_add_KRB5SignedPath()
206 KRB5SignedPathData spd; in check_KRB5SignedPath() local
215 spd.client = cp; in check_KRB5SignedPath()
216 spd.authtime = tkt->authtime; in check_KRB5SignedPath()
217 spd.delegated = sp.delegated; in check_KRB5SignedPath()
[all …]
/netbsd-src/crypto/dist/ipsec-tools/rpm/
H A Dipsec-tools.FC117 IPSEC_SPD=/etc/sysconfig/ipsec.spd
/netbsd-src/usr.bin/scmdctl/
H A Dscmdctl.c101 ttysetup(int fd, speed_t spd) in ttysetup() argument
106 (void)cfsetospeed(&cntrl, spd); in ttysetup()
107 (void)cfsetispeed(&cntrl, spd); in ttysetup()
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/
H A Damdgpu_dce_stream_encoder.c791 dce110_update_hdmi_info_packet(enc110, 2, &info_frame->spd); in dce110_stream_encoder_update_hdmi_info_packets()
804 dce110_update_hdmi_info_packet(enc110, 3, &info_frame->spd); in dce110_stream_encoder_update_hdmi_info_packets()
868 if (info_frame->spd.valid) in dce110_stream_encoder_update_dp_info_packets()
872 &info_frame->spd); in dce110_stream_encoder_update_dp_info_packets()
884 REG_UPDATE(DP_SEC_CNTL, DP_SEC_GSP2_ENABLE, info_frame->spd.valid); in dce110_stream_encoder_update_dp_info_packets()
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn10/
H A Damdgpu_dcn10_stream_encoder.c665 enc1_update_hdmi_info_packet(enc1, 3, &info_frame->spd); in enc1_stream_encoder_update_hdmi_info_packets()
723 if (info_frame->spd.valid) in enc1_stream_encoder_update_dp_info_packets()
727 &info_frame->spd); in enc1_stream_encoder_update_dp_info_packets()
743 REG_UPDATE(DP_SEC_CNTL, DP_SEC_GSP2_ENABLE, info_frame->spd.valid); in enc1_stream_encoder_update_dp_info_packets()
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/hw/
H A Dstream_encoder.h83 struct dc_info_packet spd; member
/netbsd-src/lib/libedit/
H A Dtty.c613 speed_t spd; in tty__getspeed() local
615 if ((spd = cfgetispeed(td)) == 0) in tty__getspeed()
616 spd = cfgetospeed(td); in tty__getspeed()
617 return spd; in tty__getspeed()
/netbsd-src/sys/arch/playstation2/dev/
H A Dspd.c66 CFATTACH_DECL_NEW(spd, 0,
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/display/
H A Dintel_hdmi.c772 struct hdmi_spd_infoframe *frame = &crtc_state->infoframes.spd.spd; in intel_hdmi_compute_spd_infoframe()
920 &crtc_state->infoframes.spd); in g4x_set_infoframes()
1093 &crtc_state->infoframes.spd); in ibx_set_infoframes()
1142 &crtc_state->infoframes.spd); in cpt_set_infoframes()
1200 &crtc_state->infoframes.spd); in vlv_set_infoframes()
1240 &crtc_state->infoframes.spd); in hsw_set_infoframes()
1859 &pipe_config->infoframes.spd); in intel_hdmi_get_config()

12