Home
last modified time | relevance | path

Searched refs:txh (Results 1 – 25 of 465) sorted by relevance

12345678910>>...19

/dports/multimedia/gpac-libgpac/gpac-1.0.0/src/compositor/
H A Dtexturing.c57 if (txh->is_open) gf_sc_texture_stop(txh); in gf_sc_texture_destroy()
58 gf_list_del_item(txh->compositor->textures, txh); in gf_sc_texture_destroy()
76 if (txh->tx_io) gf_sc_texture_release(txh); in gf_sc_texture_open()
164 gf_mo_unregister(txh->owner, txh->stream); in gf_sc_texture_stop()
184 …gf_mo_get_visual_info(txh->stream, &txh->width, &txh->height, &txh->stride, &txh->pixel_ar, &txh->… in setup_texture_object()
187 …gf_pixel_get_size_info(txh->pixelformat, txh->width, txh->height, NULL, NULL, NULL, &txh->nb_plane… in setup_texture_object()
226 if ((txh->stream_finished && txh->tx_io) || txh->needs_refresh) in gf_sc_texture_update_frame()
244 push_time = txh->nb_frames ? txh->upload_time/txh->nb_frames : 20; in gf_sc_texture_update_frame()
250 } else if (txh->data && size && txh->size && (size != txh->size)) { in gf_sc_texture_update_frame()
266 if (!txh->data && !txh->frame_ifce) { in gf_sc_texture_update_frame()
[all …]
H A Dtexturing_gl.c346 if (!txh || !txh->tx_io) in gf_sc_texture_disable()
596 …memcpy(txh->tx_io->conv_data + (txh->height - 1 - i) * txh->stride, txh->data + i*txh->stride, txh in gf_sc_texture_convert()
687 …memcpy(dst.video_buffer + 3*txh->width*txh->height, txh->data + 3*txh->stride*txh->height/2, txh->… in gf_sc_texture_convert()
703 u8 *src_p = (u8 *) txh->data + (txh->height-j-1)*txh->stride; in gf_sc_texture_convert()
705 u8 *dst_d = (u8 *) txh->tx_io->conv_data + txh->height*3*txh->width + j*txh->width; in gf_sc_texture_convert()
928 …return compositor_3d_setup_fbo(txh->width, txh->height, &txh->tx_io->fbo_id, &txh->tx_io->fbo_txid… in gf_sc_texture_setup_fbo()
1014 memcpy(tmp, txh->data + i*txh->stride, txh->stride); in gf_sc_copy_to_stencil()
1015 memcpy(txh->data + i*txh->stride, txh->data + (txh->height - 1 - i) * txh->stride, txh->stride); in gf_sc_copy_to_stencil()
1016 memcpy(txh->data + (txh->height - 1 - i) * txh->stride, tmp, txh->stride); in gf_sc_copy_to_stencil()
1202 if (!txh->stream || txh->data || txh->frame_ifce) { in gf_sc_texture_enable_ex()
[all …]
H A Dmpeg4_textures.c208 return &st->txh; in mt_get_texture()
219 if (st->txh.is_open) gf_sc_texture_stop(&st->txh); in compositor_movietexture_modified()
259 if (txh->data) gf_free(txh->data); in imagetexture_destroy()
263 gf_free(txh); in imagetexture_destroy()
328 …e = gf_img_jpeg_dec(ct->data, ct->data_len, &txh->width, &txh->height, &txh->pixelformat, txh->dat… in imagetexture_update()
333 txh->stride = out_size / txh->height; in imagetexture_update()
342 …e = gf_img_png_dec(ct->data, ct->data_len, &txh->width, &txh->height, &txh->pixelformat, txh->data… in imagetexture_update()
347 txh->stride = out_size / txh->height; in imagetexture_update()
419 if (!txh) { in compositor_init_imagetexture()
427 txh->flags = 0; in compositor_init_imagetexture()
[all …]
H A Dmpeg4_gradients.c105 if (!txh->tx_io) { in UpdateLinearGradient()
182 if (gf_list_find(txh->compositor->textures, txh)<0) in BuildLinearGradientTexture()
183 gf_list_insert(txh->compositor->textures, txh, 0); in BuildLinearGradientTexture()
214 memset(st->tx_data, 0, sizeof(char)*txh->stride*txh->height); in BuildLinearGradientTexture()
315 char *data = txh->data + i*txh->stride; in BuildLinearGradientTexture()
377 if (gf_list_find(txh->compositor->textures, txh)<0) in BuildRadialGradientTexture()
378 gf_list_insert(txh->compositor->textures, txh, 0); in BuildRadialGradientTexture()
406 memset(st->tx_data, 0, sizeof(char)*txh->stride*txh->height); in BuildRadialGradientTexture()
515 char *data = txh->data + i*txh->stride; in BuildRadialGradientTexture()
554 if (!txh->tx_io) gf_sc_texture_allocate(txh); in UpdateRadialGradient()
[all …]
H A Dmpeg4_composite.c140 if (st->txh.data) gf_free(st->txh.data); in composite_traverse()
355 if (txh->data) gf_free(txh->data); in composite_update()
357 txh->width = txh->height = txh->stride = 0; in composite_update()
404 txh->stride = txh->width * 4; in composite_update()
408 txh->stride = txh->width * 2; in composite_update()
412 txh->stride = txh->width * 4; in composite_update()
416 txh->stride = txh->width * 3; in composite_update()
446 txh->data = (char*)gf_malloc(sizeof(unsigned char) * txh->stride * txh->height); in composite_update()
447 memset(txh->data, 0, sizeof(unsigned char) * txh->stride * txh->height); in composite_update()
451 …gf_evg_stencil_set_texture(stencil, txh->data, txh->width, txh->height, txh->stride, txh->pixelfor… in composite_update()
[all …]
H A Dtexturing.h34 GF_Err gf_sc_texture_allocate(GF_TextureHandler *txh);
36 void gf_sc_texture_release(GF_TextureHandler *txh);
54 Bool gf_sc_texture_is_transparent(GF_TextureHandler *txh);
59 GF_Err gf_sc_texture_configure_conversion(GF_TextureHandler *txh);
71 void gf_sc_texture_disable(GF_TextureHandler *txh);
79 void gf_sc_copy_to_texture(GF_TextureHandler *txh);
81 GF_Err gf_sc_texture_setup_fbo(GF_TextureHandler *txh);
82 void gf_sc_texture_enable_fbo(GF_TextureHandler *txh, Bool enable);
85 Bool gf_sc_texture_convert(GF_TextureHandler *txh);
88 void gf_sc_copy_to_stencil(GF_TextureHandler *txh);
[all …]
H A Dsvg_paint_servers.c41 GF_TextureHandler txh; member
218 if (!st->txh.tx_io) gf_sc_texture_allocate(&st->txh); in svg_gradient_traverse()
359 if (gf_list_find(txh->compositor->textures, txh)<0) in compositor_svg_build_gradient_texture()
360 gf_list_insert(txh->compositor->textures, txh, 0); in compositor_svg_build_gradient_texture()
363 if (txh->data) { in compositor_svg_build_gradient_texture()
365 txh->data = NULL; in compositor_svg_build_gradient_texture()
386 memset(txh->data, 0, sizeof(char)*txh->stride*txh->height); in compositor_svg_build_gradient_texture()
429 txh->compute_gradient_matrix(txh, NULL, &mat, GF_FALSE); in compositor_svg_build_gradient_texture()
467 char *data = txh->data + i*txh->stride; in compositor_svg_build_gradient_texture()
800 st->txh.update_texture_fcnt(&st->txh); in compositor_svg_get_gradient_texture()
[all …]
H A Dmpeg4_background2d.c126 stack->txh.width = 2; in DrawBackground2D_2D()
127 stack->txh.height = 2; in DrawBackground2D_2D()
128 stack->txh.stride = 6; in DrawBackground2D_2D()
214 if (!txh->tx_io) { in back_texture_enabled()
451 …if (!txh->compositor->player && !txh->compositor->passthrough_txh && txh->stream && txh->stream->o… in UpdateBackgroundTexture()
452 …if (!txh->width || ((txh->width==txh->compositor->display_width) && (txh->height==txh->compositor-… in UpdateBackgroundTexture()
453 txh->compositor->passthrough_txh = txh; in UpdateBackgroundTexture()
459 if (txh->stream_finished && gf_mo_get_loop(txh->stream, 0)) in UpdateBackgroundTexture()
460 gf_sc_texture_restart(txh); in UpdateBackgroundTexture()
499 if (st->txh.is_open) { in compositor_background2d_modified()
[all …]
H A Dsvg_media.c212 if (stack->txh.is_open) gf_sc_texture_stop_no_unregister(&stack->txh); in svg_play_texture()
277 if (!stack->txh.stream || gf_mo_url_changed(stack->txh.stream, &stack->txurl)) { in svg_traverse_bitmap()
280 stack->txh.width = stack->txh.height = 0; in svg_traverse_bitmap()
297 if (stack->txh.width) { in svg_traverse_bitmap()
400 if (txh->stream && !txh->stream_finished && (!txh->tx_io || txh->needs_refresh) ) { in SVG_Update_image()
443 if (!txh->stream) { in SVG_Update_video()
446 if (!txh->is_open) { in SVG_Update_video()
470 if (txh->needs_refresh) { in SVG_Update_video()
501 if (!txh->stream_finished) in SVG_Update_video()
502 if (txh->needs_refresh) in SVG_Update_video()
[all …]
H A Dvisual_manager_2d_draw.c227 if (!txh) txh = ctx->aspect.fill_texture; in visual_2d_draw_gradient()
233 txh->compute_gradient_matrix(txh, orig_bounds, &g_mat, 0); in visual_2d_draw_gradient()
235 txh->compute_gradient_matrix(txh, &rc, &g_mat, 0); in visual_2d_draw_gradient()
243 …texture_transform(ctx->appear, txh, &txt_mat, (txh == ctx->aspect.fill_texture) ? 0 : 1, INT2FIX(t… in visual_2d_draw_gradient()
358 if (txh && (txh==ctx->aspect.line_texture)) { in visual_2d_flush_hybgl_canvas()
397 else if (txh) { in visual_2d_flush_hybgl_canvas()
476 if (!txh) txh = ctx->aspect.fill_texture; in visual_2d_texture_path_extended()
478 if (!txh->tx_io && !txh->data) { in visual_2d_texture_path_extended()
505 if (!txh->width || !txh->height) { in visual_2d_texture_path_extended()
506 …gf_mo_get_visual_info(txh->stream, &txh->width, &txh->height, &txh->stride, &txh->pixel_ar, &txh->… in visual_2d_texture_path_extended()
[all …]
H A Dsvg_filters.c36 GF_TextureHandler txh; member
238 st->txh.width = txrc.width; in svg_draw_filter()
245 st->txh.transparent = 1; in svg_draw_filter()
247 if (st->txh.stride * st->txh.height > st->alloc_size) { in svg_draw_filter()
248 st->alloc_size = st->txh.stride * st->txh.height; in svg_draw_filter()
251 memset(st->data, 0x0, sizeof(char) * st->txh.stride * st->txh.height); in svg_draw_filter()
273 st->txh.width, in svg_draw_filter()
274 st->txh.height, in svg_draw_filter()
276 st->txh.stride, in svg_draw_filter()
348 st->txh.transparent = 1; in svg_draw_filter()
[all …]
/dports/multimedia/gpac-mp4box/gpac-1.0.0/src/compositor/
H A Dtexturing.c57 if (txh->is_open) gf_sc_texture_stop(txh); in gf_sc_texture_destroy()
58 gf_list_del_item(txh->compositor->textures, txh); in gf_sc_texture_destroy()
76 if (txh->tx_io) gf_sc_texture_release(txh); in gf_sc_texture_open()
164 gf_mo_unregister(txh->owner, txh->stream); in gf_sc_texture_stop()
184 …gf_mo_get_visual_info(txh->stream, &txh->width, &txh->height, &txh->stride, &txh->pixel_ar, &txh->… in setup_texture_object()
187 …gf_pixel_get_size_info(txh->pixelformat, txh->width, txh->height, NULL, NULL, NULL, &txh->nb_plane… in setup_texture_object()
226 if ((txh->stream_finished && txh->tx_io) || txh->needs_refresh) in gf_sc_texture_update_frame()
244 push_time = txh->nb_frames ? txh->upload_time/txh->nb_frames : 20; in gf_sc_texture_update_frame()
250 } else if (txh->data && size && txh->size && (size != txh->size)) { in gf_sc_texture_update_frame()
266 if (!txh->data && !txh->frame_ifce) { in gf_sc_texture_update_frame()
[all …]
H A Dtexturing_gl.c346 if (!txh || !txh->tx_io) in gf_sc_texture_disable()
596 …memcpy(txh->tx_io->conv_data + (txh->height - 1 - i) * txh->stride, txh->data + i*txh->stride, txh in gf_sc_texture_convert()
687 …memcpy(dst.video_buffer + 3*txh->width*txh->height, txh->data + 3*txh->stride*txh->height/2, txh->… in gf_sc_texture_convert()
703 u8 *src_p = (u8 *) txh->data + (txh->height-j-1)*txh->stride; in gf_sc_texture_convert()
705 u8 *dst_d = (u8 *) txh->tx_io->conv_data + txh->height*3*txh->width + j*txh->width; in gf_sc_texture_convert()
928 …return compositor_3d_setup_fbo(txh->width, txh->height, &txh->tx_io->fbo_id, &txh->tx_io->fbo_txid… in gf_sc_texture_setup_fbo()
1014 memcpy(tmp, txh->data + i*txh->stride, txh->stride); in gf_sc_copy_to_stencil()
1015 memcpy(txh->data + i*txh->stride, txh->data + (txh->height - 1 - i) * txh->stride, txh->stride); in gf_sc_copy_to_stencil()
1016 memcpy(txh->data + (txh->height - 1 - i) * txh->stride, tmp, txh->stride); in gf_sc_copy_to_stencil()
1202 if (!txh->stream || txh->data || txh->frame_ifce) { in gf_sc_texture_enable_ex()
[all …]
H A Dmpeg4_textures.c208 return &st->txh; in mt_get_texture()
219 if (st->txh.is_open) gf_sc_texture_stop(&st->txh); in compositor_movietexture_modified()
259 if (txh->data) gf_free(txh->data); in imagetexture_destroy()
263 gf_free(txh); in imagetexture_destroy()
328 …e = gf_img_jpeg_dec(ct->data, ct->data_len, &txh->width, &txh->height, &txh->pixelformat, txh->dat… in imagetexture_update()
333 txh->stride = out_size / txh->height; in imagetexture_update()
342 …e = gf_img_png_dec(ct->data, ct->data_len, &txh->width, &txh->height, &txh->pixelformat, txh->data… in imagetexture_update()
347 txh->stride = out_size / txh->height; in imagetexture_update()
419 if (!txh) { in compositor_init_imagetexture()
427 txh->flags = 0; in compositor_init_imagetexture()
[all …]
H A Dmpeg4_gradients.c105 if (!txh->tx_io) { in UpdateLinearGradient()
182 if (gf_list_find(txh->compositor->textures, txh)<0) in BuildLinearGradientTexture()
183 gf_list_insert(txh->compositor->textures, txh, 0); in BuildLinearGradientTexture()
214 memset(st->tx_data, 0, sizeof(char)*txh->stride*txh->height); in BuildLinearGradientTexture()
315 char *data = txh->data + i*txh->stride; in BuildLinearGradientTexture()
377 if (gf_list_find(txh->compositor->textures, txh)<0) in BuildRadialGradientTexture()
378 gf_list_insert(txh->compositor->textures, txh, 0); in BuildRadialGradientTexture()
406 memset(st->tx_data, 0, sizeof(char)*txh->stride*txh->height); in BuildRadialGradientTexture()
515 char *data = txh->data + i*txh->stride; in BuildRadialGradientTexture()
554 if (!txh->tx_io) gf_sc_texture_allocate(txh); in UpdateRadialGradient()
[all …]
H A Dmpeg4_composite.c140 if (st->txh.data) gf_free(st->txh.data); in composite_traverse()
355 if (txh->data) gf_free(txh->data); in composite_update()
357 txh->width = txh->height = txh->stride = 0; in composite_update()
404 txh->stride = txh->width * 4; in composite_update()
408 txh->stride = txh->width * 2; in composite_update()
412 txh->stride = txh->width * 4; in composite_update()
416 txh->stride = txh->width * 3; in composite_update()
446 txh->data = (char*)gf_malloc(sizeof(unsigned char) * txh->stride * txh->height); in composite_update()
447 memset(txh->data, 0, sizeof(unsigned char) * txh->stride * txh->height); in composite_update()
451 …gf_evg_stencil_set_texture(stencil, txh->data, txh->width, txh->height, txh->stride, txh->pixelfor… in composite_update()
[all …]
H A Dtexturing.h34 GF_Err gf_sc_texture_allocate(GF_TextureHandler *txh);
36 void gf_sc_texture_release(GF_TextureHandler *txh);
54 Bool gf_sc_texture_is_transparent(GF_TextureHandler *txh);
59 GF_Err gf_sc_texture_configure_conversion(GF_TextureHandler *txh);
71 void gf_sc_texture_disable(GF_TextureHandler *txh);
79 void gf_sc_copy_to_texture(GF_TextureHandler *txh);
81 GF_Err gf_sc_texture_setup_fbo(GF_TextureHandler *txh);
82 void gf_sc_texture_enable_fbo(GF_TextureHandler *txh, Bool enable);
85 Bool gf_sc_texture_convert(GF_TextureHandler *txh);
88 void gf_sc_copy_to_stencil(GF_TextureHandler *txh);
[all …]
H A Dsvg_paint_servers.c41 GF_TextureHandler txh; member
218 if (!st->txh.tx_io) gf_sc_texture_allocate(&st->txh); in svg_gradient_traverse()
359 if (gf_list_find(txh->compositor->textures, txh)<0) in compositor_svg_build_gradient_texture()
360 gf_list_insert(txh->compositor->textures, txh, 0); in compositor_svg_build_gradient_texture()
363 if (txh->data) { in compositor_svg_build_gradient_texture()
365 txh->data = NULL; in compositor_svg_build_gradient_texture()
386 memset(txh->data, 0, sizeof(char)*txh->stride*txh->height); in compositor_svg_build_gradient_texture()
429 txh->compute_gradient_matrix(txh, NULL, &mat, GF_FALSE); in compositor_svg_build_gradient_texture()
467 char *data = txh->data + i*txh->stride; in compositor_svg_build_gradient_texture()
800 st->txh.update_texture_fcnt(&st->txh); in compositor_svg_get_gradient_texture()
[all …]
H A Dmpeg4_background2d.c126 stack->txh.width = 2; in DrawBackground2D_2D()
127 stack->txh.height = 2; in DrawBackground2D_2D()
128 stack->txh.stride = 6; in DrawBackground2D_2D()
214 if (!txh->tx_io) { in back_texture_enabled()
451 …if (!txh->compositor->player && !txh->compositor->passthrough_txh && txh->stream && txh->stream->o… in UpdateBackgroundTexture()
452 …if (!txh->width || ((txh->width==txh->compositor->display_width) && (txh->height==txh->compositor-… in UpdateBackgroundTexture()
453 txh->compositor->passthrough_txh = txh; in UpdateBackgroundTexture()
459 if (txh->stream_finished && gf_mo_get_loop(txh->stream, 0)) in UpdateBackgroundTexture()
460 gf_sc_texture_restart(txh); in UpdateBackgroundTexture()
499 if (st->txh.is_open) { in compositor_background2d_modified()
[all …]
H A Dsvg_media.c212 if (stack->txh.is_open) gf_sc_texture_stop_no_unregister(&stack->txh); in svg_play_texture()
277 if (!stack->txh.stream || gf_mo_url_changed(stack->txh.stream, &stack->txurl)) { in svg_traverse_bitmap()
280 stack->txh.width = stack->txh.height = 0; in svg_traverse_bitmap()
297 if (stack->txh.width) { in svg_traverse_bitmap()
400 if (txh->stream && !txh->stream_finished && (!txh->tx_io || txh->needs_refresh) ) { in SVG_Update_image()
443 if (!txh->stream) { in SVG_Update_video()
446 if (!txh->is_open) { in SVG_Update_video()
470 if (txh->needs_refresh) { in SVG_Update_video()
501 if (!txh->stream_finished) in SVG_Update_video()
502 if (txh->needs_refresh) in SVG_Update_video()
[all …]
H A Dvisual_manager_2d_draw.c227 if (!txh) txh = ctx->aspect.fill_texture; in visual_2d_draw_gradient()
233 txh->compute_gradient_matrix(txh, orig_bounds, &g_mat, 0); in visual_2d_draw_gradient()
235 txh->compute_gradient_matrix(txh, &rc, &g_mat, 0); in visual_2d_draw_gradient()
243 …texture_transform(ctx->appear, txh, &txt_mat, (txh == ctx->aspect.fill_texture) ? 0 : 1, INT2FIX(t… in visual_2d_draw_gradient()
358 if (txh && (txh==ctx->aspect.line_texture)) { in visual_2d_flush_hybgl_canvas()
397 else if (txh) { in visual_2d_flush_hybgl_canvas()
476 if (!txh) txh = ctx->aspect.fill_texture; in visual_2d_texture_path_extended()
478 if (!txh->tx_io && !txh->data) { in visual_2d_texture_path_extended()
505 if (!txh->width || !txh->height) { in visual_2d_texture_path_extended()
506 …gf_mo_get_visual_info(txh->stream, &txh->width, &txh->height, &txh->stride, &txh->pixel_ar, &txh->… in visual_2d_texture_path_extended()
[all …]
H A Dsvg_filters.c36 GF_TextureHandler txh; member
238 st->txh.width = txrc.width; in svg_draw_filter()
245 st->txh.transparent = 1; in svg_draw_filter()
247 if (st->txh.stride * st->txh.height > st->alloc_size) { in svg_draw_filter()
248 st->alloc_size = st->txh.stride * st->txh.height; in svg_draw_filter()
251 memset(st->data, 0x0, sizeof(char) * st->txh.stride * st->txh.height); in svg_draw_filter()
273 st->txh.width, in svg_draw_filter()
274 st->txh.height, in svg_draw_filter()
276 st->txh.stride, in svg_draw_filter()
348 st->txh.transparent = 1; in svg_draw_filter()
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Ddmu_tx.c133 return (txh); in dmu_tx_hold_object_impl()
728 if (txh) in dmu_tx_hold_bonus()
761 for (txh = list_head(&tx->tx_holds); txh; in dmu_tx_holds()
762 txh = list_next(&tx->tx_holds, txh)) { in dmu_tx_holds()
789 for (txh = list_head(&tx->tx_holds); txh; in dmu_tx_dirty_buf()
790 txh = list_next(&tx->tx_holds, txh)) { in dmu_tx_dirty_buf()
794 if (txh->txh_dnode == NULL || txh->txh_dnode == dn) { in dmu_tx_dirty_buf()
802 ((txh->txh_arg1 + txh->txh_arg2 - 1) >> shift); in dmu_tx_dirty_buf()
903 for (txh = list_head(&tx->tx_holds); txh; in dmu_tx_try_assign()
904 txh = list_next(&tx->tx_holds, txh)) { in dmu_tx_try_assign()
[all …]
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/nomos/agent_tests/testdata/NomosTestfiles/AGPL/
H A Dampdu.c536 plcp = (u8 *)(txh + 1); in brcms_c_ampdu_add_frame()
631 struct d11txh *txh; in brcms_c_ampdu_finalize() local
686 plcp = (u8 *)(txh + 1); in brcms_c_ampdu_finalize()
756 if (txh->MModeLen) { in brcms_c_ampdu_finalize()
762 if (txh->MModeFbrLen) { in brcms_c_ampdu_finalize()
774 txh->PreloadSize = 0; in brcms_c_ampdu_finalize()
805 txh->TxFesTimeFallback = txh->RTSDurFallback; in brcms_c_ampdu_finalize()
845 struct d11txh *txh; in brcms_c_ampdu_dotxstatus_complete() local
946 trace_brcms_txdesc(&wlc->hw->d11core->dev, txh, sizeof(*txh)); in brcms_c_ampdu_dotxstatus_complete()
1069 struct d11txh *txh; in brcms_c_ampdu_dotxstatus() local
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
H A Dampdu.c536 plcp = (u8 *)(txh + 1); in brcms_c_ampdu_add_frame()
631 struct d11txh *txh; in brcms_c_ampdu_finalize() local
686 plcp = (u8 *)(txh + 1); in brcms_c_ampdu_finalize()
753 if (txh->MModeLen) { in brcms_c_ampdu_finalize()
759 if (txh->MModeFbrLen) { in brcms_c_ampdu_finalize()
771 txh->PreloadSize = 0; in brcms_c_ampdu_finalize()
802 txh->TxFesTimeFallback = txh->RTSDurFallback; in brcms_c_ampdu_finalize()
842 struct d11txh *txh; in brcms_c_ampdu_dotxstatus_complete() local
935 trace_brcms_txdesc(&wlc->hw->d11core->dev, txh, sizeof(*txh)); in brcms_c_ampdu_dotxstatus_complete()
1056 struct d11txh *txh; in brcms_c_ampdu_dotxstatus() local
[all …]

12345678910>>...19