Home
last modified time | relevance | path

Searched refs:extrasize (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/
Dgzip.py113 self.extrasize = 0
253 if self.extrasize <= 0 and self.fileobj is None:
263 size = self.extrasize
266 while size > self.extrasize:
270 if size > self.extrasize:
271 size = self.extrasize
275 self.extrasize = self.extrasize - size
281 self.extrasize = len(buf) + self.extrasize
338 self.extrasize = self.extrasize + len(data)
410 self.extrasize = 0
[all …]
/external/u-boot/cmd/
Dfdt.c677 uint extrasize; in do_fdt() local
679 extrasize = simple_strtoul(argv[2], NULL, 16); in do_fdt()
681 extrasize = 0; in do_fdt()
682 fdt_shrink_to_minimum(working_fdt, extrasize); in do_fdt()
/external/pcre/dist2/src/
Dpcre2_jit_compile.c8370 int extrasize; in compile_assert_matchingpath() local
8423 extrasize = 1; in compile_assert_matchingpath()
8425 extrasize = 0; in compile_assert_matchingpath()
8428 extrasize++; in compile_assert_matchingpath()
8433 if (extrasize > 0) in compile_assert_matchingpath()
8434 allocate_stack(common, extrasize); in compile_assert_matchingpath()
8439 if (extrasize > 0) in compile_assert_matchingpath()
8444 SLJIT_ASSERT(extrasize == 2); in compile_assert_matchingpath()
8451 extrasize = needs_control_head ? 3 : 2; in compile_assert_matchingpath()
8452 allocate_stack(common, framesize + extrasize); in compile_assert_matchingpath()
[all …]
/external/u-boot/include/
Dfdt_support.h203 int fdt_shrink_to_minimum(void *blob, uint extrasize);
/external/u-boot/common/
Dfdt_support.c600 int fdt_shrink_to_minimum(void *blob, uint extrasize) in fdt_shrink_to_minimum() argument
628 actualsize += extrasize; in fdt_shrink_to_minimum()