Searched refs:first_val (Results 1 – 5 of 5) sorted by relevance
/external/igt-gpu-tools/tests/i915/ |
D | gem_reg_read.c | 118 uint64_t first_val, second_val; in test_timestamp_moving() local 120 igt_fail_on(timer_query(fd, &first_val) != 0); in test_timestamp_moving() 123 igt_assert(second_val != first_val); in test_timestamp_moving() 128 uint64_t first_val, second_val; in test_timestamp_monotonic() local 132 igt_fail_on(timer_query(fd, &first_val) != 0); in test_timestamp_monotonic() 137 if (second_val < first_val && retry) { in test_timestamp_monotonic() 140 first_val = second_val; in test_timestamp_monotonic() 143 igt_assert(second_val >= first_val); in test_timestamp_monotonic()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | summary_ops_test.py | 947 first_val = event.summary.value[0] 949 self.assertEqual('foo/my_name', first_val.tag) 985 first_val = event.summary.value[0] 988 first_val.tensor.string_val[0]) 1008 first_val = event.summary.value[0] 1010 self.assertEqual('foo/my_name', first_val.tag) 1039 first_val = event.summary.value[0] 1042 first_val.tensor.string_val[0]) 1062 first_val = event.summary.value[0] 1063 self.assertEqual(model.to_json(), first_val.tensor.string_val[0].decode()) [all …]
|
/external/v8/src/execution/arm64/ |
D | simulator-logic-arm64.cc | 1132 int64_t first_val = src->Int(vform, i); in SMinMaxP() local 1136 dst_val = (first_val > second_val) ? first_val : second_val; in SMinMaxP() 1138 dst_val = (first_val < second_val) ? first_val : second_val; in SMinMaxP() 1282 uint64_t first_val = src->Uint(vform, i); in UMinMaxP() local 1286 dst_val = (first_val > second_val) ? first_val : second_val; in UMinMaxP() 1288 dst_val = (first_val < second_val) ? first_val : second_val; in UMinMaxP()
|
/external/vixl/src/aarch64/ |
D | logic-aarch64.cc | 1201 int64_t first_val = src->Int(vform, i); in sminmaxp() local 1205 dst_val = (first_val > second_val) ? first_val : second_val; in sminmaxp() 1207 dst_val = (first_val < second_val) ? first_val : second_val; in sminmaxp() 1381 uint64_t first_val = src->Uint(vform, i); in uminmaxp() local 1385 dst_val = (first_val > second_val) ? first_val : second_val; in uminmaxp() 1387 dst_val = (first_val < second_val) ? first_val : second_val; in uminmaxp()
|
/external/v8/src/codegen/ |
D | code-stub-assembler.cc | 10436 int32_t first_val; in BuildFastArrayForEach() local 10437 bool constant_first = ToInt32Constant(first_element_inclusive, &first_val); in BuildFastArrayForEach() 10441 int delta = last_val - first_val; in BuildFastArrayForEach() 10445 for (int i = first_val; i < last_val; ++i) { in BuildFastArrayForEach() 10452 for (int i = last_val - 1; i >= first_val; --i) { in BuildFastArrayForEach()
|