Searched refs:step (Results 1 - 25 of 49) sorted by relevance

12

/haiku/src/system/libroot/posix/glibc/iconv/
H A Dgconv_builtin.c63 __gconv_get_builtin_trans (const char *name, struct __gconv_step *step) argument
73 step->__fct = map[cnt].fct;
74 step->__btowc_fct = map[cnt].btowc_fct;
75 step->__init_fct = NULL;
76 step->__end_fct = NULL;
77 step->__shlib_handle = NULL;
78 step->__modname = NULL;
80 step->__min_needed_from = map[cnt].min_needed_from;
81 step->__max_needed_from = map[cnt].max_needed_from;
82 step
[all...]
H A Dskeleton.c164 # define FROM_DIRECTION (step->__data == &from_object)
319 the step data to point to one of the objects above. */
325 extern int gconv_init (struct __gconv_step *step);
327 gconv_init (struct __gconv_step *step) argument
330 if (strcmp (step->__from_name, CHARSET_NAME) == 0)
332 step->__data = &from_object;
334 step->__min_needed_from = FROM_LOOP_MIN_NEEDED_FROM;
335 step->__max_needed_from = FROM_LOOP_MAX_NEEDED_FROM;
336 step->__min_needed_to = FROM_LOOP_MIN_NEEDED_TO;
337 step
397 FUNCTION_NAME(struct __gconv_step *step, struct __gconv_step_data *data, const unsigned char **inptrp, const unsigned char *inend, unsigned char **outbufstart, size_t *irreversible, int do_flush, int consume_incomplete) argument
[all...]
H A Dgconv_int.h68 extern int Name (struct __gconv_step *step, \
H A Dloop.c245 FCTNAME (LOOPFCT) (struct __gconv_step *step, argument
258 void *data = step->__data;
330 SINGLE(LOOPFCT) (struct __gconv_step *step, argument
341 void *data = step->__data;
451 gconv_btowc (struct __gconv_step *step, unsigned char c)
/haiku/src/apps/networkstatus/
H A DRadioView.cpp97 float step; local
98 _Compute(rect, center, count, maxCount, step);
102 _DrawBow(view, i, center, count, step);
155 float step; local
156 _Compute(Bounds(), center, count, fMax, step); local
160 if (step == kMinStep && _IsDisabled(fPercent, i, count))
163 _DrawBow(this, i, center, count, step);
184 float step; local
185 _Compute(Bounds(), center, count, fMax, step); local
189 + (kMaxPulseInterval - kMinPulseInterval) / step),
194 _Compute(const BRect& bounds, BPoint& center, int32& count, int32 max, float& step) argument
211 _DrawBow(BView* view, int32 index, const BPoint& center, int32 count, float step) argument
[all...]
H A DRadioView.h45 int32& count, int32 max, float& step);
48 float step);
/haiku/src/apps/sudoku/
H A DSudokuSolver.cpp185 SolutionStep* step = new SolutionStep(fField); local
186 step->ToFirstUnset();
188 stack.Push(step);
193 while (stack.Pop(&step)) {
194 uint32 x = step->X();
195 uint32 y = step->Y();
196 uint32 validMask = step->Field()->ValidMaskAt(x, y);
200 if (step->ToNextUnset()) {
207 SolutionStep* next = new SolutionStep(*step);
212 } else if (step
[all...]
/haiku/headers/private/interface/
H A DMenuWindow.h38 void SetSmallStep(float step);
42 bool TryScrollBy(const float& step);
47 void _ScrollBy(const float& step);
H A DDecimalSpinner.h52 virtual void SetStep(double step) { fStep = step; }; argument
/haiku/src/libs/icon/style/
H A DGradientTransformable.cpp74 BGradient::ColorStop step; local
75 for (int32 i = 0; archive->FindFloat("offset", i, &step.offset) >= B_OK; i++) {
76 if (archive->FindInt32("color", i, (int32*)&step.color) >= B_OK) {
79 AddColor(step.color, step.offset);
110 for (int32 i = 0; BGradient::ColorStop* step = other.ColorAt(i); i++) {
111 AddColor(*step, i);
139 for (int32 i = 0; BGradient::ColorStop* step = ColorAt(i); i++) {
140 ret = into->AddInt32("color", (const uint32&)step->color);
143 ret = into->AddFloat("offset", step
245 BGradient::ColorStop* step = new BGradient::ColorStop(color, offset); local
265 BGradient::ColorStop* step = new BGradient::ColorStop(color); local
278 BGradient::ColorStop* step local
323 BGradient::ColorStop* step = ColorAt(index); local
[all...]
H A DGradientTransformable.h84 const BGradient::ColorStop& step);
/haiku/headers/libs/agg/
H A Dagg_trans_bilinear.h139 iterator_x(double tx, double ty, double step, const double m[4][2]) : argument
140 inc_x(m[1][0] * step * ty + m[2][0] * step),
141 inc_y(m[1][1] * step * ty + m[2][1] * step),
154 iterator_x begin(double x, double y, double step) const
156 return iterator_x(x, y, step, m_mtx);
/haiku/src/apps/deskbar/
H A DInlineScrollView.h36 void SetSmallStep(float step);
39 void ScrollBy(const float& step);
H A DInlineScrollView.cpp558 TInlineScrollView::SetSmallStep(float step) argument
560 fScrollStep = step;
576 TInlineScrollView::ScrollBy(const float& step) argument
581 if (step > 0) {
585 if (fScrollValue + step >= fScrollLimit) {
598 fTarget->ScrollBy(0, step);
599 fEndScrollArrow->MoveBy(0, step);
601 fTarget->ScrollBy(step, 0);
602 fEndScrollArrow->MoveBy(step, 0);
604 fScrollValue += step;
[all...]
/haiku/src/tests/kits/game/chart/
H A DChartView.cpp53 step = 5;
59 as encoded by step. */
68 if (i < step)
70 else if ((i / step) & 1)
H A DChartView.h32 int32 step; member in class:InstantView
/haiku/src/tests/kits/opengl/glsl/
H A Dbrick.c116 const GLfloat step = 3.0f; local
123 xRot -= step;
126 xRot += step;
129 yRot -= step;
132 yRot += step;
/haiku/src/kits/interface/
H A DMenuWindow.cpp366 BMenuWindow::SetSmallStep(float step) argument
368 fScrollStep = step;
405 BMenuWindow::TryScrollBy(const float& step) argument
410 _ScrollBy(step);
456 BMenuWindow::_ScrollBy(const float& step) argument
458 if (step > 0) {
464 if (fValue + step >= fLimit) {
471 fMenu->ScrollBy(0, step);
472 fValue += step;
474 } else if (step <
[all...]
/haiku/src/system/libroot/posix/musl/regex/
H A Dfnmatch.c28 static int str_next(const char *str, size_t n, size_t *step) argument
31 *step = 0;
38 *step = 1;
41 *step = k;
44 *step = 1;
48 static int pat_next(const char *pat, size_t m, size_t *step, int flags) argument
52 *step = 0;
55 *step = 1;
57 *step = 2;
76 *step
[all...]
/haiku/src/tests/add-ons/media/media-add-ons/mixer/
H A Dmain.cpp35 { Resize(1); step = 1; }
47 float step; member in class:Wave
96 w1pos += waves[1].step;
109 w1pos += waves[1].step;
118 w1pos += waves[2].step;
131 w1pos += waves[2].step;
251 fWaveView->waves[0].step = 1;
252 fWaveView->waves[1].step = (float)freq / irate;
253 fWaveView->waves[2].step = (float)freq / orate;
/haiku/src/apps/mediaplayer/interface/
H A DTransportControlGroup.cpp745 float step = floorf(height / 8); local
747 shape->MoveTo(BPoint(height + step, height / 2));
748 shape->LineTo(BPoint(-step, height + step));
749 shape->LineTo(BPoint(-step, 0 - step));
795 add_bow(BShape* shape, float offset, float size, float height, float step) argument
819 BPoint(offset + width - step, height / 2 - innerControlHeight),
820 BPoint(offset + width - step, height / 2)
824 BPoint(offset + width - step, heigh
837 float step = floorf(height / 8); local
[all...]
/haiku/src/bin/
H A Dsetvolume.cpp107 size_t step = 3; local
109 step = atoi(argv[2]);
114 volume += step;
117 volume -= step;
/haiku/src/apps/icon-o-matic/import_export/flat_icon/
H A DFlatIconExporter.cpp664 BGradient::ColorStop* step = gradient->ColorAtFast(i); local
665 if (step->color.alpha < 255)
667 if (step->color.red != step->color.green
668 || step->color.red != step->color.blue)
690 BGradient::ColorStop* step = gradient->ColorAtFast(i); local
691 uint8 stopOffset = (uint8)(step->offset * 255.0);
692 uint32 color = (uint32&)step->color;
697 if (!buffer.Write(step
[all...]
/haiku/src/apps/icon-o-matic/gui/
H A DGradientControl.cpp144 BGradient::ColorStop* step = fGradient->ColorAt(fDraggingStepIndex); local
145 if (step) {
158 // fall back to inserting a color step if no direct hit on an existing step
181 if (BGradient::ColorStop* step
183 color.alpha = step->color.alpha;
223 // remove step
235 if (BGradient::ColorStop* step
238 float x = r.left + r.Width() * step->offset;
241 // move step t
[all...]
/haiku/src/apps/icon-o-matic/import_export/svg/
H A DDocumentBuilder.cpp313 BGradient::ColorStop* step = gradient.ColorAt(0); local
314 if (step) {
315 color.red = step->color.red;
316 color.green = step->color.green;
317 color.blue = step->color.blue;
318 color.alpha = step->color.alpha;

Completed in 203 milliseconds

12