Searched refs:steps (Results 1 - 25 of 27) sorted by relevance

12

/haiku-fatelf/src/tools/docbook/libxml2/
H A Dpattern.c99 int nbStep; /* number of steps in the automata */
100 int maxStep; /* allocated number of steps */
101 xmlStreamStepPtr steps; /* the array of steps */ member in struct:_xmlStreamComp
169 xmlStepOpPtr steps; /* ops for computation */ member in struct:_xmlPattern
211 cur->steps = (xmlStepOpPtr) xmlMalloc(cur->maxStep * sizeof(xmlStepOp));
212 if (cur->steps == NULL) {
240 if (comp->steps != NULL) {
243 op = &comp->steps[i];
250 xmlFree(comp->steps);
[all...]
H A Dxpath.c594 int nbStep; /* Number of steps in this expression */
595 int maxStep; /* Maximum number of steps allocated */
596 xmlXPathStepOp *steps; /* ops for computation of this expression */ member in struct:_xmlXPathCompExpr
634 cur->steps = (xmlXPathStepOp *) xmlMalloc(cur->maxStep *
636 if (cur->steps == NULL) {
637 xmlXPathErrMemory(NULL, "allocating steps\n");
641 memset(cur->steps, 0, cur->maxStep * sizeof(xmlXPathStepOp));
665 op = &comp->steps[i];
677 op = &comp->steps[i];
685 if (comp->steps !
[all...]
/haiku-fatelf/src/apps/tv/
H A DVideoView.cpp281 int steps; local
295 steps = 32;
297 bar_width = bnd.Width() / steps;
302 for (int i = 0; i < steps; i++) {
303 uint8 c = i * 255 / (steps - 1);
305 right = (i != steps - 1) ? left + bar_width - 1 : bnd.right;
310 steps = 256;
312 bar_width = bnd.Width() / steps;
317 for (int i = 0; i < steps; i++) {
318 uint8 c = 255 - (i * 255 / (steps
[all...]
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dpattern.c103 /* TODO fix the statically allocated size steps[] */
108 xsltStepOp steps[40]; /* ops for computation */ member in struct:_xsltCompMatch
173 op = &comp->steps[i];
211 * steps of an imported stylesheet.
220 comp->steps[ix].previousExtra += style->extrasNr;
221 comp->steps[ix].indexExtra += style->extrasNr;
222 comp->steps[ix].lenExtra += style->extrasNr;
286 comp->steps[comp->nbStep].op = op;
287 comp->steps[comp->nbStep].value = value;
288 comp->steps[com
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/include/gutenprint/
H A Dcolor.h49 int (*init)(stp_vars_t *v, stp_image_t *image, size_t steps);
69 extern int stp_color_init(stp_vars_t *v, stp_image_t *image, size_t steps);
/haiku-fatelf/src/libs/print/libgutenprint/src/main/
H A Dprint-color.c718 dest->steps = src->steps;
786 double *tmp_data = stp_malloc(sizeof(double) * lut->steps);
795 k_upper *= lut->steps;
796 k_lower *= lut->steps;
800 if (k_lower > lut->steps)
801 k_lower = lut->steps;
808 if (k_upper < lut->steps)
816 tmp_data[i] = 65535.0 * k_upper * value / (double) (lut->steps - 1);
819 for (i = ceil(k_upper); i < lut->steps;
1402 stpi_color_traditional_init(stp_vars_t *v, stp_image_t *image, size_t steps) argument
[all...]
H A Dcolor.c178 size_t steps)
182 return colorfuncs->init(v, image, steps);
176 stp_color_init(stp_vars_t *v, stp_image_t *image, size_t steps) argument
H A Dcolor-conversion.h139 unsigned steps; member in struct:__anon5102
H A Dcolor-conversions.c326 const unsigned short *blue, unsigned steps)
328 if (steps == 65536)
431 lut->steps, lut->invert_output); \
772 size_t real_steps = lut->steps; \
777 lut->steps = 65536; \
779 lut->steps = real_steps; \
1087 size_t real_steps = lut->steps; \
1118 lut->steps = 65536; \
1121 lut->steps = real_steps; \
1741 size_t real_steps = lut->steps; \
324 lookup_rgb(lut_t *lut, unsigned short *rgbout, const unsigned short *red, const unsigned short *green, const unsigned short *blue, unsigned steps) argument
[all...]
H A Dprint-dither-matrices.c64 calc_ordered_point(unsigned x, unsigned y, int steps, int multiplier, argument
71 for (i = 0; i < steps; i++)
78 for (j = i; j < steps - 1; j++)
/haiku-fatelf/src/apps/debuganalyzer/gui/chart/
H A DChart.cpp570 Chart::_Zoom(float x, float steps) argument
574 || steps == 0) {
585 if (steps < 0) {
586 steps = -steps;
590 for (; steps > 0; steps--)
H A DChart.h92 void _Zoom(float x, float steps);
/haiku-fatelf/src/apps/pulse/
H A DNormalPulseView.cpp34 const float steps = 0.5f; local
36 for (float size = maxSize; size > 4; size -= steps) {
/haiku-fatelf/src/libs/print/libgutenprint/src/testpattern/
H A Drun-testpattern-194 steps 16;
168 steps 256;
H A Drun-testpattern77 steps 16;
H A Dtestpatterny.y281 steps: STEPS tINT label
284 fprintf(stderr, ">>>steps %d\n", $2);
625 A_Rule: gamma | channel_gamma | level | channel_level | global_gamma | steps
H A Dtestpatterny.c641 "steps", "ink_limit", "printer", "page_size_name", "page_size_custom",
1846 fprintf(stderr, ">>>steps %d\n", (yyvsp[(2) - (2)].ival));
/haiku-fatelf/src/add-ons/decorators/BeDecorator/
H A DBeDecorator.cpp1142 int steps = w < h ? w : h; local
1154 rstep = float(startColor.red - halfColor.red) / steps;
1155 gstep = float(startColor.green - halfColor.green) / steps;
1156 bstep = float(startColor.blue - halfColor.blue) / steps;
1158 for (int32 i = 0; i <= steps; i++) {
1170 fDrawingEngine->StrokeLine(BPoint(r.left + steps, r.top + i),
1171 BPoint(r.left + i, r.top + steps), temprgbcol);
/haiku-fatelf/src/apps/debuganalyzer/gui/main_window/
H A DSchedulingPage.cpp1332 void _Zoom(float x, float steps) argument
1334 if (steps == 0 || fModel == NULL)
1342 if (steps < 0) {
1343 steps = -steps;
1348 for (; steps > 0; steps--)
/haiku-fatelf/src/apps/cortex/RouteApp/
H A DStatusView.cpp486 float steps = static_cast<float>(TEXT_DECAY_TIME) local
488 m_opacity -= (1.0 / steps);
/haiku-fatelf/src/apps/diskprobe/
H A DDataView.cpp942 float steps = 0.5f; local
945 for (size = 1.f; size < 100; size += steps) {
952 steps = 1.0f;
954 size -= steps;
/haiku-fatelf/src/apps/activitymonitor/
H A DActivityView.cpp1367 uint32 steps = width / step; local
1397 viewValues->Update(values, steps, fDrawResolution, now, timeStep,
1404 for (uint32 i = viewValues->Start(); i < steps; x += step, i++) {
/haiku-fatelf/src/apps/terminal/
H A DTermView.cpp1951 int32 steps; local
1959 steps = abs((int)deltaY);
1964 steps = 3 * abs((int)deltaY);
1970 for (int32 i = 0; i <steps; i++)
/haiku-fatelf/src/apps/showimage/
H A DShowImageWindow.cpp1535 const int32 steps = sizeof(kAnimationOffsets) / sizeof(float); local
1537 for (int32 i = 0; i < steps; i++) {
/haiku-fatelf/src/kits/tracker/
H A DWidgetAttributeText.cpp2039 int32 steps = fMax / fCount; local
2043 if (rating > i * steps)

Completed in 163 milliseconds

12