Home
last modified time | relevance | path

Searched refs:first_object (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/lite/delegates/gpu/common/memory_management/
Dinternal.cc33 bool IsCoveringObject(const uint2& first_object, const uint2& second_object) { in IsCoveringObject() argument
34 return first_object.x >= second_object.x && first_object.y >= second_object.y; in IsCoveringObject()
37 bool IsCoveringObject(const uint3& first_object, const uint3& second_object) { in IsCoveringObject() argument
38 return first_object.x >= second_object.x && in IsCoveringObject()
39 first_object.y >= second_object.y && first_object.z >= second_object.z; in IsCoveringObject()
Dinternal.h54 bool IsCoveringObject(const uint2& first_object, const uint2& second_object);
57 bool IsCoveringObject(const uint3& first_object, const uint3& second_object);
/external/tensorflow/tensorflow/python/keras/utils/
Dlayer_utils_test.py75 first_object = MyObject()
79 self.assertEqual(first_object.test_property, id(first_object))
83 self.assertNotEqual(first_object.test_property, second_object.test_property)
86 self.assertEqual(first_object.test_property, id(first_object))
/external/ImageMagick/coders/
Dpng.c6120 first_object, in ReadOneMNGImage() local
6128 first_object=(p[0] << 8) | p[1]; in ReadOneMNGImage()
6132 for (i=(int) first_object; i <= (int) last_object; i++) in ReadOneMNGImage()
6201 first_object, in ReadOneMNGImage() local
6208 first_object=(p[0] << 8) | p[1]; in ReadOneMNGImage()
6212 for (i=(ssize_t) first_object; i <= (ssize_t) last_object; i++) in ReadOneMNGImage()