Searched refs:BYTE (Results 1 - 25 of 118) sorted by relevance

12345

/freebsd-current/sys/dev/smartpqi/
H A Dsmartpqi_ioctl.h43 #define BYTE uint8_t macro
52 BYTE Dev;
53 BYTE Bus:6;
54 BYTE Mode:2; /* b00 */
57 BYTE DevLSB;
58 BYTE DevMSB:6;
59 BYTE Mode:2; /* b01 */
62 BYTE Dev:5;
63 BYTE Bus:3;
64 BYTE Tar
[all...]
/freebsd-current/contrib/ntp/include/
H A Dhopf6039.h19 typedef unsigned char BYTE; typedef
24 #define LOBYTE(w) ((BYTE)(w))
25 #define HIBYTE(w) ((BYTE)(((WORD)(w) >> 8) & 0xFF))
58 BYTE wVisible;
59 BYTE wMode;
60 BYTE wSat0;
61 BYTE wRat0;
62 BYTE wSat1;
63 BYTE wRat1;
64 BYTE wSat
[all...]
/freebsd-current/sys/contrib/zstd/lib/compress/
H A Dhist.c17 #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)(
[all...]
H A Dzstd_compress_superblock.c43 const BYTE* literals, size_t litSize,
49 BYTE* const ostart = (BYTE*)dst;
50 BYTE* const oend = ostart + dstSize;
51 BYTE* op = ostart + lhSize;
118 ostart[4] = (BYTE)(cLitSize >> 10);
162 const BYTE* llCode, const BYTE* mlCode, const BYTE* ofCode,
168 BYTE* cons
[all...]
H A Dzstd_cwksp.h154 BYTE allocFailed;
254 void* const alloc = (BYTE*)ws->allocStart - bytes;
304 void* const objectEnd = (BYTE*)alloc + bytesToAlign;
349 alloc = (BYTE *)alloc + ZSTD_CWKSP_ASAN_REDZONE_SIZE;
362 MEM_STATIC BYTE* ZSTD_cwksp_reserve_buffer(ZSTD_cwksp* ws, size_t bytes)
364 return (BYTE*)ZSTD_cwksp_reserve_internal(ws, bytes, ZSTD_cwksp_alloc_buffers);
394 end = (BYTE *)alloc + bytes;
428 void* end = (BYTE*)alloc + roundedBytes;
432 end = (BYTE *)end + 2 * ZSTD_CWKSP_ASAN_REDZONE_SIZE;
454 alloc = (BYTE*)allo
[all...]
H A Dzstd_double_fast.c24 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;
60 const BYTE* const base = ms->window.base;
61 const BYTE* const istart = (const BYTE*)src;
62 const BYTE* anchor = istart;
66 const BYTE* const prefixLowest = base + prefixLowestIndex;
67 const BYTE* cons
[all...]
H A Dzstd_compress_sequences.h35 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,
H A Dzstd_compress_literals.c18 BYTE* const ostart = (BYTE*)dst;
26 ostart[0] = (BYTE)((U32)set_basic + (srcSize<<3));
45 BYTE* const ostart = (BYTE*)dst;
53 ostart[0] = (BYTE)((U32)set_rle + (srcSize<<3));
65 ostart[flSize] = *(const BYTE*)src;
81 BYTE* const ostart = (BYTE*)dst;
151 ostart[4] = (BYTE)(cLitSiz
[all...]
H A Dzstd_fast.c23 const BYTE* const base = ms->window.base;
24 const BYTE* ip = base + ms->nextToUpdate;
25 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE;
103 const BYTE* const base = ms->window.base;
104 const BYTE* const istart = (const BYTE*)src;
107 const BYTE* const prefixStart = base + prefixStartIndex;
108 const BYTE* const iend = istart + srcSize;
109 const BYTE* cons
[all...]
/freebsd-current/contrib/libpcap/msdos/
H A Dpktdrvr.h50 BYTE class; /* = 1 for DEC/Interl/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 *bu
[all...]
/freebsd-current/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c118 #define FSE_FUNCTION_TYPE BYTE
171 typedef uint8_t BYTE; typedef
179 typedef unsigned char BYTE; typedef
220 const union { U32 i; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */
265 const BYTE* p = (const BYTE*)memPtr;
276 const BYTE* p = (const BYTE*)memPtr;
288 const BYTE* p = (const BYTE*)memPt
1284 typedef uint8_t BYTE; typedef
1291 typedef unsigned char BYTE; typedef
[all...]
H A Dzstd_v03.c98 typedef uint8_t BYTE; typedef
106 typedef unsigned char BYTE; typedef
143 const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */
204 const BYTE* p = (const BYTE*)memPtr;
217 BYTE* p = (BYTE*)memPtr;
218 p[0] = (BYTE)val;
219 p[1] = (BYTE)(val>>8);
225 return MEM_readLE16(memPtr) + (((const BYTE*)memPt
[all...]
H A Dzstd_v02.c97 typedef uint8_t BYTE; typedef
105 typedef unsigned char BYTE; typedef
142 const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */
202 const BYTE* p = (const BYTE*)memPtr;
215 BYTE* p = (BYTE*)memPtr;
216 p[0] = (BYTE)val;
217 p[1] = (BYTE)(val>>8);
223 return MEM_readLE16(memPtr) + (((const BYTE*)memPt
[all...]
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dhist.c17 #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;
95 Counting1[(BYTE) c ]++;
96 Counting2[(BYTE)(c>>8) ]++;
97 Counting3[(BYTE)(
[all...]
H A Dzstd_compress_superblock.c32 BYTE hufDesBuffer[500]; /* TODO give name to this value */
45 BYTE fseTablesBuffer[500]; /* TODO give name to this value */
68 BYTE* const wkspStart = (BYTE*)workspace;
69 BYTE* const wkspEnd = wkspStart + wkspSize;
70 BYTE* const countWkspStart = wkspStart;
73 BYTE* const nodeWksp = countWkspStart + countWkspSize;
101 { size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)src, srcSize, workspace, wkspSize);
170 BYTE* const wkspStart = (BYTE*)workspac
[all...]
H A Dzstd_ldm.c113 BYTE* const bucketOffsets = ldmState->bucketOffsets;
152 const BYTE* pIn, const BYTE* pAnchor,
153 const BYTE* pMatch, const BYTE* pBase)
174 const BYTE* const iend = (const BYTE*)end;
208 U64 lastHash, const BYTE* lastHashed,
209 const BYTE* iend, const BYTE* bas
[all...]
H A Dzstd_compress_sequences.h35 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,
H A Dzstd_compress_literals.c18 BYTE* const ostart = (BYTE* const)dst;
26 ostart[0] = (BYTE)((U32)set_basic + (srcSize<<3));
45 BYTE* const ostart = (BYTE* const)dst;
53 ostart[0] = (BYTE)((U32)set_rle + (srcSize<<3));
65 ostart[flSize] = *(const BYTE*)src;
80 BYTE* const ostart = (BYTE*)dst;
150 ostart[4] = (BYTE)(cLitSiz
[all...]
H A Dzstd_lazy.c21 const BYTE* ip, const BYTE* iend,
32 const BYTE* const base = ms->window.base;
65 U32 current, const BYTE* inputEnd,
74 const BYTE* const base = ms->window.base;
75 const BYTE* const dictBase = ms->window.dictBase;
77 const BYTE* const ip = (current>=dictLimit) ? base + current : dictBase + current;
78 const BYTE* const iend = (current>=dictLimit) ? inputEnd : dictBase + dictLimit;
79 const BYTE* const dictEnd = dictBase + dictLimit;
80 const BYTE* cons
[all...]
H A Dzstd_cwksp.h205 ws->allocStart = (BYTE*)ws->allocStart - ((size_t)ws->allocStart & (sizeof(U32)-1));
229 alloc = (BYTE *)ws->allocStart - bytes;
233 alloc = (BYTE *)alloc - 2 * ZSTD_CWKSP_ASAN_REDZONE_SIZE;
253 alloc = (BYTE *)alloc + ZSTD_CWKSP_ASAN_REDZONE_SIZE;
263 MEM_STATIC BYTE* ZSTD_cwksp_reserve_buffer(ZSTD_cwksp* ws, size_t bytes) {
264 return (BYTE*)ZSTD_cwksp_reserve_internal(ws, bytes, ZSTD_cwksp_alloc_buffers);
283 void* end = (BYTE *)alloc + bytes;
312 void* end = (BYTE*)alloc + roundedBytes;
316 end = (BYTE *)end + 2 * ZSTD_CWKSP_ASAN_REDZONE_SIZE;
338 alloc = (BYTE *)allo
[all...]
H A Dzstd_fast.c23 const BYTE* const base = ms->window.base;
24 const BYTE* ip = base + ms->nextToUpdate;
25 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE;
57 const BYTE* const base = ms->window.base;
58 const BYTE* const istart = (const BYTE*)src;
60 const BYTE* ip0 = istart;
61 const BYTE* ip1;
62 const BYTE* ancho
[all...]
/freebsd-current/contrib/libpcap/
H A Dpcap-dos.h16 typedef unsigned char BYTE; typedef
19 typedef BYTE ETHER[6];
129 BYTE data[ETH_MAX+10]; /* add some margin. data[0] should be */
132 extern BYTE *get_rxbuf (int len) LOCKED_FUNC;
133 extern int peek_rxbuf (BYTE **buf);
134 extern int release_rxbuf (BYTE *buf);
162 int (*copy_rx_buf) (BYTE *buf, int max); /* rx-copy (pktdrvr only) */
163 BYTE *(*get_rx_buf) (int len); /* rx-buf fetch/enqueue */
164 int (*peek_rx_buf) (BYTE **buf); /* rx-non-copy at queue */
165 int (*release_rx_buf) (BYTE *bu
[all...]
/freebsd-current/sys/contrib/zstd/lib/dictBuilder/
H A Dcover.h64 BYTE* dictContent;
94 const size_t *samplesSizes, const BYTE *samples,
97 BYTE *const dict, size_t dictBufferCapacity);
156 COVER_dictSelection_t COVER_selectDict(BYTE* customDictContent, size_t dictBufferCapacity,
157 size_t dictContentSize, const BYTE* samplesBuffer, const size_t* samplesSizes, unsigned nbFinalizeSamples,
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dlz4_zfs.c284 #define BYTE uint8_t macro
349 #define INITBASE(base) const BYTE* const base = ip
357 #define HTYPE const BYTE *
383 #define LZ4_BLINDCOPY(s, d, l) { BYTE* e = (d) + l; LZ4_WILDCOPY(s, d, e); \
480 const BYTE *ip = (BYTE *) source;
482 const BYTE *anchor = ip;
483 const BYTE *const iend = ip + isize;
484 const BYTE *const oend = (BYTE *) des
[all...]
/freebsd-current/usr.bin/systat/
H A Dconvtbl.c43 #define BYTE (1) macro
59 [SC_BYTE] = { BYTE, BYTES, "B", "byte" },
60 [SC_KILOBYTE] = { BYTE, KILOBYTE, "KB", "kbyte" },
61 [SC_MEGABYTE] = { BYTE, MEGABYTE, "MB", "mbyte" },
62 [SC_GIGABYTE] = { BYTE, GIGABYTE, "GB", "gbyte" },
63 [SC_TERABYTE] = { BYTE, TERABYTE, "TB", "tbyte" },

Completed in 303 milliseconds

12345