HomeSort by relevance Sort by last modified time
    Searched refs:inp_size (Results 1 - 5 of 5) sorted by null

  /system/extras/verity/fec/
image.cpp 57 munmap(ctx->input, (size_t)ctx->inp_size);
127 ctx->inp_size = size;
128 ctx->blocks = fec_div_round_up(ctx->inp_size, FEC_BLOCKSIZE);
145 if (ctx->inp_size > SIZE_MAX) {
146 FATAL("cannot mmap %" PRIu64 " bytes\n", ctx->inp_size);
151 ctx->inp_size);
160 void *p = mmap(NULL, (size_t)ctx->inp_size, flags, MAP_SHARED, fd, 0);
164 ctx->fec_filename, ctx->inp_size, strerror(errno));
174 INFO("allocating %" PRIu64 " bytes of memory\n", ctx->inp_size);
177 ctx->output = new uint8_t[ctx->inp_size];
    [all...]
image.h 58 uint64_t inp_size; member in struct:image
99 if (unlikely(offset >= ctx->inp_size)) {
111 if (unlikely(offset >= ctx->inp_size)) {
main.cpp 139 printf("%" PRIu64 "\n", fec_ecc_get_size(ctx.inp_size, ctx.roots));
331 ctx.inp_size = parse_arg(optarg, "print-fec-size", UINT64_MAX);
  /system/extras/libfec/
fec_open.cpp 150 offset - header.fec_size != header.inp_size) {
152 header.inp_size);
156 f->data_size = header.inp_size;
167 f->ecc.start = header.inp_size;
  /system/extras/libfec/include/fec/
io.h 50 uint64_t inp_size; member in struct:fec_header

Completed in 2888 milliseconds