Home
last modified time | relevance | path

Searched refs:frame_size (Results 1 – 23 of 23) sorted by relevance

/freebsd/sys/contrib/dev/iwlwifi/
H A Diwl-utils.h39 u32 iwl_find_ie_offset(u8 *beacon, u8 eid, u32 frame_size) in iwl_find_ie_offset() argument
44 if (WARN_ON_ONCE(frame_size <= (mgmt->u.beacon.variable - beacon))) in iwl_find_ie_offset()
47 frame_size -= mgmt->u.beacon.variable - beacon; in iwl_find_ie_offset()
49 ie = cfg80211_find_ie(eid, mgmt->u.beacon.variable, frame_size); in iwl_find_ie_offset()
/freebsd/share/examples/sound/
H A Dmmap.c74 int frag_size, frame_size, verbose = 0; in main() local
130 frame_size = config_in.sample_size * config_in.audio_info.max_channels; in main()
176 if ((ptr % frame_size) != 0) in main()
178 frame_size); in main()
/freebsd/sys/dev/ath/ath_rate/sample/
H A Dsample.c969 int frame_size, in update_stats() argument
979 const int size_bin = size_to_bin(frame_size); in update_stats()
1099 int frame_size, int rc_framesize, int nframes, int nbad) in ath_rate_tx_complete() argument
1117 if (frame_size == 0) /* NB: should not happen */ in ath_rate_tx_complete()
1118 frame_size = 1500; in ath_rate_tx_complete()
1144 if (size_to_bin(frame_size) != size_to_bin(rc_framesize)) { in ath_rate_tx_complete()
1149 __func__, frame_size, rc_framesize); in ath_rate_tx_complete()
1151 frame_size = rc_framesize; in ath_rate_tx_complete()
1159 bin_to_size(size_to_bin(frame_size)), in ath_rate_tx_complete()
1183 bin_to_size(size_to_bin(frame_size)), in ath_rate_tx_complete()
[all …]
/freebsd/sys/dev/firewire/
H A Dfwdv.c464 sc->frame_size = FWDV_MAX_FRAME_SIZE; in fwdv_iso_start()
465 sc->frame_buf = malloc(sc->frame_size, M_FWDV, M_WAITOK | M_ZERO); in fwdv_iso_start()
466 sc->read_buf = malloc(sc->frame_size, M_FWDV, M_WAITOK | M_ZERO); in fwdv_iso_start()
601 sc->frame_size = DV_DVCPRO_HD_FRAME; in fwdv_iso_input()
603 sc->frame_size = sc->dv_system ? in fwdv_iso_input()
609 sc->frame_size); in fwdv_iso_input()
622 if (sc->frame_offset >= sc->frame_size) { in fwdv_iso_input()
651 sc->frame_size) { in fwdv_iso_input()
766 err = uiomove(sc->read_buf, min(uio->uio_resid, sc->frame_size), in fwdv_cdev_read()
812 info->frame_size = sc->frame_size; in fwdv_cdev_ioctl()
H A Dfwdv.h117 uint32_t frame_size; member
175 uint32_t frame_size; member
H A Dfwcam.h248 uint32_t frame_size; /* expected frame size (bytes) */ member
H A Dfwcam.c444 sc->frame_size = fwcam_frame_size(sc); in fwcam_iso_start()
445 sc->frame_buf = malloc(sc->frame_size, M_FWCAM, M_WAITOK | M_ZERO); in fwcam_iso_start()
642 sc->frame_offset == sc->frame_size) { in fwcam_iso_input()
663 if (sc->frame_offset + plen <= sc->frame_size) { in fwcam_iso_input()
/freebsd/stand/lua/
H A Ddrawer.lua46 local frame_size
267 local w = frame_size.w
268 local h = frame_size.h
321 local w = frame_size.w
539 frame_size = {w = 39, h = 14}
/freebsd/sys/contrib/dev/iwlwifi/mld/
H A Dap.c20 u8 *beacon, u32 frame_size) in iwl_mld_set_tim_idx() argument
31 while ((tim_idx < (frame_size - 2)) && in iwl_mld_set_tim_idx()
36 if ((tim_idx < (frame_size - 1)) && beacon[tim_idx] == WLAN_EID_TIM) in iwl_mld_set_tim_idx()
H A Dap.h39 u8 *beacon, u32 frame_size);
/freebsd/sys/dev/mrsas/
H A Dmrsas_ioctl.c719 u_int32_t frame_size = MRSAS_MFI_FRAME_SIZE; in mrsas_alloc_frame() local
727 cmd->frame_mem, frame_size, mrsas_alloc_cb, in mrsas_alloc_frame()
/freebsd/sys/dev/usb/video/
H A Duvideo.c2546 int frame_size) in uvideo_vs_decode_stream_header() argument
2552 if (frame_size < UVIDEO_SH_MIN_LEN) in uvideo_vs_decode_stream_header()
2557 if (sh->bLength > frame_size || sh->bLength < UVIDEO_SH_MIN_LEN) in uvideo_vs_decode_stream_header()
2585 sample_len = frame_size - sh->bLength; in uvideo_vs_decode_stream_header()
2625 uint8_t *frame, int frame_size) in uvideo_vs_decode_stream_header_isight() argument
2632 if (frame_size > 13 && !memcmp(&frame[2], magic, 12)) in uvideo_vs_decode_stream_header_isight()
2634 if (frame_size > 14 && !memcmp(&frame[3], magic, 12)) in uvideo_vs_decode_stream_header_isight()
2647 sample_len = frame_size; in uvideo_vs_decode_stream_header_isight()
/freebsd/sys/dev/mana/
H A Dmana_en.c177 apc->frame_size = new_mtu + ETHER_HDR_LEN; in mana_ioctl()
2353 if (apc->frame_size > MJUM16BYTES) { in mana_calc_rx_datasize()
2355 apc->frame_size); in mana_calc_rx_datasize()
2357 } else if (apc->frame_size > MJUM9BYTES) { in mana_calc_rx_datasize()
2359 } else if (apc->frame_size > MJUMPAGESIZE) { in mana_calc_rx_datasize()
2361 } else if (apc->frame_size > MCLBYTES) { in mana_calc_rx_datasize()
2925 apc->frame_size = apc->mtu + ETHER_HDR_LEN; in mana_probe_port()
H A Dmana.h533 uint16_t frame_size; member
/freebsd/sys/dev/ath/ath_rate/onoe/
H A Donoe.c170 int frame_size, int rc_framesize, int nframes, int nbad) in ath_rate_tx_complete() argument
/freebsd/sys/dev/ath/ath_rate/amrr/
H A Damrr.c162 int frame_size, int rc_framesize, int nframes, int nbad) in ath_rate_tx_complete() argument
/freebsd/lib/virtual_oss/bt/
H A Dbt.c721 cfg->handle.av.frame->nb_samples = cfg->handle.av.context->frame_size; in bt_play_open()
726 cfg->handle.av.context->frame_size, in bt_play_open()
/freebsd/contrib/libpcap/
H A Dpcap-linux.c3063 unsigned int frame_size; in create_ring() local
3141 frame_size = handle->snapshot; in create_ring()
3160 if (frame_size > max_frame_len) in create_ring()
3161 frame_size = max_frame_len; in create_ring()
3203 req.tp_frame_size = TPACKET_ALIGN(macoff + frame_size); in create_ring()
/freebsd/crypto/openssl/crypto/aes/asm/
H A Daesni-x86_64.pl1205 my $frame_size = 0x80 + ($win64?160:0);
1239 sub \$$frame_size,%rsp
1777 my $frame_size = 0x70 + ($win64?160:0);
1791 sub \$$frame_size,%rsp
2275 sub \$$frame_size,%rsp
3743 my $frame_size = 0x10 + ($win64?0xa0:0); # used in decrypt
3832 sub \$$frame_size,%rsp
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dmac-ctxt.c849 u8 *beacon, u32 frame_size) in iwl_mvm_mac_ctxt_set_tim() argument
859 while ((tim_idx < (frame_size - 2)) && in iwl_mvm_mac_ctxt_set_tim()
864 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) { in iwl_mvm_mac_ctxt_set_tim()
H A Dmvm.h1926 u8 *beacon, u32 frame_size);
/freebsd/sys/dev/qlnx/qlnxe/
H A Decore_mng_tlv.c1173 p_buf->p_val = (u8 *)&p_drv_buf->frame_size; in ecore_mfw_get_iscsi_tlv_value()
1174 return sizeof(p_drv_buf->frame_size); in ecore_mfw_get_iscsi_tlv_value()
H A Decore_mcp_api.h539 u16 frame_size; member