OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxStep
(Results
1 - 4
of
4
) sorted by null
/external/skia/src/core/
SkAlphaRuns.cpp
134
void SkAlphaRuns::assertValid(int y, int
maxStep
) const
136
int max = (y + 1) *
maxStep
- (y ==
maxStep
- 1);
SkAntiRun.h
155
SkDEBUGCODE(void assertValid(int y, int
maxStep
) const;)
/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
...]
Completed in 87 milliseconds