Home
last modified time | relevance | path

Searched refs:MyIndex (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceTimerTree.cpp92 TTindex MyIndex = findPath(MyPath); in mergeFrom() local
93 Nodes[MyIndex].Time += SrcNode.Time; in mergeFrom()
94 Nodes[MyIndex].UpdateCount += SrcNode.UpdateCount; in mergeFrom()
/external/python/cpython3/Lib/test/
Dtest_complex.py370 class MyIndex: class
376 self.assertAlmostEqual(complex(MyIndex(42)), 42.0+0.0j)
377 self.assertAlmostEqual(complex(123, MyIndex(42)), 123.0+42.0j)
378 self.assertRaises(OverflowError, complex, MyIndex(2**2000))
379 self.assertRaises(OverflowError, complex, 123, MyIndex(2**2000))
Dtest_int.py430 class MyIndex(int): class
438 my_int = MyIndex(7)
Dtest_float.py226 class MyIndex: class
232 self.assertEqual(float(MyIndex(42)), 42.0)
233 self.assertRaises(OverflowError, float, MyIndex(2**2000))
/external/llvm-project/clang/lib/Basic/
DDiagnosticIDs.cpp129 size_t MyIndex = this - &StaticDiagInfo[0]; in getDescription() local
130 uint32_t StringOffset = StaticDiagInfoDescriptionOffsets[MyIndex]; in getDescription()
/external/python/cpython2/Lib/test/
Dtest_float.py754 class MyIndex(object): class
756 self.assertAlmostEqual(round(-0.123456, MyIndex()), -0.1235)