Home
last modified time | relevance | path

Searched refs:WORLD_SIZE (Results 1 – 25 of 96) sorted by relevance

1234

/dports/graphics/reallyslick/rss-glx_0.9.1/src/PixelCity/
H A DWorld.cpp94 static char world[WORLD_SIZE][WORLD_SIZE];
133 world[CLAMP (xx,0,WORLD_SIZE - 1)][CLAMP (yy,0,WORLD_SIZE - 1)] |= val; in claim()
150 if (world[CLAMP (xx,0,WORLD_SIZE - 1)][CLAMP (yy,0,WORLD_SIZE - 1)]) in claimed()
360 while (x2 > 0 && x2 < WORLD_SIZE && z2 > 0 && z2 < WORLD_SIZE) { in build_light_strip()
414 memset (world, 0, WORLD_SIZE * WORLD_SIZE); in do_reset()
453 for (y = 0; y < WORLD_SIZE; y++) { in do_reset()
506 for (x = 0; x < WORLD_SIZE; x ++) { in do_reset()
507 for (y = 0; y < WORLD_SIZE; y ++) { in do_reset()
508 if (world[CLAMP (x,0,WORLD_SIZE)][CLAMP (y,0,WORLD_SIZE)]) in do_reset()
513 if (x < 30 || y < 30 || x > WORLD_SIZE - 30 || y > WORLD_SIZE - 30) in do_reset()
[all …]
H A DCar.cpp49 static unsigned char carmap[WORLD_SIZE][WORLD_SIZE];
177 m_row = DEAD_ZONE + RandomVal (WORLD_SIZE - DEAD_ZONE * 2); in Update()
178 m_col = DEAD_ZONE + RandomVal (WORLD_SIZE - DEAD_ZONE * 2); in Update()
220 if (m_position.x < DEAD_ZONE || m_position.x > (WORLD_SIZE - DEAD_ZONE)) in Update()
222 if (m_position.z < DEAD_ZONE || m_position.z > (WORLD_SIZE - DEAD_ZONE)) in Update()
H A DWorld.h25 #define WORLD_SIZE 1024 macro
26 #define WORLD_HALF (WORLD_SIZE / 2)
H A DVisible.h6 #define GRID_SIZE (WORLD_SIZE / GRID_RESOLUTION)
/dports/devel/ode/ode-0.13/ode/demo/
H A Ddemo_space_stress.cpp49 #define WORLD_SIZE 20 macro
174 dRandReal()*WORLD_SIZE-(WORLD_SIZE/2), in command()
175 dRandReal()*WORLD_SIZE-(WORLD_SIZE/2), in command()
419 dVector3 Extents = {WORLD_SIZE * 0.55, WORLD_SIZE * 0.55, WORLD_SIZE * 0.55, 0}; in main()
/dports/misc/py-gluoncv/gluon-cv-0.9.0/gluoncv/torch/engine/
H A Dlaunch.py25 assert len(cfg.DDP_CONFIG.WOLRD_URLS) == cfg.DDP_CONFIG.WORLD_SIZE
31 cfg.DDP_CONFIG.GPU_WORLD_SIZE = ngpus_per_node * cfg.DDP_CONFIG.WORLD_SIZE
/dports/games/dose-response/dose-response-179c326/src/
H A Dmain.rs66 const WORLD_SIZE: point::Point = point::Point { const
284 WORLD_SIZE, in process_cli_and_run_game()
307 WORLD_SIZE, in process_cli_and_run_game()
/dports/misc/py-gluoncv/gluon-cv-0.9.0/scripts/action-recognition/configuration/
H A Di3d_resnet50_v1_feat.yaml4 WORLD_SIZE: 1
H A Dresnet50_v1b_feat.yaml4 WORLD_SIZE: 1
H A Dtpn_resnet50_f32s2_feat.yaml4 WORLD_SIZE: 1
H A Dslowfast_4x16_resnet50_feat.yaml4 WORLD_SIZE: 1
H A Dr2plus1d_v1_resnet50_feat.yaml4 WORLD_SIZE: 1
H A Di3d_slow_resnet50_f32s2_feat.yaml4 WORLD_SIZE: 1
H A Di3d_nl10_resnet50_v1_kinetics400.yaml4 WORLD_SIZE: 1
H A Di3d_nl5_resnet101_v1_kinetics400.yaml4 WORLD_SIZE: 1
H A Dr2plus1d_v1_resnet18_kinetics400.yaml4 WORLD_SIZE: 1
H A Dresnet50_v1b_custom.yaml4 WORLD_SIZE: 1
H A Di3d_slow_resnet101_f16s4_kinetics400.yaml4 WORLD_SIZE: 1
H A Di3d_slow_resnet101_f16s4_kinetics700.yaml4 WORLD_SIZE: 1
H A Dresnet152_v1b_kinetics400.yaml4 WORLD_SIZE: 1
H A Dslowfast_8x8_resnet50_kinetics400.yaml4 WORLD_SIZE: 1
/dports/converters/wkhtmltopdf/qt-5db36ec/demos/embedded/raycasting/
H A Draycasting.cpp51 #define WORLD_SIZE 8 macro
52 int world_map[WORLD_SIZE][WORLD_SIZE] = {
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qtbase/examples/embedded/raycasting/
H A Draycasting.cpp55 #define WORLD_SIZE 8 macro
56 int world_map[WORLD_SIZE][WORLD_SIZE] = {
/dports/net/py-mpi4py/mpi4py-3.1.3/demo/futures/
H A Dtest_futures.py18 WORLD_SIZE = MPI.COMM_WORLD.Get_size() variable
94 @unittest.skipIf(WORLD_SIZE == 1, 'world-size-1')
109 @unittest.skipIf(WORLD_SIZE == 1, 'world-size-1')
121 @unittest.skipIf(WORLD_SIZE == 1, 'world-size-1')
178 @unittest.skipIf(SHARED_POOL and WORLD_SIZE == 1, 'shared-pool')
185 @unittest.skipIf(SHARED_POOL and WORLD_SIZE > 2, 'shared-pool')
192 @unittest.skipIf(SHARED_POOL and WORLD_SIZE > 2, 'shared-pool')
858 @unittest.skipIf(SHARED_POOL and WORLD_SIZE == 1, 'shared-pool')
1392 if WORLD_SIZE == 1:
1396 if WORLD_SIZE > 2:
[all …]
/dports/games/openjk/OpenJK-07675e2/code/qcommon/
H A Dcm_polylib.cpp80 …mins[0] = mins[1] = mins[2] = WORLD_SIZE; // 99999; // WORLD_SIZE instead of MAX_WORLD_COORD so t… in WindingBounds()
81 maxs[0] = maxs[1] = maxs[2] = -WORLD_SIZE; //-99999; // ... it's guaranteed to be outide of legal in WindingBounds()

1234