| /OK3568_Linux_fs/kernel/arch/alpha/boot/ |
| H A D | misc.c | 38 typedef unsigned char uch; typedef 45 static uch *inbuf; /* input buffer */ 46 static uch *window; /* Sliding window buffer */ 87 static uch *output_data; 127 uch *in, *out, ch; in flush_window() 157 output_data = (uch *)output_start; in decompress_kernel() 158 input_data = (uch *)input_start; in decompress_kernel()
|
| /OK3568_Linux_fs/u-boot/lib/zlib/ |
| H A D | deflate.h | 210 uch depth[2*L_CODES+1]; 312 extern uch ZLIB_INTERNAL _length_code[]; 313 extern uch ZLIB_INTERNAL _dist_code[]; 315 extern const uch ZLIB_INTERNAL _length_code[]; 316 extern const uch ZLIB_INTERNAL _dist_code[]; 320 { uch cc = (c); \ 327 { uch len = (length); \
|
| H A D | trees.h | 73 const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = { 102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
|
| H A D | trees.c | 71 local const uch bl_order[BL_CODES] 103 uch _dist_code[DIST_CODE_LEN]; 109 uch _length_code[MAX_MATCH-MIN_MATCH+1]; 182 put_byte(s, (uch)((w) & 0xff)); \ 183 put_byte(s, (uch)((ush)(w) >> 8)); \ 267 _length_code[length++] = (uch)code; in tr_static_init() 275 _length_code[length-1] = (uch)code; in tr_static_init() 282 _dist_code[dist++] = (uch)code; in tr_static_init() 290 _dist_code[256 + dist++] = (uch)code; in tr_static_init() 681 s->depth[node] = (uch)((s->depth[n] >= s->depth[m] ? [all …]
|
| H A D | zutil.h | 47 typedef unsigned char uch; typedef 48 typedef uch FAR uchf;
|
| /OK3568_Linux_fs/kernel/arch/nios2/boot/compressed/ |
| H A D | misc.c | 29 typedef unsigned char uch; typedef 35 static uch *inbuf; /* input buffer */ 36 static uch window[WSIZE]; /* Sliding window buffer */ 77 static uch *output_data; 137 uch *in, *out, ch; in flush_window()
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | inflate.c | 140 uch e; /* number of extra bits or operation */ 141 uch b; /* number of bits in this code or subcode */ 233 #define NEXTBYTE() ({ int v = get_byte(); if (v < 0) goto underrun; (uch)v; }) 507 r.b = (uch)l; /* bits to dump before this table */ in huft_build() 508 r.e = (uch)(16 + j); /* bits in this table */ in huft_build() 518 r.b = (uch)(k - w); in huft_build() 523 r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ in huft_build() 529 r.e = (uch)e[*p - s]; /* non-simple--look up in lists */ in huft_build() 629 slide[w++] = (uch)t->v.n; in inflate_codes() 739 slide[w++] = (uch)b; in inflate_stored() [all …]
|
| /OK3568_Linux_fs/kernel/lib/zlib_deflate/ |
| H A D | defutil.h | 188 uch depth[2*L_CODES+1]; 192 uch *l_buf; /* buffer for literals or lengths */ 289 put_byte(s, (uch)((w) & 0xff)); \ 290 put_byte(s, (uch)((ush)(w) >> 8)); \
|
| H A D | deftree.c | 73 static const uch bl_order[BL_CODES] 95 static uch dist_code[512]; 101 static uch length_code[MAX_MATCH-MIN_MATCH+1]; 189 length_code[length++] = (uch)code; in tr_static_init() 197 length_code[length-1] = (uch)code; in tr_static_init() 204 dist_code[dist++] = (uch)code; in tr_static_init() 212 dist_code[256 + dist++] = (uch)code; in tr_static_init() 543 s->depth[node] = (uch) (max(s->depth[n], s->depth[m]) + 1); in build_tree() 922 s->l_buf[s->last_lit++] = (uch)lc;
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822bs/core/ |
| H A D | rtw_ioctl_set.c | 634 u8 uch; in rtw_set_acs_sitesurvey() local 642 if (!rtw_mi_get_ch_setting_union(adapter, &uch, NULL, NULL)) in rtw_set_acs_sitesurvey() 670 if (rtw_is_2g_ch(uch) && band != BAND_ON_2_4G) in rtw_set_acs_sitesurvey() 673 if (rtw_is_5g_ch(uch) && band != BAND_ON_5G) in rtw_set_acs_sitesurvey()
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8189fs/core/ |
| H A D | rtw_ioctl_set.c | 636 u8 uch; in rtw_set_acs_sitesurvey() local 644 if (!rtw_mi_get_ch_setting_union(adapter, &uch, NULL, NULL)) in rtw_set_acs_sitesurvey() 672 if (rtw_is_2g_ch(uch) && band != BAND_ON_2_4G) in rtw_set_acs_sitesurvey() 675 if (rtw_is_5g_ch(uch) && band != BAND_ON_5G) in rtw_set_acs_sitesurvey()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8821cs/core/ |
| H A D | rtw_ioctl_set.c | 637 u8 uch; in rtw_set_acs_sitesurvey() local 645 if (!rtw_mi_get_ch_setting_union(adapter, &uch, NULL, NULL)) in rtw_set_acs_sitesurvey() 673 if (rtw_is_2g_ch(uch) && band != BAND_ON_2_4G) in rtw_set_acs_sitesurvey() 676 if (rtw_is_5g_ch(uch) && band != BAND_ON_5G) in rtw_set_acs_sitesurvey()
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/core/ |
| H A D | rtw_ioctl_set.c | 645 u8 uch; in rtw_set_acs_sitesurvey() local 653 if (!rtw_mi_get_ch_setting_union(adapter, &uch, NULL, NULL)) in rtw_set_acs_sitesurvey() 681 if (rtw_is_2g_ch(uch) && band != BAND_ON_2_4G) in rtw_set_acs_sitesurvey() 684 if (rtw_is_5g_ch(uch) && band != BAND_ON_5G) in rtw_set_acs_sitesurvey()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8189fs/core/ |
| H A D | rtw_ioctl_set.c | 626 u8 uch; in rtw_set_acs_sitesurvey() local 634 if (!rtw_mi_get_ch_setting_union(adapter, &uch, NULL, NULL)) in rtw_set_acs_sitesurvey() 662 if (rtw_is_2g_ch(uch) && band != BAND_ON_2_4G) in rtw_set_acs_sitesurvey() 665 if (rtw_is_5g_ch(uch) && band != BAND_ON_5G) in rtw_set_acs_sitesurvey()
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/core/ |
| H A D | rtw_ioctl_set.c | 636 u8 uch; in rtw_set_acs_sitesurvey() local 644 if (!rtw_mi_get_ch_setting_union(adapter, &uch, NULL, NULL)) in rtw_set_acs_sitesurvey() 672 if (rtw_is_2g_ch(uch) && band != BAND_ON_2_4G) in rtw_set_acs_sitesurvey() 675 if (rtw_is_5g_ch(uch) && band != BAND_ON_5G) in rtw_set_acs_sitesurvey()
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8188fu/core/ |
| H A D | rtw_ioctl_set.c | 636 u8 uch; in rtw_set_acs_sitesurvey() local 644 if (!rtw_mi_get_ch_setting_union(adapter, &uch, NULL, NULL)) in rtw_set_acs_sitesurvey() 672 if (rtw_is_2g_ch(uch) && band != BAND_ON_2_4G) in rtw_set_acs_sitesurvey() 675 if (rtw_is_5g_ch(uch) && band != BAND_ON_5G) in rtw_set_acs_sitesurvey()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/core/ |
| H A D | rtw_ioctl_set.c | 637 u8 uch; in rtw_set_acs_sitesurvey() local 645 if (!rtw_mi_get_ch_setting_union(adapter, &uch, NULL, NULL)) in rtw_set_acs_sitesurvey() 673 if (rtw_is_2g_ch(uch) && band != BAND_ON_2_4G) in rtw_set_acs_sitesurvey() 676 if (rtw_is_5g_ch(uch) && band != BAND_ON_5G) in rtw_set_acs_sitesurvey()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723cs/core/ |
| H A D | rtw_ioctl_set.c | 636 u8 uch; in rtw_set_acs_sitesurvey() local 644 if (!rtw_mi_get_ch_setting_union(adapter, &uch, NULL, NULL)) in rtw_set_acs_sitesurvey() 672 if (rtw_is_2g_ch(uch) && band != BAND_ON_2_4G) in rtw_set_acs_sitesurvey() 675 if (rtw_is_5g_ch(uch) && band != BAND_ON_5G) in rtw_set_acs_sitesurvey()
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/core/ |
| H A D | rtw_ioctl_set.c | 645 u8 uch; in rtw_set_acs_sitesurvey() local 653 if (!rtw_mi_get_ch_setting_union(adapter, &uch, NULL, NULL)) in rtw_set_acs_sitesurvey() 681 if (rtw_is_2g_ch(uch) && band != BAND_ON_2_4G) in rtw_set_acs_sitesurvey() 684 if (rtw_is_5g_ch(uch) && band != BAND_ON_5G) in rtw_set_acs_sitesurvey()
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | zutil.h | 20 typedef unsigned char uch; typedef
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-extended/unzip/unzip/ |
| H A D | CVE-2015-7696.patch | 35 h[n] = (uch)b;
|
| H A D | cve-2014-9636.patch | 27 uch *eb_ucptr;
|
| H A D | CVE-2021-4217.patch | 62 chksum = crc32(chksum, (uch *)(G.filename_full),
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/zlib/zlib/ |
| H A D | CVE-2018-25032.patch | 222 { uch cc = (c); \ 233 { uch len = (uch)(length); \ 275 - s->l_buf[s->last_lit++] = (uch)lc;
|
| /OK3568_Linux_fs/buildroot/boot/grub2/ |
| H A D | 0116-io-gzio-Catch-missing-values-in-huft_build-and-bail.patch | 42 r.e = (uch) e[*p - s]; /* non-simple--look up in lists */
|