Searched defs:lls (Results 1 - 3 of 3) sorted by relevance

/external/toybox/lib/
H A Dlinestack.c7 void linestack_addstack(struct linestack **lls, struct linestack *throw, argument
10 struct linestack *catch = *lls;
19 *lls = xmalloc(sizeof(struct linestack)+catch->max*sizeof(struct ptr_len));
20 memcpy(*lls, catch, sizeof(struct linestack)+pos*sizeof(struct ptr_len));
25 memmove((*lls)->idx+pos+throw->len, catch->idx+pos,
29 if (catch != *lls) {
31 catch = *lls;
40 void linestack_insert(struct linestack **lls, long pos, char *line, long len) argument
53 linestack_addstack(lls, &ls.ls, pos);
56 void linestack_append(struct linestack **lls, cha argument
[all...]
/external/opencv/cv/src/
H A Dcvdistransform.cpp252 int* lls = (int*)(labels + i*lstep); local
262 //assert( lls[j] != 0 );
273 l0 = lls[j-lstep*2-1];
279 l0 = lls[j-lstep*2+1];
285 l0 = lls[j-lstep-2];
291 l0 = lls[j-lstep-1];
297 l0 = lls[j-lstep];
303 l0 = lls[j-lstep+1];
309 l0 = lls[j-lstep+2];
315 l0 = lls[
329 int* lls = (int*)(labels + i*lstep); local
[all...]
/external/zopfli/src/zopfli/
H A Ddeflate.c317 unsigned lls = ZopfliGetLengthSymbol(litlen); local
320 assert(ll_lengths[lls] > 0);
322 AddHuffmanBits(ll_symbols[lls], ll_lengths[lls], bp, out, outsize);

Completed in 116 milliseconds