Lines Matching +full:no +full:- +full:big +full:- +full:frame +full:- +full:no
1 // SPDX-License-Identifier: GPL-2.0-only
21 * variables are valid yet, hence no kernel services such as memory
24 * in the .bss area. The linker script makes sure the .bss is big enough
25 * to hold our stack frame plus some room for called functions.
29 * stack then there is no need to clean up before returning.
39 /* Check and skip gzip header (assume no filename) */ in __inflate_kernel_data()
41 return -1; in __inflate_kernel_data()
44 strm->workspace = &state; in __inflate_kernel_data()
45 strm->next_in = in; in __inflate_kernel_data()
46 strm->avail_in = _edata_loc - __data_loc; /* upper bound */ in __inflate_kernel_data()
47 strm->next_out = _sdata; in __inflate_kernel_data()
48 strm->avail_out = _edata_loc - __data_loc; in __inflate_kernel_data()
49 zlib_inflateInit2(strm, -MAX_WBITS); in __inflate_kernel_data()
50 WS(strm)->inflate_state.wsize = 0; in __inflate_kernel_data()
51 WS(strm)->inflate_state.window = NULL; in __inflate_kernel_data()
54 rc = strm->avail_out; /* should be 0 */ in __inflate_kernel_data()