HomeSort by relevance Sort by last modified time
    Searched refs:bit_res (Results 1 - 2 of 2) sorted by null

  /external/lzma/xz-embedded/
xz_dec_bcj.c 208 uint32_t bit_res; local
219 /* Instruction normalized with bit_res for easier manipulation */
229 bit_res = bit_pos & 7;
235 norm = instr >> bit_res;
250 instr &= (1 << bit_res) - 1;
251 instr |= norm << bit_res;
  /external/toybox/toys/pending/
xzcat.c 625 uint32_t bit_res; local
636 /* Instruction normalized with bit_res for easier manipulation */
646 bit_res = bit_pos & 7;
652 norm = instr >> bit_res;
667 instr &= (1 << bit_res) - 1;
668 instr |= norm << bit_res;
    [all...]

Completed in 644 milliseconds