Home
last modified time | relevance | path

Searched refs:last_value (Results 1 – 25 of 45) sorted by relevance

12

/external/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
Dawait_result.pass.cpp46 int last_value = -1; variable
48 last_value = x; in set_value()
64 last_value = -1; in main()
66 assert(last_value == 0); in main()
68 assert(last_value == 42); in main()
/external/llvm-project/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
Dawait_result.pass.cpp47 int last_value = -1; variable
49 last_value = x; in set_value()
65 last_value = -1; in main()
67 assert(last_value == 0); in main()
69 assert(last_value == 42); in main()
/external/tensorflow/tensorflow/compiler/xla/service/
Dflatten_call_graph_test.cc52 HloInstruction* last_value = param0; in MakeMappingComputation() local
54 last_value = builder.AddInstruction(HloInstruction::CreateMap( in MakeMappingComputation()
55 kScalarShape, {last_value}, map_computation)); in MakeMappingComputation()
68 HloInstruction* last_value = param0; in MakeCallingComputation() local
70 last_value = builder.AddInstruction(HloInstruction::CreateCall( in MakeCallingComputation()
71 kScalarShape, {last_value}, callee_computation)); in MakeCallingComputation()
Dcall_graph_test.cc54 HloInstruction* last_value = param0; in MakeMappingComputation() local
56 last_value = builder.AddInstruction(HloInstruction::CreateMap( in MakeMappingComputation()
57 kScalarShape, {last_value}, map_computation)); in MakeMappingComputation()
70 HloInstruction* last_value = param0; in MakeCallingComputation() local
72 last_value = builder.AddInstruction(HloInstruction::CreateCall( in MakeCallingComputation()
73 kScalarShape, {last_value}, callee_computation)); in MakeCallingComputation()
/external/fonttools/MetaTools/
DbuildUCD.py115 last_start, last_end, last_value = full_ranges.pop(0)
118 if value == last_value:
121 merged_ranges.append((last_start, start-1, last_value))
122 last_start, line_end, last_value = start, end, value
123 merged_ranges.append((last_start, MAX_UNICODE, last_value))
/external/autotest/client/cros/networking/
Dshill_proxy.py513 last_value = properties.get(property_name, '(no value found)')
514 if last_value in expected_values:
515 return True, last_value, duration()
532 last_value = value
533 if not last_value in expected_values:
536 return True, last_value, duration()
542 return False, last_value, duration()
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_stackviewer.py20 svs.last_type, svs.last_value, svs.last_traceback = (
30 del svs.last_traceback, svs.last_type, svs.last_value
/external/python/cpython2/Lib/
Dcode.py126 sys.last_value = value
137 sys.last_value = value
152 sys.last_value = value
/external/python/cpython3/Lib/
Dcode.py110 sys.last_value = value
122 sys.last_value = value
139 sys.last_type, sys.last_value, last_tb = ei = sys.exc_info()
Denum.py621 for last_value in reversed(last_values):
623 return last_value + 1
710 for last_value in reversed(last_values):
712 high_bit = _high_bit(last_value)
715 raise TypeError('Invalid Flag value: %r' % last_value) from None
/external/python/cpython2/Lib/idlelib/
DStackViewer.py40 value = sys.last_value
139 sys.last_value = exc_value
146 del sys.last_value
Drun.py176 sys.last_type, sys.last_value, sys.last_traceback = excinfo
371 sys.last_value = val
/external/python/cpython3/Lib/idlelib/
Dstackviewer.py41 value = sys.last_value
140 sys.last_value = exc_value
147 del sys.last_value
Drun.py219 sys.last_type, sys.last_value, sys.last_traceback = excinfo
603 sys.last_value = val
/external/webrtc/modules/include/
Dmodule_common_types_public.h70 void UpdateLast(int64_t last_value) { last_value_ = last_value; } in UpdateLast() argument
/external/tensorflow/tensorflow/lite/delegates/gpu/common/transformations/
Dadd_bias.cc44 float last_value = biases->data.back(); in FillBias() local
46 biases->data.resize(output_channels, last_value); in FillBias()
/external/mesa3d/src/gallium/auxiliary/hud/
Dhud_cpu.c398 unsigned last_value; member
432 hud_graph_add_value(gr, current_value - info->last_value); in query_thread_counter()
433 info->last_value = current_value; in query_thread_counter()
438 info->last_value = get_counter(gr, info->counter); in query_thread_counter()
/external/webp/src/enc/
Dframe_enc.c43 double value, last_value; // PSNR or size member
61 s->value = s->last_value = 0.; in InitPassStats()
71 } else if (s->value != s->last_value) { in ComputeNextQ()
72 const double slope = (s->target - s->value) / (s->last_value - s->value); in ComputeNextQ()
80 s->last_value = s->value; in ComputeNextQ()
649 num_pass_left, stats.last_value, stats.value, stats.last_q, stats.q); in StatLoop()
856 num_pass_left, stats.last_value, stats.value, in VP8EncTokenLoop()
/external/libcxx/fuzzing/
Dfuzzing.cpp346 uint8_t last_value = *first1; in compare_unique() local
351 while (*first1 == last_value) in compare_unique()
354 last_value = *first1; in compare_unique()
364 if (*first1 != last_value) return false; in compare_unique()
/external/google-breakpad/src/common/windows/
Dpdb_source_line_writer.cc787 int last_value = value; in wcstol_positive_strict() local
790 if (value / 10 != last_value || value < 0) { in wcstol_positive_strict()
797 last_value = value; in wcstol_positive_strict()
800 if (value < last_value) { in wcstol_positive_strict()
/external/python/cpython3/Modules/
D_lsprof.c330 PyObject *last_type, *last_value, *last_tb; in ptrace_enter_call() local
331 PyErr_Fetch(&last_type, &last_value, &last_tb); in ptrace_enter_call()
356 PyErr_Restore(last_type, last_value, last_tb); in ptrace_enter_call()
/external/python/cpython2/Modules/
D_lsprof.c383 PyObject *last_type, *last_value, *last_tb; in ptrace_enter_call() local
384 PyErr_Fetch(&last_type, &last_value, &last_tb); in ptrace_enter_call()
409 PyErr_Restore(last_type, last_value, last_tb); in ptrace_enter_call()
/external/tensorflow/tensorflow/core/framework/
Dtensor_util.cc285 const T last_value = TypeHelper::GetValue(num_proto_values - 1, *tensor); in CompressRepeatedField() local
289 if (PackedValuesNotEqual(cur_value, last_value)) { in CompressRepeatedField()
/external/deqp/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderLimits.cpp1888 const glw::GLint last_value = (point + 1) * n_components_per_point; in verifyResult() local
1889 const glw::GLint expected_value = ((first_value + last_value) * n_components_per_point) / 2; in verifyResult()
2206 const glw::GLint last_value = n_components_per_point; in verifyResult() local
2207 const glw::GLint expected_value = ((first_value + last_value) * n_components_per_point) / 2; in verifyResult()
2514 const glw::GLint last_value = m_textures[point].data; in verifyResult() local
2515 const glw::GLint expected_value = ((first_value + last_value) * (point + 1)) / 2; in verifyResult()
/external/python/cpython2/Doc/library/
Dtraceback.rst61 This is a shorthand for ``print_exception(sys.last_type, sys.last_value,
106 ``sys.last_value``. The return value is a list of strings, each ending in a

12