HomeSort by: relevance | last modified time | path
    Searched refs:BYTE (Results 1 - 25 of 187) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/external/bsd/ntp/dist/include/
hopf6039.h 21 typedef unsigned char BYTE;
26 #define LOBYTE(w) ((BYTE)(w))
27 #define HIBYTE(w) ((BYTE)(((WORD)(w) >> 8) & 0xFF))
60 BYTE wVisible;
61 BYTE wMode;
62 BYTE wSat0;
63 BYTE wRat0;
64 BYTE wSat1;
65 BYTE wRat1;
66 BYTE wSat2
    [all...]
  /src/external/bsd/zstd/dist/lib/compress/
hist.c 17 #include "../common/mem.h" /* U32, BYTE, etc. */
32 const BYTE* ip = (const BYTE*)src;
33 const BYTE* const end = ip + srcSize;
72 const BYTE* ip = (const BYTE*)source;
73 const BYTE* const iend = ip+sourceSize;
94 Counting1[(BYTE) c ]++;
95 Counting2[(BYTE)(c>>8) ]++;
96 Counting3[(BYTE)(c>>16)]++
    [all...]
zstd_double_fast.c 27 const BYTE* const base = ms->window.base;
28 const BYTE* ip = base + ms->nextToUpdate;
29 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE;
65 const BYTE* const base = ms->window.base;
66 const BYTE* ip = base + ms->nextToUpdate;
67 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE;
114 const BYTE* const base = ms->window.base;
115 const BYTE* const istart = (const BYTE*)src
    [all...]
zstd_compress_literals.c 24 const BYTE* const ip = (const BYTE*)src;
41 BYTE* const ostart = (BYTE*)dst;
51 ostart[0] = (BYTE)((U32)set_basic + (srcSize<<3));
72 { const BYTE b = ((const BYTE*)src)[0];
75 if (((const BYTE*)src)[p] != b) return 0;
83 BYTE* const ostart = (BYTE*)dst
    [all...]
zstd_compress_sequences.h 35 const BYTE* codeTable, size_t nbSeq,
42 FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable,
43 FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable,
44 FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable,
zstd_fast.c 24 const BYTE* const base = ms->window.base;
25 const BYTE* ip = base + ms->nextToUpdate;
26 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE;
61 const BYTE* const base = ms->window.base;
62 const BYTE* ip = base + ms->nextToUpdate;
63 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE;
158 const BYTE* const base = ms->window.base;
159 const BYTE* const istart = (const BYTE*)src
    [all...]
zstd_cwksp.h 127 * Their sizes depend on the cparams. These tables are 64-byte aligned.
168 BYTE allocFailed;
288 void* const alloc = (BYTE*)ws->allocStart - bytes;
327 void *const objectEnd = (BYTE *) alloc + bytesToAlign;
374 alloc = (BYTE *)alloc + ZSTD_CWKSP_ASAN_REDZONE_SIZE;
389 MEM_STATIC BYTE* ZSTD_cwksp_reserve_buffer(ZSTD_cwksp* ws, size_t bytes)
391 return (BYTE*)ZSTD_cwksp_reserve_internal(ws, bytes, ZSTD_cwksp_alloc_buffers);
413 * For these reasons it should be fine to not explicitly zero every byte up to ws->initOnceStart.
455 end = (BYTE *)alloc + bytes;
489 void* end = (BYTE*)alloc + roundedBytes
    [all...]
zstd_compress_superblock.c 44 const BYTE* literals, size_t litSize,
50 BYTE* const ostart = (BYTE*)dst;
51 BYTE* const oend = ostart + dstSize;
52 BYTE* op = ostart + lhSize;
117 ostart[4] = (BYTE)(cLitSize >> 10);
166 const BYTE* llCode, const BYTE* mlCode, const BYTE* ofCode,
172 BYTE* const ostart = (BYTE*)dst
    [all...]
  /src/external/bsd/zstd/dist/contrib/externalSequenceProducer/
sequence_producer.c 27 const BYTE* const istart = (const BYTE*)src;
28 const BYTE* const iend = istart + srcSize;
29 const BYTE* ip = istart;
30 const BYTE* anchor = istart;
51 const BYTE* const match = istart + matchIndex;
  /src/external/bsd/libpcap/dist/msdos/
pktdrvr.h 50 BYTE class; /* = 1 for DEC/Intel/Xerox Ethernet */
51 BYTE number; /* = 0 for single LAN adapter */
53 BYTE funcs; /* Basic/Extended/HiPerf functions */
56 BYTE name [15]; /* Name of adapter interface,ie.3C523*/
59 BYTE majVer; /* Major driver implementation ver. */
60 BYTE minVer; /* Minor driver implementation ver. */
61 BYTE dummyLen; /* length of following data */
88 BYTE data [TX_BUF_SIZE];
98 BYTE data [RX_BUF_SIZE];
130 extern int PktReceive (BYTE *buf, int max)
    [all...]
  /src/external/bsd/zstd/dist/tests/
decodecorpus.c 91 BYTE* op = ptr;
94 op[i] = (BYTE) (RAND(seed) % (maxSymb + 1));
102 BYTE* op = ptr;
113 static void RAND_bufferDist(U32* seed, BYTE* dist, void* ptr, size_t size)
116 BYTE* op = ptr;
126 static void RAND_genDist(U32* seed, BYTE* dist, double weight)
130 BYTE symb = (BYTE) (RAND(seed) % 256);
131 BYTE step = (BYTE) ((RAND(seed) % 256) | 1); /* force it to be odd so it's relatively prime to 256 *
    [all...]
seqgen.c 20 static BYTE SEQ_randByte(unsigned* src)
29 return (BYTE)(rand32 >> 5);
41 /* Generates a single guard byte, then match length + 1 of a different byte,
42 * then another guard byte.
52 BYTE* const ostart = (BYTE*)out->dst;
53 BYTE* const oend = ostart + out->size;
54 BYTE* op = ostart + out->pos;
58 /* Generate a single byte and pick a different byte for the match *
    [all...]
external_matchfinder.c 28 const BYTE* const istart = (const BYTE*)src;
29 const BYTE* const iend = istart + srcSize;
30 const BYTE* ip = istart;
31 const BYTE* anchor = istart;
52 const BYTE* const match = istart + matchIndex;
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 119 #define FSE_FUNCTION_TYPE BYTE
124 * Byte symbol type
172 typedef uint8_t BYTE;
180 typedef unsigned char BYTE;
202 const union { U32 i; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */
227 const BYTE* p = (const BYTE*)memPtr;
238 const BYTE* p = (const BYTE*)memPtr;
250 const BYTE* p = (const BYTE*)memPtr
906 BYTE byte; member in struct:nodeElt_s
915 BYTE byte; member in struct:__anon6367
    [all...]
zstd_v03.c 85 typedef uint8_t BYTE;
93 typedef unsigned char BYTE;
112 const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */
142 const BYTE* p = (const BYTE*)memPtr;
155 BYTE* p = (BYTE*)memPtr;
156 p[0] = (BYTE)val;
157 p[1] = (BYTE)(val>>8);
163 return MEM_readLE16(memPtr) + (((const BYTE*)memPtr)[2] << 16)
1466 typedef struct { BYTE byte; BYTE nbBits; } HUF_DEltX2; \/* single-symbol decoding *\/ member in struct:__anon6399
    [all...]
zstd_v02.c 84 typedef uint8_t BYTE;
92 typedef unsigned char BYTE;
111 const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */
141 const BYTE* p = (const BYTE*)memPtr;
154 BYTE* p = (BYTE*)memPtr;
155 p[0] = (BYTE)val;
156 p[1] = (BYTE)(val>>8);
162 return MEM_readLE16(memPtr) + (((const BYTE*)memPtr)[2] << 16)
1470 typedef struct { BYTE byte; BYTE nbBits; } HUF_DEltX2; \/* single-symbol decoding *\/ member in struct:__anon6381
2134 typedef union { BYTE byte[4]; U32 sequence; } HUF_DSeqX6; member in union:__anon6385
    [all...]
  /src/external/bsd/zstd/dist/lib/dictBuilder/
cover.h 16 #include "../common/mem.h" /* U32, BYTE */
58 BYTE* dictContent;
88 const size_t *samplesSizes, const BYTE *samples,
91 BYTE *const dict, size_t dictBufferCapacity);
150 COVER_dictSelection_t COVER_selectDict(BYTE* customDictContent, size_t dictBufferCapacity,
151 size_t dictContentSize, const BYTE* samplesBuffer, const size_t* samplesSizes, unsigned nbFinalizeSamples,
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
lz4.c 128 * negative result, indicating the byte position of the faulty
265 #define BYTE uint8_t
335 #define INITBASE(base) const BYTE* const base = ip
343 #define HTYPE const BYTE *
369 #define LZ4_BLINDCOPY(s, d, l) { BYTE* e = (d) + l; LZ4_WILDCOPY(s, d, e); \
475 const BYTE *ip = (BYTE *) source;
477 const BYTE *anchor = ip;
478 const BYTE *const iend = ip + isize;
479 const BYTE *const oend = (BYTE *) dest + osize
    [all...]
  /src/external/bsd/libpcap/dist/
pcap-dos.h 18 typedef unsigned char BYTE;
21 typedef BYTE ETHER[6];
131 BYTE data[ETH_MAX+10]; /* add some margin. data[0] should be */
134 extern BYTE *get_rxbuf (int len) LOCKED_FUNC;
135 extern int peek_rxbuf (BYTE **buf);
136 extern int release_rxbuf (BYTE *buf);
164 int (*copy_rx_buf) (BYTE *buf, int max); /* rx-copy (pktdrvr only) */
165 BYTE *(*get_rx_buf) (int len); /* rx-buf fetch/enqueue */
166 int (*peek_rx_buf) (BYTE **buf); /* rx-non-copy at queue */
167 int (*release_rx_buf) (BYTE *buf); /* release after peek *
    [all...]
  /src/usr.bin/systat/
convtbl.c 52 #define BYTE (1)
68 [SC_BYTE] = { BYTE, BYTES, "B", "byte" },
69 [SC_KILOBYTE] = { BYTE, KILOBYTE, "KB", "kbyte" },
70 [SC_MEGABYTE] = { BYTE, MEGABYTE, "MB", "mbyte" },
71 [SC_GIGABYTE] = { BYTE, GIGABYTE, "GB", "gbyte" },
72 [SC_TERABYTE] = { BYTE, TERABYTE, "TB", "tbyte" },
  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_block.c 93 dctx->litBuffer = (BYTE*)dst + blockSizeMax + WILDCOPY_OVERLENGTH;
114 dctx->litBuffer = (BYTE*)dst + expectedWriteSize - litSize + ZSTD_LITBUFFEREXTRASIZE - WILDCOPY_OVERLENGTH;
118 dctx->litBuffer = (BYTE*)dst + expectedWriteSize - litSize;
119 dctx->litBufferEnd = (BYTE*)dst + expectedWriteSize;
122 assert(dctx->litBufferEnd <= (BYTE*)dst + expectedWriteSize);
141 { const BYTE* const istart = (const BYTE*) src;
238 assert(dctx->litBufferEnd <= (BYTE*)dst + blockSizeMax);
495 BYTE* spread = (BYTE*)(symbolNext + MaxSeq + 1)
    [all...]
  /src/external/bsd/zstd/dist/lib/common/
zstd_internal.h 119 #define ZSTD_MAX_HUF_HEADER_SIZE 128 /* header + <= 127 byte tree description */
196 BYTE copy16_buf[16];
222 ptrdiff_t diff = (BYTE*)dst - (const BYTE*)src;
223 const BYTE* ip = (const BYTE*)src;
224 BYTE* op = (BYTE*)dst;
225 BYTE* const oend = op + length;
297 BYTE* litStart
    [all...]
  /src/external/bsd/zstd/dist/programs/
datagen.c 60 static void RDG_fillLiteralDistrib(BYTE* ldt, fixedPoint_24_8 ld)
62 BYTE const firstChar = (ld<=0.0) ? 0 : '(';
63 BYTE const lastChar = (ld<=0.0) ? 255 : '}';
64 BYTE character = (ld<=0.0) ? 0 : '0';
78 static BYTE RDG_genChar(U32* seed, const BYTE* ldt)
97 double matchProba, const BYTE* ldt, U32* seedPtr)
99 BYTE* const buffPtr = (BYTE*)buffer;
147 BYTE ldt[LTSIZE]
    [all...]
  /src/sys/arch/amd64/amd64/
db_disasm.c 60 #define BYTE 0
85 #define Eb 4 /* address, byte size */
102 #define Ib 21 /* byte immediate, unsigned */
103 #define Ibs 22 /* byte immediate, signed */
107 #define Db 26 /* byte displacement from EIP */
122 short i_has_modrm; /* has regmodrm byte */
355 /*b0*/ { "cmpxchg",true, BYTE, op2(R, E), 0 },
375 /*c0*/ { "xadd", true, BYTE, op2(R, E), 0 },
576 { "inc", true, BYTE, op1(E), 0 },
577 { "dec", true, BYTE, op1(E), 0 }
    [all...]
  /src/sys/arch/i386/i386/
db_disasm.c 50 #define BYTE 0
67 #define Eb 4 /* address, byte size */
84 #define Ib 21 /* byte immediate, unsigned */
85 #define Ibs 22 /* byte immediate, signed */
89 #define Db 26 /* byte displacement from EIP */
100 #define Iba 37 /* byte immediate, don't print if 0xa */
105 short i_has_modrm; /* has regmodrm byte */
323 /*b0*/ { "cmpxchg",true, BYTE, op2(R, E), 0 },
343 /*c0*/ { "xadd", true, BYTE, op2(R, E), 0 },
544 { "inc", true, BYTE, op1(E), 0 }
    [all...]

Completed in 57 milliseconds

1 2 3 4 5 6 7 8