Home
last modified time | relevance | path

Searched defs:n (Results 201 – 225 of 652647) sorted by path

12345678910>>...26106

/dports/archivers/7-zip/7-zip-21.07/CPP/7zip/UI/FileManager/
H A DFSDrives.cpp182 for (unsigned n = 0; n < 16; n++) // why 16 ? in LoadItems() local
/dports/archivers/7-zip/7-zip-21.07/CPP/7zip/UI/GUI/
H A DUpdateGUI.cpp94 UInt64 n = ConvertStringToUInt64(s, &end); in IsThereMethodOverride() local
/dports/archivers/7-zip/7-zip-21.07/CPP/Common/
H A DDynLimBuf.cpp32 size_t n = _sizeLimit - _size; in operator +=() local
71 size_t n = _pos + len; in operator +=() local
H A DMyMap.cpp19 static inline unsigned GetSubBit(UInt32 v, unsigned n) { return (unsigned)(v >> n) & 1; } in GetSubBit()
28 const CNode &n = Nodes[0]; in Find() local
40 const CNode &n = Nodes[cur]; in Find() local
58 CNode n; in Set() local
68 CNode &n = Nodes[0]; in Set() local
90 CNode &n = Nodes[cur]; in Set() local
H A DMyString.cpp445 void AString::Grow(unsigned n) in Grow()
1016 void UString::Grow(unsigned n) in Grow()
H A DUTFConvert.cpp33 #define _UTF8_START(n) (0x100 - (1 << (7 - (n)))) argument
35 #define _UTF8_HEAD_PARSE2(n) \ argument
72 #define _UTF8_RANGE(n) (((UInt32)1) << ((n) * 5 + 6)) argument
470 #define _UTF8_HEAD(n, val) ((char)(_UTF8_START(n) + (val >> (6 * (n))))) argument
471 #define _UTF8_CHAR(n, val) ((char)(0x80 + (((val) >> (6 * (n))) & 0x3F))) argument
/dports/archivers/9e/9e/
H A D9e.c115 long n, tot, mode, mtime, size; in do_file() local
/dports/archivers/R-cran-zip/zip/src/
H A Dminiz.c1138 mz_uint32 n = MZ_MIN(bits_in, 16); in tdefl_compress_lz_codes() local
1560 int n; in tdefl_compress_fast() local
1599 int n; in tdefl_compress_fast() local
1803 int n; in tdefl_compress_normal() local
2246 #define TINFL_SKIP_BITS(state_index, n) \ argument
2257 #define TINFL_GET_BITS(state_index, b, n) \ argument
2415 size_t n; in tinfl_decompress() local
3610 mz_uint i, n; in mz_zip_reader_read_central_dir() local
4045 mz_uint n; in mz_zip_file_stat_internal() local
5992 mz_uint32 n; in mz_zip_writer_compute_padding_needed_for_file_alignment() local
[all …]
H A Drzip.c110 int i, n = LENGTH(keys); in R_zip_zip() local
139 int i, n = allfiles ? 0 : LENGTH(files); in R_zip_unzip() local
H A Dzip.c128 int i, n; in zip_unzip() local
277 int i, n = num_files; in zip_zip() local
/dports/archivers/advancecomp/advancecomp-2.1-6-g7b08f7a/7z/
H A DDeflateEncoder.cc444 for (int n = 0; n < aNumLevels; n++) in CodeLevelTable() local
H A DHuffmanEncoder.cc57 bool CEncoder::Smaller(int n, int m) in Smaller()
195 for (UINT32 n = 0; n <= aMaxCode; n++) in GenerateCodes() local
224 UINT32 n; // iterate over m_Heap elements in BuildTree() local
/dports/archivers/advancecomp/advancecomp-2.1-6-g7b08f7a/
H A Dfile.cc294 string file_randomize(const string& path, int n) throw () in file_randomize()
H A Dremng.cc1147 int n, s; in process() local
1177 int n, s; in process() local
1191 int n, s; in process() local
/dports/archivers/advancecomp/advancecomp-2.1-6-g7b08f7a/lib/
H A Dfz.c535 char* fzgets(char *s, int n, adv_fz* f) in fzgets()
/dports/archivers/advancecomp/advancecomp-2.1-6-g7b08f7a/libdeflate/
H A Dcommon_defs.h155 #define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d)) argument
157 #define ALIGN(n, a) (((n) + (a) - 1) & ~((a) - 1)) argument
183 static forceinline u16 bswap16(u16 n) in bswap16()
191 static forceinline u32 bswap32(u32 n) in bswap32()
202 static forceinline u64 bswap64(u64 n) in bswap64()
279 bsr32(u32 n) in bsr32()
290 bsr64(u64 n) in bsr64()
300 bsrw(machine_word_t n) in bsrw()
317 bsf32(u32 n) in bsf32()
330 bsf64(u64 n) in bsf64()
[all …]
H A Dcompiler_gcc.h55 #define _aligned_attribute(n) __attribute__((aligned(n))) argument
131 #define bsr32(n) (31 - __builtin_clz(n)) argument
132 #define bsr64(n) (63 - __builtin_clzll(n)) argument
133 #define bsf32(n) __builtin_ctz(n) argument
134 #define bsf64(n) __builtin_ctzll(n) argument
H A Dcrc32_impl.h270 size_t n = MIN(nbytes, -(uintptr_t)buffer & 15); in FUNCNAME() local
H A Ddeflate_compress.c453 } n; /* (n)ear-optimal */ member
469 #define CAN_BUFFER(n) ((n) <= BITBUF_NBITS - 7) argument
783 unsigned m, n; in build_tree() local
H A Ddeflate_decompress.c202 #define CAN_ENSURE(n) ((n) <= MAX_ENSURE) argument
247 #define HAVE_BITS(n) (bitsleft >= (n)) argument
254 #define ENSURE_BITS(n) \ argument
267 #define BITS(n) ((u32)bitbuf & (((u32)1 << (n)) - 1)) argument
272 #define REMOVE_BITS(n) (bitbuf >>= (n), bitsleft -= (n)) argument
277 #define POP_BITS(n) (tmp32 = BITS(n), REMOVE_BITS(n), tmp32) argument
H A Dmatchfinder_avx2.h12 size_t n; in matchfinder_init_avx2() local
35 size_t n; in matchfinder_rebase_avx2() local
H A Dmatchfinder_neon.h12 size_t n; in matchfinder_init_neon() local
39 size_t n; in matchfinder_rebase_neon() local
H A Dmatchfinder_sse2.h12 size_t n; in matchfinder_init_sse2() local
35 size_t n; in matchfinder_rebase_sse2() local
/dports/archivers/advancecomp/advancecomp-2.1-6-g7b08f7a/zopfli/
H A Dkatajainen.c173 const size_t* frequencies, int n, int maxbits, unsigned* bitlengths) { in ZopfliLengthLimitedCodeLengths()
H A Dsqueeze.c96 static void RandomizeFreqs(RanState* state, size_t* freqs, int n) { in RandomizeFreqs()

12345678910>>...26106