ref: 79fa8b6c3b74ca86b2738d3ae7fda4234f3c34cc
dir: /libcelt/bitrenc.c/
#ifdef HAVE_CONFIG_H #include "config.h" #endif #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); }