Home
last modified time | relevance | path

Searched refs:NUM_LINES (Results 1 – 25 of 63) sorted by relevance

123

/dports/audio/openal-soft/openal-soft-1.21.1/alc/effects/
H A Dreverb.cpp65 constexpr size_t NUM_LINES{4u}; variable
84 alignas(16) constexpr float B2A[NUM_LINES][NUM_LINES]{
92 alignas(16) constexpr float A2B[NUM_LINES][NUM_LINES]{
282 size_t Offset[NUM_LINES][2]{};
316 size_t Offset[NUM_LINES][2]{};
317 float Coeff[NUM_LINES][2]{};
356 T60Filter T60[NUM_LINES];
397 } mFilter[NUM_LINES];
842 float{NUM_LINES}}; in updateLines()
1175 size_t vap_offset[NUM_LINES]; in processUnfaded()
[all …]
/dports/games/dxx-rebirth/dxx-rebirth_20211220-src/similar/main/
H A Dcredits.cpp60 #define NUM_LINES 20 //14 macro
83 std::array<PHYSFSX_gets_line_t<80>, NUM_LINES> buffer = {};
138 if (done > NUM_LINES) in event_handler()
155 buffer_line = (buffer_line + 1) % NUM_LINES; in event_handler()
193 if (done >= NUM_LINES-16) in event_handler()
198 const auto limitvol = (NUM_LINES - done) / 2; in event_handler()
209 for (uint_fast32_t j=0; j != NUM_LINES; ++j, y += ROW_SPACING) in event_handler()
211 l = (buffer_line + j + 1 ) % NUM_LINES; in event_handler()
/dports/graphics/darktable/darktable-3.6.1/src/libs/
H A Drecentcollect.c37 #define NUM_LINES 10 macro
47 dt_lib_recentcollect_item_t item[NUM_LINES];
155 for(int k = 0; k < NUM_LINES; k++) in _button_pressed()
206 … = 0; k < CLAMPS(dt_conf_get_int("plugins/lighttable/recentcollect/num_items"), 0, NUM_LINES); k++) in _lib_recentcollection_updated()
224 …nt num_items = CLAMPS(dt_conf_get_int("plugins/lighttable/recentcollect/num_items"), 0, NUM_LINES); in _lib_recentcollection_updated()
225 if(num_items < NUM_LINES) in _lib_recentcollection_updated()
237 if(n >= 0 && n < NUM_LINES) in _lib_recentcollection_updated()
260 for(int k = 0; k < NUM_LINES; k++) in _lib_recentcollection_updated()
281 … = 0; k < CLAMPS(dt_conf_get_int("plugins/lighttable/recentcollect/num_items"), 0, NUM_LINES); k++) in _lib_recentcollection_updated()
294 for(int k = 0; k < NUM_LINES; k++) in gui_reset()
[all …]
/dports/devel/icu/icu/source/test/cintltst/
H A Dsorttest.c95 #define NUM_LINES 10000 macro
115 for(i=0; i<NUM_LINES; ++i) { in printLines()
148 lines=p=(Line *)uprv_malloc(NUM_LINES*sizeof(Line)); in StableSortTest()
149 uprv_memset(lines, 0, NUM_LINES*sizeof(Line)); /* avoid uninitialized memory */ in StableSortTest()
153 for(i=0; i<NUM_LINES; ++i) { in StableSortTest()
167 uprv_sortArray(lines, NUM_LINES, (int32_t)sizeof(Line), in StableSortTest()
178 for(i=1; i<NUM_LINES; ++i) { in StableSortTest()
/dports/devel/icu-lx/icu/source/test/cintltst/
H A Dsorttest.c95 #define NUM_LINES 10000 macro
115 for(i=0; i<NUM_LINES; ++i) { in printLines()
148 lines=p=(Line *)uprv_malloc(NUM_LINES*sizeof(Line)); in StableSortTest()
149 uprv_memset(lines, 0, NUM_LINES*sizeof(Line)); /* avoid uninitialized memory */ in StableSortTest()
153 for(i=0; i<NUM_LINES; ++i) { in StableSortTest()
167 uprv_sortArray(lines, NUM_LINES, (int32_t)sizeof(Line), in StableSortTest()
178 for(i=1; i<NUM_LINES; ++i) { in StableSortTest()
/dports/games/d2x/d2x-0.2.5/main/
H A Dcredits.c67 #define NUM_LINES (MenuHires?NUM_LINES_HIRES:20) macro
156 for (i=0; i<NUM_LINES; i++ )
271 buffer_line = (buffer_line+1) % NUM_LINES;
314 for (j=0; j<NUM_LINES; j++ ) {
317 l = (buffer_line + j + 1 ) % NUM_LINES;
376 for (j=0; j<NUM_LINES; j++ )
398 for (j=0; j<NUM_LINES; j++ )
477 if ((k>0)||(done>NUM_LINES)) {
504 if (buffer[(buffer_line + 1 ) % NUM_LINES][0] == '!') {
/dports/math/vtk8/VTK-8.2.0/Rendering/OpenGL2/Testing/Cxx/
H A DTestFXAAFilter.cxx41 const size_t NUM_LINES = 10; in BuildRenderer() local
43 vtkNew<vtkLineSource> lines[NUM_LINES]; in BuildRenderer()
44 vtkNew<vtkPolyDataMapper> mappers[NUM_LINES]; in BuildRenderer()
45 vtkNew<vtkActor> actors[NUM_LINES]; in BuildRenderer()
46 for (size_t i = 0; i < NUM_LINES; ++i) in BuildRenderer()
49 static_cast<double>(NUM_LINES - 1) - 1.; in BuildRenderer()
/dports/math/vtk9/VTK-9.1.0/Rendering/OpenGL2/Testing/Cxx/
H A DTestFXAAFilter.cxx42 const size_t NUM_LINES = 10; in BuildRenderer() local
44 vtkNew<vtkLineSource> lines[NUM_LINES]; in BuildRenderer()
45 vtkNew<vtkPolyDataMapper> mappers[NUM_LINES]; in BuildRenderer()
46 vtkNew<vtkActor> actors[NUM_LINES]; in BuildRenderer()
47 for (size_t i = 0; i < NUM_LINES; ++i) in BuildRenderer()
49 double c = static_cast<double>(2 * i) / static_cast<double>(NUM_LINES - 1) - 1.; in BuildRenderer()
H A DTestFXAAPass.cxx47 const size_t NUM_LINES = 10; in BuildRenderer() local
49 vtkNew<vtkLineSource> lines[NUM_LINES]; in BuildRenderer()
50 vtkNew<vtkPolyDataMapper> mappers[NUM_LINES]; in BuildRenderer()
51 vtkNew<vtkActor> actors[NUM_LINES]; in BuildRenderer()
52 for (size_t i = 0; i < NUM_LINES; ++i) in BuildRenderer()
54 double c = static_cast<double>(2 * i) / static_cast<double>(NUM_LINES - 1) - 1.; in BuildRenderer()
/dports/games/freedroid/freedroid-1.0.2/src/
H A Dtakeover.c121 int DisplayColumn[NUM_LINES] = {
450 CapsuleCurRow[YourColor] = NUM_LINES; in PlayGame()
550 if (row > NUM_LINES - 1) in EnemyMovements()
553 row = NUM_LINES - 1; in EnemyMovements()
734 for (i = 0; i < NUM_LINES; i++) in ShowPlayground()
742 for (j = 0; j < NUM_LINES; j++) in ShowPlayground()
752 for (j = 0; j < NUM_LINES; j++) in ShowPlayground()
814 for (row = 0; row < NUM_LINES; row++) in ClearPlayground()
892 if (row > NUM_LINES - 3) in InventPlayground()
941 if (row > NUM_LINES - 3) in InventPlayground()
[all …]
H A Dtakeover.h75 #define NUM_LINES 12 macro
144 typedef int playground_t[TO_COLORS][NUM_LAYERS][NUM_LINES];
/dports/graphics/epix/epix-1.2.19/samples/
H A Dhyperboloid.xp6 const int NUM_LINES(64);
7 const double dt(1.0/NUM_LINES);
30 for (int i=-0.5*NUM_LINES; i <= 0.5*NUM_LINES; ++i)
/dports/devel/raylib/raylib-3.7.0/examples/textures/
H A Dtextures_sprite_explosion.c15 #define NUM_LINES 5 macro
36 float frameHeight = explosion.height/NUM_LINES; // Sprite one frame rectangle height in main()
81 if (currentLine >= NUM_LINES) in main()
/dports/graphics/cairo/cairo-1.17.4/perf/micro/
H A Dlong-lines.c42 #define NUM_LINES 20 macro
70 dx = outer_width / NUM_LINES; in do_long_lines()
71 dy = outer_height / NUM_LINES; in do_long_lines()
76 for (i = 0; i <= NUM_LINES; i++) { in do_long_lines()
/dports/audio/schismtracker/schismtracker-20211116/schism/
H A Dpage_log.c55 #define NUM_LINES 1000
56 static struct log_line lines[NUM_LINES];
156 if (last_line < NUM_LINES - 1) {
167 top_line = CLAMP(last_line - 32, 0, NUM_LINES-32);
/dports/games/freedroidrpg/freedroidrpg-0.16.1/src/
H A Dtakeover.c118 int DisplayColumn[NUM_LINES] = {
721 if (row > NUM_LINES - 1) in AdvancedEnemyTakeoverMovements()
724 row = NUM_LINES - 1; in AdvancedEnemyTakeoverMovements()
1001 for (i = 0; i < NUM_LINES; i++) { in ShowPlayground()
1008 for (j = 0; j < NUM_LINES; j++) { in ShowPlayground()
1017 for (j = 0; j < NUM_LINES; j++) { in ShowPlayground()
1069 for (row = 0; row < NUM_LINES; row++) in ClearPlayground()
1137 if (row > NUM_LINES - 3) { in InventPlayground()
1180 if (row > NUM_LINES - 3) { in InventPlayground()
1575 for (row = 0; row < NUM_LINES; row++) { in ProcessDisplayColumn()
[all …]
H A Dtakeover.h191 #define NUM_LINES 12 macro
194 typedef int playground_t[TO_COLORS][NUM_LAYERS][NUM_LINES];
/dports/devel/spark/spark-2.1.1/dev/
H A Dlint-r32 NUM_LINES=`wc -l < "$LINT_R_REPORT_FILE_NAME" | awk '{print $1}'`
33 if [ "$NUM_LINES" = "0" ] ; then
/dports/games/freeorion/freeorion-0.4.10.2/parse/
H A DReportParseError.cpp191 const unsigned int NUM_LINES = 5; in get_lines_before() local
194 if (retval_last_line > NUM_LINES) in get_lines_before()
195 retval_first_line = retval_last_line - NUM_LINES + 1; in get_lines_before()
220 const unsigned int NUM_LINES = 5; in get_lines_after() local
223 if (retval_first_line + NUM_LINES < all_line_starts.size()) in get_lines_after()
224 retval_last_line = retval_first_line + NUM_LINES - 1; in get_lines_after()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/tests/textfile/
H A Dtextfiletest.cpp317 static const size_t NUM_LINES = 10000; in ReadBig() local
321 for ( size_t n = 0; n < NUM_LINES; n++ ) in ReadBig()
330 CPPUNIT_ASSERT_EQUAL( NUM_LINES, f.GetLineCount() ); in ReadBig()
334 CPPUNIT_ASSERT_EQUAL( wxString::Format("Line %lu", (unsigned long)NUM_LINES), in ReadBig()
335 f[NUM_LINES - 1] ); in ReadBig()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/tests/textfile/
H A Dtextfiletest.cpp317 static const size_t NUM_LINES = 10000; in ReadBig() local
321 for ( size_t n = 0; n < NUM_LINES; n++ ) in ReadBig()
330 CPPUNIT_ASSERT_EQUAL( NUM_LINES, f.GetLineCount() ); in ReadBig()
334 CPPUNIT_ASSERT_EQUAL( wxString::Format("Line %lu", (unsigned long)NUM_LINES), in ReadBig()
335 f[NUM_LINES - 1] ); in ReadBig()
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/tests/textfile/
H A Dtextfiletest.cpp317 static const size_t NUM_LINES = 10000; in ReadBig() local
321 for ( size_t n = 0; n < NUM_LINES; n++ ) in ReadBig()
330 CPPUNIT_ASSERT_EQUAL( NUM_LINES, f.GetLineCount() ); in ReadBig()
334 CPPUNIT_ASSERT_EQUAL( wxString::Format("Line %lu", (unsigned long)NUM_LINES), in ReadBig()
335 f[NUM_LINES - 1] ); in ReadBig()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/memory/metaspace/
H A DvirtualSpaceNode.cpp107 static const int NUM_LINES = 4; in print_map() local
109 char* lines[NUM_LINES]; in print_map()
110 for (int i = 0; i < NUM_LINES; i ++) { in print_map()
120 for (int i = 0; i < NUM_LINES; i ++) { in print_map()
163 for (int i = 0; i < NUM_LINES; i ++) { in print_map()
169 for (int i = 0; i < NUM_LINES; i ++) { in print_map()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/memory/metaspace/
H A DvirtualSpaceNode.cpp108 static const int NUM_LINES = 4; in print_map() local
110 char* lines[NUM_LINES]; in print_map()
111 for (int i = 0; i < NUM_LINES; i ++) { in print_map()
121 for (int i = 0; i < NUM_LINES; i ++) { in print_map()
164 for (int i = 0; i < NUM_LINES; i ++) { in print_map()
170 for (int i = 0; i < NUM_LINES; i ++) { in print_map()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/memory/metaspace/
H A DvirtualSpaceNode.cpp108 static const int NUM_LINES = 4; in print_map() local
110 char* lines[NUM_LINES]; in print_map()
111 for (int i = 0; i < NUM_LINES; i ++) { in print_map()
121 for (int i = 0; i < NUM_LINES; i ++) { in print_map()
164 for (int i = 0; i < NUM_LINES; i ++) { in print_map()
170 for (int i = 0; i < NUM_LINES; i ++) { in print_map()

123