OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:maxstep
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/skia/src/core/
SkAlphaRuns.cpp
28
void SkAlphaRuns::assertValid(int y, int
maxStep
) const {
29
int max = (y + 1) *
maxStep
- (y ==
maxStep
- 1);
SkAntiRun.h
106
SkDEBUGCODE(void assertValid(int y, int
maxStep
) const;)
/external/skia/src/core/
SkAlphaRuns.cpp
28
void SkAlphaRuns::assertValid(int y, int
maxStep
) const {
29
int max = (y + 1) *
maxStep
- (y ==
maxStep
- 1);
SkAntiRun.h
106
SkDEBUGCODE(void assertValid(int y, int
maxStep
) const;)
/external/qemu/distrib/sdl-1.2.15/test/
testwin.c
143
int
maxstep
;
local
152
maxstep
= 32-1;
162
for ( i=0; i<=
maxstep
/2; ++i ) { /* halfway fade */
166
palcolors[c].r+((cdist[c].r*i))/
maxstep
;
168
palcolors[c].g+((cdist[c].g*i))/
maxstep
;
170
palcolors[c].b+((cdist[c].b*i))/
maxstep
;
184
maxstep
/= 2;
185
for ( i=0; i<=
maxstep
; ++i ) { /* finish fade out */
189
palcolors[c].r+((cdist[c].r*i))/
maxstep
;
191
palcolors[c].g+((cdist[c].g*i))/
maxstep
;
[
all
...]
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
WindowSurface.java
109
float adjDelta(float cur, float minStep, float
maxStep
) {
113
if (cur >
maxStep
) cur =
maxStep
;
114
if (cur < -
maxStep
) cur = -
maxStep
;
118
void step(int width, int height, float minStep, float
maxStep
) {
123
dx = adjDelta(-dx, minStep,
maxStep
);
129
dy = adjDelta(-dy, minStep,
maxStep
);
/external/chromium_org/third_party/libxml/src/
pattern.c
100
int
maxStep
; /* allocated number of steps */
168
int
maxStep
;
210
cur->
maxStep
= 10;
211
cur->steps = (xmlStepOpPtr) xmlMalloc(cur->
maxStep
* sizeof(xmlStepOp));
347
if (comp->nbStep >= comp->
maxStep
) {
349
temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->
maxStep
* 2 *
357
comp->
maxStep
*= 2;
418
if (comp->nbStep >= comp->
maxStep
) {
420
temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->
maxStep
* 2 *
428
comp->
maxStep
*= 2
[
all
...]
xpath.c
575
int
maxStep
; /* Maximum number of steps allocated */
629
cur->
maxStep
= 10;
631
cur->steps = (xmlXPathStepOp *) xmlMalloc(cur->
maxStep
*
638
memset(cur->steps, 0, cur->
maxStep
* sizeof(xmlXPathStepOp));
722
if (comp->nbStep >= comp->
maxStep
) {
725
comp->
maxStep
*= 2;
727
comp->
maxStep
* sizeof(xmlXPathStepOp));
729
comp->
maxStep
/= 2;
[
all
...]
/external/libxml2/
pattern.c
103
int
maxStep
; /* allocated number of steps */
171
int
maxStep
;
213
cur->
maxStep
= 10;
214
cur->steps = (xmlStepOpPtr) xmlMalloc(cur->
maxStep
* sizeof(xmlStepOp));
351
if (comp->nbStep >= comp->
maxStep
) {
353
temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->
maxStep
* 2 *
361
comp->
maxStep
*= 2;
422
if (comp->nbStep >= comp->
maxStep
) {
424
temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->
maxStep
* 2 *
432
comp->
maxStep
*= 2
[
all
...]
xpath.c
653
int
maxStep
; /* Maximum number of steps allocated */
707
cur->
maxStep
= 10;
709
cur->steps = (xmlXPathStepOp *) xmlMalloc(cur->
maxStep
*
716
memset(cur->steps, 0, cur->
maxStep
* sizeof(xmlXPathStepOp));
800
if (comp->nbStep >= comp->
maxStep
) {
803
if (comp->
maxStep
>= XPATH_MAX_STEPS) {
807
comp->
maxStep
*= 2;
809
comp->
maxStep
* sizeof(xmlXPathStepOp));
811
comp->
maxStep
/= 2;
[
all
...]
/external/chromium_org/third_party/libxslt/libxslt/
pattern.c
110
int
maxStep
;
153
cur->
maxStep
= 10;
156
cur->
maxStep
);
296
if (comp->nbStep >= comp->
maxStep
) {
299
tmp = (xsltStepOpPtr) xmlRealloc(comp->steps, comp->
maxStep
* 2 *
308
comp->
maxStep
*= 2;
[
all
...]
Completed in 337 milliseconds