Home
last modified time | relevance | path

Searched refs:hasbit_index (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/third_party/upb/upbc/
Dprotoc-gen-upb.cc752 uint64_t hasbit_index = 63; // No hasbit (set a high, unused bit). in TryFillTableEntry() local
754 hasbit_index = layout.GetHasbitIndex(field); in TryFillTableEntry()
755 if (hasbit_index > 31) return false; in TryFillTableEntry()
757 data |= hasbit_index << 24; in TryFillTableEntry()
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/
Ddecode_fast.c259 uint8_t hasbit_index = *data >> 24; in fastdecode_getfield() local
261 *hasbits |= 1ull << hasbit_index; in fastdecode_getfield()
/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_message.cc570 int hasbit_index = has_bit_indices_[field->index()]; in OnStartChunk() local
572 GOOGLE_CHECK_EQ(this_word, hasbit_index / 32); in OnStartChunk()
573 mask |= 1 << (hasbit_index % 32); in OnStartChunk()