Searched refs:t_value (Results 1 – 3 of 3) sorted by relevance
222 t_value = type(value)231 raise DataTableException("Wrong type %s when expected number" % t_value)245 raise DataTableException("Wrong type %s when expected date" % t_value)253 raise DataTableException("Wrong type %s when expected time" % t_value)260 t_value)
1663 const T t_value = ptr[channel]; in readBaseTypeFromUnsignedChannel() local1664 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromUnsignedChannel()1686 const T t_value = ptr[channel]; in readBaseTypeFromSignedChannel() local1687 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromSignedChannel()1703 const GLfloat t_value = ptr[channel]; in readBaseTypeFromFloatChannel() local1704 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromFloatChannel()1750 const T t_value = ptr[0]; in read3Channel() local1778 result = (T)((t_value >> off) & mask); in read3Channel()1811 const T t_value = ptr[0]; in read4Channel() local1845 result = (T)((t_value >> off) & mask); in read4Channel()[all …]
1149 t_value = [[0, 42], [24, 0]]1150 self.assertAllEqual((2, 2), self.evaluate(array_ops.shape(t_value)))1151 self.assertEqual(4, self.evaluate(array_ops.size(t_value)))1152 self.assertEqual(2, self.evaluate(array_ops.rank(t_value)))1154 t = constant_op.constant(t_value)