/external/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/ |
D | await_result.pass.cpp | 46 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/mesa3d/src/compiler/spirv/ |
D | spirv_info_c.py | 39 last_value = -1 42 if x["value"] != last_value: 43 last_value = x["value"]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | flatten_call_graph_test.cc | 52 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()
|
D | call_graph_test.cc | 54 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/ |
D | buildUCD.py | 117 last_start, last_end, last_value = full_ranges.pop(0) 120 if value == last_value: 123 merged_ranges.append((last_start, start-1, last_value)) 124 last_start, line_end, last_value = start, end, value 125 merged_ranges.append((last_start, MAX_UNICODE, last_value))
|
/external/autotest/client/cros/networking/ |
D | shill_proxy.py | 515 last_value = properties.get(property_name, '(no value found)') 516 if last_value in expected_values: 517 return True, last_value, duration() 534 last_value = value 535 if not last_value in expected_values: 538 return True, last_value, duration() 544 return False, last_value, duration()
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_stackviewer.py | 20 svs.last_type, svs.last_value, svs.last_traceback = ( 30 del svs.last_traceback, svs.last_type, svs.last_value
|
/external/python/cpython2/Lib/ |
D | code.py | 126 sys.last_value = value 137 sys.last_value = value 152 sys.last_value = value
|
/external/python/cpython3/Lib/ |
D | code.py | 110 sys.last_value = value 122 sys.last_value = value 139 sys.last_type, sys.last_value, last_tb = ei = sys.exc_info()
|
D | enum.py | 567 for last_value in reversed(last_values): 569 return last_value + 1 691 for last_value in reversed(last_values): 693 high_bit = _high_bit(last_value) 696 raise TypeError('Invalid Flag value: %r' % last_value) from None
|
/external/mesa3d/src/gallium/auxiliary/hud/ |
D | hud_cpu.c | 314 unsigned last_value; member 348 hud_graph_add_value(gr, current_value - info->last_value); in query_thread_counter() 349 info->last_value = current_value; in query_thread_counter() 354 info->last_value = get_counter(gr, info->counter); in query_thread_counter()
|
/external/python/cpython3/Lib/idlelib/ |
D | stackviewer.py | 41 value = sys.last_value 140 sys.last_value = exc_value 147 del sys.last_value
|
D | run.py | 206 sys.last_type, sys.last_value, sys.last_traceback = excinfo 521 sys.last_value = val
|
/external/python/cpython2/Lib/idlelib/ |
D | StackViewer.py | 40 value = sys.last_value 139 sys.last_value = exc_value 146 del sys.last_value
|
D | run.py | 176 sys.last_type, sys.last_value, sys.last_traceback = excinfo 371 sys.last_value = val
|
/external/tensorflow/tensorflow/contrib/recurrent/python/ops/ |
D | functional_rnn.py | 201 last_value = [] 217 last_value += [last_var] 218 return nest.pack_sequence_as(acc_state, last_value)
|
/external/webp/src/enc/ |
D | frame_enc.c | 38 double value, last_value; // PSNR or size member 54 s->value = s->last_value = 0.; in InitPassStats() 68 } else if (s->value != s->last_value) { in ComputeNextQ() 69 const double slope = (s->target - s->value) / (s->last_value - s->value); in ComputeNextQ() 77 s->last_value = s->value; in ComputeNextQ() 646 num_pass_left, stats.last_value, stats.value, stats.last_q, stats.q); in StatLoop() 852 num_pass_left, stats.last_value, stats.value, in VP8EncTokenLoop()
|
/external/v8/tools/ |
D | stats-viewer.py | 280 self.last_value = None 292 if value == self.last_value: 295 self.last_value = value
|
/external/libcxx/fuzzing/ |
D | fuzzing.cpp | 346 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/python/cpython2/Modules/ |
D | _lsprof.c | 383 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/python/cpython3/Modules/ |
D | _lsprof.c | 382 PyObject *last_type, *last_value, *last_tb; in ptrace_enter_call() local 383 PyErr_Fetch(&last_type, &last_value, &last_tb); in ptrace_enter_call() 408 PyErr_Restore(last_type, last_value, last_tb); in ptrace_enter_call()
|
/external/google-breakpad/src/common/windows/ |
D | pdb_source_line_writer.cc | 868 int last_value = value; in wcstol_positive_strict() local 871 if (value / 10 != last_value || value < 0) { in wcstol_positive_strict() 878 last_value = value; in wcstol_positive_strict() 881 if (value < last_value) { in wcstol_positive_strict()
|
/external/tensorflow/tensorflow/core/framework/ |
D | tensor_util.cc | 278 const T last_value = TypeHelper::GetValue(num_proto_values - 1, *tensor); in CompressRepeatedField() local 282 if (PackedValuesNotEqual(cur_value, last_value)) { in CompressRepeatedField()
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
D | bwe_test_framework.cc | 55 const FlowIds CreateFlowIdRange(int initial_value, int last_value) { in CreateFlowIdRange() argument 56 int size = last_value - initial_value + 1; in CreateFlowIdRange() 59 for (int i = initial_value; i <= last_value; ++i) { in CreateFlowIdRange()
|
/external/deqp/external/openglcts/modules/glesext/geometry_shader/ |
D | esextcGeometryShaderLimits.cpp | 1888 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()
|