Home
last modified time | relevance | path

Searched refs:byte (Results 1 – 13 of 13) sorted by relevance

/lib/raid6/
Daltivec.uc47 * The SHLBYTE() operation shifts each byte left by 1, *not*
48 * rolling over into the next byte
56 * The MASK() operation returns 0xFF in any byte for which the high
57 * bit is 1, 0x00 for any byte for which the high bit is 0.
Dneon.uc34 * The SHLBYTE() operation shifts each byte left by 1, *not*
35 * rolling over into the next byte
43 * The MASK() operation returns 0xFF in any byte for which the high
44 * bit is 1, 0x00 for any byte for which the high bit is 0.
Dint.uc57 * The SHLBYTE() operation shifts each byte left by 1, *not*
58 * rolling over into the next byte
69 * The MASK() operation returns 0xFF in any byte for which the high
70 * bit is 1, 0x00 for any byte for which the high bit is 0.
Ds390vx.uc39 * operation returns 0xFF if the high bit of the byte is 1,
/lib/
Dsbitmap.c291 static inline void emit_byte(struct seq_file *m, unsigned int offset, u8 byte) in emit_byte() argument
300 seq_printf(m, "%02x", byte); in emit_byte()
305 u8 byte = 0; in sbitmap_bitmap_show() local
317 byte |= (word & (BIT(bits) - 1)) << byte_bits; in sbitmap_bitmap_show()
320 emit_byte(m, offset, byte); in sbitmap_bitmap_show()
321 byte = 0; in sbitmap_bitmap_show()
330 emit_byte(m, offset, byte); in sbitmap_bitmap_show()
DKconfig32 - The most significant bit of a byte is at its right (bit 0 of a
148 and crc32_be over byte strings with random alignment and length
181 bool "Sarwate's Algorithm (one byte at a time)"
183 Calculate checksum a byte at a time using Sarwate's algorithm. This
184 is not particularly fast, but has a small 256 byte lookup table.
Ddecompress_unlzma.c316 static inline int INIT write_byte(struct writer *wr, uint8_t byte) in write_byte() argument
318 wr->buffer[wr->buffer_pos++] = wr->previous_byte = byte; in write_byte()
DKconfig.kasan74 casting and comparison, as it embeds tags into the top byte of each
/lib/xz/
Dxz_dec_stream.c178 uint8_t byte; in dec_vli() local
184 byte = in[*in_pos]; in dec_vli()
187 s->vli |= (vli_type)(byte & 0x7F) << s->pos; in dec_vli()
189 if ((byte & 0x80) == 0) { in dec_vli()
191 if (byte == 0 && s->pos != 0) in dec_vli()
Dxz_dec_lzma2.c333 static inline void dict_put(struct dictionary *dict, uint8_t byte) in dict_put() argument
335 dict->buf[dict->pos++] = byte; in dict_put()
/lib/zstd/
Dhuf_compress.c286 BYTE byte; member
410 huffNode[pos].byte = (BYTE)n; in HUF_sort()
493 tree[huffNode[n].byte].nbBits = huffNode[n].nbBits; /* push nbBits per symbol, symbol order */ in HUF_buildCTable_wksp()
Dhuf_decompress.c86 BYTE byte; member
147 D.byte = (BYTE)n; in HUF_readDTableX2_wksp()
161 BYTE const c = dt[val].byte; in HUF_decodeSymbolX2()
Ddecompress.c1497 size_t ZSTD_generateNxBytes(void *dst, size_t dstCapacity, BYTE byte, size_t length) in ZSTD_generateNxBytes() argument
1501 memset(dst, byte, length); in ZSTD_generateNxBytes()