Home
last modified time | relevance | path

Searched refs:m_step (Results 1 – 25 of 777) sorted by relevance

12345678910>>...32

/dports/graphics/luminance-qt5/luminance-hdr-2.6.1.1/src/Libpfs/
H A Dstrideiterator.h52 StrideIterator(const self &rhs) : m_data(rhs.m_data), m_step(rhs.m_step) {} in StrideIterator()
78 return self(m_data + n * m_step, m_step);
102 return self(m_data - n * m_step, m_step);
157 assert(x.m_step == y.m_step);
164 assert(x.m_step == y.m_step);
171 assert(x.m_step == y.m_step);
178 assert(x.m_step == y.m_step);
185 assert(x.m_step == y.m_step);
191 assert(x.m_step == y.m_step);
198 assert(x.m_step == y.m_step);
[all …]
/dports/emulators/mess/mame-mame0226/src/devices/sound/
H A Dokiadpcm.cpp66 if (m_step > 48) in clock()
67 m_step = 48; in clock()
68 else if (m_step < 0) in clock()
69 m_step = 0; in clock()
85 m_loop_step = m_step; in save()
99 m_step = m_loop_step; in restore()
183 if (m_step > 48) in clock()
184 m_step = 48; in clock()
185 else if (m_step < 0) in clock()
186 m_step = 0; in clock()
[all …]
H A Ddac76.h45 DECLARE_WRITE_LINE_MEMBER(b4_w) { m_step &= ~(1 << 3); m_step |= (state << 3); }; in DECLARE_WRITE_LINE_MEMBER()
46 DECLARE_WRITE_LINE_MEMBER(b5_w) { m_step &= ~(1 << 2); m_step |= (state << 2); }; in DECLARE_WRITE_LINE_MEMBER()
47 DECLARE_WRITE_LINE_MEMBER(b6_w) { m_step &= ~(1 << 1); m_step |= (state << 1); }; in DECLARE_WRITE_LINE_MEMBER()
48 DECLARE_WRITE_LINE_MEMBER(b7_w) { m_step &= ~(1 << 0); m_step |= (state << 0); }; in DECLARE_WRITE_LINE_MEMBER()
68 uint8_t m_step; // 3-bit variable
H A Dokim6258.cpp61 m_step(0) in okim6258_device()
120 m_step = 0; in device_start()
135 m_step = 0; in device_reset()
189 save_item(NAME(m_step)); in state_save_register()
198 m_signal += diff_lookup[m_step * 16 + (nibble & 15)]; in clock_adpcm()
207 m_step += index_shift[nibble & 7]; in clock_adpcm()
208 if (m_step > 48) in clock_adpcm()
209 m_step = 48; in clock_adpcm()
210 else if (m_step < 0) in clock_adpcm()
211 m_step = 0; in clock_adpcm()
[all …]
/dports/emulators/mame/mame-mame0226/src/devices/sound/
H A Dokiadpcm.cpp66 if (m_step > 48) in clock()
67 m_step = 48; in clock()
68 else if (m_step < 0) in clock()
69 m_step = 0; in clock()
85 m_loop_step = m_step; in save()
99 m_step = m_loop_step; in restore()
183 if (m_step > 48) in clock()
184 m_step = 48; in clock()
185 else if (m_step < 0) in clock()
186 m_step = 0; in clock()
[all …]
H A Ddac76.h45 DECLARE_WRITE_LINE_MEMBER(b4_w) { m_step &= ~(1 << 3); m_step |= (state << 3); }; in DECLARE_WRITE_LINE_MEMBER()
46 DECLARE_WRITE_LINE_MEMBER(b5_w) { m_step &= ~(1 << 2); m_step |= (state << 2); }; in DECLARE_WRITE_LINE_MEMBER()
47 DECLARE_WRITE_LINE_MEMBER(b6_w) { m_step &= ~(1 << 1); m_step |= (state << 1); }; in DECLARE_WRITE_LINE_MEMBER()
48 DECLARE_WRITE_LINE_MEMBER(b7_w) { m_step &= ~(1 << 0); m_step |= (state << 0); }; in DECLARE_WRITE_LINE_MEMBER()
68 uint8_t m_step; // 3-bit variable
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/widgets/
H A DDiatonicPitchChooser.cpp56 m_step = new QComboBox( hbox ); in DiatonicPitchChooser()
57 hboxLayout->addWidget(m_step); in DiatonicPitchChooser()
58 m_step->setMaxVisibleItems( 7 ); in DiatonicPitchChooser()
59 m_step->addItem(tr("C", "note name")); in DiatonicPitchChooser()
60 m_step->addItem(tr("D", "note name")); in DiatonicPitchChooser()
66 m_step->setCurrentIndex(defaultNote); in DiatonicPitchChooser()
158 m_step->setCurrentIndex(step); in slotSetPitch()
172 if (m_step->currentIndex() != step) in slotSetStep()
173 m_step->setCurrentIndex(step); in slotSetStep()
218 m_step->setCurrentIndex(step); in slotSetNote()
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/
H A Dgridgeometry.cpp50 return m_step; in step()
75 if (qFuzzyCompare(m_step, step)) in setStep()
77 m_step = step; in setStep()
117 float x0 = -float(m_lines) * m_step; in fillVertexData()
134 const float subdivStep = m_step / float(numSubdivs + 1); in fillVertexData()
157 dataPtr[0] = vertical ? x0 + i * m_step : x0; in fillVertexData()
158 dataPtr[1] = vertical ? y0 : y0 + i * m_step; in fillVertexData()
161 dataPtr[3] = vertical ? x0 + i * m_step : x1; in fillVertexData()
162 dataPtr[4] = vertical ? y1 : y0 + i * m_step; in fillVertexData()
169 generateLines(x0, m_step, x1, y1, false); in fillVertexData()
[all …]
/dports/graphics/cfdg/cfdg-3.3_1/src-common/agg-extras/
H A Dagg_fast_ellipse.h55 : m_x(x), m_y(y), m_rx(rx), m_ry(ry), m_num(0), m_step(0), in fast_ellipse()
72 unsigned m_step; variable
87 m_step = 0; in init()
110 m_step = 0; in rewind()
115 if(m_step == m_num) in vertex()
117 ++m_step; in vertex()
120 if(m_step > m_num) return path_cmd_stop; in vertex()
121 int quadrant = m_step / (m_num / 4); in vertex()
122 int step = m_step % (m_num / 4); in vertex()
129 m_step++; in vertex()
[all …]
/dports/graphics/libksane/libksane-21.12.3/src/widgets/
H A Dlabeledslider.cpp84 m_step = stepValue; in initSlider()
85 if (m_step == 0) { in initSlider()
86 m_step = 1; in initSlider()
93 m_slider->setSingleStep(m_step); in initSlider()
98 m_slider->setSingleStep(m_step); in initSlider()
145 m_step = st; in setStep()
146 if (m_step == 0) { in setStep()
147 m_step = 1; in setStep()
149 m_slider->setSingleStep(m_step); in setStep()
150 m_spinb->setSingleStep(m_step); in setStep()
[all …]
/dports/graphics/cfdg/cfdg-3.3_1/src-agg/agg2/
H A Dagg_ellipse.h35 m_num(4), m_step(0), m_cw(false) {} in ellipse()
40 m_num(num_steps), m_step(0), m_cw(cw) in m_x()
61 unsigned m_step; variable
74 m_step = 0; in init()
97 m_step = 0; in rewind()
103 if(m_step == m_num) in vertex()
105 ++m_step; in vertex()
108 if(m_step > m_num) return path_cmd_stop; in vertex()
109 double angle = double(m_step) / double(m_num) * 2.0 * pi; in vertex()
113 m_step++; in vertex()
[all …]
/dports/graphics/agg/agg-2.5/include/
H A Dagg_ellipse.h40 m_num(4), m_step(0), m_cw(false) {} in ellipse()
45 m_num(num_steps), m_step(0), m_cw(cw) in m_x()
66 unsigned m_step; variable
79 m_step = 0; in init()
102 m_step = 0; in rewind()
108 if(m_step == m_num) in vertex()
110 ++m_step; in vertex()
113 if(m_step > m_num) return path_cmd_stop; in vertex()
114 double angle = double(m_step) / double(m_num) * 2.0 * pi; in vertex()
118 m_step++; in vertex()
[all …]
/dports/math/py-matplotlib2/matplotlib-2.2.4/extern/agg24-svn/include/
H A Dagg_ellipse.h35 m_num(4), m_step(0), m_cw(false) {} in ellipse()
40 m_num(num_steps), m_step(0), m_cw(cw) in m_x()
61 unsigned m_step; variable
74 m_step = 0; in init()
97 m_step = 0; in rewind()
103 if(m_step == m_num) in vertex()
105 ++m_step; in vertex()
108 if(m_step > m_num) return path_cmd_stop; in vertex()
109 double angle = double(m_step) / double(m_num) * 2.0 * pi; in vertex()
113 m_step++; in vertex()
[all …]
/dports/math/py-matplotlib/matplotlib-3.4.3/extern/agg24-svn/include/
H A Dagg_ellipse.h35 m_num(4), m_step(0), m_cw(false) {} in ellipse()
40 m_num(num_steps), m_step(0), m_cw(cw) in m_x()
61 unsigned m_step; variable
74 m_step = 0; in init()
97 m_step = 0; in rewind()
103 if(m_step == m_num) in vertex()
105 ++m_step; in vertex()
108 if(m_step > m_num) return path_cmd_stop; in vertex()
109 double angle = double(m_step) / double(m_num) * 2.0 * pi; in vertex()
113 m_step++; in vertex()
[all …]
/dports/graphics/mapserver/mapserver-7.6.4/renderers/agg/include/
H A Dagg_ellipse.h35 m_num(4), m_step(0), m_cw(false) {} in ellipse()
40 m_num(num_steps), m_step(0), m_cw(cw) in m_x()
61 unsigned m_step; variable
74 m_step = 0; in init()
97 m_step = 0; in rewind()
103 if(m_step == m_num) in vertex()
105 ++m_step; in vertex()
108 if(m_step > m_num) return path_cmd_stop; in vertex()
109 double angle = double(m_step) / double(m_num) * 2.0 * pi; in vertex()
113 m_step++; in vertex()
[all …]
/dports/sysutils/fluxengine/fluxengine-61ff48c/dep/agg/include/
H A Dagg_ellipse.h35 m_num(4), m_step(0), m_cw(false) {}
40 m_num(num_steps), m_step(0), m_cw(cw)
61 unsigned m_step;
74 m_step = 0;
97 m_step = 0;
103 if(m_step == m_num)
105 ++m_step;
108 if(m_step > m_num) return path_cmd_stop;
109 double angle = double(m_step) / double(m_num) * 2.0 * pi;
113 m_step++;
[all …]
/dports/editors/lazarus/lazarus/components/aggpas/src/
H A Dagg_ellipse.pas54 m_step : unsigned;
90 m_step:=0;
108 m_step:=0;
125 m_step:=0;
145 m_step:=0;
155 if m_step = m_num then
157 inc(m_step );
165 if m_step > m_num then
173 angle:=m_step / m_num * 2.0 * pi;
181 inc(m_step );
[all …]
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/aggpas/src/
H A Dagg_ellipse.pas54 m_step : unsigned;
90 m_step:=0;
108 m_step:=0;
125 m_step:=0;
145 m_step:=0;
155 if m_step = m_num then
157 inc(m_step );
165 if m_step > m_num then
173 angle:=m_step / m_num * 2.0 * pi;
181 inc(m_step );
[all …]
/dports/editors/lazarus-qt5/lazarus/components/aggpas/src/
H A Dagg_ellipse.pas54 m_step : unsigned;
90 m_step:=0;
108 m_step:=0;
125 m_step:=0;
145 m_step:=0;
155 if m_step = m_num then
157 inc(m_step );
165 if m_step > m_num then
173 angle:=m_step / m_num * 2.0 * pi;
181 inc(m_step );
[all …]
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/aggpas/src/
H A Dagg_ellipse.pas54 m_step : unsigned;
90 m_step:=0;
108 m_step:=0;
125 m_step:=0;
145 m_step:=0;
155 if m_step = m_num then
157 inc(m_step );
165 if m_step > m_num then
173 angle:=m_step / m_num * 2.0 * pi;
181 inc(m_step );
[all …]
/dports/net-im/qxmpp-qt5/qxmpp-1.4.0/src/base/
H A DQXmppSasl.cpp422 m_step++; in respond()
448 m_step++; in respond()
487 m_step++; in respond()
499 m_step++; in respond()
522 m_step++; in respond()
543 m_step++; in respond()
567 m_step++; in respond()
590 m_step++; in respond()
601 m_step(0), in QXmppSaslClientScram()
623 m_step++; in respond()
[all …]
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/include/preview_items/
H A Dmultistep_geom_manager.h93 return m_step == 0; in IsReset()
101 m_step = 0; in Reset()
110 return m_step == getMaxStep(); in IsComplete()
152 return m_step; in getStep()
170 m_step += aForward ? 1 : -1; in performStep()
173 m_step = std::min( std::max( m_step, 0 ), getMaxStep() ); in performStep()
185 int m_step = 0; variable
/dports/graphics/blender/blender-2.91.0/source/blender/compositor/operations/
H A DCOM_QualityStepHelper.cpp24 this->m_step = 1; in QualityStepHelper()
35 this->m_step = 1; in initExecution()
39 this->m_step = 2; in initExecution()
43 this->m_step = 3; in initExecution()
52 this->m_step = 1; in initExecution()
56 this->m_step = 2; in initExecution()
60 this->m_step = 4; in initExecution()
/dports/security/kgpg/kgpg-21.12.3/
H A Dkgpgchangekey.cpp22 m_step(0), in KGpgChangeKey()
57 if (m_step != 0) in apply()
60 m_step = 0; in apply()
70 if (m_step == 0) { in nextStep()
80 m_step++; in nextStep()
82 switch (m_step) { in nextStep()
92 m_step++; in nextStep()
110 m_step++; in nextStep()
128 m_step++; in nextStep()
138 m_step = 0; in nextStep()
[all …]
/dports/graphics/krita/krita-4.4.8/plugins/filters/posterize/
H A Dposterize.cpp69 m_step = KoColorSpaceMathsTraits<quint16>::max / steps; in KisPosterizeColorTransformation()
70 m_halfStep = m_step / 2; in KisPosterizeColorTransformation()
112 m_mod[0] = m_rgba[0] % m_step; in transform()
113 m_mod[1] = m_rgba[1] % m_step; in transform()
114 m_mod[2] = m_rgba[2] % m_step; in transform()
115 m_mod[3] = m_rgba[3] % m_step; in transform()
117 m_rgba[0] = m_rgba[0] + (m_mod[0] > m_halfStep ? m_step - m_mod[0] : -m_mod[0]); in transform()
118 m_rgba[1] = m_rgba[1] + (m_mod[1] > m_halfStep ? m_step - m_mod[1] : -m_mod[1]); in transform()
119 m_rgba[2] = m_rgba[2] + (m_mod[2] > m_halfStep ? m_step - m_mod[2] : -m_mod[2]); in transform()
120 m_rgba[3] = m_rgba[3] + (m_mod[3] > m_halfStep ? m_step - m_mod[3] : -m_mod[3]); in transform()

12345678910>>...32