Home
last modified time | relevance | path

Searched refs:Byte (Results 1 – 20 of 20) sorted by relevance

/CafeSDK-2.12.13-1/system/src/lib/szfile/
DCpuArch.h74 #define GetUi16(p) (((const Byte *)(p))[0] | ((UInt16)((const Byte *)(p))[1] << 8))
77 ((const Byte *)(p))[0] | \
78 ((UInt32)((const Byte *)(p))[1] << 8) | \
79 ((UInt32)((const Byte *)(p))[2] << 16) | \
80 ((UInt32)((const Byte *)(p))[3] << 24))
82 #define GetUi64(p) (GetUi32(p) | ((UInt64)GetUi32(((const Byte *)(p)) + 4) << 32))
85 ((Byte *)(p))[0] = (Byte)_x_; \
86 ((Byte *)(p))[1] = (Byte)(_x_ >> 8); }
89 ((Byte *)(p))[0] = (Byte)_x_; \
90 ((Byte *)(p))[1] = (Byte)(_x_ >> 8); \
[all …]
D7z.h13 extern Byte k7zSignature[k7zSignatureSize];
86 Byte *outBuffer, size_t outSize, ISzAlloc *allocMain);
100 Byte HasStream;
101 Byte IsDir;
102 Byte IsAnti;
103 Byte CrcDefined;
104 Byte MTimeDefined;
105 Byte AttribDefined;
113 Byte *PackCRCsDefined;
180 Byte **outBuffer, /* pointer to pointer to output buffer (allocated with allocMain) */
[all …]
D7zBuf.h15 Byte *data;
25 Byte *data;
32 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc);
D7zDec.c36 const Byte *cur;
37 const Byte *end;
38 const Byte *begin;
45 static Byte ReadByte(void *pp) in ReadByte()
67 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) in SzDecodePpmd()
112 outBuffer[i] = (Byte)sym; in SzDecodePpmd()
128 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) in SzDecodeLzma()
141 Byte *inBuf = NULL; in SzDecodeLzma()
176 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) in SzDecodeLzma2()
191 Byte *inBuf = NULL; in SzDecodeLzma2()
[all …]
D7zIn.c10 Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C};
301 static int TestSignatureCandidate(Byte *testBytes) in TestSignatureCandidate()
312 Byte *Data;
316 static SRes SzReadByte(CSzData *sd, Byte *b) in SzReadByte()
325 static SRes SzReadBytes(CSzData *sd, Byte *data, size_t size) in SzReadBytes()
341 Byte b; in SzReadUInt32()
350 Byte firstByte; in SzReadNumber()
351 Byte mask = 0x80; in SzReadNumber()
357 Byte b; in SzReadNumber()
431 static SRes SzReadBoolVector(CSzData *sd, size_t numItems, Byte **v, ISzAlloc *alloc) in SzReadBoolVector()
[all …]
D7zBuf2.c19 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc) in DynBuf_Write()
24 Byte *data; in DynBuf_Write()
26 data = (Byte *)alloc->Alloc(alloc, newSize); in DynBuf_Write()
D7zTypes.h55 typedef unsigned char Byte; typedef
129 Byte (*Read)(void *p); /* reads one byte, returns 0 in case of EOF or error */
134 void (*Write)(void *p, Byte b);
147 SRes SeqInStream_ReadByte(ISeqInStream *stream, Byte *buf);
198 Byte buf[LookToRead_BUF_SIZE];
D7zCrcOpt.c12 const Byte *p = (const Byte *)data; in CrcUpdateT4()
D7zCrc.c26 const Byte *p = (const Byte *)data; in CrcUpdateT1()
D7zBuf.c22 p->data = (Byte *)alloc->Alloc(alloc, size); in Buf_Create()
D7zStream.c16 buf = (void *)((Byte *)buf + processed); in SeqInStream_Read2()
27 SRes SeqInStream_ReadByte(ISeqInStream *stream, Byte *buf) in SeqInStream_ReadByte()
58 buf = (void *)((Byte *)buf + processed); in LookInStream_Read2()
D7zFile.c111 data = (void *)((Byte *)data + processed); in File_Read()
146 data = (void *)((Byte *)data + processed); in File_Write()
/CafeSDK-2.12.13-1/system/include/
DLzmaDec.h40 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size);
54 Byte *dic;
55 const Byte *buf;
68 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
134 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc);
137 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
182 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
198 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
199 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
223 SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
[all …]
DLzma2Dec.h21 Byte control;
31 SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
32 SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
52 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
54 SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen,
55 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
77 SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
78 Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc);
DLzmaEnc.h55 SRes LzmaEnc_WriteProperties(CLzmaEncHandle p, Byte *properties, SizeT *size);
58 SRes LzmaEnc_MemEncode(CLzmaEncHandle p, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
72 SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
73 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
DLzmaTypes.h55 typedef unsigned char Byte; typedef
129 Byte (*Read)(void *p); /* reads one byte, and returns 0 for EOF or error */
134 void (*Write)(void *p, Byte b);
147 SRes SeqInStream_ReadByte(ISeqInStream *stream, Byte *buf);
198 Byte buf[LookToRead_BUF_SIZE];
Dzconf.h109 # define Byte z_Byte macro
333 typedef unsigned char Byte; /* 8 bits */ typedef
340 # define Bytef Byte FAR
342 typedef Byte FAR Bytef;
354 typedef Byte const *voidpc;
355 typedef Byte FAR *voidpf;
356 typedef Byte *voidp;
DLzma2Enc.h41 Byte Lzma2Enc_WriteProperties(CLzma2EncHandle p);
/CafeSDK-2.12.13-1/system/bin/tool/mastering/resources/compat/
DNdevRun.ddf41 ; The video game title in the 4Byte ASCII code supplied by Nintendo.
43 ; The company name in the 2Byte ASCII code supplied by Nintendo.
/CafeSDK-2.12.13-1/system/src/tool/CatLog/
DCatLog.cs206 Byte[] bytes = unicode.GetBytes(txtLog.Text); in Save()