ref: 2991af5b8ea850c6e92d4a6efac08fbbe84dc690 dir: /libcelt/bitrenc.c/
#include "bitrenc.h" void ec_bitree_update(unsigned *_this,int _sz,int _sym,int _val){ do{ _this[_sym]+=_val; _sym+=_sym+1&-(_sym+1); } while(_sym<_sz); }