OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxStep
(Results
1 - 6
of
6
) sorted by null
/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/skia/src/core/
SkAntiRun.h
43
SkDEBUGCODE(void assertValid(int y, int
maxStep
) const;)
SkAlphaRuns.cpp
141
void SkAlphaRuns::assertValid(int y, int
maxStep
) const {
142
int max = (y + 1) *
maxStep
- (y ==
maxStep
- 1);
/external/libxml2/
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/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 298 milliseconds