函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\zlib_deflate\deftree.c Create Date:2022-07-27 07:56:17
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:compress_block

函数原型:static void compress_block(deflate_state *s, ct_data *ltree, ct_data *dtree)

返回类型:void

参数:

类型参数名称
deflate_state *s
ct_data *ltree
ct_data *dtree
1026  lx等于0
1030  如果unning index in l_buf 不等于0则循环
1031  dist等于d_buf[lx]
1032  lc等于uffer for literals or lengths [lx++]
1033  如果dist恒等于0则
1034  send_code(s, lc, ltree)
1036  否则
1041  如果extra不等于0则
1045  dist自减
1046  code等于d_code(dist)
1049  send_code(s, code, dtree)
1050  extra等于extra_dbits[code]
1051  如果extra不等于0则
调用者
名称描述
zlib_tr_flush_blockDetermine the best encoding for the current block: dynamic trees, static* trees or store, and output the encoded block to the zip file. This function* returns the total compressed length for the file so far.