OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lls
(Results
1 - 3
of
3
) sorted by null
/external/toybox/lib/
linestack.c
12
void linestack_addstack(struct linestack **
lls
, struct linestack *throw,
15
struct linestack *catch = *
lls
;
24
*
lls
= xmalloc(sizeof(struct linestack)+catch->max*sizeof(struct ptr_len));
25
memcpy(*
lls
, catch, sizeof(struct linestack)+pos*sizeof(struct ptr_len));
30
memmove((*
lls
)->idx+pos+throw->len, catch->idx+pos,
34
if (catch != *
lls
) {
36
catch = *
lls
;
45
void linestack_insert(struct linestack **
lls
, long pos, char *line, long len)
58
linestack_addstack(
lls
, &ls.ls, pos);
61
void linestack_append(struct linestack **
lls
, char *line
[
all
...]
lib.h
282
void linestack_addstack(struct linestack **
lls
, struct linestack *throw,
284
void linestack_insert(struct linestack **
lls
, long pos, char *line, long len);
285
void linestack_append(struct linestack **
lls
, char *line);
/external/zopfli/src/zopfli/
deflate.c
317
unsigned
lls
= ZopfliGetLengthSymbol(litlen);
local
320
assert(ll_lengths[
lls
] > 0);
322
AddHuffmanBits(ll_symbols[
lls
], ll_lengths[
lls
], bp, out, outsize);
Completed in 135 milliseconds