/third_party/ffmpeg/libavformat/ |
D | rtpdec_jpeg.c | 88 static void jpeg_put_marker(PutByteContext *pbc, int code) in jpeg_put_marker() argument 90 bytestream2_put_byte(pbc, 0xff); in jpeg_put_marker() 91 bytestream2_put_byte(pbc, code); in jpeg_put_marker() 98 PutByteContext pbc; in jpeg_create_header() local 102 bytestream2_init_writer(&pbc, buf, size); in jpeg_create_header() 109 jpeg_put_marker(&pbc, SOI); in jpeg_create_header() 112 jpeg_put_marker(&pbc, APP0); in jpeg_create_header() 113 bytestream2_put_be16(&pbc, 16); in jpeg_create_header() 114 bytestream2_put_buffer(&pbc, "JFIF", 5); in jpeg_create_header() 115 bytestream2_put_be16(&pbc, 0x0102); in jpeg_create_header() [all …]
|
D | av1.c | 368 PutBitContext pbc; in ff_isom_write_av1c() local 437 init_put_bits(&pbc, header, sizeof(header)); in ff_isom_write_av1c() 439 put_bits(&pbc, 1, 1); // marker in ff_isom_write_av1c() 440 put_bits(&pbc, 7, 1); // version in ff_isom_write_av1c() 441 put_bits(&pbc, 3, seq_params.profile); in ff_isom_write_av1c() 442 put_bits(&pbc, 5, seq_params.level); in ff_isom_write_av1c() 443 put_bits(&pbc, 1, seq_params.tier); in ff_isom_write_av1c() 444 put_bits(&pbc, 1, seq_params.bitdepth > 8); in ff_isom_write_av1c() 445 put_bits(&pbc, 1, seq_params.bitdepth == 12); in ff_isom_write_av1c() 446 put_bits(&pbc, 1, seq_params.monochrome); in ff_isom_write_av1c() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | sgienc.c | 51 static int sgi_rle_encode(PutByteContext *pbc, const uint8_t *src, in sgi_rle_encode() argument 54 int val, count, x, start = bytestream2_tell_p(pbc); in sgi_rle_encode() 66 if (bytestream2_get_bytes_left_p(pbc) < bpp * 2) in sgi_rle_encode() 70 bytestream2_put(pbc, count); in sgi_rle_encode() 71 bytestream2_put(pbc, val); in sgi_rle_encode() 76 if (bytestream2_get_bytes_left_p(pbc) < bpp * (count + 1)) in sgi_rle_encode() 79 bytestream2_put(pbc, count + 0x80); in sgi_rle_encode() 82 bytestream2_put(pbc, val); in sgi_rle_encode() 89 return bytestream2_tell_p(pbc) - start; in sgi_rle_encode() 97 PutByteContext pbc; in encode_frame() local [all …]
|
D | cbs_av1.c | 107 static int cbs_av1_write_uvlc(CodedBitstreamContext *ctx, PutBitContext *pbc, in cbs_av1_write_uvlc() argument 122 position = put_bits_count(pbc); in cbs_av1_write_uvlc() 126 put_bits(pbc, zeroes, 0); in cbs_av1_write_uvlc() 127 put_bits(pbc, 1, 1); in cbs_av1_write_uvlc() 128 put_bits(pbc, zeroes, v); in cbs_av1_write_uvlc() 180 static int cbs_av1_write_leb128(CodedBitstreamContext *ctx, PutBitContext *pbc, in cbs_av1_write_leb128() argument 189 position = put_bits_count(pbc); in cbs_av1_write_leb128() 198 err = ff_cbs_write_unsigned(ctx, pbc, 8, "leb128_byte[i]", subscript, in cbs_av1_write_leb128() 260 static int cbs_av1_write_ns(CodedBitstreamContext *ctx, PutBitContext *pbc, in cbs_av1_write_ns() argument 275 position = put_bits_count(pbc); in cbs_av1_write_ns() [all …]
|
D | cbs_vp9.c | 64 static int cbs_vp9_write_s(CodedBitstreamContext *ctx, PutBitContext *pbc, in cbs_vp9_write_s() argument 71 if (put_bits_left(pbc) < width + 1) in cbs_vp9_write_s() 85 ff_cbs_trace_syntax_element(ctx, put_bits_count(pbc), in cbs_vp9_write_s() 89 put_bits(pbc, width, magnitude); in cbs_vp9_write_s() 90 put_bits(pbc, 1, sign); in cbs_vp9_write_s() 131 static int cbs_vp9_write_increment(CodedBitstreamContext *ctx, PutBitContext *pbc, in cbs_vp9_write_increment() argument 149 if (put_bits_left(pbc) < len) in cbs_vp9_write_increment() 162 ff_cbs_trace_syntax_element(ctx, put_bits_count(pbc), in cbs_vp9_write_increment() 167 put_bits(pbc, len, (1 << len) - 1 - (value != range_max)); in cbs_vp9_write_increment() 210 static int cbs_vp9_write_le(CodedBitstreamContext *ctx, PutBitContext *pbc, in cbs_vp9_write_le() argument [all …]
|
D | cbs_mpeg2.c | 272 PutBitContext *pbc) in cbs_mpeg2_write_header() argument 279 err = cbs_mpeg2_write_ ## func(ctx, pbc, unit->content); \ in cbs_mpeg2_write_header() 300 PutBitContext *pbc) in cbs_mpeg2_write_slice() argument 305 err = cbs_mpeg2_write_slice_header(ctx, pbc, &slice->header); in cbs_mpeg2_write_slice() 316 if (slice->data_size * 8 + 8 > put_bits_left(pbc)) in cbs_mpeg2_write_slice() 321 put_bits(pbc, 8 - slice->data_bit_start % 8, in cbs_mpeg2_write_slice() 324 if (put_bits_count(pbc) % 8 == 0) { in cbs_mpeg2_write_slice() 328 flush_put_bits(pbc); in cbs_mpeg2_write_slice() 329 memcpy(put_bits_ptr(pbc), pos, rest); in cbs_mpeg2_write_slice() 330 skip_put_bytes(pbc, rest); in cbs_mpeg2_write_slice() [all …]
|
D | cbs_h2645.c | 142 static int cbs_write_ue_golomb(CodedBitstreamContext *ctx, PutBitContext *pbc, in cbs_write_ue_golomb() argument 158 if (put_bits_left(pbc) < 2 * len + 1) in cbs_write_ue_golomb() 172 ff_cbs_trace_syntax_element(ctx, put_bits_count(pbc), in cbs_write_ue_golomb() 176 put_bits(pbc, len, 0); in cbs_write_ue_golomb() 178 put_bits(pbc, len + 1, value + 1); in cbs_write_ue_golomb() 180 put_bits32(pbc, value + 1); in cbs_write_ue_golomb() 185 static int cbs_write_se_golomb(CodedBitstreamContext *ctx, PutBitContext *pbc, in cbs_write_se_golomb() argument 209 if (put_bits_left(pbc) < 2 * len + 1) in cbs_write_se_golomb() 223 ff_cbs_trace_syntax_element(ctx, put_bits_count(pbc), in cbs_write_se_golomb() 227 put_bits(pbc, len, 0); in cbs_write_se_golomb() [all …]
|
D | hapenc.c | 75 static void hap_write_section_header(PutByteContext *pbc, in hap_write_section_header() argument 84 bytestream2_put_le24(pbc, header_length == HAP_HDR_LONG ? 0 : section_length); in hap_write_section_header() 85 bytestream2_put_byte(pbc, section_type); in hap_write_section_header() 88 bytestream2_put_le32(pbc, section_length); in hap_write_section_header() 164 PutByteContext pbc; in hap_write_frame_header() local 167 bytestream2_init_writer(&pbc, dst, frame_length); in hap_write_frame_header() 170 hap_write_section_header(&pbc, HAP_HDR_LONG, frame_length - 8, in hap_write_frame_header() 174 hap_write_section_header(&pbc, HAP_HDR_LONG, frame_length - 8, in hap_write_frame_header() 176 hap_write_section_header(&pbc, HAP_HDR_SHORT, hap_decode_instructions_length(ctx), in hap_write_frame_header() 178 hap_write_section_header(&pbc, HAP_HDR_SHORT, ctx->chunk_count, in hap_write_frame_header() [all …]
|
D | cbs_jpeg.c | 330 PutBitContext *pbc) in cbs_jpeg_write_scan() argument 335 err = cbs_jpeg_write_scan_header(ctx, pbc, &scan->header); in cbs_jpeg_write_scan() 340 if (scan->data_size * 8 > put_bits_left(pbc)) in cbs_jpeg_write_scan() 343 av_assert0(put_bits_count(pbc) % 8 == 0); in cbs_jpeg_write_scan() 345 flush_put_bits(pbc); in cbs_jpeg_write_scan() 347 memcpy(put_bits_ptr(pbc), scan->data, scan->data_size); in cbs_jpeg_write_scan() 348 skip_put_bytes(pbc, scan->data_size); in cbs_jpeg_write_scan() 356 PutBitContext *pbc) in cbs_jpeg_write_segment() argument 362 err = cbs_jpeg_write_frame_header(ctx, pbc, unit->content); in cbs_jpeg_write_segment() 365 err = cbs_jpeg_write_application_data(ctx, pbc, unit->content); in cbs_jpeg_write_segment() [all …]
|
D | vaapi_encode_mjpeg.c | 266 PutByteContext pbc; in vaapi_encode_mjpeg_init_picture_params() local 268 bytestream2_init_writer(&pbc, priv->jfif_data, in vaapi_encode_mjpeg_init_picture_params() 271 bytestream2_put_buffer(&pbc, "JFIF", 5); in vaapi_encode_mjpeg_init_picture_params() 272 bytestream2_put_be16(&pbc, 0x0102); in vaapi_encode_mjpeg_init_picture_params() 273 bytestream2_put_byte(&pbc, 0); in vaapi_encode_mjpeg_init_picture_params() 277 bytestream2_put_be16(&pbc, sar_w); in vaapi_encode_mjpeg_init_picture_params() 278 bytestream2_put_be16(&pbc, sar_h); in vaapi_encode_mjpeg_init_picture_params() 280 bytestream2_put_be16(&pbc, 1); in vaapi_encode_mjpeg_init_picture_params() 281 bytestream2_put_be16(&pbc, 1); in vaapi_encode_mjpeg_init_picture_params() 284 bytestream2_put_byte(&pbc, 0); in vaapi_encode_mjpeg_init_picture_params() [all …]
|
D | qsvenc_hevc.c | 56 PutByteContext pbc; in generate_fake_vps() local 136 bytestream2_init_writer(&pbc, vps_buf, sizeof(vps_buf)); in generate_fake_vps() 138 bytestream2_put_be32(&pbc, 1); // startcode in generate_fake_vps() 139 bytestream2_put_byte(&pbc, HEVC_NAL_VPS << 1); // NAL in generate_fake_vps() 140 bytestream2_put_byte(&pbc, 1); // header in generate_fake_vps() 144 bytestream2_put_be24(&pbc, 3); in generate_fake_vps() 147 bytestream2_put_byte(&pbc, bytestream2_get_byte(&gbc)); in generate_fake_vps() 150 vps_size = bytestream2_tell_p(&pbc); in generate_fake_vps()
|
D | cbs.c | 307 PutBitContext pbc; in cbs_write_unit_data() local 324 init_put_bits(&pbc, ctx->write_buffer, ctx->write_buffer_size); in cbs_write_unit_data() 326 ret = ctx->codec->write_unit(ctx, unit, &pbc); in cbs_write_unit_data() 340 av_assert0(put_bits_count(&pbc) <= 8 * ctx->write_buffer_size); in cbs_write_unit_data() 342 if (put_bits_count(&pbc) % 8) in cbs_write_unit_data() 343 unit->data_bit_padding = 8 - put_bits_count(&pbc) % 8; in cbs_write_unit_data() 347 flush_put_bits(&pbc); in cbs_write_unit_data() 349 ret = ff_cbs_alloc_unit_data(unit, put_bits_count(&pbc) / 8); in cbs_write_unit_data() 546 int ff_cbs_write_unsigned(CodedBitstreamContext *ctx, PutBitContext *pbc, in ff_cbs_write_unsigned() argument 560 if (put_bits_left(pbc) < width) in ff_cbs_write_unsigned() [all …]
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/ |
D | MapUnittestProto3.cs | 9 using pbc = global::Google.Protobuf.Collections; typedef 235 private static readonly pbc::MapField<int, int>.Codec _map_mapInt32Int32_codec 236 …= new pbc::MapField<int, int>.Codec(pb::FieldCodec.ForInt32(8, 0), pb::FieldCodec.ForInt32(16, 0),… 237 private readonly pbc::MapField<int, int> mapInt32Int32_ = new pbc::MapField<int, int>(); 239 public pbc::MapField<int, int> MapInt32Int32 { 245 private static readonly pbc::MapField<long, long>.Codec _map_mapInt64Int64_codec 246 …= new pbc::MapField<long, long>.Codec(pb::FieldCodec.ForInt64(8, 0L), pb::FieldCodec.ForInt64(16, … 247 private readonly pbc::MapField<long, long> mapInt64Int64_ = new pbc::MapField<long, long>(); 249 public pbc::MapField<long, long> MapInt64Int64 { 255 private static readonly pbc::MapField<uint, uint>.Codec _map_mapUint32Uint32_codec [all …]
|
D | TestMessagesProto3.cs | 9 using pbc = global::Google.Protobuf.Collections; typedef 729 private readonly pbc::RepeatedField<int> repeatedInt32_ = new pbc::RepeatedField<int>(); 734 public pbc::RepeatedField<int> RepeatedInt32 { 742 private readonly pbc::RepeatedField<long> repeatedInt64_ = new pbc::RepeatedField<long>(); 744 public pbc::RepeatedField<long> RepeatedInt64 { 752 private readonly pbc::RepeatedField<uint> repeatedUint32_ = new pbc::RepeatedField<uint>(); 754 public pbc::RepeatedField<uint> RepeatedUint32 { 762 private readonly pbc::RepeatedField<ulong> repeatedUint64_ = new pbc::RepeatedField<ulong>(); 764 public pbc::RepeatedField<ulong> RepeatedUint64 { 772 private readonly pbc::RepeatedField<int> repeatedSint32_ = new pbc::RepeatedField<int>(); [all …]
|
D | TestMessagesProto2.cs | 9 using pbc = global::Google.Protobuf.Collections; typedef 922 private readonly pbc::RepeatedField<int> repeatedInt32_ = new pbc::RepeatedField<int>(); 927 public pbc::RepeatedField<int> RepeatedInt32 { 935 private readonly pbc::RepeatedField<long> repeatedInt64_ = new pbc::RepeatedField<long>(); 937 public pbc::RepeatedField<long> RepeatedInt64 { 945 private readonly pbc::RepeatedField<uint> repeatedUint32_ = new pbc::RepeatedField<uint>(); 947 public pbc::RepeatedField<uint> RepeatedUint32 { 955 private readonly pbc::RepeatedField<ulong> repeatedUint64_ = new pbc::RepeatedField<ulong>(); 957 public pbc::RepeatedField<ulong> RepeatedUint64 { 965 private readonly pbc::RepeatedField<int> repeatedSint32_ = new pbc::RepeatedField<int>(); [all …]
|
D | UnittestWellKnownTypes.cs | 9 using pbc = global::Google.Protobuf.Collections; typedef 490 …if (!pbc::ProtobufEqualityComparers.BitwiseNullableDoubleEqualityComparer.Equals(DoubleField, othe… in Equals() 491 …if (!pbc::ProtobufEqualityComparers.BitwiseNullableSingleEqualityComparer.Equals(FloatField, other… in Equals() 515 …if (doubleField_ != null) hash ^= pbc::ProtobufEqualityComparers.BitwiseNullableDoubleEqualityComp… in GetHashCode() 516 …if (floatField_ != null) hash ^= pbc::ProtobufEqualityComparers.BitwiseNullableSingleEqualityCompa… in GetHashCode() 1229 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Any> anyField_ = new pb… 1231 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Any> AnyField { 1239 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Api> apiField_ = new pb… 1241 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Api> ApiField { 1249 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Duration> durationField… [all …]
|
D | UnittestProto3.cs | 9 using pbc = global::Google.Protobuf.Collections; typedef 605 private readonly pbc::RepeatedField<int> repeatedInt32_ = new pbc::RepeatedField<int>(); 610 public pbc::RepeatedField<int> RepeatedInt32 { 618 private readonly pbc::RepeatedField<long> repeatedInt64_ = new pbc::RepeatedField<long>(); 620 public pbc::RepeatedField<long> RepeatedInt64 { 628 private readonly pbc::RepeatedField<uint> repeatedUint32_ = new pbc::RepeatedField<uint>(); 630 public pbc::RepeatedField<uint> RepeatedUint32 { 638 private readonly pbc::RepeatedField<ulong> repeatedUint64_ = new pbc::RepeatedField<ulong>(); 640 public pbc::RepeatedField<ulong> RepeatedUint64 { 648 private readonly pbc::RepeatedField<int> repeatedSint32_ = new pbc::RepeatedField<int>(); [all …]
|
D | Unittest.cs | 9 using pbc = global::Google.Protobuf.Collections; typedef 1812 private readonly pbc::RepeatedField<int> repeatedInt32_ = new pbc::RepeatedField<int>(); 1817 public pbc::RepeatedField<int> RepeatedInt32 { 1825 private readonly pbc::RepeatedField<long> repeatedInt64_ = new pbc::RepeatedField<long>(); 1827 public pbc::RepeatedField<long> RepeatedInt64 { 1835 private readonly pbc::RepeatedField<uint> repeatedUint32_ = new pbc::RepeatedField<uint>(); 1837 public pbc::RepeatedField<uint> RepeatedUint32 { 1845 private readonly pbc::RepeatedField<ulong> repeatedUint64_ = new pbc::RepeatedField<ulong>(); 1847 public pbc::RepeatedField<ulong> RepeatedUint64 { 1855 private readonly pbc::RepeatedField<int> repeatedSint32_ = new pbc::RepeatedField<int>(); [all …]
|
/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/ |
D | WrapperBenchmarkMessages.cs | 9 using pbc = global::Google.Protobuf.Collections; typedef 1296 private readonly pbc::RepeatedField<int> repeatedIntField100_ = new pbc::RepeatedField<int>(); 1298 public pbc::RepeatedField<int> RepeatedIntField100 { 1835 …if (!pbc::ProtobufEqualityComparers.BitwiseNullableDoubleEqualityComparer.Equals(DoubleField95, ot… in Equals() 1836 …if (!pbc::ProtobufEqualityComparers.BitwiseNullableDoubleEqualityComparer.Equals(DoubleField1, oth… in Equals() 1837 …if (!pbc::ProtobufEqualityComparers.BitwiseNullableDoubleEqualityComparer.Equals(DoubleField79, ot… in Equals() 1839 …if (!pbc::ProtobufEqualityComparers.BitwiseNullableDoubleEqualityComparer.Equals(DoubleField96, ot… in Equals() 1842 …if (!pbc::ProtobufEqualityComparers.BitwiseNullableDoubleEqualityComparer.Equals(DoubleField97, ot… in Equals() 1843 …if (!pbc::ProtobufEqualityComparers.BitwiseNullableDoubleEqualityComparer.Equals(DoubleField65, ot… in Equals() 1844 …if (!pbc::ProtobufEqualityComparers.BitwiseNullableDoubleEqualityComparer.Equals(DoubleField66, ot… in Equals() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
D | wps_registrar.c | 123 static void wps_free_pbc_sessions(struct wps_pbc_session *pbc) in wps_free_pbc_sessions() argument 127 while (pbc) { in wps_free_pbc_sessions() 128 prev = pbc; in wps_free_pbc_sessions() 129 pbc = pbc->next; in wps_free_pbc_sessions() 145 int pbc; member 349 struct wps_pbc_session *pbc, *prev = NULL; in wps_registrar_add_pbc_session() local 354 pbc = reg->pbc_sessions; in wps_registrar_add_pbc_session() 355 while (pbc) { in wps_registrar_add_pbc_session() 356 if (os_memcmp(pbc->addr, addr, ETH_ALEN) == 0 && in wps_registrar_add_pbc_session() 357 os_memcmp(pbc->uuid_e, uuid_e, WPS_UUID_LEN) == 0) { in wps_registrar_add_pbc_session() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
D | wps_registrar.c | 122 static void wps_free_pbc_sessions(struct wps_pbc_session *pbc) in wps_free_pbc_sessions() argument 126 while (pbc) { in wps_free_pbc_sessions() 127 prev = pbc; in wps_free_pbc_sessions() 128 pbc = pbc->next; in wps_free_pbc_sessions() 144 int pbc; member 348 struct wps_pbc_session *pbc, *prev = NULL; in wps_registrar_add_pbc_session() local 353 pbc = reg->pbc_sessions; in wps_registrar_add_pbc_session() 354 while (pbc) { in wps_registrar_add_pbc_session() 355 if (os_memcmp(pbc->addr, addr, ETH_ALEN) == 0 && in wps_registrar_add_pbc_session() 356 os_memcmp(pbc->uuid_e, uuid_e, WPS_UUID_LEN) == 0) { in wps_registrar_add_pbc_session() [all …]
|
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | Descriptor.cs | 9 using pbc = global::Google.Protobuf.Collections; typedef 239 …private readonly pbc::RepeatedField<global::Google.Protobuf.Reflection.FileDescriptorProto> file_ … 241 public pbc::RepeatedField<global::Google.Protobuf.Reflection.FileDescriptorProto> File { 466 private readonly pbc::RepeatedField<string> dependency_ = new pbc::RepeatedField<string>(); 471 public pbc::RepeatedField<string> Dependency { 479 private readonly pbc::RepeatedField<int> publicDependency_ = new pbc::RepeatedField<int>(); 484 public pbc::RepeatedField<int> PublicDependency { 492 private readonly pbc::RepeatedField<int> weakDependency_ = new pbc::RepeatedField<int>(); 498 public pbc::RepeatedField<int> WeakDependency { 506 …private readonly pbc::RepeatedField<global::Google.Protobuf.Reflection.DescriptorProto> messageTyp… [all …]
|
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Type.cs | 9 using pbc = global::Google.Protobuf.Collections; typedef 158 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Field> fields_ = new pb… 163 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Field> Fields { 171 private readonly pbc::RepeatedField<string> oneofs_ = new pbc::RepeatedField<string>(); 176 public pbc::RepeatedField<string> Oneofs { 184 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> options_ = new … 189 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> Options { 597 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> options_ = new … 602 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> Options { 1137 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.EnumValue> enumvalue_ =… [all …]
|
D | Struct.cs | 9 using pbc = global::Google.Protobuf.Collections; typedef 120 …private static readonly pbc::MapField<string, global::Google.Protobuf.WellKnownTypes.Value>.Codec … 121 …= new pbc::MapField<string, global::Google.Protobuf.WellKnownTypes.Value>.Codec(pb::FieldCodec.For… 122 …private readonly pbc::MapField<string, global::Google.Protobuf.WellKnownTypes.Value> fields_ = new… 127 public pbc::MapField<string, global::Google.Protobuf.WellKnownTypes.Value> Fields { 431 …if (!pbc::ProtobufEqualityComparers.BitwiseDoubleEqualityComparer.Equals(NumberValue, other.Number… in Equals() 444 …if (kindCase_ == KindOneofCase.NumberValue) hash ^= pbc::ProtobufEqualityComparers.BitwiseDoubleEq… in GetHashCode() 740 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Value> values_ = new pb… 745 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Value> Values {
|
D | Api.cs | 9 using pbc = global::Google.Protobuf.Collections; typedef 130 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Method> methods_ = new … 135 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Method> Methods { 143 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> options_ = new … 148 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> Options { 203 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Mixin> mixins_ = new pb… 208 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Mixin> Mixins { 593 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> options_ = new … 598 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> Options {
|