/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/mac/hmac/ |
H A D | hmac_frag.c | 142 hi_u32 threshold; in hmac_frag_process_proc() local 148 threshold = hmac_vap->base_vap->mib_info->wlan_mib_operation.dot11_fragmentation_threshold; in hmac_frag_process_proc() 158 threshold = (threshold & (~(BIT0 | BIT1))) + 2; in hmac_frag_process_proc() 162 last_frag = oal_netbuf_len(netbuf) % (threshold - (hi_u32)ic_header - tx_ctl->frame_header_length); in hmac_frag_process_proc() 164 threshold = threshold + 8; /* 8:门限加8 */ in hmac_frag_process_proc() 166 "{hmac_frag_process_proc::adjust the frag threshold to %d.}", threshold); in hmac_frag_process_proc() 170 ret = hmac_frag_process(netbuf, tx_ctl, (hi_u32)ic_header, threshold); in hmac_frag_process_proc() [all...] |
H A D | hmac_tx_data.c | 732 hi_u32 threshold; in hmac_tx_is_need_frag() local 752 threshold = hmac_vap->base_vap->mib_info->wlan_mib_operation.dot11_fragmentation_threshold; in hmac_tx_is_need_frag() 753 threshold = (threshold & (~(BIT0 | BIT1))) + 2; /* 加2 */ in hmac_tx_is_need_frag() 757 last_frag = (oal_netbuf_len(netbuf) + 8) % (threshold - tx_ctl->frame_header_length - /* 加8 */ in hmac_tx_is_need_frag() 760 threshold = threshold + 8; /* 自增 8 */ in hmac_tx_is_need_frag() 767 return (hi_u8)((netbuf_len > threshold) && (!tx_ctl->ismcast) && (!tx_ctl->is_amsdu) && in hmac_tx_is_need_frag()
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/ |
H A D | dhd_dbg_ring.c | 62 ring->threshold = DBGRING_FLUSH_THRESHOLD(ring); in dhd_dbg_ring_init() 81 ring->threshold = 0; in dhd_dbg_ring_deinit() 94 /* if the current pending size is bigger than threshold and in dhd_dbg_ring_sched_pull() 95 * threshold is set in dhd_dbg_ring_sched_pull() 97 if (ring->threshold > 0 && in dhd_dbg_ring_sched_pull() 98 (pending_len >= ring->threshold) && ring->sched_pull) { in dhd_dbg_ring_sched_pull() 256 " ring->threshold=%d, wp=%d, rp=%d\n", __FUNCTION__, ring->id, ring->name, in dhd_dbg_ring_push() 258 ring->threshold, ring->wp, ring->rp)); in dhd_dbg_ring_push() 389 dhd_dbg_ring_config(dhd_dbg_ring_t *ring, int log_level, uint32 threshold) in dhd_dbg_ring_config() argument 406 ring->threshold in dhd_dbg_ring_config() [all...] |
H A D | dhd_dbg_ring.h | 87 uint32 threshold; /* threshold bytes */ member 139 int dhd_dbg_ring_config(dhd_dbg_ring_t *ring, int log_level, uint32 threshold);
|
H A D | dhd_flowring.h | 119 uint32 threshold; /* parent's cummulative length threshold */ member 122 flow_queue_cb_t cb; /* callback invoked on threshold crossing */ 123 uint32 l2threshold; /* grandparent's (level 2) cummulative length threshold */ 129 #define DHD_FLOW_QUEUE_THRESHOLD(queue) ((int)(queue)->threshold) 143 /* Queue's cummulative threshold. */ 145 ((queue)->threshold) = ((cumm_threshold) - 1) 154 /* Queue's level 2 cummulative threshold. */
|
H A D | dhd_debug_linux.c | 204 int flags, int time_intval, int threshold) in dhd_os_start_logging() 215 __FUNCTION__, log_level, time_intval, threshold)); in dhd_os_start_logging() 218 ret = dhd_dbg_set_configuration(dhdp, ring_id, log_level, flags, threshold); in dhd_os_start_logging() 203 dhd_os_start_logging(dhd_pub_t *dhdp, char *ring_name, int log_level, int flags, int time_intval, int threshold) dhd_os_start_logging() argument
|
H A D | dhd_debug.h | 768 int log_level, int flags, uint32 threshold); 818 int flags, int time_intval, int threshold);
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/platform/higv/include/ |
H A D | hi_gv_app.h | 88 HI_S32 HI_GV_SetLostFrameThreshold(HI_U32 threshold); 90 HI_S32 HI_GV_GetLostFrameThreshold(HI_U32 *threshold);
|
H A D | hi_gv_cursor.h | 85 * brief Set the threshold of cursor. 86 * The threshold is should generate and equal 3, default is 4. 88 * param[in] threshold of cursor. 93 HI_S32 HI_GV_CURSOR_SetThreshold(HI_U16 threshold);
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/mbedtls/include/mbedtls/ |
H A D | entropy.h | 115 size_t threshold; /**< Minimum bytes required before release */ member 166 * \param threshold Minimum required from source before entropy is released 178 size_t threshold, int strong );
|
H A D | debug.h | 90 * \brief Set the threshold error level to handle globally all debug output. 91 * Debug messages that have a level over the threshold value are 95 * \param threshold theshold level of messages to filter on. Messages at a 104 void mbedtls_debug_set_threshold( int threshold );
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/drivers/spi/ |
H A D | hi_spi.c | 102 hi_u16 threshold = (id == HI_SPI_ID_0 ? SPI0_FIFO_THRESHOLD : SPI1_FIFO_THRESHOLD); in spi_host_transfer() local 105 if (len > threshold) { in spi_host_transfer() 106 g_spi_ctrl[id]->single_len = threshold; in spi_host_transfer() 107 g_spi_ctrl[id]->trans_len = threshold; in spi_host_transfer() 136 hi_u16 threshold = (id == HI_SPI_ID_0 ? SPI0_FIFO_THRESHOLD : SPI1_FIFO_THRESHOLD); in spi_slave_transfer() local 140 if (len > threshold) { in spi_slave_transfer() 141 g_spi_ctrl[id]->single_len = threshold; in spi_slave_transfer() 153 g_spi_ctrl[id]->single_len = threshold; in spi_slave_transfer()
|
/device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/ |
H A D | mali_kbase_kinstr_jm.c | 179 * @threshold: The number of changes above which threads polling on the reader 189 u32 threshold; member 250 changes->threshold = min(((size_t)(changes->size)) / 0x4, ((size_t)(PAGE_SIZE)) / sizeof(*changes->data)); in reader_changes_init() 326 * userspace. Kicked when a threshold is reached or there is 359 /* Wake for either overflow or over-threshold cases. */ in reader_changes_push() 360 if (CIRC_CNT(head + 1, tail, size) >= changes->threshold) { in reader_changes_push() 641 if (reader_changes_count(changes) >= changes->threshold) { in reader_poll()
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/ |
H A D | mali_kbase_kinstr_jm.c | 179 * @threshold: The number of changes above which threads polling on the reader 189 u32 threshold; member 250 changes->threshold = min(((size_t)(changes->size)) / 4, in reader_changes_init() 327 * userspace. Kicked when a threshold is reached or there is 361 /* Wake for either overflow or over-threshold cases. */ in reader_changes_push() 362 if (CIRC_CNT(head + 1, tail, size) >= changes->threshold) in reader_changes_push() 644 if (reader_changes_count(changes) >= changes->threshold) in reader_poll()
|
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/adapt/ |
H A D | hi_comm_sns_adapt.h | 125 hi_u8 threshold; /* RW; range: [0, 255]; Format:8.0; */
member 286 hi_u16 threshold[ISP_AUTO_ISO_STRENGTH_NUM]; /* RW,Range: [ 0, 0x3FFF] */
member 293 hi_u8 threshold[ISP_AUTO_ISO_STRENGTH_NUM]; /* RW;Range:[0x0,0x20];Format:6.0;Threshold for antifalsecolor */
member
|
H A D | hi_comm_isp_adapt.h | 198 hi_u16 short_thr; /* RW;Range:[0, 0xFFF];Format:12.0; data above this threshold will be taken from
201 threshold will be taken from long exposure only. */
204 hi_u16 force_long_low_thr; /* RW;Range:[0, 0xFFF];Format:12.0; data above this threshold will force to choose
206 hi_u16 force_long_hig_thr; /* RW;Range:[0, 0xFFF];Format:12.0; data below this threshold will force to choose
212 hi_u16 fusion_thr[WDR_MAX_FRAME_NUM]; /* RW;Range:[0x0,0x3FFF];Format:14.0;the threshold of the 4 frame */
300 Luma threshold for enhancement strength adaptation of positive detail */
308 Luma threshold for enhancement strength adaptation of negative detail */
346 hi_u8 grad_rev_thr; /* RW; Range:[0x0, 0x80]; Format:8.0; Gradient reversal reduction threshold */
479 hi_u8 start_thresh; /* RW; Range: [1, 255]; Format 8.0;Start threshold for static defect-pixel calibraiton,
498 hi_u8 finish_thresh; /* R; Range: [0, 255];Format 8.0; Finish threshold fo 985 hi_u8 threshold; /* RW; Range: [0, 255]; Format:8.0 */ global() member 1013 hi_u16 threshold[ISP_AUTO_ISO_STRENGTH_NUM]; /* RW; Range: Hi3559AV100 = [0, 16383] | Hi3519AV100 = [0, 16383]| global() member 1029 hi_u8 threshold; /* RW;Range:[0x0,0x20];Format:6.0;Threshold for antifalsecolor */ global() member 1034 hi_u8 threshold[ISP_AUTO_ISO_STRENGTH_NUM]; /* RW;Range:[0x0,0x20];Format:6.0;Threshold for antifalsecolor */ global() member 1145 hi_u32 threshold; /* RW;Range:[1,0xFFF];Format:12.0;pix value > threshold means defective pixel */ global() member [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/adapt/ |
H A D | hi_comm_sns_adapt.h | 125 hi_u8 threshold; /* RW; range: [0, 255]; Format:8.0; */
member 286 hi_u16 threshold[ISP_AUTO_ISO_STRENGTH_NUM]; /* RW,Range: [ 0, 0x3FFF] */
member 293 hi_u8 threshold[ISP_AUTO_ISO_STRENGTH_NUM]; /* RW;Range:[0x0,0x20];Format:6.0;Threshold for antifalsecolor */
member
|
H A D | hi_comm_isp_adapt.h | 198 hi_u16 short_thr; /* RW;Range:[0, 0xFFF];Format:12.0; data above this threshold will be taken from
201 threshold will be taken from long exposure only. */
204 hi_u16 force_long_low_thr; /* RW;Range:[0, 0xFFF];Format:12.0; data above this threshold will force to choose
206 hi_u16 force_long_hig_thr; /* RW;Range:[0, 0xFFF];Format:12.0; data below this threshold will force to choose
212 hi_u16 fusion_thr[WDR_MAX_FRAME_NUM]; /* RW;Range:[0x0,0x3FFF];Format:14.0;the threshold of the 4 frame */
300 Luma threshold for enhancement strength adaptation of positive detail */
308 Luma threshold for enhancement strength adaptation of negative detail */
346 hi_u8 grad_rev_thr; /* RW; Range:[0x0, 0x80]; Format:8.0; Gradient reversal reduction threshold */
479 hi_u8 start_thresh; /* RW; Range: [1, 255]; Format 8.0;Start threshold for static defect-pixel calibraiton,
498 hi_u8 finish_thresh; /* R; Range: [0, 255];Format 8.0; Finish threshold fo 985 hi_u8 threshold; /* RW; Range: [0, 255]; Format:8.0 */ global() member 1013 hi_u16 threshold[ISP_AUTO_ISO_STRENGTH_NUM]; /* RW; Range: Hi3559AV100 = [0, 16383] | Hi3519AV100 = [0, 16383]| global() member 1029 hi_u8 threshold; /* RW;Range:[0x0,0x20];Format:6.0;Threshold for antifalsecolor */ global() member 1034 hi_u8 threshold[ISP_AUTO_ISO_STRENGTH_NUM]; /* RW;Range:[0x0,0x20];Format:6.0;Threshold for antifalsecolor */ global() member 1145 hi_u32 threshold; /* RW;Range:[1,0xFFF];Format:12.0;pix value > threshold means defective pixel */ global() member [all...] |
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/include/ |
H A D | hi_wifi_api.h | 1900 * @brief Set cca threshold.CNcomment:设置CCA门限.CNend 1903 * Set cca threshold.CNcomment:设置CCA门限.CNend 1905 * @attention CNcomment:1.threshold设置范围是-128~126时,阈值固定为设置值.CNend\n 1906 * CNcomment:2.threshold设置值为127时,恢复默认阈值-62dBm,并使能动态调整.CNend 1908 * @param threshold [IN] Type #char, threshold. CNcomment:门限值.CNend 1918 unsigned int hi_wifi_set_cca_threshold(const char *ifname, signed char threshold); 1951 * @attention 2.freq_comp:3 elements refer to enter and quit temp freq compensation threshold, and compensation val.
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/include/ |
H A D | hi_wifi_api.h | 1896 * @brief Set cca threshold.CNcomment:设置CCA门限.CNend 1899 * Set cca threshold.CNcomment:设置CCA门限.CNend 1901 * @attention CNcomment:1.threshold设置范围是-128~126时,阈值固定为设置值.CNend\n 1902 * CNcomment:2.threshold设置值为127时,恢复默认阈值-62dBm,并使能动态调整.CNend 1904 * @param threshold [IN] Type #char, threshold. CNcomment:门限值.CNend 1913 unsigned int hi_wifi_set_cca_threshold(const char* ifname, signed char threshold);
|
/device/soc/rockchip/common/hardware/mpp/include/ |
H A D | rk_venc_cmd.h | 331 * The percentage threshold over max_bitrate for trigger frame drop. 430 signed int threshold; member
|
/device/soc/rockchip/rk3588/kernel/drivers/net/ethernet/stmicro/stmmac/ |
H A D | common.h | 104 unsigned long threshold; member
|
/device/soc/rockchip/rk3399/hardware/mpp/include/ |
H A D | rk_venc_cmd.h | 331 * The percentage threshold over max_bitrate for trigger frame drop. 431 RK_S32 threshold; member
|
/device/soc/rockchip/rk3568/hardware/mpp/include/ |
H A D | rk_venc_cmd.h | 331 * The percentage threshold over max_bitrate for trigger frame drop. 431 RK_S32 threshold; member
|
/device/soc/rockchip/rk3588/hardware/mpp/include/ |
H A D | rk_venc_cmd.h | 375 * The percentage threshold over max_bitrate for trigger frame drop. 467 * skip_sad - sad threshold for skip / non-skip 510 RK_S32 threshold; member
|