Home
last modified time | relevance | path

Searched refs:new_h (Results 1 – 9 of 9) sorted by relevance

/third_party/boost/boost/numeric/odeint/stepper/
Dbulirsch_stoer.hpp216 time_type new_h = dt; in try_step() local
249 new_h = h_opt[k]; in try_step()
250new_h *= static_cast<value_type>( m_cost[k+1] ) / static_cast<value_type>( m_cost[k] ); in try_step()
253 new_h = h_opt[k]; in try_step()
260 new_h = h_opt[k]; in try_step()
273 new_h = h_opt[m_current_k_opt]; in try_step()
278 new_h = h_opt[k]; in try_step()
279new_h *= static_cast<value_type>(m_cost[m_current_k_opt])/static_cast<value_type>(m_cost[k]); in try_step()
281 new_h = h_opt[m_current_k_opt]; in try_step()
287 new_h = h_opt[m_current_k_opt]; in try_step()
[all …]
Dbulirsch_stoer_dense_out.hpp181 time_type new_h = dt; in try_step() local
215new_h = h_opt[k] * static_cast<value_type>( m_cost[k+1] ) / static_cast<value_type>( m_cost[k] ); in try_step()
218 new_h = h_opt[k]; in try_step()
225 new_h = h_opt[k]; in try_step()
238 new_h = h_opt[m_current_k_opt]; in try_step()
243new_h = h_opt[k]*static_cast<value_type>( m_cost[m_current_k_opt] ) / static_cast<value_type>( m_c… in try_step()
245 new_h = h_opt[m_current_k_opt]; in try_step()
251 new_h = h_opt[m_current_k_opt]; in try_step()
264 new_h = h_opt[m_current_k_opt]; in try_step()
268 new_h = h_opt[m_current_k_opt]; in try_step()
[all …]
/third_party/ffmpeg/libavcodec/
Drv10.c212 int f, new_w, new_h; in rv20_decode_picture_header() local
224 new_h = 4 * ((uint8_t *) s->avctx->extradata)[7 + 2 * f]; in rv20_decode_picture_header()
227 new_h = rv->orig_height; in rv20_decode_picture_header()
229 if (new_w != s->width || new_h != s->height || !s->context_initialized) { in rv20_decode_picture_header()
232 "attempting to change resolution to %dx%d\n", new_w, new_h); in rv20_decode_picture_header()
233 if (av_image_check_size(new_w, new_h, 0, s->avctx) < 0) in rv20_decode_picture_header()
236 if (whole_size < (new_w + 15)/16 * ((new_h + 15)/16) / 8) in rv20_decode_picture_header()
244 if (2 * (int64_t)new_w * s->height == (int64_t)new_h * s->width) in rv20_decode_picture_header()
246 if ((int64_t)new_w * s->height == 2 * (int64_t)new_h * s->width) in rv20_decode_picture_header()
249 ret = ff_set_dimensions(s->avctx, new_w, new_h); in rv20_decode_picture_header()
[all …]
Drv34.c1596 static AVRational update_sar(int old_w, int old_h, AVRational sar, int new_w, int new_h) in update_sar() argument
1602 sar = av_mul_q(sar, av_mul_q((AVRational){new_h, new_w}, (AVRational){old_w, old_h})); in update_sar()
/third_party/mindspore/mindspore/core/ops/
Droi_pooling.cc64 auto new_h = GetValue<int64_t>(primitive->GetAttr(kPooledH)); in ROIPoolingInfer() local
70 output_shape.push_back(new_h); in ROIPoolingInfer()
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
Dmutex.cc1948 PerThreadSynch *new_h = Enqueue(nullptr, waitp, v, flags); in LockSlowLoop() local
1951 ABSL_RAW_CHECK(new_h != nullptr, "Enqueue to empty list failed"); in LockSlowLoop()
1956 v, reinterpret_cast<intptr_t>(new_h) | nv, in LockSlowLoop()
1994 PerThreadSynch *new_h = Enqueue(h, waitp, v, flags); in LockSlowLoop() local
1996 ABSL_RAW_CHECK(new_h != nullptr, "Enqueue to list failed"); in LockSlowLoop()
2004 reinterpret_cast<intptr_t>(new_h), in LockSlowLoop()
2094 PerThreadSynch *new_h = nullptr; in UnlockSlow() local
2101 new_h = Enqueue(nullptr, waitp, new_readers, kMuIsCond); in UnlockSlow()
2108 if (new_h != nullptr) { in UnlockSlow()
2109 nv |= kMuWait | reinterpret_cast<intptr_t>(new_h); in UnlockSlow()
[all …]
/third_party/abseil-cpp/absl/synchronization/
Dmutex.cc1937 PerThreadSynch *new_h = Enqueue(nullptr, waitp, v, flags); in LockSlowLoop() local
1940 ABSL_RAW_CHECK(new_h != nullptr, "Enqueue to empty list failed"); in LockSlowLoop()
1945 v, reinterpret_cast<intptr_t>(new_h) | nv, in LockSlowLoop()
1983 PerThreadSynch *new_h = Enqueue(h, waitp, v, flags); in LockSlowLoop() local
1985 ABSL_RAW_CHECK(new_h != nullptr, "Enqueue to list failed"); in LockSlowLoop()
1993 reinterpret_cast<intptr_t>(new_h), in LockSlowLoop()
2083 PerThreadSynch *new_h = nullptr; in UnlockSlow() local
2090 new_h = Enqueue(nullptr, waitp, new_readers, kMuIsCond); in UnlockSlow()
2097 if (new_h != nullptr) { in UnlockSlow()
2098 nv |= kMuWait | reinterpret_cast<intptr_t>(new_h); in UnlockSlow()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/video/mir/
DSDL_mirevents.c263 int new_h = MIR_mir_resize_event_get_height(resize_event); in MIR_HandleResize() local
268 if (new_w != old_w || new_h != old_h) in MIR_HandleResize()
269 SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESIZED, new_w, new_h); in MIR_HandleResize()
/third_party/gstreamer/gstplugins_base/ext/gl/
Dgstglimagesink.c1524 gint new_w, new_h; in update_output_format() local
1534 new_h = glimage_sink->display_rect.h; in update_output_format()
1535 if (new_w != out_info->width || new_h != out_info->height) { in update_output_format()
1541 !gst_util_fraction_multiply (from_dar_n, from_dar_d, new_h, new_w, in update_output_format()
1549 out_info->height = new_h; in update_output_format()