Searched refs:byte (Results 1 – 9 of 9) sorted by relevance
/lib/raid6/ |
D | tilegx.uc | 25 /* Create 8 byte copies of constant byte */ 30 * The SHLBYTE() operation shifts each byte left by 1, *not* 31 * rolling over into the next byte 40 * The MASK() operation returns 0xFF in any byte for which the high 41 * bit is 1, 0x00 for any byte for which the high bit is 0.
|
D | altivec.uc | 44 * The SHLBYTE() operation shifts each byte left by 1, *not* 45 * rolling over into the next byte 53 * The MASK() operation returns 0xFF in any byte for which the high 54 * bit is 1, 0x00 for any byte for which the high bit is 0.
|
D | neon.uc | 35 * The SHLBYTE() operation shifts each byte left by 1, *not* 36 * rolling over into the next byte 44 * The MASK() operation returns 0xFF in any byte for which the high 45 * 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 | 38 * operation returns 0xFF if the high bit of the byte is 1,
|
/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/ |
D | Kconfig | 112 and crc32_be over byte strings with random alignment and length 145 bool "Sarwate's Algorithm (one byte at a time)" 147 Calculate checksum a byte at a time using Sarwate's algorithm. This 148 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()
|