Home
last modified time | relevance | path

Searched refs:TYPE_INT64 (Results 1 – 25 of 39) sorted by relevance

12

/external/nanopb-c/generator/google/protobuf/internal/
Dtype_checkers.py176 _FieldDescriptor.TYPE_INT64: wire_format.Int64ByteSize,
199 _FieldDescriptor.TYPE_INT64: encoder.Int64Encoder,
222 _FieldDescriptor.TYPE_INT64: encoder.Int64Sizer,
245 _FieldDescriptor.TYPE_INT64: decoder.Int64Decoder,
267 _FieldDescriptor.TYPE_INT64: wire_format.WIRETYPE_VARINT,
/external/protobuf/python/google/protobuf/internal/
Dtype_checkers.py218 _FieldDescriptor.TYPE_INT64: wire_format.Int64ByteSize,
241 _FieldDescriptor.TYPE_INT64: encoder.Int64Encoder,
264 _FieldDescriptor.TYPE_INT64: encoder.Int64Sizer,
287 _FieldDescriptor.TYPE_INT64: decoder.Int64Decoder,
309 _FieldDescriptor.TYPE_INT64: wire_format.WIRETYPE_VARINT,
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
DExtension.java60 public static final int TYPE_INT64 = 3; field in Extension
365 case TYPE_INT64: in readData()
434 case TYPE_INT64: in writeSingularData()
564 case TYPE_INT64: in writeRepeatedData()
634 case TYPE_INT64: in computePackedDataSize()
692 case TYPE_INT64: in computeSingularSerializedSize()
/external/deqp/executor/
DxeTestCaseResult.hpp167 TYPE_INT64, enumerator
174 NumericValue (deInt64 value) : m_type(TYPE_INT64) { m_value.int64 = value; } in NumericValue()
178 deInt64 getInt64 (void) const { DE_ASSERT(getType() == TYPE_INT64); return m_value.int64; } in getInt64()
DxeTestCaseResult.cpp77 case NumericValue::TYPE_INT64: in operator <<()
/external/protobuf/src/google/protobuf/compiler/java/
Djava_helpers.cc272 case FieldDescriptor::TYPE_INT64: in GetJavaType()
336 case FieldDescriptor::TYPE_INT64 : return "INT64"; in FieldTypeName()
609 case FieldDescriptor::TYPE_INT64 : return "Int64"; in GetCapitalizedType()
638 case FieldDescriptor::TYPE_INT64 : return -1; in FixedSize()
/external/protobuf/src/google/protobuf/compiler/javamicro/
Djavamicro_primitive_field.cc102 case FieldDescriptor::TYPE_INT64 : return "Int64" ; in GetCapitalizedType()
129 case FieldDescriptor::TYPE_INT64 : return -1; in FixedSize()
Djavamicro_helpers.cc209 case FieldDescriptor::TYPE_INT64: in GetJavaType()
/external/mesa3d/src/mesa/main/
Dget.c95 TYPE_INT64, enumerator
187 #define CONTEXT_INT64(field) CONTEXT_FIELD(field, TYPE_INT64)
1372 { GL_TIMESTAMP, LOC_CUSTOM, TYPE_INT64, 0, extra_ARB_timer_query }
2117 case TYPE_INT64: in _mesa_GetBooleanv()
2206 case TYPE_INT64: in _mesa_GetFloatv()
2301 case TYPE_INT64: in _mesa_GetIntegerv()
2397 case TYPE_INT64: in _mesa_GetInteger64v()
2487 case TYPE_INT64: in _mesa_GetDoublev()
2600 return TYPE_INT64; in find_value_indexed()
2608 return TYPE_INT64; in find_value_indexed()
[all …]
/external/protobuf/src/google/protobuf/compiler/javanano/
Djavanano_extension.cc56 case FieldDescriptor::TYPE_INT64 : return "TYPE_INT64" ; in GetTypeConstantName()
Djavanano_primitive_field.cc104 case FieldDescriptor::TYPE_INT64 : return "Int64" ; in GetCapitalizedType()
131 case FieldDescriptor::TYPE_INT64 : return -1; in FixedSize()
Djavanano_helpers.cc292 case FieldDescriptor::TYPE_INT64: in GetJavaType()
/external/nanopb-c/generator/google/protobuf/
Ddescriptor.py364 TYPE_INT64 = 3 variable in FieldDescriptor
402 TYPE_INT64: CPPTYPE_INT64,
Dtext_format.py260 elif field.type in (descriptor.FieldDescriptor.TYPE_INT64,
/external/deqp/framework/common/
DtcuTestLog.hpp217 enum Type { TYPE_INT64 = 0, TYPE_FLOAT64, TYPE_LAST }; enumerator
228 Value (deInt64 v) : type(TYPE_INT64) { value.int64 = v; } in Value()
DtcuTestLog.cpp170 else if (val->type == Value::TYPE_INT64) in operator <<()
/external/protobuf/python/google/protobuf/
Ddescriptor.py385 TYPE_INT64 = 3 variable in FieldDescriptor
423 TYPE_INT64: CPPTYPE_INT64,
Dtext_format.py414 elif field.type in (descriptor.FieldDescriptor.TYPE_INT64,
/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_primitive_field.cc55 case FieldDescriptor::TYPE_INT64 : return -1; in FixedSize()
Dcpp_helpers.cc232 case FieldDescriptor::TYPE_INT64 : return "Int64"; in DeclaredTypeMethodName()
/external/protobuf/src/google/protobuf/
Ddescriptor_unittest.cc1724 EXPECT_STREQ("int64" , GetTypeNameForFieldType(FD::TYPE_INT64 )); in TEST_F()
1749 EXPECT_STREQ("int64" , FD::TypeName(FD::TYPE_INT64 )); in TEST_F()
1774 EXPECT_EQ(FD::CPPTYPE_INT64 , GetCppTypeForFieldType(FD::TYPE_INT64 )); in TEST_F()
1799 EXPECT_STREQ("int64" , GetCppTypeNameForFieldType(FD::TYPE_INT64 )); in TEST_F()
1841 EXPECT_TRUE(NULL == GetMessageDescriptorForFieldType(FD::TYPE_INT64 )); in TEST_F()
1866 EXPECT_TRUE(NULL == GetEnumDescriptorForFieldType(FD::TYPE_INT64 )); in TEST_F()
1902 AddField(message_proto, "int64" , 2, label, FD::TYPE_INT64 ) in TEST_F()
1931 AddField(message_proto, "implicit_int64" , 22, label, FD::TYPE_INT64 ); in TEST_F()
Dwire_format_lite.h99 TYPE_INT64 = 3, enumerator
Ddescriptor.h349 TYPE_INT64 = 3, // int64, varint on the wire. Negative numbers enumerator
Dwire_format_lite_inl.h68 inline bool WireFormatLite::ReadPrimitive<int64, WireFormatLite::TYPE_INT64>(
/external/protobuf/src/google/protobuf/compiler/
Dparser.cc78 result["int64" ] = FieldDescriptorProto::TYPE_INT64; in MakeTypeNameTable()
848 case FieldDescriptorProto::TYPE_INT64: in ParseDefaultAssignment()

12