VP8Get             65 third_party/libwebp/dec/quant.c   const int dqy1_dc = VP8Get(br) ? VP8GetSignedValue(br, 4) : 0;
VP8Get             66 third_party/libwebp/dec/quant.c   const int dqy2_dc = VP8Get(br) ? VP8GetSignedValue(br, 4) : 0;
VP8Get             67 third_party/libwebp/dec/quant.c   const int dqy2_ac = VP8Get(br) ? VP8GetSignedValue(br, 4) : 0;
VP8Get             68 third_party/libwebp/dec/quant.c   const int dquv_dc = VP8Get(br) ? VP8GetSignedValue(br, 4) : 0;
VP8Get             69 third_party/libwebp/dec/quant.c   const int dquv_ac = VP8Get(br) ? VP8GetSignedValue(br, 4) : 0;
VP8Get            489 third_party/libwebp/dec/tree.c   dec->use_skip_proba_ = VP8Get(br);
VP8Get            155 third_party/libwebp/dec/vp8.c   hdr->use_segment_ = VP8Get(br);
VP8Get            157 third_party/libwebp/dec/vp8.c     hdr->update_map_ = VP8Get(br);
VP8Get            158 third_party/libwebp/dec/vp8.c     if (VP8Get(br)) {   // update data
VP8Get            160 third_party/libwebp/dec/vp8.c       hdr->absolute_delta_ = VP8Get(br);
VP8Get            162 third_party/libwebp/dec/vp8.c         hdr->quantizer_[s] = VP8Get(br) ? VP8GetSignedValue(br, 7) : 0;
VP8Get            165 third_party/libwebp/dec/vp8.c         hdr->filter_strength_[s] = VP8Get(br) ? VP8GetSignedValue(br, 6) : 0;
VP8Get            171 third_party/libwebp/dec/vp8.c         proba->segments_[s] = VP8Get(br) ? VP8GetValue(br, 8) : 255u;
VP8Get            221 third_party/libwebp/dec/vp8.c   hdr->simple_    = VP8Get(br);
VP8Get            224 third_party/libwebp/dec/vp8.c   hdr->use_lf_delta_ = VP8Get(br);
VP8Get            226 third_party/libwebp/dec/vp8.c     if (VP8Get(br)) {   // update lf-delta?
VP8Get            229 third_party/libwebp/dec/vp8.c         if (VP8Get(br)) {
VP8Get            234 third_party/libwebp/dec/vp8.c         if (VP8Get(br)) {
VP8Get            336 third_party/libwebp/dec/vp8.c     pic_hdr->colorspace_ = VP8Get(br);
VP8Get            337 third_party/libwebp/dec/vp8.c     pic_hdr->clamp_type_ = VP8Get(br);
VP8Get            362 third_party/libwebp/dec/vp8.c   VP8Get(br);   // ignore the value of update_proba_
VP8Get            106 third_party/libwebp/utils/bit_reader.c   return VP8Get(br) ? -value : value;