Searched refs:byte (Results 1 – 13 of 13) sorted by relevance
/lib/raid6/ |
D | altivec.uc | 47 * 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.
|
D | neon.uc | 34 * 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.
|
D | int.uc | 57 * 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.
|
D | s390vx.uc | 39 * operation returns 0xFF if the high bit of the byte is 1,
|
/lib/ |
D | sbitmap.c | 291 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()
|
D | Kconfig | 32 - 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.
|
D | decompress_unlzma.c | 316 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()
|
D | Kconfig.kasan | 74 casting and comparison, as it embeds tags into the top byte of each
|
/lib/xz/ |
D | xz_dec_stream.c | 178 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()
|
D | xz_dec_lzma2.c | 333 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/ |
D | huf_compress.c | 286 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()
|
D | huf_decompress.c | 86 BYTE byte; member 147 D.byte = (BYTE)n; in HUF_readDTableX2_wksp() 161 BYTE const c = dt[val].byte; in HUF_decodeSymbolX2()
|
D | decompress.c | 1497 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()
|