Home
last modified time | relevance | path

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

/lib/raid6/
Dtilegx.uc25 /* 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.
Daltivec.uc44 * 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.
Dneon.uc35 * 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.
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.uc38 * operation returns 0xFF if the high bit of the byte is 1,
/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/
DKconfig112 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.
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()