Searched refs:GetLong (Results 1 – 15 of 15) sorted by relevance
252 Assert.AreEqual(0x010203040A0B0C0D, uut.GetLong(0)); in ByteBuffer_GetLongReturnsCorrectData()260 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetLong(8)); in ByteBuffer_GetLongChecksOffset()267 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetLong(0)); in ByteBuffer_GetLongChecksLength()
116 return t.bb.GetLong(t.bb_pos + off); in GetSlot()
41 …public long JustI64 { get { int o = __p.__offset(40); return o != 0 ? __p.bb.GetLong(o + __p.bb_po…42 …public long? MaybeI64 { get { int o = __p.__offset(42); return o != 0 ? __p.bb.GetLong(o + __p.bb_…43 …public long DefaultI64 { get { int o = __p.__offset(44); return o != 0 ? __p.bb.GetLong(o + __p.bb…
25 public long D(int j) { return __p.bb.GetLong(__p.bb_pos + 16 + j * 8); } in D()
29 …public long Val { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : …
28 public long F(int j) { return __p.bb.GetLong(__p.bb_pos + 144 + j * 8); } in F()
34 …public long I64 { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) :…
79 …public long Testhashs64Fnv1 { get { int o = __p.__offset(40); return o != 0 ? __p.bb.GetLong(o + _…87 …public long Testhashs64Fnv1a { get { int o = __p.__offset(48); return o != 0 ? __p.bb.GetLong(o + …121 …public long VectorOfLongs(int j) { int o = __p.__offset(68); return o != 0 ? __p.bb.GetLong(__p.__… in VectorOfLongs()
44 long GetLong() override;
106 NO_SANITIZE("cfi-icall") long CefTranslatorTestCToCpp::GetLong() { in GetLong() function in CefTranslatorTestCToCpp
745 public long GetLong(int offset) in GetLong() method in FlatBuffers.ByteBuffer829 public long GetLong(int index) in GetLong() method in FlatBuffers.ByteBuffer
125 virtual long GetLong() = 0;
228 long GetLong() override { return TEST_LONG_VAL; } in GetLong() function in CefTranslatorTestImpl
16 EXPECT_EQ(TEST_LONG_VAL, obj->GetLong()); in TEST()
120 long _retval = CefTranslatorTestCppToC::Get(self)->GetLong(); in translator_test_get_long()