HelenOS sources
get_bits 338 boot/generic/src/inflate.c code |= get_bits(state, 1);
get_bits 454 boot/generic/src/inflate.c size_t len = lens[symbol] + get_bits(state, lens_ext[symbol]);
get_bits 462 boot/generic/src/inflate.c size_t dist = dists[symbol] + get_bits(state, dists_ext[symbol]);
get_bits 529 boot/generic/src/inflate.c uint16_t nlen = get_bits(state, 5) + 257;
get_bits 532 boot/generic/src/inflate.c uint16_t ndist = get_bits(state, 5) + 1;
get_bits 535 boot/generic/src/inflate.c uint16_t ncode = get_bits(state, 4) + 4;
get_bits 545 boot/generic/src/inflate.c length[order[index]] = get_bits(state, 3);
get_bits 577 boot/generic/src/inflate.c symbol = get_bits(state, 2) + 3;
get_bits 580 boot/generic/src/inflate.c symbol = get_bits(state, 3) + 3;
get_bits 583 boot/generic/src/inflate.c symbol = get_bits(state, 7) + 11;
get_bits 652 boot/generic/src/inflate.c last = get_bits(&state, 1);
get_bits 656 boot/generic/src/inflate.c uint16_t type = get_bits(&state, 2);
get_bits 337 uspace/lib/compress/inflate.c code |= get_bits(state, 1);
get_bits 453 uspace/lib/compress/inflate.c size_t len = lens[symbol] + get_bits(state, lens_ext[symbol]);
get_bits 461 uspace/lib/compress/inflate.c size_t dist = dists[symbol] + get_bits(state, dists_ext[symbol]);
get_bits 528 uspace/lib/compress/inflate.c uint16_t nlen = get_bits(state, 5) + 257;
get_bits 531 uspace/lib/compress/inflate.c uint16_t ndist = get_bits(state, 5) + 1;
get_bits 534 uspace/lib/compress/inflate.c uint16_t ncode = get_bits(state, 4) + 4;
get_bits 544 uspace/lib/compress/inflate.c length[order[index]] = get_bits(state, 3);
get_bits 576 uspace/lib/compress/inflate.c symbol = get_bits(state, 2) + 3;
get_bits 579 uspace/lib/compress/inflate.c symbol = get_bits(state, 3) + 3;
get_bits 582 uspace/lib/compress/inflate.c symbol = get_bits(state, 7) + 11;
get_bits 651 uspace/lib/compress/inflate.c last = get_bits(&state, 1);
get_bits 655 uspace/lib/compress/inflate.c uint16_t type = get_bits(&state, 2);
HelenOS homepage, sources at GitHub