Home
last modified time | relevance | path

Searched refs:new_depth (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/compiler/
Djs-context-specialization.cc49 size_t new_depth) { in SimplifyJSLoadContext() argument
52 DCHECK_LE(new_depth, access.depth()); in SimplifyJSLoadContext()
54 if (new_depth == access.depth() && in SimplifyJSLoadContext()
60 new_depth, access.index(), access.immutable()); in SimplifyJSLoadContext()
68 size_t new_depth) { in SimplifyJSStoreContext() argument
71 DCHECK_LE(new_depth, access.depth()); in SimplifyJSStoreContext()
73 if (new_depth == access.depth() && in SimplifyJSStoreContext()
79 jsgraph_->javascript()->StoreContext(new_depth, access.index()); in SimplifyJSStoreContext()
Djs-context-specialization.h58 size_t new_depth);
60 size_t new_depth);
/external/tensorflow/tensorflow/contrib/slim/python/slim/nets/
Dinception_v2_test.py144 new_depth = end_points_with_multiplier[key].get_shape().as_list()[3]
145 self.assertEqual(0.5 * original_depth, new_depth)
165 new_depth = end_points_with_multiplier[key].get_shape().as_list()[3]
166 self.assertEqual(2.0 * original_depth, new_depth)
Dinception_v3_test.py174 new_depth = end_points_with_multiplier[key].get_shape().as_list()[3]
175 self.assertEqual(0.5 * original_depth, new_depth)
195 new_depth = end_points_with_multiplier[key].get_shape().as_list()[3]
196 self.assertEqual(2.0 * original_depth, new_depth)
/external/python/cpython3/Include/
Dceval.h34 PyAPI_FUNC(void) _PyEval_SetCoroutineOriginTrackingDepth(int new_depth);
/external/python/cpython3/Python/
Dcompile.c5034 int new_depth = depth + effect; in stackdepth() local
5035 if (new_depth > maxdepth) { in stackdepth()
5036 maxdepth = new_depth; in stackdepth()
5059 depth = new_depth; in stackdepth()
Dceval.c4350 _PyEval_SetCoroutineOriginTrackingDepth(int new_depth) in _PyEval_SetCoroutineOriginTrackingDepth() argument
4352 assert(new_depth >= 0); in _PyEval_SetCoroutineOriginTrackingDepth()
4354 tstate->coroutine_origin_tracking_depth = new_depth; in _PyEval_SetCoroutineOriginTrackingDepth()