Home
last modified time | relevance | path

Searched refs:t_value (Results 1 – 14 of 14) sorted by relevance

/external/deqp/external/openglcts/modules/common/
DglcPixelStorageModesTests.cpp300 const T t_value = (T)d_value; in writeToUnsignedChannel() local
304 ptr[channel] = t_value; in writeToUnsignedChannel()
314 const T t_value = (T)d_value; in writeToSignedChannel() local
318 ptr[channel] = t_value; in writeToSignedChannel()
323 const glw::GLfloat t_value = (glw::GLfloat)col; in writeToFloatChannel() local
327 ptr[channel] = t_value; in writeToFloatChannel()
378 const T t_value = (T)d_value; in write3Channel() local
380 result = (T)((t_value & mask) << off); in write3Channel()
432 const T t_value = (T)d_value; in write4Channel() local
434 result = (T)((t_value & mask) << off); in write4Channel()
[all …]
/external/libaom/libaom/test/
Dgviz_api.py222 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)
/external/rust/crates/criterion/src/analysis/
Dmod.rs191 t_value, in common()
200 let p_value = t_distribution.p_value(t_value, &Tails::Two); in common()
204 t_value, in common()
/external/rust/crates/criterion/src/plot/gnuplot_backend/
Dt_test.rs17 let t = comparison.t_value; in t_test()
/external/rust/crates/criterion/src/plot/plotters_backend/
Dt_test.rs11 let t = comparison.t_value; in t_test()
/external/deqp/external/openglcts/modules/gl/
Dgl4cCopyImageTests.cpp1663 const T t_value = ptr[channel]; in readBaseTypeFromUnsignedChannel() local
1664 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromUnsignedChannel()
1686 const T t_value = ptr[channel]; in readBaseTypeFromSignedChannel() local
1687 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromSignedChannel()
1703 const GLfloat t_value = ptr[channel]; in readBaseTypeFromFloatChannel() local
1704 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromFloatChannel()
1750 const T t_value = ptr[0]; in read3Channel() local
1778 result = (T)((t_value >> off) & mask); in read3Channel()
1811 const T t_value = ptr[0]; in read4Channel() local
1845 result = (T)((t_value >> off) & mask); in read4Channel()
[all …]
/external/llvm-project/openmp/runtime/src/
Dkmp_wait_release.h313 hibernate += TCR_4(__kmp_global.g.g_time.dt.t_value); in __kmp_wait_template()
315 th_gtid, __kmp_global.g.g_time.dt.t_value, hibernate, in __kmp_wait_template()
316 hibernate - __kmp_global.g.g_time.dt.t_value)); in __kmp_wait_template()
403 if (TCR_4(__kmp_global.g.g_time.dt.t_value) < hibernate) in __kmp_wait_template()
Dz_Linux_util.cpp675 TCW_4(__kmp_global.g.g_time.dt.t_value, 0); in __kmp_launch_monitor()
726 TCW_4(__kmp_global.g.g_time.dt.t_value, in __kmp_launch_monitor()
727 TCR_4(__kmp_global.g.g_time.dt.t_value) + 1); in __kmp_launch_monitor()
927 TCW_4(__kmp_global.g.g_time.dt.t_value, in __kmp_create_monitor()
930 TCW_4(__kmp_global.g.g_time.dt.t_value, 0); in __kmp_create_monitor()
1020 sizeof(__kmp_global.g.g_time.dt.t_value)); in __kmp_create_monitor()
1021 __kmp_wait_4((kmp_uint32 volatile *)&__kmp_global.g.g_time.dt.t_value, -1, in __kmp_create_monitor()
Dz_Windows_NT_util.cpp1059 TCW_4(__kmp_global.g.g_time.dt.t_value, in __kmp_launch_monitor()
1060 TCR_4(__kmp_global.g.g_time.dt.t_value) + 1); in __kmp_launch_monitor()
1229 TCW_4(__kmp_global.g.g_time.dt.t_value, 0); in __kmp_create_monitor()
Dkmp_csupport.cpp857 lck = (ompt_wait_id_t)(uintptr_t)&team->t.t_ordered.dt.t_value; in __kmpc_ordered()
928 ->t.t_ordered.dt.t_value, in __kmpc_end_ordered()
Dkmp_runtime.cpp682 KMP_WAIT(&team->t.t_ordered.dt.t_value, __kmp_tid_from_gtid(gtid), KMP_EQ, in __kmp_parallel_deo()
707 team->t.t_ordered.dt.t_value = ((tid + 1) % team->t.t_nproc); in __kmp_parallel_dxo()
4517 team->t.t_ordered.dt.t_value = 0; in __kmp_initialize_team()
7412 team->t.t_ordered.dt.t_value = in __kmp_internal_fork()
Dkmp.h2655 typedef struct kmp_base_data { volatile kmp_uint32 t_value; } kmp_base_data_t; member
/external/tensorflow/tensorflow/python/kernel_tests/
Darray_ops_test.py1290 t_value = [[0, 42], [24, 0]]
1291 self.assertAllEqual((2, 2), self.evaluate(array_ops.shape(t_value)))
1292 self.assertEqual(4, self.evaluate(array_ops.size(t_value)))
1293 self.assertEqual(2, self.evaluate(array_ops.rank(t_value)))
1295 t = constant_op.constant(t_value)
/external/rust/crates/criterion/src/
Dreport.rs25 pub t_value: f64, field