Home
last modified time | relevance | path

Searched refs:time_curr (Results 1 – 10 of 10) sorted by relevance

/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/gpu/kinfu_large_scale/src/cuda/
H A Dray_caster.cu225 float time_curr = time_start_volume; in operator ()() local
226 int3 g = getVoxel (ray_start + ray_dir * time_curr); in operator ()()
236 for (; time_curr < max_time; time_curr += time_step) in operator ()()
240 int3 g = getVoxel ( ray_start + ray_dir * (time_curr + time_step) ); in operator ()()
251 … float Ftdt = interpolateTrilineary (ray_start, ray_dir, time_curr + time_step, buffer); in operator ()()
255 float Ft = interpolateTrilineary (ray_start, ray_dir, time_curr, buffer); in operator ()()
260 float Ts = time_curr - time_step * Ft / (Ftdt - Ft); in operator ()()
268 int3 g = getVoxel ( ray_start + ray_dir * time_curr ); in operator ()()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/gpu/kinfu/src/cuda/
H A Dray_caster.cu188 float time_curr = time_start_volume; in operator ()() local
189 int3 g = getVoxel (ray_start + ray_dir * time_curr); in operator ()()
199 for (; time_curr < max_time; time_curr += time_step) in operator ()()
203 int3 g = getVoxel ( ray_start + ray_dir * (time_curr + time_step) ); in operator ()()
214 float Ftdt = interpolateTrilineary (ray_start, ray_dir, time_curr + time_step); in operator ()()
218 float Ft = interpolateTrilineary (ray_start, ray_dir, time_curr); in operator ()()
223 float Ts = time_curr - time_step * Ft / (Ftdt - Ft); in operator ()()
231 int3 g = getVoxel ( ray_start + ray_dir * time_curr ); in operator ()()
/dports/multimedia/motion/motion-release-4.3.2/src/
H A Dwebu_stream.c39 struct timeval time_curr; in webu_stream_mjpeg_delay() local
42 gettimeofday(&time_curr, NULL); in webu_stream_mjpeg_delay()
47 stream_delay = ((time_curr.tv_usec - webui->time_last.tv_usec)*1000) + in webu_stream_mjpeg_delay()
48 ((time_curr.tv_sec - webui->time_last.tv_sec)*1000000000); in webu_stream_mjpeg_delay()
/dports/lang/parrot/parrot-8.1.0/examples/opengl/
H A Dshapes.pir119 .local pmc time_prev, time_curr, time_sim, time_sim_dt
124 time_curr = new 'Float'
125 time_curr = now
131 set_global 'time_curr', time_curr
650 .local pmc time_prev, time_curr
653 time_curr = get_global 'time_curr'
654 prev = time_curr
657 time_curr = now
H A Dshapes.p687 our $time_curr = $time_prev;
128 $time_prev = $time_curr;
129 $time_curr = time();
131 my $dt = $paused ?? 0 !! $time_curr - $time_prev;
/dports/editors/vim/vim-8.2.3745/src/
H A Dos_vms.c743 struct _generic_64 time_curr; in RealWaitForChar() local
758 status = sys$gettim(&time_curr); in RealWaitForChar()
776 &time_curr, in RealWaitForChar()
802 status = sys$gettim(&time_curr); in RealWaitForChar()
808 &time_curr, in RealWaitForChar()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/acro/packages/colin/src/colin/solver/
H A DColinSolver.h333 time_curr = WallClockSeconds(); in check_convergence()
334 if ((max_time > 0.0) && ((time_curr - time_start) >= max_time)) in check_convergence()
432 double time_curr; variable
1006 this->time_curr = WallClockSeconds(); in debug_io()
1007 double total_time = this->time_curr - this->time_start; in debug_io()
/dports/graphics/blender/blender-2.91.0/source/blender/draw/engines/eevee/
H A Deevee_engine.c486 float time_curr = time + time_step * 0.5f; in eevee_render_to_image() local
533 DRW_render_set_time(engine, depsgraph, floorf(time_curr), fractf(time_curr)); in eevee_render_to_image()
/dports/games/wyrmgus/Wyrmgus-3.5.4/src/stratagus/
H A Dutil.cpp78 time_t time_curr; in InitSyncRand() local
79 time(&time_curr); in InitSyncRand()
80 SyncRandSeed = static_cast<unsigned>(time_curr); in InitSyncRand()
/dports/comms/hamlib/hamlib-4.3.1/src/
H A Drig.c6735 double time_curr; in rig_cookie() local
6804 time_curr = tp.tv_sec + tp.tv_nsec / 1e9; in rig_cookie()
6811 && (time_curr - time_last_used < 1)) // then we will deny the request in rig_cookie()
6827 __FILE__, __LINE__, cookie_save, time_curr - time_last_used); in rig_cookie()
6834 time_last_used = time_curr; in rig_cookie()