Home
last modified time | relevance | path

Searched refs:high_bit (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/php/ext/google/protobuf/
Dupb.h7779 int high_bit = 63 - __builtin_clzll(val); /* 0-based, undef if val == 0. */
7781 int high_bit = 0;
7783 while(tmp >>= 1) high_bit++;
7785 return val == 0 ? 1 : high_bit / 8 + 1;
Dupb.c225 const uint32_t high_bit = 1 << 30; in field_rank() local
226 assert(ret < high_bit); in field_rank()
228 ret |= high_bit; in field_rank()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ruby/ext/google/protobuf_c/
Dupb.h8079 int high_bit = 63 - __builtin_clzll(val); /* 0-based, undef if val == 0. */
8081 int high_bit = 0;
8083 while(tmp >>= 1) high_bit++;
8085 return val == 0 ? 1 : high_bit / 8 + 1;
Dupb.c268 const uint32_t high_bit = 1 << 30; in field_rank() local
269 assert(ret < high_bit); in field_rank()
271 ret |= high_bit; in field_rank()