/freebsd/sys/contrib/zlib/ |
H A D | inffast.c | 64 unsigned long hold; /* local strm->hold */ in inflate_fast() local 91 hold = state->hold; in inflate_fast() 102 hold += (unsigned long)(*in++) << bits; in inflate_fast() 104 hold += (unsigned long)(*in++) << bits; in inflate_fast() 107 here = lcode + (hold & lmask); in inflate_fast() 110 hold >>= op; in inflate_fast() 124 hold += (unsigned long)(*in++) << bits; in inflate_fast() 127 len += (unsigned)hold & ((1U << op) - 1); in inflate_fast() 128 hold >>= op; in inflate_fast() 133 hold += (unsigned long)(*in++) << bits; in inflate_fast() [all …]
|
H A D | inflate.c | 121 state->hold = 0; in inflateResetKeep() 231 state->hold = 0; in inflatePrime() 237 state->hold += (unsigned)value << state->bits; in inflatePrime() 450 hold = state->hold; \ 461 state->hold = hold; \ 468 hold = 0; \ 478 hold += (unsigned long)(*next++) << bits; \ 492 ((unsigned)hold & ((1U << (n)) - 1)) 497 hold >>= (n); \ 504 hold >>= bits & 7; \ [all …]
|
H A D | infback.c | 126 hold = state->hold; \ 137 state->hold = hold; \ 144 hold = 0; \ 168 hold += (unsigned long)(*next++) << bits; \ 183 ((unsigned)hold & ((1U << (n)) - 1)) 188 hold >>= (n); \ 195 hold >>= bits & 7; \ 248 unsigned long hold; /* bit buffer */ in inflateBack() local 271 hold = 0; in inflateBack() 317 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) { in inflateBack() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | max98504.txt | 20 applied during the "attack hold" and "timed hold" phase, the value must be 22 - maxim,brownout-attack-hold-ms - the brownout attack hold phase time in ms, 24 - maxim,brownout-timed-hold-ms - the brownout timed hold phase time in ms,
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/ |
H A D | send_holds.ksh | 82 typeset hold=$2 84 log_note "checking $dataset for $hold" 85 eval "zfs holds $dataset |grep -q $hold" 125 log_must zfs hold hold1-1 $init_snap 126 log_must zfs hold hold1-2 $init_snap 145 log_must zfs hold hold2-1 $inc_snap 171 log_must zfs hold hold3-1 $inc_snap3
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_destroy/ |
H A D | zfs_destroy_012_pos.ksh | 40 log_must zfs hold zfstest1 $snap 45 log_must zfs hold zfstest2 $snap 46 log_mustnot zfs hold zfstest1 $snap 47 log_mustnot zfs hold zfstest2 $snap
|
/freebsd/sys/contrib/device-tree/src/arc/ |
H A D | abilis_tb100_dvk.dts | 37 i2c-sda-hold-time-ns = <432>; 40 i2c-sda-hold-time-ns = <432>; 43 i2c-sda-hold-time-ns = <432>; 46 i2c-sda-hold-time-ns = <432>; 49 i2c-sda-hold-time-ns = <432>;
|
H A D | abilis_tb101_dvk.dts | 37 i2c-sda-hold-time-ns = <432>; 40 i2c-sda-hold-time-ns = <432>; 43 i2c-sda-hold-time-ns = <432>; 46 i2c-sda-hold-time-ns = <432>; 49 i2c-sda-hold-time-ns = <432>;
|
/freebsd/sys/contrib/device-tree/Bindings/power/reset/ |
H A D | msm-poweroff.txt | 3 A power supply hold (ps-hold) bit is set to power the msm chipsets. 10 -reg: Specifies the physical address of the ps-hold register
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/synctask_core/ |
H A D | tst.list_holds.ksh | 56 log_must zfs hold $TESTHOLD $SNAP 68 log_must zfs hold $TESTHOLD1 $SNAP 69 log_must zfs hold $TESTHOLD2 $SNAP 70 log_must zfs hold $TESTHOLD3 $SNAP
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_write_add_filter_b64encode.c | 51 unsigned char hold[LBYTES]; member 225 state->hold[state->hold_len++] = *p++; in archive_filter_b64encode_write() 230 la_b64_encode(&state->encoded_buff, state->hold, LBYTES); in archive_filter_b64encode_write() 239 memcpy(state->hold, p, length); in archive_filter_b64encode_write() 265 la_b64_encode(&state->encoded_buff, state->hold, state->hold_len); in archive_filter_b64encode_close()
|
H A D | archive_write_add_filter_uuencode.c | 51 unsigned char hold[LBYTES]; member 216 state->hold[state->hold_len++] = *p++; in archive_filter_uuencode_write() 221 uu_encode(&state->encoded_buff, state->hold, LBYTES); in archive_filter_uuencode_write() 230 memcpy(state->hold, p, length); in archive_filter_uuencode_write() 256 uu_encode(&state->encoded_buff, state->hold, state->hold_len); in archive_filter_uuencode_close()
|
/freebsd/sys/powerpc/mpc85xx/ |
H A D | fsl_sata.c | 264 union ccb *hold[FSL_SATA_MAX_SLOTS]; member 1328 ch->hold[slot->slot] = ccb; in fsl_sata_end_transaction() 1376 if (ch->hold[i]) in fsl_sata_issue_recovery() 1385 if (ch->hold[i] == NULL) in fsl_sata_issue_recovery() 1387 ch->hold[i]->ccb_h.status &= ~CAM_STATUS_MASK; in fsl_sata_issue_recovery() 1388 ch->hold[i]->ccb_h.status |= CAM_RESRC_UNAVAIL; in fsl_sata_issue_recovery() 1389 fsl_sata_done(ch, ch->hold[i]); in fsl_sata_issue_recovery() 1390 ch->hold[i] = NULL; in fsl_sata_issue_recovery() 1396 ccb->ccb_h = ch->hold[i]->ccb_h; /* Reuse old header. */ in fsl_sata_issue_recovery() 1429 csio->data_ptr = (void *)&ch->hold[i]->csio.sense_data; in fsl_sata_issue_recovery() [all …]
|
/freebsd/sys/dev/iicbus/controller/cadence/ |
H A D | cdnc_i2c.c | 96 int hold; member 239 sc->hold = 0; in cdnc_i2c_init_hw() 263 sc->hold = 0; in cdnc_i2c_errs() 349 sc->hold = 1; in cdnc_i2c_xfer_rd() 360 sc->hold = 0; in cdnc_i2c_xfer_rd() 423 sc->hold = 1; in cdnc_i2c_xfer_wr() 438 sc->hold = 0; in cdnc_i2c_xfer_wr() 481 __func__, i, sc->hold, msgs[i].slave, msgs[i].flags, in cdnc_i2c_transfer() 484 if (!sc->hold && (msgs[i].flags & IIC_M_NOSTART)) in cdnc_i2c_transfer()
|
/freebsd/sys/dev/siis/ |
H A D | siis.c | 1335 ch->hold[slot->slot] = ccb; in siis_end_transaction() 1376 if (ch->hold[i]) in siis_issue_recovery() 1387 if (ch->hold[i] == NULL) in siis_issue_recovery() 1389 ch->hold[i]->ccb_h.status &= ~CAM_STATUS_MASK; in siis_issue_recovery() 1390 ch->hold[i]->ccb_h.status |= CAM_RESRC_UNAVAIL; in siis_issue_recovery() 1391 xpt_done(ch->hold[i]); in siis_issue_recovery() 1392 ch->hold[i] = NULL; in siis_issue_recovery() 1398 xpt_setup_ccb(&ccb->ccb_h, ch->hold[i]->ccb_h.path, in siis_issue_recovery() 1399 ch->hold[i]->ccb_h.pinfo.priority); in siis_issue_recovery() 1400 if (ch->hold[i]->ccb_h.func_code == XPT_ATA_IO) { in siis_issue_recovery() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/bus/ |
H A D | qcom,ebi2.txt | 82 - qcom,xmem-write-hold-cycles: write hold cycles, these are extra cycles 84 WE is asserted until CS is asserted. With a hold of 1 (value = 0), the CS 96 - qcom,xmem-address-hold-enable: this is a boolean property stating that we 97 shall hold the address for an extra cycle to meet hold time requirements 102 - qcom,xmem-read-hold-cycles: the length in cycles of the first segment of a 132 qcom,xmem-write-hold-cycles = <3>;
|
/freebsd/contrib/dialog/samples/copifuncs/ |
H A D | copi.ifmcfg4 | 17 # means really hold "hold" type packets and files: do not send them 18 # if our system initiated the session, "NoHold" means send "hold"
|
/freebsd/sys/contrib/device-tree/Bindings/memory-controllers/ |
H A D | ti-aemif.txt | 112 - ti,cs-read-hold-ns: read hold width, ns 129 - ti,cs-write-hold-ns: write hold width, ns 166 ti,cs-read-hold-ns = <7>; 169 ti,cs-write-hold-ns = <7>; 195 ti,cs-read-hold-ns = <8>; 198 ti,cs-write-hold-ns = <7>;
|
/freebsd/sbin/ping/ |
H A D | ping.c | 217 int almost_done, ch, df, hold, i, icmp_len, mib[4], preload; in ping() local 634 hold = 1; in ping() 636 (void)setsockopt(ssend, SOL_SOCKET, SO_DEBUG, (char *)&hold, in ping() 637 sizeof(hold)); in ping() 638 (void)setsockopt(srecv, SOL_SOCKET, SO_DEBUG, (char *)&hold, in ping() 639 sizeof(hold)); in ping() 642 (void)setsockopt(ssend, SOL_SOCKET, SO_DONTROUTE, (char *)&hold, in ping() 643 sizeof(hold)); in ping() 690 setsockopt(ssend, IPPROTO_IP, IP_HDRINCL, &hold, sizeof(hold)); in ping() 807 hold = IP_MAXPACKET + 128; in ping() [all …]
|
/freebsd/sys/dev/mvs/ |
H A D | mvs.c | 1729 ch->hold[slot->slot] = ccb; in mvs_end_transaction() 1779 if (ch->hold[i]) in mvs_issue_recovery() 1788 if (ch->hold[i] == NULL) in mvs_issue_recovery() 1790 ch->hold[i]->ccb_h.status &= ~CAM_STATUS_MASK; in mvs_issue_recovery() 1791 ch->hold[i]->ccb_h.status |= CAM_RESRC_UNAVAIL; in mvs_issue_recovery() 1792 xpt_done(ch->hold[i]); in mvs_issue_recovery() 1793 ch->hold[i] = NULL; in mvs_issue_recovery() 1799 xpt_setup_ccb(&ccb->ccb_h, ch->hold[i]->ccb_h.path, in mvs_issue_recovery() 1800 ch->hold[i]->ccb_h.pinfo.priority); in mvs_issue_recovery() 1801 if (ch->hold[i]->ccb_h.func_code == XPT_ATA_IO) { in mvs_issue_recovery() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/i2c/ |
H A D | i2c-at91.txt | 27 - i2c-sda-hold-time-ns: TWD hold time, only available for: 71 i2c-sda-hold-time-ns = <336>;
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | DH_size.pod | 42 B<dh> doesn't hold any key parameters. 45 B<dh> doesn't hold any key parameters. 48 B<dh> doesn't hold any key parameters.
|
H A D | DSA_size.pod | 40 I<dsa> doesn't hold any key parameters. 43 hold any key parameters. 46 hold any key parameters.
|
/freebsd/sys/fs/devfs/ |
H A D | devfs_vfsops.c | 176 int hold; in devfs_unmount() local 192 hold = --fmp->dm_holdcnt; in devfs_unmount() 197 if (hold == 0) in devfs_unmount()
|
/freebsd/sbin/camcontrol/ |
H A D | epc.c | 140 int delayed_entry, int hold, int power_src, 523 int delayed_entry, int hold, int power_src, int restore_src) in epc_set_features() 546 (hold ? ATA_SF_EPC_GOTO_HOLD : 0); in epc_set_features() 619 int delayed_entry = 0, hold = 0; in epc() 664 hold = 1; in epc() 837 delayed_entry, hold, power_src, restore_src); in epc() 524 epc_set_features(struct cam_device * device,camcontrol_devtype devtype,union ccb * ccb,int retry_count,int timeout,int action,int power_cond,int timer,int enable,int save,int delayed_entry,int hold,int power_src,int restore_src) epc_set_features() argument 620 int delayed_entry = 0, hold = 0; epc() local
|