HomeSort by relevance Sort by last modified time
    Searched full:_cell (Results 1 - 3 of 3) sorted by null

  /external/srec/portable/include/
pmalloc.h 55 #define CELL_OFF ((DKoffsetof(_Cell, _Next) + M_MASK) & ~M_MASK)
57 #define SIZE_CELL ((sizeof (_Cell) + M_MASK) & ~M_MASK)
59 typedef struct _Cell
62 struct _Cell *_Next; /* reused if CELL_OFF < SIZE_CELL */
64 _Cell;
67 _Cell **_Plast; /* null, or where to resume malloc scan */
68 _Cell *_Head; /* null, or lowest addressed free cell */
87 int _OK_Cell(_Cell *p);
  /external/opencv/cvaux/src/
cvdpstereo.cpp 196 _CvDPCell* _cell = cells + x*dispH; local
204 sum[0] = _cell[d-dispH].sum - param2;
207 if( _cell[d+1].step != ICV_DP_STEP_DIAG && e0 )
209 sum[1] = _cell[d+1].sum + param1;
211 if( _cell[d-1-dispH].step != ICV_DP_STEP_UP && (_edges[1-d] & 2) )
215 sum[2] = _cell[d-1-dispH].sum + param1;
222 _cell[d].step = (uchar)t;
223 _cell[d].sum = sum[t] + s;
227 _cell[d].step = ICV_DP_STEP_DIAG;
228 _cell[d].sum = sum[2] + s
    [all...]
  /external/srec/portable/src/
pmalloc.c 120 static _Cell *binsFirstFreeCell[NUM_MEM_BINS+1] = {0};
190 memset(binsFirstFreeCell, 0, sizeof(_Cell*)*(NUM_MEM_BINS + 1));
245 int _OK_Cell(_Cell *p)
272 _Cell *q;
295 static _Cell **findmem(psize_t size)
297 _Cell *q, **qb;
326 if ((q = (_Cell *)_Getmem(bs)) != 0)
342 _Cell *q, **qb;
411 *qb = (_Cell *)((char *)q + size);
441 register _Cell *q
    [all...]

Completed in 99 milliseconds