Home
last modified time | relevance | path

Searched defs:n (Results 15451 – 15475 of 652647) sorted by last modified time

1...<<611612613614615616617618619620>>...26106

/dports/archivers/pixz/pixz-1.0.7/src/
H A Dendian.c9 void xle64enc(uint8_t *d, uint64_t n) { in xle64enc()
47 void xle64enc(uint8_t *d, uint64_t n) { in xle64enc()
64 void xle64enc(uint8_t *d, uint64_t n) { in xle64enc()
/dports/archivers/bzip/bzip-0.21/
H A Dbzip.c767 #define TWO_TO_THE(n) (1 << (n)) argument
1204 void sendMTFVal ( BitStream *bs, Int32 n ) in sendMTFVal()
1331 Int32 n = 100000 * blockSize100k; in allocateCompressStructures() local
1366 Int32 n = 100000 * newSize100k; in setDecompressStructureSizes() local
1593 Int32 n = 0; in getAndMoveToFrontDecode() local
2121 Int32 n; in spotBlock() local
2703 Int32 n = strlen ( name ); in endsInBz() local
3051 void *myMalloc ( size_t n ) in myMalloc()
/dports/archivers/lzma/lzma-19.00/CPP/7zip/Archive/7z/
H A D7zUpdate.cpp556 int n = CompareFileNames(u1.Name, u2.Name); in CompareEmptyItems() local
708 int n = CompareFileNames(u1.Name, u2.Name); in CompareUpdateItems() local
/dports/archivers/lzma/lzma-19.00/CPP/7zip/UI/Common/
H A DPropIDUtils.cpp55 #define MY_ATTR_CHAR(a, n, c) ((a) & (1 << (n))) ? c : '-'; argument
267 UInt32 n; member
326 UInt32 n[5]; member
H A DArchiveExtractCallback.cpp772 unsigned n = NName::GetRootPrefixSize(linkPath); in GetStream() local
/dports/archivers/lzma/lzma-19.00/CPP/7zip/Crypto/
H A DRandGen.cpp129 int n = read(f, buf, numBytes); in Init() local
/dports/archivers/lzma/lzma-19.00/CPP/7zip/Compress/
H A DBranchRegister.cpp14 #define CREATE_BRA(n) \ argument
24 #define METHOD_ITEM(n, id, name) \ in CREATE_BRA() argument
/dports/archivers/lzma/lzma-19.00/CPP/7zip/Common/
H A DRegisterArc.h42 #define REGISTER_ARC_V(n, e, ae, id, sigSize, sig, offs, flags, crIn, crOut, isArc) \ argument
45 #define REGISTER_ARC_R(n, e, ae, id, sigSize, sig, offs, flags, crIn, crOut, isArc) \ argument
51 #define REGISTER_ARC_I_CLS(cls, n, e, ae, id, sig, offs, flags, isArc) \ argument
55 #define REGISTER_ARC_I_CLS_NO_SIG(cls, n, e, ae, id, offs, flags, isArc) \ argument
59 #define REGISTER_ARC_I(n, e, ae, id, sig, offs, flags, isArc) \ argument
62 #define REGISTER_ARC_I_NO_SIG(n, e, ae, id, offs, flags, isArc) \ argument
66 #define REGISTER_ARC_IO(n, e, ae, id, sig, offs, flags, isArc) \ argument
71 #define REGISTER_ARC_IO_DECREMENT_SIG(n, e, ae, id, sig, offs, flags, isArc) \ argument
/dports/archivers/lzma/lzma-19.00/CPP/Common/
H A DUTFConvert.cpp27 #define _UTF8_START(n) (0x100 - (1 << (7 - (n)))) argument
29 #define _UTF8_HEAD_PARSE2(n) if (c < _UTF8_START((n) + 1)) { numBytes = (n); c -= _UTF8_START(n); } argument
149 #define _UTF8_RANGE(n) (((UInt32)1) << ((n) * 5 + 6)) argument
151 #define _UTF8_HEAD(n, val) ((char)(_UTF8_START(n) + (val >> (6 * (n))))) argument
152 #define _UTF8_CHAR(n, val) ((char)(0x80 + (((val) >> (6 * (n))) & 0x3F))) argument
H A DMyString.cpp420 void AString::Grow(unsigned n) in Grow()
986 void UString::Grow(unsigned n) in Grow()
/dports/archivers/lzma/lzma-19.00/C/
H A DAes.c54 #define gb(n, x) gb ## n(x) argument
H A DAesOpt.c43 #define AES_OP_W(op, n) { \ argument
50 #define AES_DEC(n) AES_OP_W(_mm_aesdec_si128, n) argument
51 #define AES_DEC_LAST(n) AES_OP_W(_mm_aesdeclast_si128, n) argument
52 #define AES_ENC(n) AES_OP_W(_mm_aesenc_si128, n) argument
53 #define AES_ENC_LAST(n) AES_OP_W(_mm_aesenclast_si128, n) argument
H A DXzEnc.c39 #define XzBlock_SetNumFilters(p, n) (p)->flags |= ((n) - 1); argument
H A D7zTypes.h91 #define UINT64_CONST(n) n argument
95 #define UINT64_CONST(n) n ## ULL argument
H A DLzFindMt.c776 #define SKIP_HEADER_MT(n) SKIP_HEADER2_MT if (p->btNumAvailBytes-- >= (n)) { const Byte *cur = p->p… argument
H A DRotateDefs.h18 #define rotlFixed(x, n) _rotl((x), (n)) argument
19 #define rotrFixed(x, n) _rotr((x), (n)) argument
25 #define rotlFixed(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) argument
26 #define rotrFixed(x, n) (((x) >> (n)) | ((x) << (32 - (n)))) argument
H A DPpmd7.c156 CPpmd7_Node_Ref n = head; in GlueFreeBlocks() local
/dports/archivers/lzma/lzma-19.00/C/Util/7z/
H A D7zMain.c56 #define _UTF8_START(n) (0x100 - (1 << (7 - (n)))) argument
58 #define _UTF8_RANGE(n) (((UInt32)1) << ((n) * 5 + 6)) argument
60 #define _UTF8_HEAD(n, val) ((Byte)(_UTF8_START(n) + (val >> (6 * (n))))) argument
61 #define _UTF8_CHAR(n, val) ((Byte)(0x80 + (((val) >> (6 * (n))) & 0x3F))) argument
/dports/devel/gmake/make-4.3/lib/
H A Dglob.c168 # define memcpy(d, s, n) bcopy ((s), (d), (n)) argument
171 # define memset(s, better_be_zero, n) \ argument
192 my_realloc (void *p, unsigned int n) in my_realloc()
214 # define alloca(n) __builtin_alloca (n) argument
1112 prefix_array (dirname, array, n) in prefix_array() argument
/dports/archivers/xmill/xmill/XMill/
H A DBaseXNumCompressor.cpp86 long n; in char2num() local
120 long n; in char2num() local
268 unsigned char BaseXNumUncompressor::num2char(unsigned int n) in num2char()
/dports/archivers/xmill/xmill/xmillinspect/
H A Dexprinfo.cpp39 void ExprInfo::setNumContainers(int n, bool takemax) in setNumContainers()
/dports/archivers/upx/upx-3.96/src/
H A Dp_wcle.cpp155 unsigned count,object,n; in encodeEntryTable() local
739 unsigned count,object,n,r; in decodeEntryTable() local
H A Dminiacc.h1899 # define __acc_byte_struct(s,n) struct s { unsigned char a[n]; } __attribute__((__packed__)… argument
1904 # define __acc_byte_struct_ma(s,n) __acc_byte_struct(s,n) argument
5422 unsigned n; member
5433 unsigned n; member
6738 int i = middle, n = middle - first; in __ACCLIB_FUNCNAME() local
7043 size_t n = size - l > sizeof(tmp) ? sizeof(tmp) : (size_t) (size - l); in ACCLIB_PUBLIC() local
7056 size_t n; in ACCLIB_PUBLIC() local
7083 size_t n = size - l > sizeof(tmp) ? sizeof(tmp) : (size_t) (size - l); in ACCLIB_PUBLIC() local
7096 size_t n; in ACCLIB_PUBLIC() local
7128 long n = size - l; in ACCLIB_PUBLIC() local
[all …]
/dports/lang/ocaml/ocaml-4.05.0/asmrun/
H A Damd64.S71 #define CFI_ADJUST(n) .cfi_adjust_cfa_offset n argument
72 #define CFI_OFFSET(r, n) .cfi_offset r, n argument
77 #define CFI_ADJUST(n) argument
78 #define CFI_OFFSET(r, n) argument
/dports/archivers/gcpio/cpio-2.13/src/
H A Dutil.c1022 ssize_t n; in sparse_write() local

1...<<611612613614615616617618619620>>...26106