Home
last modified time | relevance | path

Searched refs:copycode (Results 1 – 25 of 130) sorted by relevance

123456

/dports/www/grafana8/grafana-8.3.6/vendor/github.com/andybalholm/brotli/
H A Dcommand.go141 func combineLengthCodes(inscode uint16, copycode uint16, use_last_distance bool) uint16 {
142 var bits64 uint16 = uint16(copycode&0x7 | (inscode&0x7)<<3)
143 if use_last_distance && inscode < 8 && copycode < 16 {
144 if copycode < 8 {
152 var offset uint32 = 2 * ((uint32(copycode) >> 3) + 3*(uint32(inscode)>>3))
168 var copycode uint16 = getCopyLengthCode(copylen)
169 *code = combineLengthCodes(inscode, copycode, use_last_distance)
180 func getCopyBase(copycode uint16) uint32 {
181 return kCopyBase[copycode]
184 func getCopyExtra(copycode uint16) uint32 {
[all …]
/dports/www/gitea/gitea-1.16.5/vendor/github.com/andybalholm/brotli/
H A Dcommand.go141 func combineLengthCodes(inscode uint16, copycode uint16, use_last_distance bool) uint16 {
142 var bits64 uint16 = uint16(copycode&0x7 | (inscode&0x7)<<3)
143 if use_last_distance && inscode < 8 && copycode < 16 {
144 if copycode < 8 {
152 var offset uint32 = 2 * ((uint32(copycode) >> 3) + 3*(uint32(inscode)>>3))
168 var copycode uint16 = getCopyLengthCode(copylen)
169 *code = combineLengthCodes(inscode, copycode, use_last_distance)
180 func getCopyBase(copycode uint16) uint32 {
181 return kCopyBase[copycode]
184 func getCopyExtra(copycode uint16) uint32 {
[all …]
/dports/www/mattermost-server/mattermost-server-6.0.2/vendor/github.com/andybalholm/brotli/
H A Dcommand.go141 func combineLengthCodes(inscode uint16, copycode uint16, use_last_distance bool) uint16 {
142 var bits64 uint16 = uint16(copycode&0x7 | (inscode&0x7)<<3)
143 if use_last_distance && inscode < 8 && copycode < 16 {
144 if copycode < 8 {
152 var offset uint32 = 2 * ((uint32(copycode) >> 3) + 3*(uint32(inscode)>>3))
168 var copycode uint16 = getCopyLengthCode(copylen)
169 *code = combineLengthCodes(inscode, copycode, use_last_distance)
180 func getCopyBase(copycode uint16) uint32 {
181 return kCopyBase[copycode]
184 func getCopyExtra(copycode uint16) uint32 {
[all …]
/dports/sysutils/jest/jest-f76bc46/vendor/github.com/andybalholm/brotli/
H A Dcommand.go141 func combineLengthCodes(inscode uint16, copycode uint16, use_last_distance bool) uint16 {
142 var bits64 uint16 = uint16(copycode&0x7 | (inscode&0x7)<<3)
143 if use_last_distance && inscode < 8 && copycode < 16 {
144 if copycode < 8 {
152 var offset uint32 = 2 * ((uint32(copycode) >> 3) + 3*(uint32(inscode)>>3))
168 var copycode uint16 = getCopyLengthCode(copylen)
169 *code = combineLengthCodes(inscode, copycode, use_last_distance)
180 func getCopyBase(copycode uint16) uint32 {
181 return kCopyBase[copycode]
184 func getCopyExtra(copycode uint16) uint32 {
[all …]
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/brotli-sys-0.3.2/brotli/enc/
H A Dcommand.h62 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
64 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3)); in CombineLengthCodes()
65 if (use_last_distance && inscode < 8 && copycode < 16) { in CombineLengthCodes()
66 return (copycode < 8) ? bits64 : (bits64 | 64); in CombineLengthCodes()
70 int offset = 2 * ((copycode >> 3) + 3 * (inscode >> 3)); in CombineLengthCodes()
86 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
87 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
98 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
99 return kCopyBase[copycode]; in GetCopyBase()
102 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/archivers/py-brotlipy/brotlipy-0.7.0/libbrotli/enc/
H A Dcommand.h62 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
64 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3)); in CombineLengthCodes()
65 if (use_last_distance && inscode < 8 && copycode < 16) { in CombineLengthCodes()
66 return (copycode < 8) ? bits64 : (bits64 | 64); in CombineLengthCodes()
70 int offset = 2 * ((copycode >> 3) + 3 * (inscode >> 3)); in CombineLengthCodes()
86 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
87 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
98 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
99 return kCopyBase[copycode]; in GetCopyBase()
102 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/net/proby/proby-1.0.2/cargo-crates/brotli-sys-0.3.2/brotli/enc/
H A Dcommand.h62 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
64 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3)); in CombineLengthCodes()
65 if (use_last_distance && inscode < 8 && copycode < 16) { in CombineLengthCodes()
66 return (copycode < 8) ? bits64 : (bits64 | 64); in CombineLengthCodes()
70 int offset = 2 * ((copycode >> 3) + 3 * (inscode >> 3)); in CombineLengthCodes()
86 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
87 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
98 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
99 return kCopyBase[copycode]; in GetCopyBase()
102 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/brotli-sys-0.3.2/brotli/enc/
H A Dcommand.h62 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
64 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3)); in CombineLengthCodes()
65 if (use_last_distance && inscode < 8 && copycode < 16) { in CombineLengthCodes()
66 return (copycode < 8) ? bits64 : (bits64 | 64); in CombineLengthCodes()
70 int offset = 2 * ((copycode >> 3) + 3 * (inscode >> 3)); in CombineLengthCodes()
86 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
87 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
98 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
99 return kCopyBase[copycode]; in GetCopyBase()
102 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Native/AnyOS/brotli/enc/
H A Dcommand.h62 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
64 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3)); in CombineLengthCodes()
65 if (use_last_distance && inscode < 8 && copycode < 16) { in CombineLengthCodes()
66 return (copycode < 8) ? bits64 : (bits64 | 64); in CombineLengthCodes()
70 int offset = 2 * ((copycode >> 3) + 3 * (inscode >> 3)); in CombineLengthCodes()
86 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
87 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
98 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
99 return kCopyBase[copycode]; in GetCopyBase()
102 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/modules/brotli/enc/
H A Dcommand.h62 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
64 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3)); in CombineLengthCodes()
65 if (use_last_distance && inscode < 8 && copycode < 16) { in CombineLengthCodes()
66 return (copycode < 8) ? bits64 : (bits64 | 64); in CombineLengthCodes()
70 int offset = 2 * ((copycode >> 3) + 3 * (inscode >> 3)); in CombineLengthCodes()
86 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
87 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
98 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
99 return kCopyBase[copycode]; in GetCopyBase()
102 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/www/h2o-devel/h2o-dcc7134/deps/brotli/c/enc/
H A Dcommand.h62 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
64 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3)); in CombineLengthCodes()
65 if (use_last_distance && inscode < 8 && copycode < 16) { in CombineLengthCodes()
66 return (copycode < 8) ? bits64 : (bits64 | 64); in CombineLengthCodes()
70 int offset = 2 * ((copycode >> 3) + 3 * (inscode >> 3)); in CombineLengthCodes()
86 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
87 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
98 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
99 return kCopyBase[copycode]; in GetCopyBase()
102 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/brotli/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/c/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/BaseTools/Source/C/BrotliCompress/brotli/c/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/archivers/p5-IO-Compress-Brotli/IO-Compress-Brotli-0.004001/brotli/c/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8 && copycode < 16) { in CombineLengthCodes()
67 return (copycode < 8) ? bits64 : (bits64 | 64); in CombineLengthCodes()
71 int offset = 2 * ((copycode >> 3) + 3 * (inscode >> 3)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/archivers/py-brotli/Brotli-1.0.9/c/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kBrotliCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/archivers/brotli/brotli-1.0.9/c/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kBrotliCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/devel/apitrace/apitrace-9.0/thirdparty/brotli/c/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/BaseTools/Source/C/BrotliCompress/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/c/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/BaseTools/Source/C/BrotliCompress/brotli/c/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/BaseTools/Source/C/BrotliCompress/brotli/c/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/emulators/qemu-utils/qemu-4.2.1/roms/edk2/BaseTools/Source/C/BrotliCompress/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/brotli/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/c/enc/
H A Dcommand.h63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument
65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes()
66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes()
67 return (copycode < 8u) ? bits64 : (bits64 | 64u); in CombineLengthCodes()
71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes()
87 uint16_t copycode = GetCopyLengthCode(copylen); in GetLengthCode() local
88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode()
99 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) { in GetCopyBase() argument
100 return kCopyBase[copycode]; in GetCopyBase()
103 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) { in GetCopyExtra() argument
[all …]

123456