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

123456

/haiku-fatelf/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...]
/haiku-fatelf/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...]
/haiku-fatelf/headers/private/interface/
H A DMenuWindow.h38 void SetSmallStep(float step);
42 bool TryScrollBy(const float& step);
46 void _ScrollBy(const float& step);
/haiku-fatelf/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-fatelf/src/libs/icon/style/
H A DGradientTransformable.cpp69 BGradient::ColorStop step; local
70 for (int32 i = 0; archive->FindFloat("offset", i, &step.offset) >= B_OK; i++) {
71 if (archive->FindInt32("color", i, (int32*)&step.color) >= B_OK)
72 AddColor(step, i);
102 for (int32 i = 0; BGradient::ColorStop* step = other.ColorAt(i); i++) {
103 AddColor(*step, i);
131 for (int32 i = 0; BGradient::ColorStop* step = ColorAt(i); i++) {
132 ret = into->AddInt32("color", (const uint32&)step->color);
135 ret = into->AddFloat("offset", step->offset);
224 for (int32 i = 0; BGradient::ColorStop* step
237 BGradient::ColorStop* step = new BGradient::ColorStop(color, offset); local
257 BGradient::ColorStop* step = new BGradient::ColorStop(color); local
270 BGradient::ColorStop* step local
315 BGradient::ColorStop* step = ColorAt(index); local
[all...]
/haiku-fatelf/src/apps/deskbar/
H A DInlineScrollView.h36 void SetSmallStep(float step);
39 void ScrollBy(const float& step);
H A DInlineScrollView.cpp547 TInlineScrollView::SetSmallStep(float step) argument
549 fScrollStep = step;
565 TInlineScrollView::ScrollBy(const float& step) argument
570 if (step > 0) {
574 if (fScrollValue + step >= fScrollLimit) {
587 fTarget->ScrollBy(0, step);
588 fEndScrollArrow->MoveBy(0, step);
590 fTarget->ScrollBy(step, 0);
591 fEndScrollArrow->MoveBy(step, 0);
593 fScrollValue += step;
[all...]
/haiku-fatelf/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);
H A Dagg_trans_perspective.h156 iterator_x(double tx, double ty, double step, const double m[8][1]) : argument
158 den_step(m[6][0] * step),
160 nom_x_step(m[1][0] * step),
162 nom_y_step(m[4][0] * step),
180 iterator_x begin(double x, double y, double step) const
182 return iterator_x(x, y, step, m_mtx);
/haiku-fatelf/src/add-ons/translators/webp/libwebp/enc/
H A Dfilter.c48 static inline void do_filter2(uint8_t* p, int step) { argument
49 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
53 p[-step] = clip1[255 + p0 + a2];
58 static inline void do_filter4(uint8_t* p, int step) { argument
59 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
64 p[-2*step]
71 hev(const uint8_t* p, int step, int thresh) argument
76 needs_filter(const uint8_t* p, int step, int thresh) argument
81 needs_filter2(const uint8_t* p, int step, int t, int it) argument
[all...]
/haiku-fatelf/src/add-ons/translators/jpeg2000/libjasper/
H A Djpc_qmfb.c188 register int step, jpc_fix_t *lstartptr, int lstartind, int lendind,
209 twostep = step << 1;
230 ptr = &startptr[step];
241 lptr += step;
247 hptr = &hstartptr[(hlen - 1) * step];
248 ptr = &startptr[(((llen + hlen - 1) >> 1) << 1) * step];
252 hptr -= step;
260 hptr -= step;
280 lptr += step;
286 ptr = &startptr[((((llen + hlen) >> 1) << 1) - 1) * step];
187 jpc_qmfb1d_split(jpc_fix_t *startptr, int startind, int endind, register int step, jpc_fix_t *lstartptr, int lstartind, int lendind, jpc_fix_t *hstartptr, int hstartind, int hendind) argument
311 jpc_qmfb1d_join(jpc_fix_t *startptr, int startind, int endind, register int step, jpc_fix_t *lstartptr, int lstartind, int lendind, jpc_fix_t *hstartptr, int hstartind, int hendind) argument
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dpattern.c89 int flags; /* properties of that step */
111 int *states; /* the array of step indexes */
138 int step; member in struct:_xmlStepState
338 * Add a step to an XSLT Compiled Match
460 xmlPatPushState(xmlStepStates *states, int step, xmlNodePtr node) { argument
476 states->states[states->nbstates].step = step;
479 fprintf(stderr, "Push: %d, %s\n", step, node->name);
496 xmlStepOpPtr step; local
503 step
1574 xmlStepOp step; local
1856 xmlStreamStep step; local
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/fork/
H A Ddo-plot69 step=$(((100 - $height) / $events))
70 if [ $step -lt 5 ]
72 step=5;
86 height=$(($height + $step))
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_cond_timedwait/
H A Ddo-plot69 step=$(((100 - $height) / $events))
70 if [ $step -lt 5 ]
72 step=5;
86 height=$(($height + $step))
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_create/
H A Ddo-plot69 step=$(((100 - $height) / $events))
70 if [ $step -lt 5 ]
72 step=5;
86 height=$(($height + $step))
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/sem_init/
H A Ddo-plot69 step=$(((100 - $height) / $events))
70 if [ $step -lt 5 ]
72 step=5;
86 height=$(($height + $step))
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/sem_open/
H A Ddo-plot69 step=$(((100 - $height) / $events))
70 if [ $step -lt 5 ]
72 step=5;
86 height=$(($height + $step))
/haiku-fatelf/src/preferences/cpufrequency/
H A DColorStepView.h56 static float UsageOfStep(int32 step, int32 nSteps, float base);
61 float _PositonStep(int32 step);
62 void _ColorStep(int32 step, rgb_color &color);
H A DColorStepView.cpp275 ColorStepView::UsageOfStep(int32 step, int32 nSteps, float base) argument
278 return base + singleWidth * step;
316 ColorStepView::_PositonStep(int32 step) argument
318 if (step >= fNSteps)
321 return UsageOfStep(step, fNSteps, fSliderPosition);
326 ColorStepView::_ColorStep(int32 step, rgb_color &color) argument
330 / (fNSteps - 1) * step;
333 / (fNSteps - 1) * step;
336 / (fNSteps - 1) * step;
/haiku-fatelf/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)
/haiku-fatelf/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-fatelf/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);
445 BMenuWindow::_ScrollBy(const float& step) argument
447 if (step > 0) {
453 if (fValue + step >= fLimit) {
460 fMenu->ScrollBy(0, step);
461 fValue += step;
463 } else if (step <
[all...]
/haiku-fatelf/src/add-ons/translators/webp/libwebp/dec/
H A Ddsp.c489 static inline void do_filter2(uint8_t* p, int step) { argument
490 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
494 p[-step] = clip1[255 + p0 + a2];
499 static inline void do_filter4(uint8_t* p, int step) { argument
500 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
505 p[-2*step]
512 do_filter6(uint8_t* p, int step) argument
527 hev(const uint8_t* p, int step, int thresh) argument
532 needs_filter(const uint8_t* p, int step, int thresh) argument
537 needs_filter2(const uint8_t* p, int step, int t, int it) argument
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Dlinux-nat.h55 int step; member in struct:lwp_info

Completed in 230 milliseconds

123456