Home
last modified time | relevance | path

Searched refs:GetInt64 (Results 1 – 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dtiled_dot_emitter.cc737 llvm::Value* GetInt64(int64 value) { return b_->getInt64(value); } in GetInt64() function in xla::cpu::__anon016ac5180111::TiledSmallGemmEmitter
782 HandleResiduesOnK(&vsl, GetInt64(n_start), GetInt64(n_end)); in HandleResiduesOnN()
809 HandleResiduesOnM(vsl, tile_size_k(), GetInt64(k_start), GetInt64(k_end), in HandleResiduesOnK()
815 HandleResiduesOnM(vsl, dims().k() - k_start, GetInt64(k_start), in HandleResiduesOnK()
816 GetInt64(dims().k()), n_start, n_end); in HandleResiduesOnK()
825 GetInt64(0), GetInt64(m_end)); in HandleResiduesOnM()
829 dims().m() - m_end, GetInt64(m_end), GetInt64(dims().m())); in HandleResiduesOnM()
/external/protobuf/src/google/protobuf/
Dmap_test_util.cc1020 int64 key = sub_message->GetReflection()->GetInt64( in ExpectMapFieldsSetViaReflection()
1022 int64 val = sub_message->GetReflection()->GetInt64( in ExpectMapFieldsSetViaReflection()
1093 int64 key = sub_message->GetReflection()->GetInt64( in ExpectMapFieldsSetViaReflection()
1095 int64 val = sub_message->GetReflection()->GetInt64( in ExpectMapFieldsSetViaReflection()
1165 int64 key = sub_message->GetReflection()->GetInt64( in ExpectMapFieldsSetViaReflection()
1167 int64 val = sub_message->GetReflection()->GetInt64( in ExpectMapFieldsSetViaReflection()
1622 EXPECT_EQ(0, sub_message->GetReflection()->GetInt64(*sub_message, in ExpectMapEntryClearViaReflection()
1624 EXPECT_EQ(0, sub_message->GetReflection()->GetInt64(*sub_message, in ExpectMapEntryClearViaReflection()
1670 EXPECT_EQ(0, sub_message->GetReflection()->GetInt64(*sub_message, in ExpectMapEntryClearViaReflection()
1672 EXPECT_EQ(0, sub_message->GetReflection()->GetInt64(*sub_message, in ExpectMapEntryClearViaReflection()
[all …]
Dtest_util.cc2567 EXPECT_EQ(100, sub_message->GetReflection()->GetInt64( in ExpectOneofSetViaReflection()
2681 EXPECT_EQ(102 , reflection->GetInt64 (message, F("optional_int64" ))); in ExpectAllFieldsSetViaReflection1()
2685 EXPECT_EQ(106 , reflection->GetInt64 (message, F("optional_sint64" ))); in ExpectAllFieldsSetViaReflection1()
2689 EXPECT_EQ(110 , reflection->GetInt64 (message, F("optional_sfixed64"))); in ExpectAllFieldsSetViaReflection1()
2892 EXPECT_EQ(402 , reflection->GetInt64 (message, F("default_int64" ))); in ExpectAllFieldsSetViaReflection3()
2896 EXPECT_EQ(406 , reflection->GetInt64 (message, F("default_sint64" ))); in ExpectAllFieldsSetViaReflection3()
2900 EXPECT_EQ(410 , reflection->GetInt64 (message, F("default_sfixed64"))); in ExpectAllFieldsSetViaReflection3()
3015 EXPECT_EQ(0 , reflection->GetInt64 (message, F("optional_int64" ))); in ExpectClearViaReflection()
3019 EXPECT_EQ(0 , reflection->GetInt64 (message, F("optional_sint64" ))); in ExpectClearViaReflection()
3023 EXPECT_EQ(0 , reflection->GetInt64 (message, F("optional_sfixed64"))); in ExpectClearViaReflection()
[all …]
Dmap_field.cc372 map_key.SetInt64Value(reflection->GetInt64(*it, key_des)); in SyncMapWithRepeatedFieldNoLock()
Dgenerated_message_reflection.h237 int64 GetInt64 (const Message& message,
Dmessage.h499 virtual int64 GetInt64 (const Message& message,
Dtext_format.cc1615 int64 first = reflection->GetInt64(*a, field_); in operator ()()
1616 int64 second = reflection->GetInt64(*b, field_); in operator ()()
Dextension_set.h230 int64 GetInt64 (int number, int64 default_value) const;
/external/flatbuffers/go/
Dtable.go113 func (t *Table) GetInt64(off UOffsetT) int64 { func
114 return GetInt64(t.Bytes[off:])
247 return t.GetInt64(t.Pos + UOffsetT(off))
Dencode.go94 func GetInt64(buf []byte) (n int64) { func
/external/flatbuffers/tests/MyGame/Example/
DStat.go40 return rcv._tab.GetInt64(o + rcv._tab.Pos)
DMonster.go285 return rcv._tab.GetInt64(o + rcv._tab.Pos)
333 return rcv._tab.GetInt64(o + rcv._tab.Pos)
491 return rcv._tab.GetInt64(a + flatbuffers.UOffsetT(j*8))
DTypeAliases.go104 return rcv._tab.GetInt64(o + rcv._tab.Pos)
/external/libprotobuf-mutator/src/
Dfield_instance.h109 : reflection().GetInt64(*message_, descriptor_); in Load()
/external/flatbuffers/tests/
Dgo_test.go64 overflowingInt64Val = flatbuffers.GetInt64([]byte{0x84, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44})
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc2242 int64 value = reflection->GetInt64(*message, field_descriptor); in CheckAndGetInteger()