LLVMFuzzerTestOneInput:
   51|  6.74k|{
   52|       |  // The first 2 bytes are used to control decoder options:
   53|       |  //   byte 0 bit 1: force planar mode
   54|       |  //   byte 0 bit 2: force interleaved mode
   55|       |  //   byte 1: number of resolutions to skip (0-7)
   56|  6.74k|  if (Size < 3)
  ------------------
  |  Branch (56:7): [True: 2, False: 6.74k]
  ------------------
   57|      2|    return 0;
   58|       |
   59|  6.74k|  uint8_t opts = Data[0];
   60|  6.74k|  uint8_t skip_res = Data[1] & 0x07;
   61|  6.74k|  Data += 2;
   62|  6.74k|  Size -= 2;
   63|       |
   64|  6.74k|  bool force_planar = (opts & 0x02) != 0;
   65|  6.74k|  bool force_interleaved = (opts & 0x04) != 0;
   66|       |
   67|  6.74k|  try
   68|  6.74k|  {
   69|  6.74k|    ojph::mem_infile infile;
   70|  6.74k|    infile.open(reinterpret_cast<const ojph::ui8 *>(Data), Size);
   71|       |
   72|  6.74k|    ojph::codestream cs;
   73|       |
   74|       |    // Always enable resilience: all fuzzer inputs are untrusted/mutated,
   75|       |    // so the decoder must use its error-recovery path.
   76|  6.74k|    cs.enable_resilience();
   77|       |
   78|  6.74k|    cs.read_headers(&infile);
   79|       |
   80|       |    // Guard against inputs that cause excessive decoding work.
   81|  6.74k|    {
   82|  6.74k|      ojph::param_siz siz = cs.access_siz();
   83|  6.74k|      ojph::point extent = siz.get_image_extent();
   84|  6.74k|      ojph::point offset = siz.get_image_offset();
   85|  6.74k|      ojph::ui64 w = extent.x - offset.x;
   86|  6.74k|      ojph::ui64 h = extent.y - offset.y;
   87|  6.74k|      if (w * h * siz.get_num_components() > 65536)
  ------------------
  |  Branch (87:11): [True: 47, False: 6.69k]
  ------------------
   88|     47|      {
   89|     47|        cs.close();
   90|     47|        return 0;
   91|     47|      }
   92|       |
   93|  6.69k|      ojph::param_cod cod = cs.access_cod();
   94|  6.69k|      if (cod.get_num_decompositions() > 5)
  ------------------
  |  Branch (94:11): [True: 1, False: 6.69k]
  ------------------
   95|      1|      {
   96|      1|        cs.close();
   97|      1|        return 0;
   98|      1|      }
   99|       |
  100|       |      // Large precincts cause huge internal buffers and very expensive
  101|       |      // per-row wavelet transforms even for small images.
  102|  37.9k|      for (ojph::ui32 lev = 0; lev <= cod.get_num_decompositions(); ++lev)
  ------------------
  |  Branch (102:32): [True: 31.2k, False: 6.68k]
  ------------------
  103|  31.2k|      {
  104|  31.2k|        ojph::size psiz = cod.get_precinct_size(lev);
  105|  31.2k|        if (psiz.w > 256 || psiz.h > 256)
  ------------------
  |  Branch (105:13): [True: 7, False: 31.2k]
  |  Branch (105:29): [True: 1, False: 31.2k]
  ------------------
  106|      8|        {
  107|      8|          cs.close();
  108|      8|          return 0;
  109|      8|        }
  110|  31.2k|      }
  111|  6.69k|    }
  112|       |
  113|  6.68k|    if (skip_res > 0)
  ------------------
  |  Branch (113:9): [True: 1.49k, False: 5.19k]
  ------------------
  114|  1.49k|      cs.restrict_input_resolution(skip_res, skip_res);
  115|       |
  116|  6.68k|    if (force_planar)
  ------------------
  |  Branch (116:9): [True: 2.07k, False: 4.61k]
  ------------------
  117|  2.07k|      cs.set_planar(true);
  118|  4.61k|    else if (force_interleaved)
  ------------------
  |  Branch (118:14): [True: 917, False: 3.69k]
  ------------------
  119|    917|      cs.set_planar(false);
  120|       |
  121|  6.68k|    cs.create();
  122|       |
  123|  6.68k|    ojph::param_siz siz = cs.access_siz();
  124|       |
  125|       |    // Second guard: cap reconstructed dimensions after create().
  126|  6.68k|    {
  127|  6.68k|      ojph::ui64 total_recon = 0;
  128|  12.9k|      for (ojph::ui32 c = 0; c < siz.get_num_components(); ++c)
  ------------------
  |  Branch (128:30): [True: 6.24k, False: 6.68k]
  ------------------
  129|  6.24k|        total_recon += (ojph::ui64)siz.get_recon_width(c)
  130|  6.24k|                     * (ojph::ui64)siz.get_recon_height(c);
  131|  6.68k|      if (total_recon > 65536)
  ------------------
  |  Branch (131:11): [True: 0, False: 6.68k]
  ------------------
  132|      0|      {
  133|      0|        cs.close();
  134|      0|        return 0;
  135|      0|      }
  136|  6.68k|    }
  137|       |
  138|       |    // Time budget: abort if decoding takes too long.
  139|  6.68k|    struct timespec start_ts;
  140|  6.68k|    clock_gettime(CLOCK_MONOTONIC, &start_ts);
  141|  6.68k|    ojph::ui32 pull_count = 0;
  142|  6.68k|    const ojph::ui32 MAX_SECONDS = 10;
  143|  6.68k|    bool timed_out = false;
  144|       |
  145|  6.68k|    if (cs.is_planar())
  ------------------
  |  Branch (145:9): [True: 4.07k, False: 2.61k]
  ------------------
  146|  4.07k|    {
  147|  9.22k|      for (ojph::ui32 c = 0; c < siz.get_num_components() && !timed_out; ++c)
  ------------------
  |  Branch (147:30): [True: 5.14k, False: 4.07k]
  |  Branch (147:62): [True: 5.14k, False: 0]
  ------------------
  148|  5.14k|      {
  149|  5.14k|        ojph::ui32 height = siz.get_recon_height(c);
  150|  2.30M|        for (ojph::ui32 i = height; i > 0 && !timed_out; --i)
  ------------------
  |  Branch (150:37): [True: 2.30M, False: 5.14k]
  |  Branch (150:46): [True: 2.30M, False: 0]
  ------------------
  151|  2.30M|        {
  152|  2.30M|          ojph::ui32 comp_num;
  153|  2.30M|          cs.pull(comp_num);
  154|  2.30M|          if (++pull_count % 64 == 0)
  ------------------
  |  Branch (154:15): [True: 34.9k, False: 2.26M]
  ------------------
  155|  34.9k|          {
  156|  34.9k|            struct timespec now;
  157|  34.9k|            clock_gettime(CLOCK_MONOTONIC, &now);
  158|  34.9k|            if ((ojph::ui32)(now.tv_sec - start_ts.tv_sec) >= MAX_SECONDS)
  ------------------
  |  Branch (158:17): [True: 0, False: 34.9k]
  ------------------
  159|      0|              timed_out = true;
  160|  34.9k|          }
  161|  2.30M|        }
  162|  5.14k|      }
  163|  4.07k|    }
  164|  2.61k|    else
  165|  2.61k|    {
  166|  2.61k|      ojph::ui32 height = siz.get_recon_height(0);
  167|   906k|      for (ojph::ui32 i = 0; i < height && !timed_out; ++i)
  ------------------
  |  Branch (167:30): [True: 904k, False: 2.61k]
  |  Branch (167:44): [True: 904k, False: 0]
  ------------------
  168|   904k|      {
  169|  1.81M|        for (ojph::ui32 c = 0; c < siz.get_num_components(); ++c)
  ------------------
  |  Branch (169:32): [True: 908k, False: 904k]
  ------------------
  170|   908k|        {
  171|   908k|          ojph::ui32 comp_num;
  172|   908k|          cs.pull(comp_num);
  173|   908k|          if (++pull_count % 64 == 0)
  ------------------
  |  Branch (173:15): [True: 13.9k, False: 894k]
  ------------------
  174|  13.9k|          {
  175|  13.9k|            struct timespec now;
  176|  13.9k|            clock_gettime(CLOCK_MONOTONIC, &now);
  177|  13.9k|            if ((ojph::ui32)(now.tv_sec - start_ts.tv_sec) >= MAX_SECONDS)
  ------------------
  |  Branch (177:17): [True: 0, False: 13.9k]
  ------------------
  178|      0|              timed_out = true;
  179|  13.9k|          }
  180|   908k|        }
  181|   904k|      }
  182|  2.61k|    }
  183|       |
  184|  6.68k|    cs.close();
  185|  6.68k|  }
  186|  6.74k|  catch (const std::exception &)
  187|  6.74k|  {
  188|  1.71k|  }
  189|       |
  190|  6.68k|  return 0;
  191|  6.74k|}

ojph_precinct.cpp:_ZN4ojph5localL7bb_initEPNS0_12bit_read_bufEjPNS_11infile_baseE:
   69|   526k|    {
   70|   526k|      bbp->avail_bits = 0;
   71|   526k|      bbp->file = file;
   72|   526k|      bbp->bytes_left = bytes_left;
   73|   526k|      bbp->tmp = 0;
   74|   526k|      bbp->unstuff = false;
   75|   526k|    }
ojph_precinct.cpp:_ZN4ojph5localL11bb_skip_sopEPNS0_12bit_read_bufE:
  185|  82.3k|    {
  186|  82.3k|      if (bbp->bytes_left >= 2)
  ------------------
  |  Branch (186:11): [True: 82.0k, False: 342]
  ------------------
  187|  82.0k|      {
  188|  82.0k|        ui8 marker[2];
  189|  82.0k|        if (bbp->file->read(marker, 2) != 2)
  ------------------
  |  Branch (189:13): [True: 931, False: 81.1k]
  ------------------
  190|    931|          throw "error reading from file";
  191|  81.1k|        if ((int)marker[0] == (SOP >> 8) && (int)marker[1] == (SOP & 0xFF))
  ------------------
  |  Branch (191:13): [True: 7.06k, False: 74.0k]
  |  Branch (191:45): [True: 1.73k, False: 5.32k]
  ------------------
  192|  1.73k|        {
  193|  1.73k|          bbp->bytes_left -= 2;
  194|  1.73k|          if (bbp->bytes_left >= 4)
  ------------------
  |  Branch (194:15): [True: 1.52k, False: 214]
  ------------------
  195|  1.52k|          {
  196|  1.52k|            ui16 com_len;
  197|  1.52k|            if (bbp->file->read(&com_len, 2) != 2)
  ------------------
  |  Branch (197:17): [True: 216, False: 1.30k]
  ------------------
  198|    216|              throw "error reading from file";
  199|  1.30k|            com_len = swap_bytes_if_le(com_len);
  200|  1.30k|            if (com_len != 4)
  ------------------
  |  Branch (200:17): [True: 263, False: 1.04k]
  ------------------
  201|    263|              throw "something is wrong with SOP length";
  202|  1.04k|            int result = 
  203|  1.04k|              bbp->file->seek(com_len - 2, infile_base::OJPH_SEEK_CUR);
  204|  1.04k|            if (result != 0)
  ------------------
  |  Branch (204:17): [True: 267, False: 778]
  ------------------
  205|    267|              throw "error seeking file";
  206|    778|            bbp->bytes_left -= com_len;
  207|    778|          }
  208|    214|          else
  209|    214|            throw "precinct truncated early";
  210|    778|          return true;
  211|  1.73k|        }
  212|  79.3k|        else
  213|  79.3k|        {
  214|       |          //put the bytes back
  215|  79.3k|          if (bbp->file->seek(-2, infile_base::OJPH_SEEK_CUR) != 0)
  ------------------
  |  Branch (215:15): [True: 0, False: 79.3k]
  ------------------
  216|      0|            throw "error seeking file";
  217|  79.3k|          return false;
  218|  79.3k|        }
  219|  81.1k|      }
  220|       |
  221|    342|      return false;
  222|  82.3k|    }
ojph_precinct.cpp:_ZN4ojph5localL11bb_read_bitEPNS0_12bit_read_bufERj:
  104|  73.6M|    {
  105|  73.6M|      bool result = true;
  106|  73.6M|      if (bbp->avail_bits == 0)
  ------------------
  |  Branch (106:11): [True: 9.68M, False: 63.9M]
  ------------------
  107|  9.68M|        result = bb_read(bbp);
  108|  73.6M|      bit = (bbp->tmp >> --bbp->avail_bits) & 1;
  109|  73.6M|      return result;
  110|  73.6M|    }
ojph_precinct.cpp:_ZN4ojph5localL7bb_readEPNS0_12bit_read_bufE:
   80|  10.5M|    {
   81|  10.5M|      if (bbp->bytes_left > 0)
  ------------------
  |  Branch (81:11): [True: 10.5M, False: 3.68k]
  ------------------
   82|  10.5M|      {
   83|  10.5M|        ui8 t = 0;
   84|  10.5M|        if (bbp->file->read(&t, 1) != 1)
  ------------------
  |  Branch (84:13): [True: 16.2k, False: 10.4M]
  ------------------
   85|  16.2k|          throw "error reading from file";
   86|  10.4M|        bbp->tmp = t;
   87|  10.4M|        bbp->avail_bits = 8 - bbp->unstuff;
   88|  10.4M|        bbp->unstuff = (t == 0xFF);
   89|  10.4M|        --bbp->bytes_left;
   90|  10.4M|        return true;
   91|  10.5M|      }
   92|  3.68k|      else
   93|  3.68k|      {
   94|  3.68k|        bbp->tmp = 0;
   95|  3.68k|        bbp->avail_bits = 8 - bbp->unstuff;
   96|  3.68k|        bbp->unstuff = false;
   97|  3.68k|        return false;
   98|  3.68k|      }
   99|  10.5M|    }
ojph_precinct.cpp:_ZN4ojph5localL12bb_terminateEPNS0_12bit_read_bufEb:
  170|   488k|    {
  171|   488k|      bool result = true;
  172|   488k|      if (bbp->unstuff)
  ------------------
  |  Branch (172:11): [True: 3.73k, False: 484k]
  ------------------
  173|  3.73k|        result = bb_read(bbp);
  174|   488k|      assert(bbp->unstuff == false);
  175|   488k|      if (uses_eph)
  ------------------
  |  Branch (175:11): [True: 7.01k, False: 481k]
  ------------------
  176|  7.01k|        bb_skip_eph(bbp);
  177|   488k|      bbp->tmp = 0;
  178|   488k|      bbp->avail_bits = 0;
  179|   488k|      return result;
  180|   488k|    }
ojph_precinct.cpp:_ZN4ojph5localL11bb_skip_ephEPNS0_12bit_read_bufE:
  155|  7.01k|    {
  156|  7.01k|      if (bbp->bytes_left >= 2)
  ------------------
  |  Branch (156:11): [True: 6.44k, False: 567]
  ------------------
  157|  6.44k|      {
  158|  6.44k|        ui8 marker[2];
  159|  6.44k|        if (bbp->file->read(marker, 2) != 2)
  ------------------
  |  Branch (159:13): [True: 234, False: 6.21k]
  ------------------
  160|    234|          throw "error reading from file";
  161|  6.21k|        bbp->bytes_left -= 2;
  162|  6.21k|        if ((int)marker[0] != (EPH >> 8) || (int)marker[1] != (EPH & 0xFF))
  ------------------
  |  Branch (162:13): [True: 5.66k, False: 543]
  |  Branch (162:45): [True: 304, False: 239]
  ------------------
  163|  5.97k|          throw "should find EPH, but found something else";
  164|  6.21k|      }
  165|  7.01k|    }
ojph_precinct.cpp:_ZN4ojph5localL12bb_read_bitsEPNS0_12bit_read_bufEiRj:
  115|   366k|    {
  116|   366k|      assert(num_bits <= 32);
  117|       |
  118|   366k|      bits = 0;
  119|   366k|      bool result = true;
  120|  1.53M|      while (num_bits) {
  ------------------
  |  Branch (120:14): [True: 1.16M, False: 366k]
  ------------------
  121|  1.16M|        if (bbp->avail_bits == 0)
  ------------------
  |  Branch (121:13): [True: 832k, False: 335k]
  ------------------
  122|   832k|          result = bb_read(bbp);
  123|  1.16M|        int tx_bits = ojph_min(bbp->avail_bits, num_bits);
  ------------------
  |  |   76|  1.16M|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 800k, False: 366k]
  |  |  ------------------
  ------------------
  124|  1.16M|        bits <<= tx_bits;
  125|  1.16M|        bbp->avail_bits -= tx_bits;
  126|  1.16M|        num_bits -= tx_bits;
  127|  1.16M|        bits |= (bbp->tmp >> bbp->avail_bits) & ((1 << tx_bits) - 1);
  128|  1.16M|      }
  129|   366k|      return result;
  130|   366k|    }
ojph_precinct.cpp:_ZN4ojph5localL13bb_read_chunkEPNS0_12bit_read_bufEjRPNS_11coded_listsEPNS_21mem_elastic_allocatorE:
  137|  92.5k|    {
  138|  92.5k|      assert(bbp->avail_bits == 0 && bbp->unstuff == false);
  139|  92.5k|      elastic->get_buffer(num_bytes + coded_cb_header::prefix_buf_size
  140|  92.5k|        + coded_cb_header::suffix_buf_size, cur_coded_list);
  141|  92.5k|      ui32 bytes = ojph_min(num_bytes, bbp->bytes_left);
  ------------------
  |  |   76|  92.5k|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 91.6k, False: 857]
  |  |  ------------------
  ------------------
  142|  92.5k|      ui32 bytes_read = (ui32)bbp->file->read(
  143|  92.5k|        cur_coded_list->buf + coded_cb_header::prefix_buf_size, bytes);
  144|  92.5k|      if (num_bytes > bytes_read)
  ------------------
  |  Branch (144:11): [True: 9.84k, False: 82.6k]
  ------------------
  145|  9.84k|        memset(
  146|  9.84k|          cur_coded_list->buf + coded_cb_header::prefix_buf_size + bytes_read,
  147|  9.84k|          0, num_bytes - bytes_read);
  148|  92.5k|      bbp->bytes_left -= bytes_read;
  149|  92.5k|      return bytes_read == bytes;
  150|  92.5k|    }

_ZN4ojph5local9codeblock9pre_allocEPNS0_10codestreamERKNS_4sizeEj:
   58|  5.39M|    {
   59|  5.39M|      mem_fixed_allocator* allocator = codestream->get_allocator();
   60|       |
   61|  5.39M|      assert(byte_alignment / sizeof(ui32) > 1);
   62|  5.39M|      const ui32 f = byte_alignment / sizeof(ui32) - 1;
   63|  5.39M|      ui32 stride = (nominal.w + f) & ~f; // a multiple of 8
   64|       |
   65|  5.39M|      if (precision <= 32)
  ------------------
  |  Branch (65:11): [True: 3.25M, False: 2.13M]
  ------------------
   66|  3.25M|        allocator->pre_alloc_data<ui32>(nominal.h * (size_t)stride, 0);
   67|  2.13M|      else
   68|  2.13M|        allocator->pre_alloc_data<ui64>(nominal.h * (size_t)stride, 0);
   69|  5.39M|    }
_ZN4ojph5local9codeblock14finalize_allocEPNS0_10codestreamEPNS0_7subbandERKNS_4sizeES8_PNS0_15coded_cb_headerEjijj:
   78|  5.13M|    {
   79|  5.13M|      mem_fixed_allocator* allocator = codestream->get_allocator();
   80|       |
   81|  5.13M|      const ui32 f = byte_alignment / sizeof(ui32) - 1;
   82|  5.13M|      this->stride = (nominal.w + f) & ~f; // a multiple of 8
   83|  5.13M|      this->buf_size = this->stride * nominal.h;
   84|       |
   85|  5.13M|      if (precision <= 32) {
  ------------------
  |  Branch (85:11): [True: 3.09M, False: 2.03M]
  ------------------
   86|  3.09M|        this->precision = BUF32;
   87|  3.09M|        this->buf32 = allocator->post_alloc_data<ui32>(this->buf_size, 0);
   88|  3.09M|      }
   89|  2.03M|      else {
   90|  2.03M|        this->precision = BUF64;
   91|  2.03M|        this->buf64 = allocator->post_alloc_data<ui64>(this->buf_size, 0);
   92|  2.03M|      }
   93|       |
   94|  5.13M|      this->nominal_size = nominal;
   95|  5.13M|      this->cb_size = cb_size;
   96|  5.13M|      this->parent = parent;
   97|  5.13M|      this->line_offset = line_offset;
   98|  5.13M|      this->cur_line = 0;
   99|  5.13M|      this->delta = parent->get_delta();
  100|  5.13M|      this->delta_inv = 1.0f / this->delta;
  101|  5.13M|      this->K_max = K_max;
  102|  25.6M|      for (int i = 0; i < 4; ++i)
  ------------------
  |  Branch (102:23): [True: 20.5M, False: 5.13M]
  ------------------
  103|  20.5M|        this->max_val64[i] = 0;
  104|  5.13M|      const param_cod* coc = codestream->get_coc(comp_idx);
  105|  5.13M|      this->reversible = coc->is_reversible();
  106|  5.13M|      this->resilient = codestream->is_resilient();
  107|  5.13M|      this->stripe_causal = coc->get_block_vertical_causality();
  108|  5.13M|      this->zero_block = false;
  109|  5.13M|      this->coded_cb = coded_cb;
  110|       |
  111|  5.13M|      this->codeblock_functions.init(reversible);
  112|  5.13M|    }
_ZN4ojph5local9codeblock8recreateERKNS_4sizeEPNS0_15coded_cb_headerE:
  179|  12.6M|    {
  180|  12.6M|      assert(cb_size.h * stride <= buf_size && cb_size.w <= stride);
  181|  12.6M|      this->cb_size = cb_size;
  182|  12.6M|      this->coded_cb = coded_cb;
  183|  12.6M|      this->cur_line = 0;
  184|  63.2M|      for (int i = 0; i < 4; ++i)
  ------------------
  |  Branch (184:23): [True: 50.6M, False: 12.6M]
  ------------------
  185|  50.6M|        this->max_val64[i] = 0;
  186|  12.6M|      this->zero_block = false;
  187|  12.6M|    }
_ZN4ojph5local9codeblock6decodeEv:
  191|  12.6M|    {
  192|  12.6M|      if (coded_cb->pass_length[0] > 0 && coded_cb->num_passes > 0 &&
  ------------------
  |  Branch (192:11): [True: 91.4k, False: 12.5M]
  |  Branch (192:43): [True: 91.4k, False: 0]
  ------------------
  193|  91.4k|          coded_cb->next_coded != NULL)
  ------------------
  |  Branch (193:11): [True: 83.5k, False: 7.95k]
  ------------------
  194|  83.5k|      {
  195|  83.5k|        bool result;
  196|  83.5k|        if (precision == BUF32)
  ------------------
  |  Branch (196:13): [True: 53.3k, False: 30.1k]
  ------------------
  197|  53.3k|        {
  198|  53.3k|          result = this->codeblock_functions.decode_cb32(
  199|  53.3k|            coded_cb->next_coded->buf + coded_cb_header::prefix_buf_size,
  200|  53.3k|            buf32, coded_cb->missing_msbs, coded_cb->num_passes,
  201|  53.3k|            coded_cb->pass_length[0], coded_cb->pass_length[1],
  202|  53.3k|            cb_size.w, cb_size.h, stride, stripe_causal);
  203|  53.3k|        }
  204|  30.1k|        else
  205|  30.1k|        {
  206|  30.1k|          assert(precision == BUF64);
  207|  30.1k|          result = this->codeblock_functions.decode_cb64(
  208|  30.1k|            coded_cb->next_coded->buf + coded_cb_header::prefix_buf_size,
  209|  30.1k|            buf64, coded_cb->missing_msbs, coded_cb->num_passes,
  210|  30.1k|            coded_cb->pass_length[0], coded_cb->pass_length[1],
  211|  30.1k|            cb_size.w, cb_size.h, stride, stripe_causal);
  212|  30.1k|        }
  213|       |
  214|  83.5k|        if (result == false)
  ------------------
  |  Branch (214:13): [True: 48.1k, False: 35.3k]
  ------------------
  215|  48.1k|        {
  216|  48.1k|          if (resilient == true) {
  ------------------
  |  Branch (216:15): [True: 48.1k, False: 0]
  ------------------
  217|  48.1k|            OJPH_INFO(0x000300A1, "Error decoding a codeblock.");
  ------------------
  |  |  285|  48.1k|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|  48.1k|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 48.1k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  218|  48.1k|            zero_block = true;
  219|  48.1k|          }
  220|      0|          else
  221|      0|            OJPH_ERROR(0x000300A1, "Error decoding a codeblock.");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  222|  48.1k|        }
  223|  83.5k|      }
  224|  12.5M|      else
  225|  12.5M|        zero_block = true;
  226|  12.6M|    }
_ZN4ojph5local9codeblock9pull_lineEPNS_8line_bufE:
  231|  38.8M|    {
  232|       |      //convert to sign and magnitude
  233|  38.8M|      if (precision == BUF32)
  ------------------
  |  Branch (233:11): [True: 24.1M, False: 14.6M]
  ------------------
  234|  24.1M|      {
  235|  24.1M|        assert(line->flags & line_buf::LFT_32BIT);
  236|  24.1M|        void *dp = (line->flags & line_buf::LFT_INTEGER)
  ------------------
  |  Branch (236:20): [True: 20.5M, False: 3.53M]
  ------------------
  237|  24.1M|          ? (void*)(line->i32 + line_offset)
  238|  24.1M|          : (void*)(line->f32 + line_offset);
  239|  24.1M|        if (!zero_block)
  ------------------
  |  Branch (239:13): [True: 305k, False: 23.8M]
  ------------------
  240|   305k|        {
  241|   305k|          const ui32 *sp = buf32 + cur_line * stride;
  242|   305k|          this->codeblock_functions.tx_from_cb32(sp, dp, K_max, delta,
  243|   305k|                                                 cb_size.w);
  244|   305k|        }
  245|  23.8M|        else
  246|  23.8M|          this->codeblock_functions.mem_clear(dp, cb_size.w * sizeof(ui32));
  247|  24.1M|      }
  248|  14.6M|      else
  249|  14.6M|      {
  250|  14.6M|        assert(precision == BUF64);
  251|  14.6M|        assert((reversible && (line->flags & line_buf::LFT_64BIT))
  252|  14.6M|               || (!reversible && (line->flags & line_buf::LFT_32BIT)));
  253|  14.6M|        si64 *dp = line->i64 + line_offset;
  254|  14.6M|        if (!zero_block)
  ------------------
  |  Branch (254:13): [True: 232k, False: 14.4M]
  ------------------
  255|   232k|        {
  256|   232k|          const ui64 *sp = buf64 + cur_line * stride;
  257|   232k|          this->codeblock_functions.tx_from_cb64(sp, dp, K_max, delta,
  258|   232k|                                                 cb_size.w);
  259|   232k|        }
  260|  14.4M|        else
  261|  14.4M|          this->codeblock_functions.mem_clear(dp, cb_size.w * sizeof(*dp));
  262|  14.6M|      }
  263|       |
  264|  38.8M|      ++cur_line;
  265|       |      assert(cur_line <= cb_size.h);
  266|  38.8M|    }

_ZN4ojph5local13codeblock_fun4initEb:
  147|  5.13M|    void codeblock_fun::init(bool reversible) {
  148|       |
  149|  5.13M|#if !defined(OJPH_ENABLE_WASM_SIMD) || !defined(OJPH_EMSCRIPTEN)
  150|       |
  151|       |      // Default path, no acceleration.  We may change this later
  152|  5.13M|      decode_cb32 = ojph_decode_codeblock32;
  153|  5.13M|      find_max_val32 = gen_find_max_val32;
  154|  5.13M|      mem_clear = gen_mem_clear;
  155|  5.13M|      if (reversible) {
  ------------------
  |  Branch (155:11): [True: 3.61M, False: 1.52M]
  ------------------
  156|  3.61M|        tx_to_cb32 = gen_rev_tx_to_cb32;
  157|  3.61M|        tx_from_cb32 = gen_rev_tx_from_cb32;
  158|  3.61M|      }
  159|  1.52M|      else
  160|  1.52M|      {
  161|  1.52M|        tx_to_cb32 = gen_irv_tx_to_cb32;
  162|  1.52M|        tx_from_cb32 = gen_irv_tx_from_cb32;
  163|  1.52M|      }
  164|  5.13M|      encode_cb32 = ojph_encode_codeblock32;
  165|       |
  166|  5.13M|      decode_cb64 = ojph_decode_codeblock64;
  167|  5.13M|      find_max_val64 = gen_find_max_val64;
  168|  5.13M|      if (reversible) {
  ------------------
  |  Branch (168:11): [True: 3.61M, False: 1.52M]
  ------------------
  169|  3.61M|        tx_to_cb64 = gen_rev_tx_to_cb64;
  170|  3.61M|        tx_from_cb64 = gen_rev_tx_from_cb64;
  171|  3.61M|      }
  172|  1.52M|      else
  173|  1.52M|      {
  174|  1.52M|        tx_to_cb64 = NULL;
  175|  1.52M|        tx_from_cb64 = gen_irv_tx_from_cb64;
  176|  1.52M|      }
  177|  5.13M|      encode_cb64 = ojph_encode_codeblock64;
  178|  5.13M|      bool result = initialize_block_encoder_tables();
  179|  5.13M|      assert(result); ojph_unused(result);
  ------------------
  |  |   78|  5.13M|#define ojph_unused(x) (void)(x)
  ------------------
  180|       |
  181|  5.13M|  #ifndef OJPH_DISABLE_SIMD
  182|       |
  183|  5.13M|    #if (defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  184|       |
  185|       |      // Accelerated functions for INTEL/AMD CPUs
  186|  5.13M|      #ifndef OJPH_DISABLE_SSE
  187|  5.13M|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_SSE)
  ------------------
  |  Branch (187:13): [True: 5.13M, False: 0]
  ------------------
  188|  5.13M|          mem_clear = sse_mem_clear;
  189|  5.13M|      #endif // !OJPH_DISABLE_SSE
  190|       |
  191|  5.13M|      #ifndef OJPH_DISABLE_SSE2
  192|  5.13M|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_SSE2) {
  ------------------
  |  Branch (192:13): [True: 5.13M, False: 0]
  ------------------
  193|  5.13M|          find_max_val32 = sse2_find_max_val32;
  194|  5.13M|          if (reversible) {
  ------------------
  |  Branch (194:15): [True: 3.61M, False: 1.52M]
  ------------------
  195|  3.61M|            tx_to_cb32 = sse2_rev_tx_to_cb32;
  196|  3.61M|            tx_from_cb32 = sse2_rev_tx_from_cb32;
  197|  3.61M|          }
  198|  1.52M|          else {
  199|  1.52M|            tx_to_cb32 = sse2_irv_tx_to_cb32;
  200|  1.52M|            tx_from_cb32 = sse2_irv_tx_from_cb32;
  201|  1.52M|          }
  202|  5.13M|          find_max_val64 = sse2_find_max_val64;
  203|  5.13M|          if (reversible) {
  ------------------
  |  Branch (203:15): [True: 3.61M, False: 1.52M]
  ------------------
  204|  3.61M|            tx_to_cb64 = sse2_rev_tx_to_cb64;
  205|  3.61M|            tx_from_cb64 = sse2_rev_tx_from_cb64;
  206|  3.61M|          }
  207|  1.52M|          else
  208|  1.52M|          {
  209|  1.52M|            tx_to_cb64 = NULL;
  210|  1.52M|            tx_from_cb64 = gen_irv_tx_from_cb64;
  211|  1.52M|          }
  212|  5.13M|        }
  213|  5.13M|      #endif // !OJPH_DISABLE_SSE2
  214|       |
  215|  5.13M|      #ifndef OJPH_DISABLE_SSSE3
  216|  5.13M|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_SSSE3)
  ------------------
  |  Branch (216:13): [True: 5.13M, False: 0]
  ------------------
  217|  5.13M|          decode_cb32 = ojph_decode_codeblock_ssse3;
  218|  5.13M|      #endif // !OJPH_DISABLE_SSSE3
  219|       |
  220|  5.13M|      #ifndef OJPH_DISABLE_AVX
  221|  5.13M|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX)
  ------------------
  |  Branch (221:13): [True: 5.13M, False: 0]
  ------------------
  222|  5.13M|          mem_clear = avx_mem_clear;
  223|  5.13M|      #endif // !OJPH_DISABLE_AVX
  224|       |
  225|  5.13M|      #ifndef OJPH_DISABLE_AVX2
  226|  5.13M|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX2) {
  ------------------
  |  Branch (226:13): [True: 5.13M, False: 0]
  ------------------
  227|  5.13M|          decode_cb32 = ojph_decode_codeblock_avx2;
  228|  5.13M|          find_max_val32 = avx2_find_max_val32;
  229|  5.13M|          if (reversible) {
  ------------------
  |  Branch (229:15): [True: 3.61M, False: 1.52M]
  ------------------
  230|  3.61M|            tx_to_cb32 = avx2_rev_tx_to_cb32;
  231|  3.61M|            tx_from_cb32 = avx2_rev_tx_from_cb32;
  232|  3.61M|          }
  233|  1.52M|          else {
  234|  1.52M|            tx_to_cb32 = avx2_irv_tx_to_cb32;
  235|  1.52M|            tx_from_cb32 = avx2_irv_tx_from_cb32;
  236|  1.52M|          }
  237|  5.13M|          encode_cb32 = ojph_encode_codeblock_avx2;
  238|  5.13M|          bool result = initialize_block_encoder_tables_avx2();
  239|  5.13M|          assert(result); ojph_unused(result);
  ------------------
  |  |   78|  5.13M|#define ojph_unused(x) (void)(x)
  ------------------
  240|       |
  241|  5.13M|          find_max_val64 = avx2_find_max_val64;
  242|  5.13M|          if (reversible) {
  ------------------
  |  Branch (242:15): [True: 3.61M, False: 1.52M]
  ------------------
  243|  3.61M|            tx_to_cb64 = avx2_rev_tx_to_cb64;
  244|  3.61M|            tx_from_cb64 = avx2_rev_tx_from_cb64;
  245|  3.61M|          }
  246|  1.52M|          else
  247|  1.52M|          {
  248|  1.52M|            tx_to_cb64 = NULL;
  249|  1.52M|            tx_from_cb64 = gen_irv_tx_from_cb64;
  250|  1.52M|          }
  251|  5.13M|        }
  252|  5.13M|      #endif // !OJPH_DISABLE_AVX2
  253|       |
  254|  5.13M|      #if (defined(OJPH_ARCH_X86_64) && !defined(OJPH_DISABLE_AVX512))
  255|  5.13M|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX512) {
  ------------------
  |  Branch (255:13): [True: 0, False: 5.13M]
  ------------------
  256|      0|          encode_cb32 = ojph_encode_codeblock_avx512;
  257|      0|          bool result = initialize_block_encoder_tables_avx512();
  258|      0|          assert(result); ojph_unused(result);
  ------------------
  |  |   78|      0|#define ojph_unused(x) (void)(x)
  ------------------
  259|      0|        }
  260|  5.13M|      #endif // !OJPH_DISABLE_AVX512
  261|       |
  262|       |    #elif defined(OJPH_ARCH_ARM)
  263|       |
  264|       |    #elif defined(OJPH_ARCH_PPC64LE)
  265|       |
  266|       |      // 128-bit VSX kernels; see ojph_simd_vsx.h.
  267|       |      // The SIMD block decoder is used everywhere on POWER10 (ISA 3.1),
  268|       |      // where it beats the scalar decoder on all measured content.  On
  269|       |      // POWER9 it wins for irreversible content (more magnitude bits
  270|       |      // per sample) but trails the scalar decoder slightly on
  271|       |      // reversible content, so it is dispatched only for the former.
  272|       |      if (get_cpu_ext_level() >= PPC_CPU_EXT_LEVEL_ARCH_3_1 ||
  273|       |          (!reversible &&
  274|       |           get_cpu_ext_level() >= PPC_CPU_EXT_LEVEL_ARCH_3_00))
  275|       |        decode_cb32 = ojph_decode_codeblock_vsx;
  276|       |      if (get_cpu_ext_level() >= PPC_CPU_EXT_LEVEL_ARCH_3_00) {
  277|       |        find_max_val32 = vsx_find_max_val32;
  278|       |        mem_clear = vsx_mem_clear;
  279|       |        if (reversible) {
  280|       |          tx_to_cb32 = vsx_rev_tx_to_cb32;
  281|       |          tx_from_cb32 = vsx_rev_tx_from_cb32;
  282|       |        }
  283|       |        else {
  284|       |          tx_to_cb32 = vsx_irv_tx_to_cb32;
  285|       |          tx_from_cb32 = vsx_irv_tx_from_cb32;
  286|       |        }
  287|       |        find_max_val64 = vsx_find_max_val64;
  288|       |        if (reversible) {
  289|       |          tx_to_cb64 = vsx_rev_tx_to_cb64;
  290|       |          tx_from_cb64 = vsx_rev_tx_from_cb64;
  291|       |        }
  292|       |        else {
  293|       |          tx_to_cb64 = NULL;
  294|       |          tx_from_cb64 = gen_irv_tx_from_cb64;
  295|       |        }
  296|       |      }
  297|       |
  298|       |    #endif // !(defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  299|       |
  300|  5.13M|  #endif // !OJPH_DISABLE_SIMD
  301|       |
  302|       |#else // OJPH_ENABLE_WASM_SIMD
  303|       |
  304|       |      // Accelerated functions for WASM SIMD.
  305|       |      decode_cb32 = ojph_decode_codeblock_wasm;
  306|       |      find_max_val32 = wasm_find_max_val32;
  307|       |      mem_clear = wasm_mem_clear;
  308|       |      if (reversible) {
  309|       |        tx_to_cb32 = wasm_rev_tx_to_cb32;
  310|       |        tx_from_cb32 = wasm_rev_tx_from_cb32;
  311|       |      }
  312|       |      else {
  313|       |        tx_to_cb32 = wasm_irv_tx_to_cb32;
  314|       |        tx_from_cb32 = wasm_irv_tx_from_cb32;
  315|       |      }
  316|       |      encode_cb32 = ojph_encode_codeblock32;
  317|       |
  318|       |      decode_cb64 = ojph_decode_codeblock64;
  319|       |      find_max_val64 = wasm_find_max_val64;
  320|       |      if (reversible) {
  321|       |        tx_to_cb64 = wasm_rev_tx_to_cb64;
  322|       |        tx_from_cb64 = wasm_rev_tx_from_cb64;
  323|       |      }
  324|       |      else
  325|       |      {
  326|       |        tx_to_cb64 = NULL;
  327|       |        tx_from_cb64 = gen_irv_tx_from_cb64;
  328|       |      }
  329|       |      encode_cb64 = ojph_encode_codeblock64;
  330|       |      bool result = initialize_block_encoder_tables();
  331|       |      assert(result); ojph_unused(result);
  332|       |
  333|       |#endif // !OJPH_ENABLE_WASM_SIMD
  334|       |
  335|  5.13M|    }

_ZN4ojph10codestreamD2Ev:
   59|  6.74k|  {
   60|  6.74k|    if (state)
  ------------------
  |  Branch (60:9): [True: 6.74k, False: 0]
  ------------------
   61|  6.74k|      delete state;
   62|       |    state = NULL;
   63|  6.74k|  }
_ZN4ojph10codestreamC2Ev:
   67|  6.74k|  {
   68|  6.74k|    state = new local::codestream;
   69|  6.74k|  }
_ZN4ojph10codestream10access_sizEv:
   80|  10.3k|  {
   81|  10.3k|    return param_siz(&state->siz);
   82|  10.3k|  }
_ZN4ojph10codestream10access_codEv:
   86|  5.28k|  {
   87|  5.28k|    return param_cod(&state->cod);
   88|  5.28k|  }
_ZN4ojph10codestream10set_planarEb:
  104|  2.99k|  {
  105|  2.99k|    state->set_planar(planar ? 1 : 0);
  ------------------
  |  Branch (105:23): [True: 2.07k, False: 917]
  ------------------
  106|  2.99k|  }
_ZNK4ojph10codestream9is_planarEv:
  154|  4.97k|  {
  155|  4.97k|    return state->is_planar();
  156|  4.97k|  }
_ZN4ojph10codestream17enable_resilienceEv:
  168|  6.74k|  {
  169|  6.74k|    state->enable_resilience();
  170|  6.74k|  }
_ZN4ojph10codestream12read_headersEPNS_11infile_baseE:
  174|  6.74k|  {
  175|  6.74k|    state->read_headers(file);
  176|  6.74k|  }
_ZN4ojph10codestream25restrict_input_resolutionEjj:
  181|  1.49k|  {
  182|  1.49k|    state->restrict_input_resolution(skipped_res_for_read,
  183|  1.49k|      skipped_res_for_recon);
  184|  1.49k|  }
_ZN4ojph10codestream6createEv:
  188|  5.27k|  {
  189|  5.27k|    state->read();
  190|  5.27k|  }
_ZN4ojph10codestream4pullERj:
  194|  3.21M|  {
  195|  3.21M|    return state->pull(comp_num);
  196|  3.21M|  }
_ZN4ojph10codestream5closeEv:
  207|  5.03k|  {
  208|  5.03k|    state->close();
  209|  5.03k|  }

_ZN4ojph5local13avx_mem_clearEPvm:
   48|  38.2M|    {
   49|  38.2M|      __m256i zero = _mm256_setzero_si256();
   50|  84.5M|      for (size_t i = 0; i < count; i += 32, addr = (char*)addr + 32)
  ------------------
  |  Branch (50:26): [True: 46.2M, False: 38.2M]
  ------------------
   51|  46.2M|        _mm256_storeu_si256((__m256i*)addr, zero);
   52|  38.2M|    }

_ZN4ojph5local21avx2_rev_tx_from_cb32EPKjPvjfj:
  169|   298k|    {
  170|   298k|      ojph_unused(delta);
  ------------------
  |  |   78|   298k|#define ojph_unused(x) (void)(x)
  ------------------
  171|   298k|      ui32 shift = 31 - K_max;
  172|   298k|      __m256i m1 = _mm256_set1_epi32(INT_MAX);
  173|   298k|      si32 *p = (si32*)dp;
  174|   667k|      for (ui32 i = 0; i < count; i += 8, sp += 8, p += 8)
  ------------------
  |  Branch (174:24): [True: 368k, False: 298k]
  ------------------
  175|   368k|      {
  176|   368k|        __m256i v = _mm256_load_si256((__m256i*)sp);
  177|   368k|        __m256i val = _mm256_and_si256(v, m1);
  178|   368k|        val = _mm256_srli_epi32(val, (int)shift);
  179|   368k|        val = _mm256_sign_epi32(val, v);
  180|   368k|        _mm256_storeu_si256((__m256i*)p, val);
  181|   368k|      }
  182|   298k|    }
_ZN4ojph5local21avx2_irv_tx_from_cb32EPKjPvjfj:
  187|  6.63k|    {
  188|  6.63k|      ojph_unused(K_max);
  ------------------
  |  |   78|  6.63k|#define ojph_unused(x) (void)(x)
  ------------------
  189|  6.63k|      __m256i m1 = _mm256_set1_epi32(INT_MAX);
  190|  6.63k|      __m256 d = _mm256_set1_ps(delta);
  191|  6.63k|      float *p = (float*)dp;
  192|  18.4k|      for (ui32 i = 0; i < count; i += 8, sp += 8, p += 8)
  ------------------
  |  Branch (192:24): [True: 11.8k, False: 6.63k]
  ------------------
  193|  11.8k|      {
  194|  11.8k|        __m256i v = _mm256_load_si256((__m256i*)sp);
  195|  11.8k|        __m256i vali = _mm256_and_si256(v, m1);
  196|  11.8k|        __m256  valf = _mm256_cvtepi32_ps(vali);
  197|  11.8k|        valf = _mm256_mul_ps(valf, d);
  198|  11.8k|        __m256i sign = _mm256_andnot_si256(m1, v);
  199|  11.8k|        valf = _mm256_or_ps(valf, _mm256_castsi256_ps(sign));
  200|  11.8k|        _mm256_storeu_ps(p, valf);
  201|  11.8k|      }
  202|  6.63k|    }
_ZN4ojph5local21avx2_rev_tx_from_cb64EPKmPvjfj:
  255|   224k|    {
  256|   224k|      ojph_unused(delta);
  ------------------
  |  |   78|   224k|#define ojph_unused(x) (void)(x)
  ------------------
  257|       |      
  258|   224k|      ui32 shift = 63 - K_max;
  259|   224k|      __m256i m1 = _mm256_set1_epi64x(LLONG_MAX);
  260|   224k|      __m256i zero = _mm256_setzero_si256();
  261|   224k|      __m256i one = _mm256_set1_epi64x(1);
  262|   224k|      si64 *p = (si64*)dp;
  263|   619k|      for (ui32 i = 0; i < count; i += 4, sp += 4, p += 4)
  ------------------
  |  Branch (263:24): [True: 395k, False: 224k]
  ------------------
  264|   395k|      {
  265|   395k|        __m256i v = _mm256_load_si256((__m256i*)sp);
  266|   395k|        __m256i val = _mm256_and_si256(v, m1);
  267|   395k|        val = _mm256_srli_epi64(val, (int)shift);
  268|   395k|        __m256i sign = _mm256_cmpgt_epi64(zero, v);
  269|   395k|        val = _mm256_xor_si256(val, sign); // negate 1's complement
  270|   395k|        __m256i ones = _mm256_and_si256(sign, one);
  271|   395k|        val = _mm256_add_epi64(val, ones); // 2's complement
  272|   395k|        _mm256_storeu_si256((__m256i*)p, val);
  273|   395k|      }
  274|   224k|    }

_ZN4ojph5local20gen_irv_tx_from_cb64EPKmPvjfj:
  173|  7.74k|    {
  174|  7.74k|      ojph_unused(K_max);
  ------------------
  |  |   78|  7.74k|#define ojph_unused(x) (void)(x)
  ------------------
  175|       |      //convert to sign and magnitude
  176|  7.74k|      float *p = (float*)dp;
  177|  83.4k|      for (ui32 i = count; i > 0; --i)
  ------------------
  |  Branch (177:28): [True: 75.6k, False: 7.74k]
  ------------------
  178|  75.6k|      {
  179|  75.6k|        ui64 v = *sp++;
  180|  75.6k|        float val = (float)(v & LLONG_MAX) * delta;
  181|  75.6k|        *p++ = (v & (ui64)LLONG_MIN) ? -val : val;
  ------------------
  |  Branch (181:16): [True: 14.0k, False: 61.6k]
  ------------------
  182|  75.6k|      }
  183|  7.74k|    }

_ZN4ojph5local10codestreamC2Ev:
   57|  6.74k|    : precinct_scratch(NULL), allocator(NULL), elastic_alloc(NULL)
   58|  6.74k|    {
   59|  6.74k|      allocator = new mem_fixed_allocator;
   60|  6.74k|      elastic_alloc = new mem_elastic_allocator(1048576); // 1 megabyte
   61|       |
   62|  6.74k|      init_colour_transform_functions();
   63|  6.74k|      init_wavelet_transform_functions();
   64|       |
   65|  6.74k|      restart();
   66|  6.74k|    }
_ZN4ojph5local10codestreamD2Ev:
   70|  6.74k|    {
   71|  6.74k|      if (allocator)
  ------------------
  |  Branch (71:11): [True: 6.74k, False: 0]
  ------------------
   72|  6.74k|        delete allocator;
   73|  6.74k|      if (elastic_alloc)
  ------------------
  |  Branch (73:11): [True: 6.74k, False: 0]
  ------------------
   74|  6.74k|        delete elastic_alloc;
   75|  6.74k|    }
_ZN4ojph5local10codestream7restartEv:
   79|  6.74k|    {
   80|  6.74k|      tiles = NULL;
   81|  6.74k|      lines = NULL;
   82|  6.74k|      comp_size = NULL;
   83|  6.74k|      recon_comp_size = NULL;
   84|  6.74k|      outfile = NULL;
   85|  6.74k|      infile = NULL;
   86|       |
   87|  6.74k|      num_comps = 0;
   88|  6.74k|      employ_color_transform = false;
   89|  6.74k|      planar = -1;
   90|  6.74k|      profile = OJPH_PN_UNDEFINED;
   91|  6.74k|      tilepart_div = OJPH_TILEPART_NO_DIVISIONS;
   92|  6.74k|      need_tlm = false;
   93|       |
   94|  6.74k|      cur_comp = 0;
   95|  6.74k|      cur_line = 0;
   96|  6.74k|      cur_tile_row = 0;
   97|  6.74k|      resilient = false;
   98|  6.74k|      skipped_res_for_read = skipped_res_for_recon = 0;
   99|       |
  100|  6.74k|      precinct_scratch_needed_bytes = 0;
  101|       |
  102|  6.74k|      cod.restart();
  103|  6.74k|      qcd.restart();
  104|  6.74k|      nlt.restart();
  105|  6.74k|      dfs.restart();
  106|  6.74k|      atk.restart();
  107|       |
  108|  6.74k|      allocator->restart();
  109|  6.74k|      elastic_alloc->restart();
  110|  6.74k|    }
_ZN4ojph5local10codestream9pre_allocEv:
  114|  5.27k|    {
  115|  5.27k|      ojph::param_siz sz = access_siz();
  116|  5.27k|      num_tiles.w = sz.get_image_extent().x - sz.get_tile_offset().x;
  117|  5.27k|      num_tiles.w = ojph_div_ceil(num_tiles.w, sz.get_tile_size().w);
  ------------------
  |  |   70|  5.27k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  118|  5.27k|      num_tiles.h = sz.get_image_extent().y - sz.get_tile_offset().y;
  119|  5.27k|      num_tiles.h = ojph_div_ceil(num_tiles.h, sz.get_tile_size().h);
  ------------------
  |  |   70|  5.27k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  120|  5.27k|      if (num_tiles.area() > 65535)
  ------------------
  |  Branch (120:11): [True: 1, False: 5.26k]
  ------------------
  121|      1|        OJPH_ERROR(0x00030011, "the number of tiles cannot exceed 65535");
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  122|  5.27k|      if (num_tiles.area() == 0)
  ------------------
  |  Branch (122:11): [True: 3, False: 5.26k]
  ------------------
  123|      3|        OJPH_ERROR(0x00030012, "the number of tiles cannot be 0");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  124|       |
  125|       |      //allocate tiles
  126|  5.27k|      allocator->pre_alloc_obj<tile>((size_t)num_tiles.area());
  127|       |
  128|  5.27k|      ui32 num_tileparts = 0;
  129|  5.27k|      point index;
  130|  5.27k|      rect tile_rect, recon_tile_rect;
  131|  5.27k|      ui32 ds = 1 << skipped_res_for_recon;
  132|   119k|      for (index.y = 0; index.y < num_tiles.h; ++index.y)
  ------------------
  |  Branch (132:25): [True: 114k, False: 5.27k]
  ------------------
  133|   114k|      {
  134|   114k|        ui32 y0 = sz.get_tile_offset().y
  135|   114k|                + index.y * sz.get_tile_size().h;
  136|   114k|        ui32 y1 = y0 + sz.get_tile_size().h; //end of tile
  137|       |
  138|   114k|        tile_rect.org.y = ojph_max(y0, sz.get_image_offset().y);
  ------------------
  |  |   73|   114k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 109k, False: 5.26k]
  |  |  ------------------
  ------------------
  139|   114k|        tile_rect.siz.h =
  140|   114k|          ojph_min(y1, sz.get_image_extent().y) - tile_rect.org.y;
  ------------------
  |  |   76|   114k|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 109k, False: 5.23k]
  |  |  ------------------
  ------------------
  141|       |
  142|   114k|        recon_tile_rect.org.y = ojph_max(ojph_div_ceil(y0, ds),
  ------------------
  |  |   73|   114k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 109k, False: 5.35k]
  |  |  ------------------
  ------------------
  143|   114k|          ojph_div_ceil(sz.get_image_offset().y, ds));
  144|   114k|        recon_tile_rect.siz.h = ojph_min(ojph_div_ceil(y1, ds),
  ------------------
  |  |   76|   114k|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 109k, False: 5.41k]
  |  |  ------------------
  ------------------
  145|   114k|          ojph_div_ceil(sz.get_image_extent().y, ds))
  146|   114k|          - recon_tile_rect.org.y;
  147|       |
  148|   364k|        for (index.x = 0; index.x < num_tiles.w; ++index.x)
  ------------------
  |  Branch (148:27): [True: 249k, False: 114k]
  ------------------
  149|   249k|        {
  150|   249k|          ui32 x0 = sz.get_tile_offset().x
  151|   249k|                  + index.x * sz.get_tile_size().w;
  152|   249k|          ui32 x1 = x0 + sz.get_tile_size().w;
  153|       |
  154|   249k|          tile_rect.org.x = ojph_max(x0, sz.get_image_offset().x);
  ------------------
  |  |   73|   249k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 135k, False: 114k]
  |  |  ------------------
  ------------------
  155|   249k|          tile_rect.siz.w =
  156|   249k|            ojph_min(x1, sz.get_image_extent().x) - tile_rect.org.x;
  ------------------
  |  |   76|   249k|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 135k, False: 114k]
  |  |  ------------------
  ------------------
  157|       |
  158|   249k|          recon_tile_rect.org.x = ojph_max(ojph_div_ceil(x0, ds),
  ------------------
  |  |   73|   249k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 135k, False: 114k]
  |  |  ------------------
  ------------------
  159|   249k|            ojph_div_ceil(sz.get_image_offset().x, ds));
  160|   249k|          recon_tile_rect.siz.w = ojph_min(ojph_div_ceil(x1, ds),
  ------------------
  |  |   76|   249k|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 135k, False: 114k]
  |  |  ------------------
  ------------------
  161|   249k|            ojph_div_ceil(sz.get_image_extent().x, ds))
  162|   249k|            - recon_tile_rect.org.x;
  163|       |
  164|   249k|          ui32 tps = 0; // number of tileparts for this tile
  165|   249k|          tile::pre_alloc(this, tile_rect, recon_tile_rect, tps);
  166|   249k|          num_tileparts += tps;
  167|   249k|        }
  168|   114k|      }
  169|       |
  170|       |      //allocate lines
  171|       |      //These lines are used by codestream to exchange data with external
  172|       |      // world
  173|  5.27k|      ui32 num_comps = sz.get_num_components();
  174|  5.27k|      allocator->pre_alloc_obj<line_buf>(num_comps);
  175|  5.27k|      allocator->pre_alloc_obj<size>(num_comps); //for *comp_size
  176|  5.27k|      allocator->pre_alloc_obj<size>(num_comps); //for *recon_comp_size
  177|  11.6k|      for (ui32 i = 0; i < num_comps; ++i)
  ------------------
  |  Branch (177:24): [True: 6.36k, False: 5.27k]
  ------------------
  178|  6.36k|        allocator->pre_alloc_data<si32>(siz.get_recon_width(i), 0);
  179|       |
  180|       |      //allocate tlm
  181|  5.27k|      if (outfile != NULL && need_tlm)
  ------------------
  |  Branch (181:11): [True: 0, False: 5.27k]
  |  Branch (181:30): [True: 0, False: 0]
  ------------------
  182|      0|        allocator->pre_alloc_obj<param_tlm::Ttlm_Ptlm_pair>(num_tileparts);
  183|       |
  184|       |      //precinct scratch buffer
  185|       |      // The precinct scratch is shared by all components, but each component
  186|       |      // may override the codeblock/precinct geometry via a COC marker.  The
  187|       |      // per-component tag-tree storage (resolution.cpp) is derived from that
  188|       |      // component's effective params, so size the shared buffer from the
  189|       |      // largest ratio across every component (the main COD and all COC
  190|       |      // overrides).  Sizing from the COD alone under-reserves the buffer for
  191|       |      // any component whose COC declares a smaller codeblock than the COD.
  192|  5.27k|      size ratio;
  193|  11.6k|      for (ui32 c = 0; c < num_comps; ++c)
  ------------------
  |  Branch (193:24): [True: 6.36k, False: 5.27k]
  ------------------
  194|  6.36k|      {
  195|  6.36k|        const param_cod* cdp = cod.get_coc(c);
  196|  6.36k|        ui32 num_decomps = cdp->get_num_decompositions();
  197|  6.36k|        size log_cb = cdp->get_log_block_dims();
  198|  44.2k|        for (ui32 r = 0; r <= num_decomps; ++r)
  ------------------
  |  Branch (198:26): [True: 37.8k, False: 6.36k]
  ------------------
  199|  37.8k|        {
  200|  37.8k|          size log_PP = cdp->get_log_precinct_size(r);
  201|  37.8k|          ratio.w = ojph_max(ratio.w, log_PP.w - ojph_min(log_cb.w, log_PP.w));
  ------------------
  |  |   73|  75.7k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 9.09k, False: 28.7k]
  |  |  |  Branch (73:33): [True: 8.73k, False: 29.1k]
  |  |  |  Branch (73:46): [True: 7.69k, False: 21.0k]
  |  |  ------------------
  ------------------
  202|  37.8k|          ratio.h = ojph_max(ratio.h, log_PP.h - ojph_min(log_cb.h, log_PP.h));
  ------------------
  |  |   73|  75.7k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 6.43k, False: 31.4k]
  |  |  |  Branch (73:33): [True: 7.20k, False: 30.6k]
  |  |  |  Branch (73:46): [True: 6.47k, False: 24.9k]
  |  |  ------------------
  ------------------
  203|  37.8k|        }
  204|  6.36k|      }
  205|  5.27k|      ui32 max_ratio = ojph_max(ratio.w, ratio.h);
  ------------------
  |  |   73|  5.27k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 1.68k, False: 3.58k]
  |  |  ------------------
  ------------------
  206|  5.27k|      max_ratio = 1 << max_ratio;
  207|       |      // assuming that we have a hierarchy of n levels.
  208|       |      // This needs 4/3 times the area, rounded up
  209|       |      // (rounding up leaves one extra entry).
  210|       |      // This exta entry is necessary
  211|       |      // We need 4 such tables. These tables store
  212|       |      // 1. missing msbs and 2. their flags,
  213|       |      // 3. number of layers and 4. their flags
  214|  5.27k|      precinct_scratch_needed_bytes =
  215|  5.27k|        4 * ((max_ratio * max_ratio * 4 + 2) / 3);
  216|       |
  217|  5.27k|      allocator->pre_alloc_obj<ui8>(precinct_scratch_needed_bytes);
  218|  5.27k|    }
_ZN4ojph5local10codestream14finalize_allocEv:
  222|  5.04k|    {
  223|  5.04k|      allocator->alloc();
  224|       |
  225|       |      //precinct scratch buffer
  226|  5.04k|      precinct_scratch =
  227|  5.04k|        allocator->post_alloc_obj<ui8>(precinct_scratch_needed_bytes);
  228|       |
  229|       |      //get tiles
  230|  5.04k|      tiles = this->allocator->post_alloc_obj<tile>((size_t)num_tiles.area());
  231|       |
  232|  5.04k|      ui32 num_tileparts = 0;
  233|  5.04k|      point index;
  234|  5.04k|      rect tile_rect;
  235|  5.04k|      ojph::param_siz sz = access_siz();
  236|   118k|      for (index.y = 0; index.y < num_tiles.h; ++index.y)
  ------------------
  |  Branch (236:25): [True: 113k, False: 5.04k]
  ------------------
  237|   113k|      {
  238|   113k|        ui32 y0 = sz.get_tile_offset().y
  239|   113k|                + index.y * sz.get_tile_size().h;
  240|   113k|        ui32 y1 = y0 + sz.get_tile_size().h; //end of tile
  241|       |
  242|   113k|        tile_rect.org.y = ojph_max(y0, sz.get_image_offset().y);
  ------------------
  |  |   73|   113k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 108k, False: 5.04k]
  |  |  ------------------
  ------------------
  243|   113k|        tile_rect.siz.h =
  244|   113k|          ojph_min(y1, sz.get_image_extent().y) - tile_rect.org.y;
  ------------------
  |  |   76|   113k|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 108k, False: 5.03k]
  |  |  ------------------
  ------------------
  245|       |
  246|   113k|        ui32 offset = 0;
  247|   362k|        for (index.x = 0; index.x < num_tiles.w; ++index.x)
  ------------------
  |  Branch (247:27): [True: 248k, False: 113k]
  ------------------
  248|   248k|        {
  249|   248k|          ui32 x0 = sz.get_tile_offset().x
  250|   248k|                  + index.x * sz.get_tile_size().w;
  251|   248k|          ui32 x1 = x0 + sz.get_tile_size().w;
  252|       |
  253|   248k|          tile_rect.org.x = ojph_max(x0, sz.get_image_offset().x);
  ------------------
  |  |   73|   248k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 134k, False: 113k]
  |  |  ------------------
  ------------------
  254|   248k|          tile_rect.siz.w =
  255|   248k|            ojph_min(x1, sz.get_image_extent().x) - tile_rect.org.x;
  ------------------
  |  |   76|   248k|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 134k, False: 113k]
  |  |  ------------------
  ------------------
  256|       |
  257|   248k|          ui32 tps = 0; // number of tileparts for this tile
  258|   248k|          ui32 idx = index.y * num_tiles.w + index.x;
  259|   248k|          tiles[idx].finalize_alloc(this, tile_rect, idx, offset, tps);
  260|   248k|          num_tileparts += tps;
  261|   248k|        }
  262|   113k|      }
  263|       |
  264|       |      //allocate lines
  265|       |      //These lines are used by codestream to exchange data with external
  266|       |      // world
  267|  5.04k|      this->num_comps = sz.get_num_components();
  268|  5.04k|      lines = allocator->post_alloc_obj<line_buf>(this->num_comps);
  269|  5.04k|      comp_size = allocator->post_alloc_obj<size>(this->num_comps);
  270|  5.04k|      recon_comp_size = allocator->post_alloc_obj<size>(this->num_comps);
  271|  5.04k|      employ_color_transform = cod.is_employing_color_transform();
  272|  11.2k|      for (ui32 i = 0; i < this->num_comps; ++i)
  ------------------
  |  Branch (272:24): [True: 6.24k, False: 5.04k]
  ------------------
  273|  6.24k|      {
  274|  6.24k|        comp_size[i].w = siz.get_width(i);
  275|  6.24k|        comp_size[i].h = siz.get_height(i);
  276|  6.24k|        ui32 cw = siz.get_recon_width(i);
  277|  6.24k|        recon_comp_size[i].w = cw;
  278|  6.24k|        recon_comp_size[i].h = siz.get_recon_height(i);
  279|  6.24k|        lines[i].wrap(allocator->post_alloc_data<si32>(cw, 0), cw, 0);
  280|  6.24k|      }
  281|       |
  282|  5.04k|      cur_comp = 0;
  283|  5.04k|      cur_line = 0;
  284|       |
  285|       |      //allocate tlm
  286|  5.04k|      if (outfile != NULL && need_tlm)
  ------------------
  |  Branch (286:11): [True: 0, False: 5.04k]
  |  Branch (286:30): [True: 0, False: 0]
  ------------------
  287|      0|        tlm.init(num_tileparts,
  288|      0|          allocator->post_alloc_obj<param_tlm::Ttlm_Ptlm_pair>(num_tileparts));
  289|  5.04k|    }
_ZN4ojph5local10codestream12read_headersEPNS_11infile_baseE:
  770|  6.74k|    {
  771|  6.74k|      ui16 marker_list[20] = { SOC, SIZ, CAP, PRF, CPF, COD, COC, QCD, QCC,
  772|  6.74k|        RGN, POC, PPM, TLM, PLM, CRG, COM, DFS, ATK, NLT, SOT };
  773|  6.74k|      find_marker(file, marker_list, 1); //find SOC
  774|  6.74k|      find_marker(file, marker_list + 1, 1); //find SIZ
  775|  6.74k|      siz.read(file);
  776|  6.74k|      int marker_idx = 0;
  777|  6.74k|      int received_markers = 0; //check that COD, & QCD received
  778|   727k|      while (true)
  ------------------
  |  Branch (778:14): [True: 726k, Folded]
  ------------------
  779|   726k|      {
  780|   726k|        marker_idx = find_marker(file, marker_list + 2, 18);
  781|   726k|        if (marker_idx == 0)
  ------------------
  |  Branch (781:13): [True: 449, False: 725k]
  ------------------
  782|    449|          cap.read(file);
  783|   725k|        else if (marker_idx == 1)
  ------------------
  |  Branch (783:18): [True: 238, False: 725k]
  ------------------
  784|       |          //Skipping PRF marker segment; this should not cause any issues
  785|    238|          skip_marker(file, "PRF", NULL, OJPH_MSG_NO_MSG, false);
  786|   725k|        else if (marker_idx == 2)
  ------------------
  |  Branch (786:18): [True: 219, False: 725k]
  ------------------
  787|       |          //Skipping CPF marker segment; this should not cause any issues
  788|    219|          skip_marker(file, "CPF", NULL, OJPH_MSG_NO_MSG, false);
  789|   725k|        else if (marker_idx == 3)
  ------------------
  |  Branch (789:18): [True: 6.61k, False: 718k]
  ------------------
  790|  6.61k|        {
  791|  6.61k|          cod.read(file);
  792|  6.61k|          received_markers |= 1;
  793|  6.61k|          ojph::param_cod c(&cod);
  794|  6.61k|          int num_qlayers = c.get_num_layers();
  795|  6.61k|          if (num_qlayers != 1)
  ------------------
  |  Branch (795:15): [True: 6, False: 6.60k]
  ------------------
  796|      6|            OJPH_ERROR(0x00030053, "The current implementation supports "
  ------------------
  |  |  289|      6|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      6|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  797|  6.61k|              "1 quality layer only.  This codestream has %d quality layers",
  798|  6.61k|              num_qlayers);
  799|  6.61k|        }
  800|   718k|        else if (marker_idx == 4)
  ------------------
  |  Branch (800:18): [True: 820, False: 717k]
  ------------------
  801|    820|        {
  802|    820|          param_cod* p = cod.add_coc_object(param_cod::OJPH_COD_UNKNOWN);
  803|    820|          p->read_coc(file, siz.get_num_components(), &cod);
  804|    820|          if (p->get_comp_idx() >= siz.get_num_components())
  ------------------
  |  Branch (804:15): [True: 137, False: 683]
  ------------------
  805|    137|            OJPH_INFO(0x00030056, "The codestream carries a COC marker "
  ------------------
  |  |  285|    137|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|    137|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 137, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  806|    820|              "segment for a component indexed by %d, which is more than the "
  807|    820|              "allowed index number, since the codestream has %d components",
  808|    820|              p->get_comp_idx(), num_comps);
  809|    820|          param_cod *q = cod.get_coc(p->get_comp_idx());
  810|    820|          if (p != q && p->get_comp_idx() == q->get_comp_idx())
  ------------------
  |  Branch (810:15): [True: 7, False: 813]
  |  Branch (810:25): [True: 7, False: 0]
  ------------------
  811|      7|            OJPH_ERROR(0x00030057, "The codestream has two COC marker "
  ------------------
  |  |  289|      7|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      7|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 7, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  812|    820|              "segments for one component of index %d",  p->get_comp_idx());
  813|    820|        }
  814|   717k|        else if (marker_idx == 5)
  ------------------
  |  Branch (814:18): [True: 6.50k, False: 711k]
  ------------------
  815|  6.50k|        {
  816|  6.50k|          qcd.read(file);
  817|  6.50k|          received_markers |= 2;
  818|  6.50k|        }
  819|   711k|        else if (marker_idx == 6)
  ------------------
  |  Branch (819:18): [True: 269, False: 710k]
  ------------------
  820|    269|        {
  821|    269|          param_qcd* p = qcd.add_qcc_object(param_qcd::OJPH_QCD_UNKNOWN);
  822|    269|          p->read_qcc(file, siz.get_num_components());
  823|    269|          if (p->get_comp_idx() >= siz.get_num_components())
  ------------------
  |  Branch (823:15): [True: 5, False: 264]
  ------------------
  824|      5|            OJPH_ERROR(0x00030054, "The codestream carries a QCC marker "
  ------------------
  |  |  289|      5|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      5|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 5, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  825|    269|              "segment for a component indexed by %d, which is more than the "
  826|    269|              "allowed index number, since the codestream has %d components",
  827|    269|              p->get_comp_idx(), num_comps);
  828|    269|          param_qcd *q = qcd.get_qcc(p->get_comp_idx());
  829|    269|          if (p != q && p->get_comp_idx() == q->get_comp_idx())
  ------------------
  |  Branch (829:15): [True: 9, False: 260]
  |  Branch (829:25): [True: 9, False: 0]
  ------------------
  830|      9|            OJPH_ERROR(0x00030055, "The codestream has two QCC marker "
  ------------------
  |  |  289|      9|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      9|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 9, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  831|    269|              "segments for one component of index %d", p->get_comp_idx());
  832|    269|        }
  833|   710k|        else if (marker_idx == 7)
  ------------------
  |  Branch (833:18): [True: 468, False: 710k]
  ------------------
  834|    468|          skip_marker(file, "RGN", "RGN is not supported yet",
  835|    468|            OJPH_MSG_WARN, false);
  836|   710k|        else if (marker_idx == 8)
  ------------------
  |  Branch (836:18): [True: 602, False: 709k]
  ------------------
  837|    602|          skip_marker(file, "POC", "POC is not supported yet",
  838|    602|            OJPH_MSG_WARN, false);
  839|   709k|        else if (marker_idx == 9)
  ------------------
  |  Branch (839:18): [True: 618, False: 709k]
  ------------------
  840|    618|          skip_marker(file, "PPM", "PPM is not supported yet",
  841|    618|            OJPH_MSG_WARN, false);
  842|   709k|        else if (marker_idx == 10)
  ------------------
  |  Branch (842:18): [True: 224, False: 709k]
  ------------------
  843|       |          //Skipping TLM marker segment; this should not cause any issues
  844|    224|          skip_marker(file, "TLM", NULL, OJPH_MSG_NO_MSG, false);
  845|   709k|        else if (marker_idx == 11)
  ------------------
  |  Branch (845:18): [True: 219, False: 708k]
  ------------------
  846|       |          //Skipping PLM marker segment; this should not cause any issues
  847|    219|          skip_marker(file, "PLM", NULL, OJPH_MSG_NO_MSG, false);
  848|   708k|        else if (marker_idx == 12)
  ------------------
  |  Branch (848:18): [True: 264, False: 708k]
  ------------------
  849|       |          //Skipping CRG marker segment;
  850|    264|          skip_marker(file, "CRG", "CRG has been ignored; CRG is related to"
  851|    264|            " where the Cb and Cr colour components are co-sited or located"
  852|    264|            " with respect to the Y' luma component. Perhaps, it is better"
  853|    264|            " to get the individual components and assemble the samples"
  854|    264|            " according to your needs",
  855|    264|            OJPH_MSG_INFO, false);
  856|   708k|        else if (marker_idx == 13)
  ------------------
  |  Branch (856:18): [True: 273, False: 708k]
  ------------------
  857|    273|          skip_marker(file, "COM", NULL, OJPH_MSG_NO_MSG, false);
  858|   708k|        else if (marker_idx == 14)
  ------------------
  |  Branch (858:18): [True: 701k, False: 7.03k]
  ------------------
  859|   701k|          dfs.read(file);
  860|  7.03k|        else if (marker_idx == 15)
  ------------------
  |  Branch (860:18): [True: 409, False: 6.62k]
  ------------------
  861|    409|          atk.read(file);
  862|  6.62k|        else if (marker_idx == 16)
  ------------------
  |  Branch (862:18): [True: 1.00k, False: 5.61k]
  ------------------
  863|  1.00k|          nlt.read(file);
  864|  5.61k|        else if (marker_idx == 17)
  ------------------
  |  Branch (864:18): [True: 5.36k, False: 256]
  ------------------
  865|  5.36k|          break;
  866|    256|        else
  867|   720k|          OJPH_ERROR(0x00030051, "File ended before finding a tile segment");
  ------------------
  |  |  289|    256|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|    256|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 256, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  868|   720k|      }
  869|       |
  870|  6.74k|      cod.update_atk(&atk);
  871|  6.74k|      siz.link(&cod);
  872|  6.74k|      if (dfs.exists())
  ------------------
  |  Branch (872:11): [True: 271, False: 6.47k]
  ------------------
  873|    271|        siz.link(&dfs);
  874|       |
  875|  6.74k|      if (received_markers != 3)
  ------------------
  |  Branch (875:11): [True: 23, False: 6.72k]
  ------------------
  876|     23|        OJPH_ERROR(0x00030052, "markers error, COD and QCD are required");
  ------------------
  |  |  289|     23|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     23|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 23, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  877|       |
  878|  6.74k|      this->infile = file;
  879|  6.74k|      planar = cod.is_employing_color_transform() ? 0 : 1;
  ------------------
  |  Branch (879:16): [True: 350, False: 6.39k]
  ------------------
  880|  6.74k|    }
_ZN4ojph5local10codestream25restrict_input_resolutionEjj:
  885|  1.49k|    {
  886|  1.49k|      if (skipped_res_for_read < skipped_res_for_recon)
  ------------------
  |  Branch (886:11): [True: 0, False: 1.49k]
  ------------------
  887|      0|        OJPH_ERROR(0x000300A1,
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  888|  1.49k|          "skipped_resolution for data %d must be equal or smaller than "
  889|  1.49k|          " skipped_resolution for reconstruction %d\n",
  890|  1.49k|          skipped_res_for_read, skipped_res_for_recon);
  891|  1.49k|      if (skipped_res_for_read > cod.get_num_decompositions())
  ------------------
  |  Branch (891:11): [True: 1, False: 1.48k]
  ------------------
  892|      1|        OJPH_ERROR(0x000300A2,
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  893|  1.49k|          "skipped_resolution for data %d must be smaller than "
  894|  1.49k|          " the number of decomposition levels %d\n",
  895|  1.49k|          skipped_res_for_read, cod.get_num_decompositions());
  896|       |
  897|  1.49k|      this->skipped_res_for_read = skipped_res_for_read;
  898|  1.49k|      this->skipped_res_for_recon = skipped_res_for_recon;
  899|  1.49k|      siz.set_skipped_resolutions(skipped_res_for_recon);
  900|  1.49k|    }
_ZN4ojph5local10codestream17enable_resilienceEv:
  904|  6.74k|    {
  905|  6.74k|      if (infile != NULL)
  ------------------
  |  Branch (905:11): [True: 0, False: 6.74k]
  ------------------
  906|      0|        OJPH_ERROR(0x000300A3, "Codestream resilience must be enabled before"
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  907|  6.74k|          " reading file headers.\n");
  908|  6.74k|      this->resilient = true;
  909|  6.74k|    }
_ZN4ojph5local10codestream4readEv:
  913|  5.27k|    {
  914|  5.27k|      this->pre_alloc();
  915|  5.27k|      this->finalize_alloc();
  916|       |
  917|   206k|      while (true)
  ------------------
  |  Branch (917:14): [True: 206k, Folded]
  ------------------
  918|   206k|      {
  919|   206k|        param_sot sot;
  920|   206k|        if (sot.read(infile, resilient))
  ------------------
  |  Branch (920:13): [True: 190k, False: 15.5k]
  ------------------
  921|   190k|        {
  922|   190k|          ui64 tile_start_location = (ui64)infile->tell();
  923|   190k|          bool skip_tile = false;
  924|       |
  925|   190k|          if (sot.get_tile_index() >= (int)num_tiles.area())
  ------------------
  |  Branch (925:15): [True: 5.77k, False: 185k]
  ------------------
  926|  5.77k|          {
  927|  5.77k|            if (resilient) {
  ------------------
  |  Branch (927:17): [True: 5.77k, False: 0]
  ------------------
  928|  5.77k|              OJPH_INFO(0x00030061, "wrong tile index")
  ------------------
  |  |  285|  5.77k|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|  5.77k|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 5.77k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  929|  5.77k|              skip_tile = true; // skip the faulty tile
  930|  5.77k|            }
  931|      0|            else
  932|      0|              OJPH_ERROR(0x00030061, "wrong tile index")
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  933|  5.77k|          }
  934|       |
  935|   190k|          if (!skip_tile)
  ------------------
  |  Branch (935:15): [True: 185k, False: 5.77k]
  ------------------
  936|   185k|          {
  937|   185k|            if (sot.get_tile_part_index())
  ------------------
  |  Branch (937:17): [True: 123k, False: 61.7k]
  ------------------
  938|   123k|            { //tile part
  939|   123k|              if (sot.get_num_tile_parts() &&
  ------------------
  |  Branch (939:19): [True: 120k, False: 3.27k]
  ------------------
  940|   120k|                sot.get_tile_part_index() >= sot.get_num_tile_parts())
  ------------------
  |  Branch (940:17): [True: 6.00k, False: 114k]
  ------------------
  941|  6.00k|              {
  942|  6.00k|                if (resilient)
  ------------------
  |  Branch (942:21): [True: 6.00k, False: 0]
  ------------------
  943|  6.00k|                  OJPH_INFO(0x00030062,
  ------------------
  |  |  285|  6.00k|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|  6.00k|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 6.00k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  944|  6.00k|                    "error in tile part number, should be smaller than total"
  945|  6.00k|                    " number of tile parts")
  946|      0|                else
  947|      0|                  OJPH_ERROR(0x00030062,
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  948|  6.00k|                    "error in tile part number, should be smaller than total"
  949|  6.00k|                    " number of tile parts")
  950|  6.00k|              }
  951|       |
  952|   123k|              bool sod_found = false;
  953|   123k|              ui16 other_tile_part_markers[7] = { SOT, POC, PPT, PLT, COM,
  954|   123k|                NLT, SOD };
  955|   141k|              while (true)
  ------------------
  |  Branch (955:22): [True: 141k, Folded]
  ------------------
  956|   141k|              {
  957|   141k|                int marker_idx = 0;
  958|   141k|                int result = 0;
  959|   141k|                marker_idx = find_marker(infile, other_tile_part_markers+1, 6);
  960|   141k|                if (marker_idx == 0)
  ------------------
  |  Branch (960:21): [True: 674, False: 140k]
  ------------------
  961|    674|                  result = skip_marker(infile, "POC",
  962|    674|                    "POC marker segment in a tile is not supported yet",
  963|    674|                    OJPH_MSG_WARN, resilient);
  964|   140k|                else if (marker_idx == 1)
  ------------------
  |  Branch (964:26): [True: 549, False: 139k]
  ------------------
  965|    549|                  result = skip_marker(infile, "PPT",
  966|    549|                    "PPT marker segment in a tile is not supported yet",
  967|    549|                    OJPH_MSG_WARN, resilient);
  968|   139k|                else if (marker_idx == 2)
  ------------------
  |  Branch (968:26): [True: 8.28k, False: 131k]
  ------------------
  969|       |                  //Skipping PLT marker segment;this should not cause any issues
  970|  8.28k|                  result = skip_marker(infile, "PLT", NULL,
  971|  8.28k|                    OJPH_MSG_NO_MSG, resilient);
  972|   131k|                else if (marker_idx == 3)
  ------------------
  |  Branch (972:26): [True: 1.16k, False: 130k]
  ------------------
  973|  1.16k|                  result = skip_marker(infile, "COM", NULL,
  974|  1.16k|                    OJPH_MSG_NO_MSG, resilient);
  975|   130k|                else if (marker_idx == 4)
  ------------------
  |  Branch (975:26): [True: 6.95k, False: 123k]
  ------------------
  976|  6.95k|                  result = skip_marker(infile, "NLT",
  977|  6.95k|                    "NLT marker in tile is not supported yet",
  978|  6.95k|                    OJPH_MSG_WARN, resilient);
  979|   123k|                else if (marker_idx == 5)
  ------------------
  |  Branch (979:26): [True: 123k, False: 314]
  ------------------
  980|   123k|                {
  981|   123k|                  sod_found = true;
  982|   123k|                  break;
  983|   123k|                }
  984|       |
  985|  17.9k|                if (marker_idx == -1) //marker not found
  ------------------
  |  Branch (985:21): [True: 314, False: 17.6k]
  ------------------
  986|    314|                {
  987|    314|                  if (resilient)
  ------------------
  |  Branch (987:23): [True: 314, False: 0]
  ------------------
  988|    314|                    OJPH_INFO(0x00030063,
  ------------------
  |  |  285|    314|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|    314|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 314, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  989|    314|                      "File terminated early before start of data is found"
  990|    314|                      " for tile indexed %d and tile part %d",
  991|    314|                      sot.get_tile_index(), sot.get_tile_part_index())
  992|      0|                  else
  993|      0|                    OJPH_ERROR(0x00030063,
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  994|    314|                      "File terminated early before start of data is found"
  995|    314|                      " for tile indexed %d and tile part %d",
  996|    314|                      sot.get_tile_index(), sot.get_tile_part_index())
  997|    314|                  break;
  998|    314|                }
  999|  17.6k|                if (result == -1) //file terminated during marker seg. skipping
  ------------------
  |  Branch (999:21): [True: 13, False: 17.6k]
  ------------------
 1000|     13|                {
 1001|     13|                  if (resilient)
  ------------------
  |  Branch (1001:23): [True: 13, False: 0]
  ------------------
 1002|     13|                    OJPH_INFO(0x00030064,
  ------------------
  |  |  285|     13|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     13|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 13, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1003|     13|                      "File terminated during marker segment skipping")
 1004|      0|                  else
 1005|      0|                    OJPH_ERROR(0x00030064,
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1006|     13|                      "File terminated during marker segment skipping")
 1007|     13|                  break;
 1008|     13|                }
 1009|  17.6k|              }
 1010|   123k|              if (sod_found)
  ------------------
  |  Branch (1010:19): [True: 123k, False: 327]
  ------------------
 1011|   123k|                tiles[sot.get_tile_index()].parse_tile_header(sot, infile,
 1012|   123k|                  tile_start_location);
 1013|   123k|            }
 1014|  61.7k|            else
 1015|  61.7k|            { //first tile part
 1016|  61.7k|              bool sod_found = false;
 1017|  61.7k|              ui16 first_tile_part_markers[12] = { SOT, COD, COC, QCD, QCC, RGN,
 1018|  61.7k|                POC, PPT, PLT, COM, NLT, SOD };
 1019|   141k|              while (true)
  ------------------
  |  Branch (1019:22): [True: 141k, Folded]
  ------------------
 1020|   141k|              {
 1021|   141k|                int marker_idx = 0;
 1022|   141k|                int result = 0;
 1023|   141k|                marker_idx = find_marker(infile, first_tile_part_markers+1, 11);
 1024|   141k|                if (marker_idx == 0)
  ------------------
  |  Branch (1024:21): [True: 30.3k, False: 110k]
  ------------------
 1025|  30.3k|                  result = skip_marker(infile, "COD",
 1026|  30.3k|                    "COD marker segment in a tile is not supported yet",
 1027|  30.3k|                    OJPH_MSG_WARN, resilient);
 1028|   110k|                else if (marker_idx == 1)
  ------------------
  |  Branch (1028:26): [True: 1.39k, False: 109k]
  ------------------
 1029|  1.39k|                  result = skip_marker(infile, "COC",
 1030|  1.39k|                    "COC marker segment in a tile is not supported yet",
 1031|  1.39k|                    OJPH_MSG_WARN, resilient);
 1032|   109k|                else if (marker_idx == 2)
  ------------------
  |  Branch (1032:26): [True: 39.3k, False: 69.9k]
  ------------------
 1033|  39.3k|                  result = skip_marker(infile, "QCD",
 1034|  39.3k|                    "QCD marker segment in a tile is not supported yet",
 1035|  39.3k|                    OJPH_MSG_WARN, resilient);
 1036|  69.9k|                else if (marker_idx == 3)
  ------------------
  |  Branch (1036:26): [True: 888, False: 69.0k]
  ------------------
 1037|    888|                  result = skip_marker(infile, "QCC",
 1038|    888|                    "QCC marker segment in a tile is not supported yet",
 1039|    888|                    OJPH_MSG_WARN, resilient);
 1040|  69.0k|                else if (marker_idx == 4)
  ------------------
  |  Branch (1040:26): [True: 393, False: 68.6k]
  ------------------
 1041|    393|                  result = skip_marker(infile, "RGN",
 1042|    393|                    "RGN marker segment in a tile is not supported yet",
 1043|    393|                    OJPH_MSG_WARN, resilient);
 1044|  68.6k|                else if (marker_idx == 5)
  ------------------
  |  Branch (1044:26): [True: 1.15k, False: 67.5k]
  ------------------
 1045|  1.15k|                  result = skip_marker(infile, "POC",
 1046|  1.15k|                    "POC marker segment in a tile is not supported yet",
 1047|  1.15k|                    OJPH_MSG_WARN, resilient);
 1048|  67.5k|                else if (marker_idx == 6)
  ------------------
  |  Branch (1048:26): [True: 347, False: 67.1k]
  ------------------
 1049|    347|                  result = skip_marker(infile, "PPT",
 1050|    347|                    "PPT marker segment in a tile is not supported yet",
 1051|    347|                    OJPH_MSG_WARN, resilient);
 1052|  67.1k|                else if (marker_idx == 7)
  ------------------
  |  Branch (1052:26): [True: 2.66k, False: 64.4k]
  ------------------
 1053|       |                  //Skipping PLT marker segment;this should not cause any issues
 1054|  2.66k|                  result = skip_marker(infile, "PLT", NULL,
 1055|  2.66k|                    OJPH_MSG_NO_MSG, resilient);
 1056|  64.4k|                else if (marker_idx == 8)
  ------------------
  |  Branch (1056:26): [True: 953, False: 63.5k]
  ------------------
 1057|    953|                  result = skip_marker(infile, "COM", NULL,
 1058|    953|                    OJPH_MSG_NO_MSG, resilient);
 1059|  63.5k|                else if (marker_idx == 9)
  ------------------
  |  Branch (1059:26): [True: 1.83k, False: 61.7k]
  ------------------
 1060|  1.83k|                  result = skip_marker(infile, "NLT",
 1061|  1.83k|                    "PPT marker segment in a tile is not supported yet",
 1062|  1.83k|                    OJPH_MSG_WARN, resilient);
 1063|  61.7k|                else if (marker_idx == 10)
  ------------------
  |  Branch (1063:26): [True: 61.4k, False: 213]
  ------------------
 1064|  61.4k|                {
 1065|  61.4k|                  sod_found = true;
 1066|  61.4k|                  break;
 1067|  61.4k|                }
 1068|       |
 1069|  79.5k|                if (marker_idx == -1) //marker not found
  ------------------
  |  Branch (1069:21): [True: 213, False: 79.3k]
  ------------------
 1070|    213|                {
 1071|    213|                  if (resilient)
  ------------------
  |  Branch (1071:23): [True: 213, False: 0]
  ------------------
 1072|    213|                    OJPH_INFO(0x00030065,
  ------------------
  |  |  285|    213|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|    213|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 213, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1073|    213|                      "File terminated early before start of data is found"
 1074|    213|                      " for tile indexed %d and tile part %d",
 1075|    213|                      sot.get_tile_index(), sot.get_tile_part_index())
 1076|      0|                  else
 1077|      0|                    OJPH_ERROR(0x00030065,
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1078|    213|                      "File terminated early before start of data is found"
 1079|    213|                      " for tile indexed %d and tile part %d",
 1080|    213|                      sot.get_tile_index(), sot.get_tile_part_index())
 1081|    213|                  break;
 1082|    213|                }
 1083|  79.3k|                if (result == -1) //file terminated during marker seg. skipping
  ------------------
  |  Branch (1083:21): [True: 20, False: 79.3k]
  ------------------
 1084|     20|                {
 1085|     20|                  if (resilient)
  ------------------
  |  Branch (1085:23): [True: 20, False: 0]
  ------------------
 1086|     20|                    OJPH_INFO(0x00030066,
  ------------------
  |  |  285|     20|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     20|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 20, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1087|     20|                      "File terminated during marker segment skipping")
 1088|      0|                  else
 1089|      0|                    OJPH_ERROR(0x00030066,
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1090|     20|                      "File terminated during marker segment skipping")
 1091|     20|                  break;
 1092|     20|                }
 1093|  79.3k|              }
 1094|  61.7k|              if (sod_found)
  ------------------
  |  Branch (1094:19): [True: 61.4k, False: 233]
  ------------------
 1095|  61.4k|                tiles[sot.get_tile_index()].parse_tile_header(sot, infile,
 1096|  61.4k|                  tile_start_location);
 1097|  61.7k|            }
 1098|   185k|          }
 1099|   190k|        }
 1100|       |
 1101|       |        // check the next marker; either SOT or EOC,
 1102|       |        // if something is broken, just an end of file
 1103|   206k|        ui16 next_markers[2] = { SOT, EOC };
 1104|   206k|        int marker_idx = find_marker(infile, next_markers, 2);
 1105|   206k|        if (marker_idx == -1)
  ------------------
  |  Branch (1105:13): [True: 4.95k, False: 201k]
  ------------------
 1106|  4.95k|        {
 1107|  4.95k|          OJPH_INFO(0x00030067, "File terminated early");
  ------------------
  |  |  285|  4.95k|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|  4.95k|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4.95k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1108|  4.95k|          break;
 1109|  4.95k|        }
 1110|   201k|        else if (marker_idx == 0)
  ------------------
  |  Branch (1110:18): [True: 201k, False: 18]
  ------------------
 1111|   201k|          ;
 1112|     18|        else if (marker_idx == 1)
  ------------------
  |  Branch (1112:18): [True: 18, False: 0]
  ------------------
 1113|     18|          break;
 1114|   206k|      }
 1115|  5.27k|    }
_ZN4ojph5local10codestream10set_planarEi:
 1119|  2.99k|    {
 1120|  2.99k|      this->planar = planar;
 1121|  2.99k|    }
_ZN4ojph5local10codestream5closeEv:
 1168|  5.03k|    {
 1169|  5.03k|      if (infile)
  ------------------
  |  Branch (1169:11): [True: 5.03k, False: 0]
  ------------------
 1170|  5.03k|        infile->close();
 1171|  5.03k|      if (outfile)
  ------------------
  |  Branch (1171:11): [True: 0, False: 5.03k]
  ------------------
 1172|      0|        outfile->close();
 1173|  5.03k|    }
_ZN4ojph5local10codestream4pullERj:
 1228|  3.21M|    {
 1229|  3.21M|      bool success = false;
 1230|  6.54M|      while (!success)
  ------------------
  |  Branch (1230:14): [True: 3.32M, False: 3.21M]
  ------------------
 1231|  3.32M|      {
 1232|  3.32M|        success = true;
 1233|  6.66M|        for (ui32 i = 0; i < num_tiles.w; ++i)
  ------------------
  |  Branch (1233:26): [True: 3.45M, False: 3.21M]
  ------------------
 1234|  3.45M|        {
 1235|  3.45M|          ui32 idx = i + cur_tile_row * num_tiles.w;
 1236|  3.45M|          if ((success &= tiles[idx].pull(lines + cur_comp, cur_comp)) == false)
  ------------------
  |  Branch (1236:15): [True: 116k, False: 3.33M]
  ------------------
 1237|   116k|            break;
 1238|  3.45M|        }
 1239|  3.32M|        cur_tile_row += success == false ? 1 : 0;
  ------------------
  |  Branch (1239:25): [True: 116k, False: 3.21M]
  ------------------
 1240|  3.32M|        if (cur_tile_row >= num_tiles.h)
  ------------------
  |  Branch (1240:13): [True: 4, False: 3.32M]
  ------------------
 1241|      4|          cur_tile_row = 0;
 1242|  3.32M|      }
 1243|  3.21M|      comp_num = cur_comp;
 1244|       |
 1245|  3.21M|      if (planar) //process one component at a time
  ------------------
  |  Branch (1245:11): [True: 2.30M, False: 908k]
  ------------------
 1246|  2.30M|      {
 1247|  2.30M|        if (++cur_line >= recon_comp_size[cur_comp].h)
  ------------------
  |  Branch (1247:13): [True: 4.99k, False: 2.29M]
  ------------------
 1248|  4.99k|        {
 1249|  4.99k|          cur_line = 0;
 1250|  4.99k|          cur_tile_row = 0;
 1251|  4.99k|          if (cur_comp++ >= num_comps)
  ------------------
  |  Branch (1251:15): [True: 0, False: 4.99k]
  ------------------
 1252|      0|          {
 1253|      0|            comp_num = 0;
 1254|      0|            return NULL;
 1255|      0|          }
 1256|  4.99k|        }
 1257|  2.30M|      }
 1258|   908k|      else //process all component for a line
 1259|   908k|      {
 1260|   908k|        if (++cur_comp >= num_comps)
  ------------------
  |  Branch (1260:13): [True: 904k, False: 4.61k]
  ------------------
 1261|   904k|        {
 1262|   904k|          cur_comp = 0;
 1263|   904k|          if (cur_line++ >= recon_comp_size[cur_comp].h)
  ------------------
  |  Branch (1263:15): [True: 0, False: 904k]
  ------------------
 1264|      0|          {
 1265|      0|            comp_num = 0;
 1266|      0|            return NULL;
 1267|      0|          }
 1268|   904k|        }
 1269|   908k|      }
 1270|       |
 1271|  3.21M|      return lines + comp_num;
 1272|  3.21M|    }
ojph_codestream_local.cpp:_ZN4ojph5localL11find_markerEPNS_11infile_baseEPKti:
  709|  1.22M|    {
  710|       |      //returns the marker index in char_list, or -1
  711|   138M|      while (!f->eof())
  ------------------
  |  Branch (711:14): [True: 138M, False: 5.59k]
  ------------------
  712|   138M|      {
  713|   138M|        ui8 new_char;
  714|   138M|        size_t num_bytes = f->read(&new_char, 1);
  715|   138M|        if (num_bytes != 1)
  ------------------
  |  Branch (715:13): [True: 0, False: 138M]
  ------------------
  716|      0|            return -1;
  717|   138M|        if (new_char == 0xFF)
  ------------------
  |  Branch (717:13): [True: 15.2M, False: 123M]
  ------------------
  718|  15.2M|        {
  719|  15.2M|          size_t num_bytes = f->read(&new_char, 1);
  720|       |
  721|  15.2M|          if (num_bytes != 1)
  ------------------
  |  Branch (721:15): [True: 315, False: 15.2M]
  ------------------
  722|    315|              return -1;
  723|       |
  724|   160M|          for (int i = 0; i < list_len; ++i)
  ------------------
  |  Branch (724:27): [True: 146M, False: 14.0M]
  ------------------
  725|   146M|            if (new_char == (char_list[i] & 0xFF))
  ------------------
  |  Branch (725:17): [True: 1.22M, False: 145M]
  ------------------
  726|  1.22M|              return i;
  727|  15.2M|        }
  728|   138M|      }
  729|  5.59k|      return -1;
  730|  1.22M|    }
ojph_codestream_local.cpp:_ZN4ojph5localL11skip_markerEPNS_11infile_baseEPKcS4_ib:
  736|   100k|    {
  737|   100k|      ojph_unused(marker);
  ------------------
  |  |   78|   100k|#define ojph_unused(x) (void)(x)
  ------------------
  738|   100k|      ui16 com_len;
  739|   100k|      if (file->read(&com_len, 2) != 2)
  ------------------
  |  Branch (739:11): [True: 65, False: 100k]
  ------------------
  740|     65|      {
  741|     65|        if (resilient)
  ------------------
  |  Branch (741:13): [True: 33, False: 32]
  ------------------
  742|     33|          return -1;
  743|     32|        else
  744|     32|          OJPH_ERROR(0x00030041, "error reading marker");
  ------------------
  |  |  289|     32|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     32|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 32, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  745|     32|      }
  746|   100k|      com_len = swap_bytes_if_le(com_len);
  747|   100k|      file->seek(com_len - 2, infile_base::OJPH_SEEK_CUR);
  748|   100k|      if (msg != NULL && msg_level != OJPH_MSG_NO_MSG)
  ------------------
  |  Branch (748:11): [True: 85.8k, False: 14.2k]
  |  Branch (748:26): [True: 85.8k, False: 0]
  ------------------
  749|  85.8k|      {
  750|  85.8k|        if (msg_level == OJPH_MSG_INFO)
  ------------------
  |  Branch (750:13): [True: 261, False: 85.5k]
  ------------------
  751|    261|        {
  752|    261|          OJPH_INFO(0x00030001, "%s", msg);
  ------------------
  |  |  285|    261|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|    261|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 261, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  753|    261|        }
  754|  85.5k|        else if (msg_level == OJPH_MSG_WARN)
  ------------------
  |  Branch (754:18): [True: 85.5k, False: 0]
  ------------------
  755|  85.5k|        {
  756|  85.5k|          OJPH_WARN(0x00030001, "%s", msg);
  ------------------
  |  |  287|  85.5k|  { ojph::get_warning()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|  85.5k|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 85.5k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  757|  85.5k|        }
  758|      0|        else if (msg_level == OJPH_MSG_ERROR)
  ------------------
  |  Branch (758:18): [True: 0, False: 0]
  ------------------
  759|      0|        {
  760|      0|          OJPH_ERROR(0x00030001, "%s", msg);
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  761|      0|        }
  762|      0|        else // there is the option of ALL_MSG but it should not be used here
  763|       |          assert(0);
  764|  85.8k|      }
  765|   100k|      return 0;
  766|   100k|    }

_ZNK4ojph5local10codestream16get_tilepart_divEv:
  116|   746k|      ui32 get_tilepart_div() const { return tilepart_div; };
_ZNK4ojph5local10codestream13is_tlm_neededEv:
  117|   248k|      bool is_tlm_needed() const { return need_tlm; };
_ZNK4ojph5local10codestream9is_planarEv:
  114|  4.97k|      bool is_planar() const { return planar != 0; }
_ZN4ojph5local10codestream10access_sizEv:
   78|  10.3k|      { return ojph::param_siz(&siz); }
_ZN4ojph5local10codestream7get_sizEv:
   80|   769k|      { return &siz; }
_ZN4ojph5local10codestream10access_codEv:
   82|   248k|      { return ojph::param_cod(&cod); }
_ZN4ojph5local10codestream7get_codEv:
   84|   498k|      { return &cod; }
_ZN4ojph5local10codestream7get_cocEj:
   86|  13.3M|      { return cod.get_coc(comp_num); }
_ZN4ojph5local10codestream10access_qcdEv:
   88|  6.67M|      { return &qcd; }
_ZN4ojph5local10codestream10access_dfsEv:
   90|   398k|      { if (dfs.exists()) return &dfs; else return NULL; }
  ------------------
  |  Branch (90:13): [True: 398k, False: 5]
  ------------------
_ZN4ojph5local10codestream7get_nltEv:
   92|   248k|      { return &nlt; }
_ZN4ojph5local10codestream13get_allocatorEv:
   93|  22.5M|      mem_fixed_allocator* get_allocator() { return allocator; }
_ZN4ojph5local10codestream17get_elastic_allocEv:
   94|  5.48M|      mem_elastic_allocator* get_elastic_alloc() { return elastic_alloc; }
_ZN4ojph5local10codestream12is_resilientEv:
  101|  5.38M|      bool is_resilient() { return resilient; }
_ZNK4ojph5local10codestream11get_profileEv:
  115|   248k|      si32 get_profile() const { return profile; };
_ZN4ojph5local10codestream20get_precinct_scratchEv:
  122|  8.05M|      ui8* get_precinct_scratch() { return precinct_scratch; }
_ZN4ojph5local10codestream25get_skipped_res_for_reconEv:
  124|  3.13M|      { return skipped_res_for_recon; }
_ZN4ojph5local10codestream24get_skipped_res_for_readEv:
  126|  1.80M|      { return skipped_res_for_read; }

_ZNK4ojph9param_siz16get_image_extentEv:
   98|  1.46M|  {
   99|  1.46M|    return point(state->Xsiz, state->Ysiz);
  100|  1.46M|  }
_ZNK4ojph9param_siz16get_image_offsetEv:
  104|  1.45M|  {
  105|  1.45M|    return point(state->XOsiz, state->YOsiz);
  106|  1.45M|  }
_ZNK4ojph9param_siz13get_tile_sizeEv:
  110|  1.47M|  {
  111|  1.47M|    return size(state->XTsiz, state->YTsiz);
  112|  1.47M|  }
_ZNK4ojph9param_siz15get_tile_offsetEv:
  116|   737k|  {
  117|   737k|    return point(state->XTOsiz, state->YTOsiz);
  118|   737k|  }
_ZNK4ojph9param_siz18get_num_componentsEv:
  122|  1.84M|  {
  123|  1.84M|    return state->Csiz;
  124|  1.84M|  }
_ZNK4ojph9param_siz15get_recon_widthEj:
  146|  6.24k|  {
  147|  6.24k|    return state->get_recon_width(comp_num);
  148|  6.24k|  }
_ZNK4ojph9param_siz16get_recon_heightEj:
  152|  12.2k|  {
  153|  12.2k|    return state->get_recon_height(comp_num);
  154|  12.2k|  }
_ZNK4ojph9param_cod22get_num_decompositionsEv:
  285|  41.8k|  {
  286|  41.8k|    return state->get_num_decompositions();
  287|  41.8k|  }
_ZNK4ojph9param_cod17get_precinct_sizeEj:
  309|  31.2k|  {
  310|  31.2k|    return state->get_precinct_size(level_num);
  311|  31.2k|  }
_ZNK4ojph9param_cod21get_progression_orderEv:
  321|   248k|  {
  322|   248k|    return state->SGCod.prog_order;
  323|   248k|  }
_ZNK4ojph9param_cod14get_num_layersEv:
  345|  6.53k|  {
  346|  6.53k|    return state->SGCod.num_layers;
  347|  6.53k|  }
_ZN4ojph5local9param_siz4readEPNS_11infile_baseE:
  855|  6.74k|    {
  856|  6.74k|      if (file->read(&Lsiz, 2) != 2)
  ------------------
  |  Branch (856:11): [True: 104, False: 6.64k]
  ------------------
  857|    104|        OJPH_ERROR(0x00050041, "error reading SIZ marker");
  ------------------
  |  |  289|    104|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|    104|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 104, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  858|  6.74k|      Lsiz = swap_bytes_if_le(Lsiz);
  859|  6.74k|      int num_comps = (Lsiz - 38) / 3;
  860|  6.74k|      if (Lsiz != 38 + 3 * num_comps)
  ------------------
  |  Branch (860:11): [True: 17, False: 6.72k]
  ------------------
  861|     17|        OJPH_ERROR(0x00050042, "error in SIZ marker length");
  ------------------
  |  |  289|     17|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     17|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 17, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  862|  6.74k|      if (file->read(&Rsiz, 2) != 2)
  ------------------
  |  Branch (862:11): [True: 2, False: 6.74k]
  ------------------
  863|      2|        OJPH_ERROR(0x00050043, "error reading SIZ marker");
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  864|  6.74k|      Rsiz = swap_bytes_if_le(Rsiz);
  865|  6.74k|      if ((Rsiz & 0x4000) == 0)
  ------------------
  |  Branch (865:11): [True: 1, False: 6.74k]
  ------------------
  866|      1|        OJPH_ERROR(0x00050044,
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  867|  6.74k|          "Rsiz bit 14 is not set (this is not a JPH file)");
  868|  6.74k|      if ((Rsiz & 0x8000) != 0 && (Rsiz & 0xD5F) != 0)
  ------------------
  |  Branch (868:11): [True: 441, False: 6.30k]
  |  Branch (868:35): [True: 423, False: 18]
  ------------------
  869|    423|        OJPH_WARN(0x00050001, "Rsiz in SIZ has unimplemented fields");
  ------------------
  |  |  287|    423|  { ojph::get_warning()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|    423|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 423, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  870|  6.74k|      if (file->read(&Xsiz, 4) != 4)
  ------------------
  |  Branch (870:11): [True: 16, False: 6.72k]
  ------------------
  871|     16|        OJPH_ERROR(0x00050045, "error reading SIZ marker");
  ------------------
  |  |  289|     16|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     16|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 16, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  872|  6.74k|      Xsiz = swap_bytes_if_le(Xsiz);
  873|  6.74k|      if (file->read(&Ysiz, 4) != 4)
  ------------------
  |  Branch (873:11): [True: 6, False: 6.73k]
  ------------------
  874|      6|        OJPH_ERROR(0x00050046, "error reading SIZ marker");
  ------------------
  |  |  289|      6|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      6|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  875|  6.74k|      Ysiz = swap_bytes_if_le(Ysiz);
  876|  6.74k|      ui32 t_XOsiz, t_YOsiz;
  877|  6.74k|      if (file->read(&t_XOsiz, 4) != 4)
  ------------------
  |  Branch (877:11): [True: 6, False: 6.73k]
  ------------------
  878|      6|        OJPH_ERROR(0x00050047, "error reading SIZ marker");
  ------------------
  |  |  289|      6|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      6|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  879|  6.74k|      if (file->read(&t_YOsiz, 4) != 4)
  ------------------
  |  Branch (879:11): [True: 4, False: 6.74k]
  ------------------
  880|      4|        OJPH_ERROR(0x00050048, "error reading SIZ marker");
  ------------------
  |  |  289|      4|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      4|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  881|  6.74k|      set_image_offset(point(
  882|  6.74k|        swap_bytes_if_le(t_XOsiz),
  883|  6.74k|        swap_bytes_if_le(t_YOsiz)));
  884|  6.74k|      ui32 t_XTsiz, t_YTsiz;
  885|  6.74k|      if (file->read(&t_XTsiz, 4) != 4)
  ------------------
  |  Branch (885:11): [True: 3, False: 6.74k]
  ------------------
  886|      3|        OJPH_ERROR(0x00050049, "error reading SIZ marker");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  887|  6.74k|      if (file->read(&t_YTsiz, 4) != 4)
  ------------------
  |  Branch (887:11): [True: 3, False: 6.74k]
  ------------------
  888|      3|        OJPH_ERROR(0x0005004A, "error reading SIZ marker");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  889|  6.74k|      set_tile_size(size(
  890|  6.74k|        swap_bytes_if_le(t_XTsiz),
  891|  6.74k|        swap_bytes_if_le(t_YTsiz)));
  892|  6.74k|      ui32 t_XTOsiz, t_YTOsiz;
  893|  6.74k|      if (file->read(&t_XTOsiz, 4) != 4)
  ------------------
  |  Branch (893:11): [True: 3, False: 6.74k]
  ------------------
  894|      3|        OJPH_ERROR(0x0005004B, "error reading SIZ marker");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  895|  6.74k|      if (file->read(&t_YTOsiz, 4) != 4)
  ------------------
  |  Branch (895:11): [True: 3, False: 6.74k]
  ------------------
  896|      3|        OJPH_ERROR(0x0005004C, "error reading SIZ marker");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  897|  6.74k|      set_tile_offset(point(
  898|  6.74k|        swap_bytes_if_le(t_XTOsiz),
  899|  6.74k|        swap_bytes_if_le(t_YTOsiz)));
  900|  6.74k|      if (file->read(&Csiz, 2) != 2)
  ------------------
  |  Branch (900:11): [True: 3, False: 6.74k]
  ------------------
  901|      3|        OJPH_ERROR(0x0005004D, "error reading SIZ marker");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  902|  6.74k|      Csiz = swap_bytes_if_le(Csiz);
  903|  6.74k|      if (Csiz != num_comps)
  ------------------
  |  Branch (903:11): [True: 43, False: 6.70k]
  ------------------
  904|     43|        OJPH_ERROR(0x0005004E, "Csiz does not match the SIZ marker size");
  ------------------
  |  |  289|     43|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     43|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 43, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  905|  6.74k|      if (Csiz == 0)
  ------------------
  |  Branch (905:11): [True: 5, False: 6.73k]
  ------------------
  906|      5|        OJPH_ERROR(0x0005004F, "Wrong Csiz value of 0 in SIZ marker segment");
  ------------------
  |  |  289|      5|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      5|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 5, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  907|  6.74k|      set_num_components(Csiz);
  908|  33.8k|      for (int c = 0; c < Csiz; ++c)
  ------------------
  |  Branch (908:23): [True: 27.0k, False: 6.74k]
  ------------------
  909|  27.0k|      {
  910|  27.0k|        if (file->read(&cptr[c].SSiz, 1) != 1)
  ------------------
  |  Branch (910:13): [True: 3, False: 27.0k]
  ------------------
  911|      3|          OJPH_ERROR(0x00050051, "error reading SIZ marker");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  912|  27.0k|        if (file->read(&cptr[c].XRsiz, 1) != 1)
  ------------------
  |  Branch (912:13): [True: 3, False: 27.0k]
  ------------------
  913|      3|          OJPH_ERROR(0x00050052, "error reading SIZ marker");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  914|  27.0k|        if (file->read(&cptr[c].YRsiz, 1) != 1)
  ------------------
  |  Branch (914:13): [True: 4, False: 27.0k]
  ------------------
  915|      4|          OJPH_ERROR(0x00050053, "error reading SIZ marker");
  ------------------
  |  |  289|      4|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      4|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  916|  27.0k|        if ((cptr[c].SSiz & 0x7F) > 37)
  ------------------
  |  Branch (916:13): [True: 9, False: 27.0k]
  ------------------
  917|      9|          OJPH_ERROR(0x00050054, "Wrong SIZ-SSiz value of %d", cptr[c].SSiz);
  ------------------
  |  |  289|      9|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      9|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 9, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  918|  27.0k|        if (cptr[c].XRsiz == 0)
  ------------------
  |  Branch (918:13): [True: 2, False: 27.0k]
  ------------------
  919|      2|          OJPH_ERROR(0x00050055, "Wrong SIZ-XRsiz value of %d", cptr[c].XRsiz);
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  920|  27.0k|        if (cptr[c].YRsiz == 0)
  ------------------
  |  Branch (920:13): [True: 4, False: 27.0k]
  ------------------
  921|      4|          OJPH_ERROR(0x00050056, "Wrong SIZ-YRsiz value of %d", cptr[c].YRsiz);
  ------------------
  |  |  289|      4|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      4|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  922|  27.0k|      }
  923|       |
  924|  6.74k|      ws_kern_support_needed = (Rsiz & 0x20) != 0;
  925|  6.74k|      dfs_support_needed = (Rsiz & 0x80) != 0;
  926|       |
  927|  6.74k|      check_validity();
  928|  6.74k|    }
_ZNK4ojph5local9param_siz22get_recon_downsamplingEj:
  932|   308k|    {
  933|   308k|      assert(comp_num < get_num_components());
  934|       |
  935|   308k|      point factor(1u << skipped_resolutions, 1u << skipped_resolutions);
  936|   308k|      const param_cod* cdp = cod->get_coc(comp_num);
  937|   308k|      if (dfs && cdp && cdp->is_dfs_defined()) {
  ------------------
  |  Branch (937:11): [True: 31.6k, False: 277k]
  |  Branch (937:18): [True: 31.6k, False: 0]
  |  Branch (937:25): [True: 23.0k, False: 8.59k]
  ------------------
  938|  23.0k|        const param_dfs* d = dfs->get_dfs(cdp->get_dfs_index());
  939|  23.0k|        factor = d->get_res_downsamp(skipped_resolutions);
  940|  23.0k|      }
  941|   308k|      factor.x *= (ui32)cptr[comp_num].XRsiz;
  942|   308k|      factor.y *= (ui32)cptr[comp_num].YRsiz;
  943|   308k|      return factor;
  944|   308k|    }
_ZNK4ojph5local9param_siz14get_recon_sizeEj:
  948|  37.3k|    {
  949|  37.3k|      assert(comp_num < get_num_components());
  950|       |
  951|  37.3k|      point factor = get_recon_downsampling(comp_num);
  952|  37.3k|      point r;
  953|  37.3k|      r.x = ojph_div_ceil(Xsiz, factor.x) - ojph_div_ceil(XOsiz, factor.x);
  ------------------
  |  |   70|  37.3k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
                    r.x = ojph_div_ceil(Xsiz, factor.x) - ojph_div_ceil(XOsiz, factor.x);
  ------------------
  |  |   70|  37.3k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  954|  37.3k|      r.y = ojph_div_ceil(Ysiz, factor.y) - ojph_div_ceil(YOsiz, factor.y);
  ------------------
  |  |   70|  37.3k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
                    r.y = ojph_div_ceil(Ysiz, factor.y) - ojph_div_ceil(YOsiz, factor.y);
  ------------------
  |  |   70|  37.3k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  955|  37.3k|      return r;
  956|  37.3k|    }
_ZN4ojph5local9param_cap4readEPNS_11infile_baseE:
  993|    449|    {
  994|    449|      if (file->read(&Lcap, 2) != 2)
  ------------------
  |  Branch (994:11): [True: 3, False: 446]
  ------------------
  995|      3|        OJPH_ERROR(0x00050061, "error reading CAP marker");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  996|    449|      Lcap = swap_bytes_if_le(Lcap);
  997|    449|      if (file->read(&Pcap, 4) != 4)
  ------------------
  |  Branch (997:11): [True: 4, False: 445]
  ------------------
  998|      4|        OJPH_ERROR(0x00050062, "error reading CAP marker");
  ------------------
  |  |  289|      4|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      4|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  999|    449|      Pcap = swap_bytes_if_le(Pcap);
 1000|    449|      ui32 count = population_count(Pcap);
 1001|    449|      if (Pcap & 0xFFFDFFFF)
  ------------------
  |  Branch (1001:11): [True: 37, False: 412]
  ------------------
 1002|     37|        OJPH_ERROR(0x00050063,
  ------------------
  |  |  289|     37|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     37|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 37, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1003|    449|          "error Pcap in CAP has options that are not supported");
 1004|    449|      if ((Pcap & 0x00020000) == 0)
  ------------------
  |  Branch (1004:11): [True: 1, False: 448]
  ------------------
 1005|      1|        OJPH_ERROR(0x00050064,
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1006|    449|          "error Pcap should have its 15th MSB set, Pcap^15. "
 1007|    449|          " This is not a JPH file");
 1008|    853|      for (ui32 i = 0; i < count; ++i)
  ------------------
  |  Branch (1008:24): [True: 404, False: 449]
  ------------------
 1009|    404|        if (file->read(Ccap+i, 2) != 2)
  ------------------
  |  Branch (1009:13): [True: 2, False: 402]
  ------------------
 1010|      2|          OJPH_ERROR(0x00050065, "error reading CAP marker");
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1011|    449|      if (Lcap != 6 + 2 * count)
  ------------------
  |  Branch (1011:11): [True: 9, False: 440]
  ------------------
 1012|      9|        OJPH_ERROR(0x00050066, "error in CAP marker length");
  ------------------
  |  |  289|      9|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      9|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 9, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1013|    449|    }
_ZNK4ojph5local9param_cod13is_reversibleEv:
 1025|  5.41M|    {
 1026|  5.41M|      if (SPcod.wavelet_trans <= 1)
  ------------------
  |  Branch (1026:11): [True: 5.40M, False: 7.06k]
  ------------------
 1027|  5.40M|        return get_wavelet_kern() == local::param_cod::DWT_REV53;
 1028|  7.06k|      else {
 1029|       |        assert(atk != NULL);
 1030|  7.06k|        return atk->is_reversible();
 1031|  7.06k|      }
 1032|  5.41M|    }
_ZN4ojph5local9param_cod4readEPNS_11infile_baseE:
 1147|  6.61k|    {
 1148|  6.61k|      assert(type == COD_MAIN);
 1149|       |
 1150|  6.61k|      if (file->read(&Lcod, 2) != 2)
  ------------------
  |  Branch (1150:11): [True: 4, False: 6.60k]
  ------------------
 1151|      4|        OJPH_ERROR(0x00050071, "error reading COD segment");
  ------------------
  |  |  289|      4|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      4|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1152|  6.61k|      Lcod = swap_bytes_if_le(Lcod);
 1153|  6.61k|      if (file->read(&Scod, 1) != 1)
  ------------------
  |  Branch (1153:11): [True: 2, False: 6.61k]
  ------------------
 1154|      2|        OJPH_ERROR(0x00050072, "error reading COD segment");
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1155|  6.61k|      if (file->read(&SGCod.prog_order, 1) != 1)
  ------------------
  |  Branch (1155:11): [True: 1, False: 6.61k]
  ------------------
 1156|      1|        OJPH_ERROR(0x00050073, "error reading COD segment");
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1157|  6.61k|      if (file->read(&SGCod.num_layers, 2) != 2)
  ------------------
  |  Branch (1157:11): [True: 5, False: 6.60k]
  ------------------
 1158|      5|      { OJPH_ERROR(0x00050074, "error reading COD segment"); }
  ------------------
  |  |  289|      5|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      5|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 5, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1159|  6.60k|      else
 1160|  6.60k|        SGCod.num_layers = swap_bytes_if_le(SGCod.num_layers);
 1161|  6.61k|      if (file->read(&SGCod.mc_trans, 1) != 1)
  ------------------
  |  Branch (1161:11): [True: 3, False: 6.60k]
  ------------------
 1162|      3|        OJPH_ERROR(0x00050075, "error reading COD segment");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1163|  6.61k|      if (file->read(&SPcod.num_decomp, 1) != 1)
  ------------------
  |  Branch (1163:11): [True: 1, False: 6.61k]
  ------------------
 1164|      1|        OJPH_ERROR(0x00050076, "error reading COD segment");
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1165|  6.61k|      if (file->read(&SPcod.block_width, 1) != 1)
  ------------------
  |  Branch (1165:11): [True: 4, False: 6.60k]
  ------------------
 1166|      4|        OJPH_ERROR(0x00050077, "error reading COD segment");
  ------------------
  |  |  289|      4|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      4|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1167|  6.61k|      if (file->read(&SPcod.block_height, 1) != 1)
  ------------------
  |  Branch (1167:11): [True: 3, False: 6.60k]
  ------------------
 1168|      3|        OJPH_ERROR(0x00050078, "error reading COD segment");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1169|  6.61k|      if (file->read(&SPcod.block_style, 1) != 1)
  ------------------
  |  Branch (1169:11): [True: 1, False: 6.61k]
  ------------------
 1170|      1|        OJPH_ERROR(0x00050079, "error reading COD segment");
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1171|  6.61k|      if (file->read(&SPcod.wavelet_trans, 1) != 1)
  ------------------
  |  Branch (1171:11): [True: 3, False: 6.60k]
  ------------------
 1172|      3|        OJPH_ERROR(0x0005007A, "error reading COD segment");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1173|       |
 1174|  6.61k|      if (get_num_decompositions() > 32
  ------------------
  |  Branch (1174:11): [True: 34, False: 6.57k]
  ------------------
 1175|  6.57k|        || SPcod.block_width > 8
  ------------------
  |  Branch (1175:12): [True: 6, False: 6.57k]
  ------------------
 1176|  6.57k|        || SPcod.block_height > 8
  ------------------
  |  Branch (1176:12): [True: 4, False: 6.56k]
  ------------------
 1177|  6.56k|        || SPcod.block_width + SPcod.block_height > 8
  ------------------
  |  Branch (1177:12): [True: 2, False: 6.56k]
  ------------------
 1178|  6.56k|        || (SPcod.block_style & 0x40) != 0x40
  ------------------
  |  Branch (1178:12): [True: 1, False: 6.56k]
  ------------------
 1179|  6.56k|        || (SPcod.block_style & 0xB7) != 0x00)
  ------------------
  |  Branch (1179:12): [True: 3, False: 6.56k]
  ------------------
 1180|     23|        OJPH_ERROR(0x0005007D, "wrong settings in a COD-SPcod parameter");
  ------------------
  |  |  289|     23|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     23|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 23, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1181|  6.61k|      if ((SPcod.block_style & 0x40) != 0x40
  ------------------
  |  Branch (1181:11): [True: 50, False: 6.56k]
  ------------------
 1182|  6.56k|        || (SPcod.block_style & 0xB7) != 0x00)
  ------------------
  |  Branch (1182:12): [True: 0, False: 6.56k]
  ------------------
 1183|      0|        OJPH_ERROR(0x0005007E, "unsupported settings in a COD-SPcod parameter");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1184|       |
 1185|  6.61k|      ui8 num_decompositions =  get_num_decompositions();
 1186|  6.61k|      if (Scod & 1) {
  ------------------
  |  Branch (1186:11): [True: 6.03k, False: 576]
  ------------------
 1187|  40.8k|        for (int i = 0; i <= num_decompositions; ++i) {
  ------------------
  |  Branch (1187:25): [True: 34.7k, False: 6.03k]
  ------------------
 1188|  34.7k|          if (file->read(&SPcod.precinct_size[i], 1) != 1)
  ------------------
  |  Branch (1188:15): [True: 6, False: 34.7k]
  ------------------
 1189|      6|            OJPH_ERROR(0x0005007B, "error reading COD segment");
  ------------------
  |  |  289|      6|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      6|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1190|  34.7k|          if (i)
  ------------------
  |  Branch (1190:15): [True: 28.7k, False: 6.04k]
  ------------------
 1191|  28.7k|            if ((SPcod.precinct_size[i] & 0x0F) == 0 ||
  ------------------
  |  Branch (1191:17): [True: 8, False: 28.7k]
  ------------------
 1192|  28.7k|              (SPcod.precinct_size[i] >> 4) == 0)
  ------------------
  |  Branch (1192:15): [True: 1, False: 28.7k]
  ------------------
 1193|      9|              OJPH_ERROR(0x0005007F,
  ------------------
  |  |  289|      9|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      9|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 9, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1194|  34.7k|                "Precinct width or height for resolutions other than the"
 1195|  34.7k|                " coarsest must be larger than 1; here, they are %d and %d,"
 1196|  34.7k|                " respectively.",
 1197|  34.7k|                1 << (SPcod.precinct_size[i] & 0x0F),
 1198|  34.7k|                1 << (SPcod.precinct_size[i] >> 4));
 1199|  34.7k|        }
 1200|  6.03k|      }
 1201|  6.61k|      if (Lcod != 12 + ((Scod & 1) ? 1 + SPcod.num_decomp : 0))
  ------------------
  |  Branch (1201:11): [True: 11, False: 6.60k]
  |  Branch (1201:25): [True: 6.02k, False: 591]
  ------------------
 1202|     11|        OJPH_ERROR(0x0005007C, "error in COD segment length");
  ------------------
  |  |  289|     11|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     11|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 11, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1203|  6.61k|    }
_ZN4ojph5local9param_cod8read_cocEPNS_11infile_baseEjPS1_:
 1208|    820|    {
 1209|    820|      assert(type == COC_MAIN);
 1210|    820|      assert(top_cod != NULL);
 1211|       |
 1212|    820|      this->SGCod = top_cod->SGCod;
 1213|    820|      this->top_cod = top_cod;
 1214|    820|      if (file->read(&Lcod, 2) != 2)
  ------------------
  |  Branch (1214:11): [True: 2, False: 818]
  ------------------
 1215|      2|        OJPH_ERROR(0x00050121, "error reading COC segment");
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1216|    820|      Lcod = swap_bytes_if_le(Lcod);
 1217|    820|      if (num_comps < 257) {
  ------------------
  |  Branch (1217:11): [True: 816, False: 4]
  ------------------
 1218|    816|        ui8 t;
 1219|    816|        if (file->read(&t, 1) != 1)
  ------------------
  |  Branch (1219:13): [True: 2, False: 814]
  ------------------
 1220|      2|          OJPH_ERROR(0x00050122, "error reading COC segment");
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1221|    816|        comp_idx = t;
 1222|    816|      }
 1223|      4|      else {
 1224|      4|        if (file->read(&comp_idx, 2) != 2)
  ------------------
  |  Branch (1224:13): [True: 1, False: 3]
  ------------------
 1225|      1|          OJPH_ERROR(0x00050123, "error reading COC segment");
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1226|      4|        comp_idx = swap_bytes_if_le(comp_idx);
 1227|      4|      }
 1228|    820|      if (file->read(&Scod, 1) != 1)
  ------------------
  |  Branch (1228:11): [True: 3, False: 817]
  ------------------
 1229|      3|        OJPH_ERROR(0x00050124, "error reading COC segment");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1230|    820|      if (Scod & 0xF8)
  ------------------
  |  Branch (1230:11): [True: 611, False: 209]
  ------------------
 1231|    611|        OJPH_WARN(0x00050011,
  ------------------
  |  |  287|    611|  { ojph::get_warning()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|    611|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 611, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1232|    820|          "Unsupported options in Scoc field of the COC segment");
 1233|    820|      if (file->read(&SPcod.num_decomp, 1) != 1)
  ------------------
  |  Branch (1233:11): [True: 6, False: 814]
  ------------------
 1234|      6|        OJPH_ERROR(0x00050125, "error reading COC segment");
  ------------------
  |  |  289|      6|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      6|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 6, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1235|    820|      if (file->read(&SPcod.block_width, 1) != 1)
  ------------------
  |  Branch (1235:11): [True: 3, False: 817]
  ------------------
 1236|      3|        OJPH_ERROR(0x00050126, "error reading COC segment");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1237|    820|      if (file->read(&SPcod.block_height, 1) != 1)
  ------------------
  |  Branch (1237:11): [True: 2, False: 818]
  ------------------
 1238|      2|        OJPH_ERROR(0x00050127, "error reading COC segment");
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1239|    820|      if (file->read(&SPcod.block_style, 1) != 1)
  ------------------
  |  Branch (1239:11): [True: 3, False: 817]
  ------------------
 1240|      3|        OJPH_ERROR(0x00050128, "error reading COC segment");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1241|    820|      if (file->read(&SPcod.wavelet_trans, 1) != 1)
  ------------------
  |  Branch (1241:11): [True: 4, False: 816]
  ------------------
 1242|      4|        OJPH_ERROR(0x00050129, "error reading COC segment");
  ------------------
  |  |  289|      4|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      4|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1243|       |
 1244|    820|      if (get_num_decompositions() > 32
  ------------------
  |  Branch (1244:11): [True: 29, False: 791]
  ------------------
 1245|    791|        || SPcod.block_width > 8
  ------------------
  |  Branch (1245:12): [True: 11, False: 780]
  ------------------
 1246|    780|        || SPcod.block_height > 8
  ------------------
  |  Branch (1246:12): [True: 4, False: 776]
  ------------------
 1247|    776|        || SPcod.block_width + SPcod.block_height > 8
  ------------------
  |  Branch (1247:12): [True: 1, False: 775]
  ------------------
 1248|    775|        || (SPcod.block_style & 0x40) != 0x40
  ------------------
  |  Branch (1248:12): [True: 4, False: 771]
  ------------------
 1249|    771|        || (SPcod.block_style & 0xB7) != 0x00)
  ------------------
  |  Branch (1249:12): [True: 3, False: 768]
  ------------------
 1250|     26|        OJPH_ERROR(0x0005012C, "wrong settings in a COC-SPcoc parameter");
  ------------------
  |  |  289|     26|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     26|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 26, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1251|    820|      if ((SPcod.block_style & 0x40) != 0x40
  ------------------
  |  Branch (1251:11): [True: 52, False: 768]
  ------------------
 1252|    768|        || (SPcod.block_style & 0xB7) != 0x00)
  ------------------
  |  Branch (1252:12): [True: 0, False: 768]
  ------------------
 1253|      0|        OJPH_ERROR(0x0005012D, "unsupported settings in a COC-SPcoc parameter");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1254|       |
 1255|    820|      ui8 num_decompositions =  get_num_decompositions();
 1256|    820|      if (Scod & 1) {
  ------------------
  |  Branch (1256:11): [True: 245, False: 575]
  ------------------
 1257|  1.10k|        for (int i = 0; i <= num_decompositions; ++i) {
  ------------------
  |  Branch (1257:25): [True: 858, False: 245]
  ------------------
 1258|    858|          if (file->read(&SPcod.precinct_size[i], 1) != 1)
  ------------------
  |  Branch (1258:15): [True: 7, False: 851]
  ------------------
 1259|      7|            OJPH_ERROR(0x0005012A, "error reading COC segment");
  ------------------
  |  |  289|      7|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      7|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 7, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1260|    858|          if (i)
  ------------------
  |  Branch (1260:15): [True: 607, False: 251]
  ------------------
 1261|    607|            if ((SPcod.precinct_size[i] & 0x0F) == 0 ||
  ------------------
  |  Branch (1261:17): [True: 6, False: 601]
  ------------------
 1262|    601|              (SPcod.precinct_size[i] >> 4) == 0)
  ------------------
  |  Branch (1262:15): [True: 3, False: 598]
  ------------------
 1263|      9|              OJPH_ERROR(0x0005012E,
  ------------------
  |  |  289|      9|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      9|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 9, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1264|    858|                "Precinct width or height for resolutions other than the"
 1265|    858|                " coarsest must be larger than 1; here, they are %d and %d,"
 1266|    858|                " respectively.",
 1267|    858|                1 << (SPcod.precinct_size[i] & 0x0F),
 1268|    858|                1 << (SPcod.precinct_size[i] >> 4));
 1269|    858|        }
 1270|    245|      }
 1271|    820|      ui32 t = 9;
 1272|    820|      t += num_comps < 257 ? 0 : 1;
  ------------------
  |  Branch (1272:12): [True: 751, False: 69]
  ------------------
 1273|    820|      t += (Scod & 1) ? 1 + num_decompositions : 0;
  ------------------
  |  Branch (1273:12): [True: 229, False: 591]
  ------------------
 1274|    820|      if (Lcod != t)
  ------------------
  |  Branch (1274:11): [True: 19, False: 801]
  ------------------
 1275|     19|        OJPH_ERROR(0x0005012B, "error in COC segment length");
  ------------------
  |  |  289|     19|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     19|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 19, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1276|    820|    }
_ZN4ojph5local9param_cod10update_atkEPNS0_9param_atkE:
 1280|  5.36k|    {
 1281|  5.36k|      assert(type == COD_MAIN);
 1282|  5.36k|      this->atk = atk->get_atk(SPcod.wavelet_trans);
 1283|  5.36k|      if (this->atk == NULL)
  ------------------
  |  Branch (1283:11): [True: 8, False: 5.35k]
  ------------------
 1284|      8|        OJPH_ERROR(0x00050131, "A COD segment employs the DWT kernel "
  ------------------
  |  |  289|      8|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      8|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1285|  5.36k|          "atk = %d, but a corresponding ATK segment cannot be found.",
 1286|  5.36k|          SPcod.wavelet_trans);
 1287|  5.36k|      param_cod *p = next;
 1288|  5.98k|      while (p)
  ------------------
  |  Branch (1288:14): [True: 623, False: 5.36k]
  ------------------
 1289|    623|      {
 1290|    623|        p->atk = atk->get_atk(p->SPcod.wavelet_trans);
 1291|    623|        if (p->atk == NULL)
  ------------------
  |  Branch (1291:13): [True: 2, False: 621]
  ------------------
 1292|      2|          OJPH_ERROR(0x00050132, "A COC segment employs the DWT kernel "
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1293|    623|            "atk = %d, but a corresponding ATK segment cannot be found",
 1294|    623|            SPcod.wavelet_trans);
 1295|    623|        p = p->next;
 1296|    623|      }
 1297|  5.36k|    }
_ZNK4ojph5local9param_cod7get_cocEj:
 1301|  20.3M|    {
 1302|  20.3M|      assert(this->type == COD_MAIN || this->top_cod->type == COD_MAIN);
 1303|  20.3M|      const param_cod *p, *q;
 1304|  20.3M|      if (this->type == COD_MAIN)
  ------------------
  |  Branch (1304:11): [True: 19.8M, False: 450k]
  ------------------
 1305|  19.8M|        q = p = this;
 1306|   450k|      else
 1307|   450k|        q = p = this->top_cod;
 1308|  34.5M|      while (p && p->comp_idx != comp_idx)
  ------------------
  |  Branch (1308:14): [True: 22.0M, False: 12.5M]
  |  Branch (1308:19): [True: 14.2M, False: 7.81M]
  ------------------
 1309|  14.2M|        p = p->next;
 1310|  20.3M|      return p ? p : q;
  ------------------
  |  Branch (1310:14): [True: 7.81M, False: 12.5M]
  ------------------
 1311|  20.3M|    }
_ZN4ojph5local9param_cod7get_cocEj:
 1315|  13.3M|    {
 1316|       |      // cast object to constant
 1317|  13.3M|      const param_cod* const_p = const_cast<const param_cod*>(this);
 1318|       |      // call using the constant object, then cast to non-const
 1319|  13.3M|      return const_cast<param_cod*>(const_p->get_coc(comp_idx));
 1320|  13.3M|    }
_ZN4ojph5local9param_cod14add_coc_objectEj:
 1324|    820|    {
 1325|    820|      assert(type == COD_MAIN);
 1326|    820|      param_cod *p = this;
 1327|  1.16k|      while (p->next != NULL)
  ------------------
  |  Branch (1327:14): [True: 340, False: 820]
  ------------------
 1328|    340|        p = p->next;
 1329|    820|      if (avail)
  ------------------
  |  Branch (1329:11): [True: 0, False: 820]
  ------------------
 1330|      0|      {
 1331|      0|        p->next = avail;
 1332|      0|        avail = avail->next;
 1333|      0|        p->next->init(this, (ui16)comp_idx);
 1334|      0|      }
 1335|    820|      else
 1336|    820|        p->next = new param_cod(this, (ui16)comp_idx);
 1337|    820|      return p->next;
 1338|    820|    }
_ZNK4ojph5local9param_qcd15get_irrev_deltaEPKNS0_9param_dfsEjjjj:
 1653|   870k|    {
 1654|   870k|      float arr[] = { 1.0f, 2.0f, 2.0f, 4.0f };
 1655|   870k|      if ((Sqcd & 0x1F) != 2)
  ------------------
  |  Branch (1655:11): [True: 60, False: 870k]
  ------------------
 1656|     60|        OJPH_ERROR(0x00050101, "There is something wrong in the configuration "
  ------------------
  |  |  289|     60|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     60|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 60, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1657|   870k|          "of the codestream; for component %d, the codestream defines an "
 1658|   870k|          "irreversible transform, for which the codestream provides a "
 1659|   870k|          "reversible (no quantization) step sizes in Sqcd/Sqcc.", comp_num);
 1660|       |
 1661|   870k|      ui32 idx;
 1662|   870k|      if (dfs != NULL && dfs->exists())
  ------------------
  |  Branch (1662:11): [True: 114k, False: 756k]
  |  Branch (1662:26): [True: 114k, False: 290]
  ------------------
 1663|   114k|        idx = dfs->get_subband_idx(num_decompositions, resolution, subband);
 1664|   756k|      else
 1665|   756k|        idx = resolution ? (resolution - 1) * 3 + subband : 0;
  ------------------
  |  Branch (1665:15): [True: 709k, False: 46.6k]
  ------------------
 1666|   870k|      if (idx >= num_subbands) {
  ------------------
  |  Branch (1666:11): [True: 431k, False: 438k]
  ------------------
 1667|   431k|        OJPH_INFO(0x00050102, "Trying to access quantization step size for "
  ------------------
  |  |  285|   431k|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|   431k|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 431k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1668|   431k|          "subband %d when the QCD/QCC marker segment specifies "
 1669|   431k|          "quantization step sizes for %d subbands only.  To continue "
 1670|   431k|          "decoding, we are using the step size for subband %d, which can "
 1671|   431k|          "produce incorrect results",
 1672|   431k|          idx + 1, num_subbands, num_subbands - 1);
 1673|   431k|        idx = num_subbands - 1;
 1674|   431k|      }
 1675|   870k|      int eps = SPqcd.u16[idx] >> 11;
 1676|   870k|      float mantissa;
 1677|   870k|      mantissa = (float)((SPqcd.u16[idx] & 0x7FF) | 0x800) * arr[subband];
 1678|   870k|      mantissa /= (float)(1 << 11);
 1679|   870k|      mantissa /= (float)(1u << eps);
 1680|   870k|      return mantissa;
 1681|   870k|    }
_ZNK4ojph5local9param_qcd17propose_precisionEPKNS0_9param_codE:
 1685|  6.67M|    {
 1686|  6.67M|      ui32 comp_idx = cod->get_comp_idx();
 1687|  6.67M|      ui32 precision = 0;
 1688|  6.67M|      const param_cod *main =
 1689|  6.67M|        cod->get_coc(param_cod::OJPH_COD_DEFAULT);
 1690|  6.67M|      if (main->is_employing_color_transform() && comp_idx < 3)
  ------------------
  |  Branch (1690:11): [True: 301k, False: 6.37M]
  |  Branch (1690:51): [True: 34.5k, False: 266k]
  ------------------
 1691|  34.5k|      {
 1692|   138k|        for (ui32 i = 0; i < 3; ++i) {
  ------------------
  |  Branch (1692:26): [True: 103k, False: 34.5k]
  ------------------
 1693|   103k|          const param_qcd* p = this->get_qcc(i);
 1694|   103k|          precision = ojph_max(precision, p->get_largest_Kmax());
  ------------------
  |  |   73|   103k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 798, False: 102k]
  |  |  ------------------
  ------------------
 1695|   103k|        }
 1696|  34.5k|      }
 1697|  6.63M|      else {
 1698|  6.63M|        precision = get_largest_Kmax();
 1699|  6.63M|      }
 1700|       |      // ``precision'' now holds the largest K_max, which excludes the sign
 1701|       |      // bit.
 1702|       |      // + 1 for the sign bit
 1703|       |      // + 1 because my block decoder/encoder does not supports up to 30
 1704|       |      //     bits (not 31), so we bump it by one more bit.
 1705|  6.67M|      return precision + 1 + 1;
 1706|  6.67M|    }
_ZNK4ojph5local9param_qcd18get_num_guard_bitsEv:
 1710|  10.7M|    {
 1711|  10.7M|      return (Sqcd >> 5);
 1712|  10.7M|    }
_ZNK4ojph5local9param_qcd8get_KmaxEPKNS0_9param_dfsEjjj:
 1717|  3.91M|    {
 1718|  3.91M|      ui32 idx;
 1719|  3.91M|      if (dfs != NULL && dfs->exists())
  ------------------
  |  Branch (1719:11): [True: 132k, False: 3.78M]
  |  Branch (1719:26): [True: 132k, False: 294]
  ------------------
 1720|   132k|        idx = dfs->get_subband_idx(num_decompositions, resolution, subband);
 1721|  3.78M|      else
 1722|  3.78M|        idx = resolution ? (resolution - 1) * 3 + subband : 0;
  ------------------
  |  Branch (1722:15): [True: 3.53M, False: 249k]
  ------------------
 1723|  3.91M|      if (idx >= num_subbands) {
  ------------------
  |  Branch (1723:11): [True: 1.42M, False: 2.49M]
  ------------------
 1724|  1.42M|        OJPH_INFO(0x00050111, "Trying to access quantization step size for "
  ------------------
  |  |  285|  1.42M|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|  1.42M|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1.42M, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1725|  1.42M|          "subband %d when the QCD/QCC marker segment specifies "
 1726|  1.42M|          "quantization step sizes for %d subbands only.  To continue "
 1727|  1.42M|          "decoding, we are using the step size for subband %d, which can "
 1728|  1.42M|          "produce incorrect results",
 1729|  1.42M|          idx + 1, num_subbands, num_subbands - 1);
 1730|  1.42M|        idx = num_subbands - 1;
 1731|  1.42M|      }
 1732|       |
 1733|  3.91M|      int irrev = Sqcd & 0x1F;
 1734|  3.91M|      ui32 num_bits = 0;
 1735|  3.91M|      if (irrev == 0) // reversible; this is (10.22) from the J2K book
  ------------------
  |  Branch (1735:11): [True: 2.78M, False: 1.13M]
  ------------------
 1736|  2.78M|      {
 1737|  2.78M|        num_bits = decode_SPqcd(SPqcd.u8[idx]);
 1738|  2.78M|        num_bits = num_bits == 0 ? 0 : num_bits - 1;
  ------------------
  |  Branch (1738:20): [True: 1.35M, False: 1.43M]
  ------------------
 1739|  2.78M|      }
 1740|  1.13M|      else if (irrev == 1)
  ------------------
  |  Branch (1740:16): [True: 0, False: 1.13M]
  ------------------
 1741|  1.13M|        assert(0);
 1742|  1.13M|      else if (irrev == 2) //scalar expounded
  ------------------
  |  Branch (1742:16): [True: 1.13M, False: 0]
  ------------------
 1743|  1.13M|        num_bits = (SPqcd.u16[idx] >> 11) - 1;
 1744|      0|      else
 1745|  1.13M|        assert(0);
 1746|       |
 1747|  3.91M|      return num_bits + get_num_guard_bits();
 1748|  3.91M|    }
_ZNK4ojph5local9param_qcd16get_largest_KmaxEv:
 1752|  6.84M|    {
 1753|  6.84M|      int irrev = Sqcd & 0x1F;
 1754|  6.84M|      ui32 num_bits = 0;
 1755|  6.84M|      if (irrev == 0) // reversible; this is (10.22) from the J2K book
  ------------------
  |  Branch (1755:11): [True: 4.64M, False: 2.19M]
  ------------------
 1756|  4.64M|      {
 1757|  74.8M|        for (ui32 i = 0; i < num_subbands; ++i) {
  ------------------
  |  Branch (1757:26): [True: 70.2M, False: 4.64M]
  ------------------
 1758|  70.2M|          ui32 t = decode_SPqcd(SPqcd.u8[i]);
 1759|  70.2M|          num_bits = ojph_max(num_bits, t == 0 ? 0 : t - 1);
  ------------------
  |  |   73|   140M|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 54.7M, False: 15.4M]
  |  |  |  Branch (73:33): [True: 40.9M, False: 29.2M]
  |  |  |  Branch (73:46): [True: 395k, False: 15.0M]
  |  |  ------------------
  ------------------
 1760|  70.2M|        }
 1761|  4.64M|      }
 1762|  2.19M|      else if (irrev == 1)
  ------------------
  |  Branch (1762:16): [True: 0, False: 2.19M]
  ------------------
 1763|  2.19M|        assert(0);
 1764|  2.19M|      else if (irrev == 2) //scalar expounded
  ------------------
  |  Branch (1764:16): [True: 2.19M, False: 0]
  ------------------
 1765|  2.19M|      {
 1766|  20.1M|        for (ui32 i = 0; i < num_subbands; ++i) {
  ------------------
  |  Branch (1766:26): [True: 17.9M, False: 2.19M]
  ------------------
 1767|  17.9M|          ui32 t = (SPqcd.u16[i] >> 11) - 1;
 1768|  17.9M|          num_bits = ojph_max(num_bits, t);
  ------------------
  |  |   73|  17.9M|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 6.38M, False: 11.5M]
  |  |  ------------------
  ------------------
 1769|  17.9M|        }
 1770|  2.19M|      }
 1771|      0|      else
 1772|  2.19M|        assert(0);
 1773|       |
 1774|  6.84M|      return num_bits + get_num_guard_bits();
 1775|  6.84M|    }
_ZN4ojph5local9param_qcd4readEPNS_11infile_baseE:
 1904|  6.50k|    {
 1905|  6.50k|      if (file->read(&Lqcd, 2) != 2)
  ------------------
  |  Branch (1905:11): [True: 7, False: 6.50k]
  ------------------
 1906|      7|        OJPH_ERROR(0x00050081, "error reading QCD marker");
  ------------------
  |  |  289|      7|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      7|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 7, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1907|  6.50k|      Lqcd = swap_bytes_if_le(Lqcd);
 1908|  6.50k|      if (file->read(&Sqcd, 1) != 1)
  ------------------
  |  Branch (1908:11): [True: 5, False: 6.50k]
  ------------------
 1909|      5|        OJPH_ERROR(0x00050082, "error reading QCD marker");
  ------------------
  |  |  289|      5|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      5|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 5, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1910|  6.50k|      if ((Sqcd & 0x1F) == 0)
  ------------------
  |  Branch (1910:11): [True: 4.73k, False: 1.77k]
  ------------------
 1911|  4.73k|      {
 1912|  4.73k|        num_subbands = (Lqcd - 3);
 1913|  4.73k|        if (num_subbands == 0)
  ------------------
  |  Branch (1913:13): [True: 1, False: 4.73k]
  ------------------
 1914|      1|          OJPH_ERROR(0x0005008A, "QCD marker segment that specifies no "
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1915|  4.73k|            "quantization informtion");
 1916|  4.73k|        if (num_subbands > 97 || Lqcd != 3 + num_subbands)
  ------------------
  |  Branch (1916:13): [True: 16, False: 4.71k]
  |  Branch (1916:34): [True: 0, False: 4.71k]
  ------------------
 1917|     15|          OJPH_ERROR(0x00050083, "wrong Lqcd value of %d in QCD marker", Lqcd);
  ------------------
  |  |  289|     15|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     15|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 15, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1918|  59.0k|        for (ui32 i = 0; i < num_subbands; ++i)
  ------------------
  |  Branch (1918:26): [True: 54.3k, False: 4.73k]
  ------------------
 1919|  54.3k|          if (file->read(&SPqcd.u8[i], 1) != 1)
  ------------------
  |  Branch (1919:15): [True: 19, False: 54.2k]
  ------------------
 1920|     19|            OJPH_ERROR(0x00050084, "error reading QCD marker");
  ------------------
  |  |  289|     19|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     19|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 19, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1921|  4.73k|      }
 1922|  1.77k|      else if ((Sqcd & 0x1F) == 1)
  ------------------
  |  Branch (1922:16): [True: 1, False: 1.77k]
  ------------------
 1923|      1|      {
 1924|      1|        num_subbands = 0;
 1925|      1|        OJPH_ERROR(0x00050089,
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1926|      1|          "Scalar derived quantization is not supported yet in QCD marker");
 1927|      1|        if (Lqcd != 5)
  ------------------
  |  Branch (1927:13): [True: 0, False: 1]
  ------------------
 1928|      0|          OJPH_ERROR(0x00050085, "wrong Lqcd value in QCD marker");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1929|      1|      }
 1930|  1.77k|      else if ((Sqcd & 0x1F) == 2)
  ------------------
  |  Branch (1930:16): [True: 1.75k, False: 21]
  ------------------
 1931|  1.75k|      {
 1932|  1.75k|        num_subbands = (Lqcd - 3) / 2;
 1933|  1.75k|        if (num_subbands == 0)
  ------------------
  |  Branch (1933:13): [True: 1, False: 1.75k]
  ------------------
 1934|      1|          OJPH_ERROR(0x0005008B, "QCD marker segment that specifies no "
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1935|  1.75k|            "quantization informtion");
 1936|  1.75k|        if (num_subbands > 97 || Lqcd != 3 + 2 * num_subbands)
  ------------------
  |  Branch (1936:13): [True: 11, False: 1.74k]
  |  Branch (1936:34): [True: 2, False: 1.74k]
  ------------------
 1937|     12|          OJPH_ERROR(0x00050086, "wrong Lqcd value of %d in QCD marker", Lqcd);
  ------------------
  |  |  289|     12|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     12|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1938|  11.4k|        for (ui32 i = 0; i < num_subbands; ++i)
  ------------------
  |  Branch (1938:26): [True: 9.70k, False: 1.75k]
  ------------------
 1939|  9.70k|        {
 1940|  9.70k|          if (file->read(&SPqcd.u16[i], 2) != 2)
  ------------------
  |  Branch (1940:15): [True: 11, False: 9.69k]
  ------------------
 1941|     11|            OJPH_ERROR(0x00050087, "error reading QCD marker");
  ------------------
  |  |  289|     11|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     11|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 11, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1942|  9.70k|          SPqcd.u16[i] = swap_bytes_if_le(SPqcd.u16[i]);
 1943|  9.70k|        }
 1944|  1.75k|      }
 1945|     21|      else
 1946|     21|        OJPH_ERROR(0x00050088, "wrong Sqcd value in QCD marker");
  ------------------
  |  |  289|     21|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     21|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 9, False: 12]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1947|  6.50k|    }
_ZN4ojph5local9param_qcd8read_qccEPNS_11infile_baseEj:
 1951|    269|    {
 1952|    269|      if (file->read(&Lqcd, 2) != 2)
  ------------------
  |  Branch (1952:11): [True: 3, False: 266]
  ------------------
 1953|      3|        OJPH_ERROR(0x000500A1, "error reading QCC marker");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1954|    269|      Lqcd = swap_bytes_if_le(Lqcd);
 1955|    269|      if (num_comps < 257)
  ------------------
  |  Branch (1955:11): [True: 219, False: 50]
  ------------------
 1956|    219|      {
 1957|    219|        ui8 v;
 1958|    219|        if (file->read(&v, 1) != 1)
  ------------------
  |  Branch (1958:13): [True: 7, False: 212]
  ------------------
 1959|      7|          OJPH_ERROR(0x000500A2, "error reading QCC marker");
  ------------------
  |  |  289|      7|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      7|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 7, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1960|    219|        comp_idx = v;
 1961|    219|      }
 1962|     50|      else
 1963|     50|      {
 1964|     50|        if (file->read(&comp_idx, 2) != 2)
  ------------------
  |  Branch (1964:13): [True: 0, False: 50]
  ------------------
 1965|      0|          OJPH_ERROR(0x000500A3, "error reading QCC marker");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1966|     50|        comp_idx = swap_bytes_if_le(comp_idx);
 1967|     50|      }
 1968|    269|      if (file->read(&Sqcd, 1) != 1)
  ------------------
  |  Branch (1968:11): [True: 2, False: 267]
  ------------------
 1969|      2|        OJPH_ERROR(0x000500A4, "error reading QCC marker");
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1970|    269|      ui32 offset = num_comps < 257 ? 4 : 5;
  ------------------
  |  Branch (1970:21): [True: 210, False: 59]
  ------------------
 1971|    269|      if ((Sqcd & 0x1F) == 0)
  ------------------
  |  Branch (1971:11): [True: 153, False: 116]
  ------------------
 1972|    153|      {
 1973|    153|        num_subbands = (Lqcd - offset);
 1974|    153|        if (num_subbands == 0)
  ------------------
  |  Branch (1974:13): [True: 1, False: 152]
  ------------------
 1975|      1|          OJPH_ERROR(0x000500AC, "QCC marker segment that specifies no "
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1976|    153|            "quantization informtion");
 1977|    153|        if (num_subbands > 97 || Lqcd != offset + num_subbands)
  ------------------
  |  Branch (1977:13): [True: 17, False: 136]
  |  Branch (1977:34): [True: 0, False: 136]
  ------------------
 1978|     16|          OJPH_ERROR(0x000500A5, "wrong Lqcd value of %d in QCC marker", Lqcd);
  ------------------
  |  |  289|     16|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     16|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 16, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1979|  2.79k|        for (ui32 i = 0; i < num_subbands; ++i)
  ------------------
  |  Branch (1979:26): [True: 2.63k, False: 153]
  ------------------
 1980|  2.63k|          if (file->read(&SPqcd.u8[i], 1) != 1)
  ------------------
  |  Branch (1980:15): [True: 12, False: 2.62k]
  ------------------
 1981|     12|            OJPH_ERROR(0x000500A6, "error reading QCC marker");
  ------------------
  |  |  289|     12|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     12|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1982|    153|      }
 1983|    116|      else if ((Sqcd & 0x1F) == 1)
  ------------------
  |  Branch (1983:16): [True: 2, False: 114]
  ------------------
 1984|      2|      {
 1985|      2|        num_subbands = 0;
 1986|      2|        OJPH_ERROR(0x000500AB,
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1987|      2|          "Scalar derived quantization is not supported yet in QCC marker");
 1988|      2|        if (Lqcd != offset)
  ------------------
  |  Branch (1988:13): [True: 0, False: 2]
  ------------------
 1989|      0|          OJPH_ERROR(0x000500A7, "wrong Lqcc value in QCC marker");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1990|      2|      }
 1991|    114|      else if ((Sqcd & 0x1F) == 2)
  ------------------
  |  Branch (1991:16): [True: 97, False: 17]
  ------------------
 1992|     97|      {
 1993|     97|        num_subbands = (Lqcd - offset) / 2;
 1994|     97|        if (num_subbands == 0)
  ------------------
  |  Branch (1994:13): [True: 2, False: 95]
  ------------------
 1995|      2|          OJPH_ERROR(0x000500AD, "QCC marker segment that specifies no "
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1996|     97|            "quantization informtion");
 1997|     97|        if (num_subbands > 97 || Lqcd != offset + 2 * num_subbands)
  ------------------
  |  Branch (1997:13): [True: 15, False: 82]
  |  Branch (1997:34): [True: 4, False: 78]
  ------------------
 1998|     17|          OJPH_ERROR(0x000500A8, "wrong Lqcc value of %d in QCC marker", Lqcd);
  ------------------
  |  |  289|     17|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     17|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 17, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1999|  1.38k|        for (ui32 i = 0; i < num_subbands; ++i)
  ------------------
  |  Branch (1999:26): [True: 1.28k, False: 97]
  ------------------
 2000|  1.28k|        {
 2001|  1.28k|          if (file->read(&SPqcd.u16[i], 2) != 2)
  ------------------
  |  Branch (2001:15): [True: 9, False: 1.27k]
  ------------------
 2002|      9|            OJPH_ERROR(0x000500A9, "error reading QCC marker");
  ------------------
  |  |  289|      9|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      9|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 9, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2003|  1.28k|          SPqcd.u16[i] = swap_bytes_if_le(SPqcd.u16[i]);
 2004|  1.28k|        }
 2005|     97|      }
 2006|     17|      else
 2007|     17|        OJPH_ERROR(0x000500AA, "wrong Sqcc value in QCC marker");
  ------------------
  |  |  289|     17|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     17|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 5, False: 12]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2008|    269|    }
_ZN4ojph5local9param_qcd7get_qccEj:
 2039|    188|    {
 2040|       |      // cast object to constant
 2041|    188|      const param_qcd* const_p = const_cast<const param_qcd*>(this);
 2042|       |      // call using the constant object, then cast to non-const
 2043|    188|      return const_cast<param_qcd*>(const_p->get_qcc(comp_idx));
 2044|    188|    }
_ZNK4ojph5local9param_qcd7get_qccEj:
 2048|  6.77M|    {
 2049|  6.77M|      assert(this->type == QCD_MAIN || this->top_qcd->type == QCD_MAIN);
 2050|  6.77M|      const param_qcd *p, *q;
 2051|  6.77M|      if (this->type == QCD_MAIN)
  ------------------
  |  Branch (2051:11): [True: 6.77M, False: 2.25k]
  ------------------
 2052|  6.77M|        q = p = this;
 2053|  2.25k|      else
 2054|  2.25k|        q = p = this->top_qcd;
 2055|  13.5M|      while (p && p->comp_idx != comp_idx)
  ------------------
  |  Branch (2055:14): [True: 6.80M, False: 6.76M]
  |  Branch (2055:19): [True: 6.79M, False: 9.27k]
  ------------------
 2056|  6.79M|        p = p->next;
 2057|  6.77M|      return p ? p : q;
  ------------------
  |  Branch (2057:14): [True: 9.27k, False: 6.76M]
  ------------------
 2058|  6.77M|    }
_ZN4ojph5local9param_qcd14add_qcc_objectEj:
 2062|    269|    {
 2063|    269|      assert(type == QCD_MAIN);
 2064|    269|      param_qcd *p = this;
 2065|    438|      while (p->next != NULL)
  ------------------
  |  Branch (2065:14): [True: 169, False: 269]
  ------------------
 2066|    169|        p = p->next;
 2067|    269|      if (avail)
  ------------------
  |  Branch (2067:11): [True: 0, False: 269]
  ------------------
 2068|      0|      {
 2069|      0|        p->next = avail;
 2070|      0|        avail = avail->next;
 2071|      0|        p->next->init(this, (ui16)comp_idx);
 2072|      0|      }
 2073|    269|      else
 2074|    269|        p->next = new param_qcd(this, (ui16)comp_idx);
 2075|    269|      return p->next;
 2076|    269|    }
_ZNK4ojph5local9param_nlt23get_nonlinear_transformEjRhRbS2_:
 2194|   271k|    {
 2195|   271k|      assert(Cnlt == special_comp_num::ALL_COMPS);
 2196|   271k|      const param_nlt* p = get_nlt_object(comp_num);
 2197|   271k|      p = (p && p->enabled) ? p : this;
  ------------------
  |  Branch (2197:12): [True: 65.4k, False: 205k]
  |  Branch (2197:17): [True: 65.4k, False: 0]
  ------------------
 2198|   271k|      if (p->enabled)
  ------------------
  |  Branch (2198:11): [True: 65.5k, False: 205k]
  ------------------
 2199|  65.5k|      {
 2200|  65.5k|        bit_depth = (ui8)((p->BDnlt & 0x7F) + 1);
 2201|  65.5k|        bit_depth = bit_depth <= 38 ? bit_depth : 38;
  ------------------
  |  Branch (2201:21): [True: 65.5k, False: 7]
  ------------------
 2202|  65.5k|        is_signed = (p->BDnlt & 0x80) == 0x80;
 2203|  65.5k|        nl_type = (nonlinearity)p->Tnlt;
 2204|  65.5k|        return true;
 2205|  65.5k|      }
 2206|   205k|      return false;
 2207|   271k|    }
_ZN4ojph5local9param_nlt4readEPNS_11infile_baseE:
 2239|  1.00k|    {
 2240|  1.00k|      ui16 buf2_len;
 2241|  1.00k|      ui16 buf2_comp;
 2242|  1.00k|      ui8  buf1_BDnlt;
 2243|  1.00k|      ui8  buf1_Tnlt;
 2244|       |
 2245|  1.00k|      if (file->read(&buf2_len, sizeof(ui16)) != sizeof(ui16))
  ------------------
  |  Branch (2245:11): [True: 3, False: 1.00k]
  ------------------
 2246|      3|        OJPH_ERROR(0x00050141, "error reading NLT marker segment");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2247|  1.00k|      if (file->read(&buf2_comp, sizeof(ui16)) != sizeof(ui16))
  ------------------
  |  Branch (2247:11): [True: 9, False: 997]
  ------------------
 2248|      9|        OJPH_ERROR(0x00050142, "error reading NLT marker segment");
  ------------------
  |  |  289|      9|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      9|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 9, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2249|  1.00k|      if (file->read(&buf1_BDnlt, sizeof(ui8)) != sizeof(ui8))
  ------------------
  |  Branch (2249:11): [True: 4, False: 1.00k]
  ------------------
 2250|      4|        OJPH_ERROR(0x00050143, "error reading NLT marker segment");
  ------------------
  |  |  289|      4|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      4|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2251|  1.00k|      if (file->read(&buf1_Tnlt, sizeof(ui8)) != sizeof(ui8))
  ------------------
  |  Branch (2251:11): [True: 5, False: 1.00k]
  ------------------
 2252|      5|        OJPH_ERROR(0x00050144, "error reading NLT marker segment");
  ------------------
  |  |  289|      5|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      5|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 5, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2253|       |
 2254|  1.00k|      ui16 length = swap_bytes_if_le(buf2_len);
 2255|  1.00k|      if (length != 6 || (buf1_Tnlt != 3 && buf1_Tnlt != 0))
  ------------------
  |  Branch (2255:11): [True: 45, False: 961]
  |  Branch (2255:27): [True: 456, False: 505]
  |  Branch (2255:45): [True: 4, False: 452]
  ------------------
 2256|     28|        OJPH_ERROR(0x00050145, "Unsupported NLT type %d\n", buf1_Tnlt);
  ------------------
  |  |  289|     28|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     28|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 28, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2257|       |
 2258|  1.00k|      ui16 comp = swap_bytes_if_le(buf2_comp);
 2259|  1.00k|      param_nlt* p = get_nlt_object(comp);
 2260|  1.00k|      if (p == NULL)
  ------------------
  |  Branch (2260:11): [True: 385, False: 621]
  ------------------
 2261|    385|        p = add_object(comp);
 2262|  1.00k|      p->enabled = true;
 2263|  1.00k|      p->Cnlt = comp;
 2264|  1.00k|      p->BDnlt = buf1_BDnlt;
 2265|  1.00k|      p->Tnlt = buf1_Tnlt;
 2266|  1.00k|    }
_ZN4ojph5local9param_nlt14get_nlt_objectEj:
 2270|    957|    {
 2271|       |      // cast object to constant
 2272|    957|      const param_nlt* const_p = const_cast<const param_nlt*>(this);
 2273|       |      // call using the constant object, then cast to non-const
 2274|    957|      return const_cast<param_nlt*>(const_p->get_nlt_object(comp_num));
 2275|    957|    }
_ZNK4ojph5local9param_nlt14get_nlt_objectEj:
 2279|   272k|    {
 2280|   272k|      const param_nlt* p = this;
 2281|   547k|      while (p && p->Cnlt != comp_num)
  ------------------
  |  Branch (2281:14): [True: 341k, False: 206k]
  |  Branch (2281:19): [True: 275k, False: 66.0k]
  ------------------
 2282|   275k|        p = p->next;
 2283|   272k|      return p;
 2284|   272k|    }
_ZN4ojph5local9param_nlt10add_objectEj:
 2288|    385|    {
 2289|    385|      assert(comp_num != special_comp_num::ALL_COMPS);
 2290|    385|      assert(Cnlt == special_comp_num::ALL_COMPS);
 2291|    385|      param_nlt* p = this;
 2292|  1.11k|      while (p->next != NULL) {
  ------------------
  |  Branch (2292:14): [True: 730, False: 385]
  ------------------
 2293|    730|        assert(p->Cnlt != comp_num);
 2294|    730|        p = p->next;
 2295|    730|      }
 2296|    385|      if (avail)
  ------------------
  |  Branch (2296:11): [True: 0, False: 385]
  ------------------
 2297|      0|      {
 2298|      0|        p->next = avail;
 2299|      0|        avail = avail->next;
 2300|      0|        p->next->init();
 2301|      0|      }
 2302|    385|      else
 2303|    385|        p->next = new param_nlt;
 2304|    385|      p = p->next;
 2305|    385|      p->Cnlt = (ui16)comp_num;
 2306|    385|      return p;
 2307|    385|    }
_ZN4ojph5local9param_sot4readEPNS_11infile_baseEb:
 2391|   206k|    {
 2392|   206k|      if (resilient)
  ------------------
  |  Branch (2392:11): [True: 206k, False: 0]
  ------------------
 2393|   206k|      {
 2394|   206k|        if (file->read(&Lsot, 2) != 2)
  ------------------
  |  Branch (2394:13): [True: 215, False: 206k]
  ------------------
 2395|    215|        {
 2396|    215|          OJPH_INFO(0x00050091, "error reading SOT marker");
  ------------------
  |  |  285|    215|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|    215|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 215, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2397|    215|          Lsot = 0; Isot = 0; Psot = 0; TPsot = 0; TNsot = 0;
 2398|    215|          return false;
 2399|    215|        }
 2400|   206k|        Lsot = swap_bytes_if_le(Lsot);
 2401|   206k|        if (Lsot != 10)
  ------------------
  |  Branch (2401:13): [True: 14.7k, False: 191k]
  ------------------
 2402|  14.7k|        {
 2403|  14.7k|          OJPH_INFO(0x00050092, "error in SOT length");
  ------------------
  |  |  285|  14.7k|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|  14.7k|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 14.7k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2404|  14.7k|          Lsot = 0; Isot = 0; Psot = 0; TPsot = 0; TNsot = 0;
 2405|  14.7k|          return false;
 2406|  14.7k|        }
 2407|   191k|        if (file->read(&Isot, 2) != 2)
  ------------------
  |  Branch (2407:13): [True: 68, False: 191k]
  ------------------
 2408|     68|        {
 2409|     68|          OJPH_INFO(0x00050093, "error reading tile index");
  ------------------
  |  |  285|     68|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     68|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 68, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2410|     68|          Lsot = 0; Isot = 0; Psot = 0; TPsot = 0; TNsot = 0;
 2411|     68|          return false;
 2412|     68|        }
 2413|   191k|        Isot = swap_bytes_if_le(Isot);
 2414|   191k|        if (Isot == 0xFFFF)
  ------------------
  |  Branch (2414:13): [True: 406, False: 191k]
  ------------------
 2415|    406|        {
 2416|    406|          OJPH_INFO(0x00050094, "tile index in SOT marker cannot be 0xFFFF");
  ------------------
  |  |  285|    406|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|    406|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 406, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2417|    406|          Lsot = 0; Isot = 0; Psot = 0; TPsot = 0; TNsot = 0;
 2418|    406|          return false;
 2419|    406|        }
 2420|   191k|        if (file->read(&Psot, 4) != 4)
  ------------------
  |  Branch (2420:13): [True: 76, False: 190k]
  ------------------
 2421|     76|        {
 2422|     76|          OJPH_INFO(0x00050095, "error reading SOT marker");
  ------------------
  |  |  285|     76|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     76|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 76, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2423|     76|          Lsot = 0; Isot = 0; Psot = 0; TPsot = 0; TNsot = 0;
 2424|     76|          return false;
 2425|     76|        }
 2426|   190k|        Psot = swap_bytes_if_le(Psot);
 2427|   190k|        if (file->read(&TPsot, 1) != 1)
  ------------------
  |  Branch (2427:13): [True: 22, False: 190k]
  ------------------
 2428|     22|        {
 2429|     22|          OJPH_INFO(0x00050096, "error reading SOT marker");
  ------------------
  |  |  285|     22|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     22|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 22, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2430|     22|          Lsot = 0; Isot = 0; Psot = 0; TPsot = 0; TNsot = 0;
 2431|     22|          return false;
 2432|     22|        }
 2433|   190k|        if (file->read(&TNsot, 1) != 1)
  ------------------
  |  Branch (2433:13): [True: 28, False: 190k]
  ------------------
 2434|     28|        {
 2435|     28|          OJPH_INFO(0x00050097, "error reading SOT marker");
  ------------------
  |  |  285|     28|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     28|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 28, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2436|     28|          Lsot = 0; Isot = 0; Psot = 0; TPsot = 0; TNsot = 0;
 2437|     28|          return false;
 2438|     28|        }
 2439|   190k|      }
 2440|      0|      else
 2441|      0|      {
 2442|      0|        if (file->read(&Lsot, 2) != 2)
  ------------------
  |  Branch (2442:13): [True: 0, False: 0]
  ------------------
 2443|      0|          OJPH_ERROR(0x00050091, "error reading SOT marker");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2444|      0|        Lsot = swap_bytes_if_le(Lsot);
 2445|      0|        if (Lsot != 10)
  ------------------
  |  Branch (2445:13): [True: 0, False: 0]
  ------------------
 2446|      0|          OJPH_ERROR(0x00050092, "error in SOT length");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2447|      0|        if (file->read(&Isot, 2) != 2)
  ------------------
  |  Branch (2447:13): [True: 0, False: 0]
  ------------------
 2448|      0|          OJPH_ERROR(0x00050093, "error reading SOT tile index");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2449|      0|        Isot = swap_bytes_if_le(Isot);
 2450|      0|        if (Isot == 0xFFFF)
  ------------------
  |  Branch (2450:13): [True: 0, False: 0]
  ------------------
 2451|      0|          OJPH_ERROR(0x00050094, "tile index in SOT marker cannot be 0xFFFF");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2452|      0|        if (file->read(&Psot, 4) != 4)
  ------------------
  |  Branch (2452:13): [True: 0, False: 0]
  ------------------
 2453|      0|          OJPH_ERROR(0x00050095, "error reading SOT marker");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2454|      0|        Psot = swap_bytes_if_le(Psot);
 2455|      0|        if (file->read(&TPsot, 1) != 1)
  ------------------
  |  Branch (2455:13): [True: 0, False: 0]
  ------------------
 2456|      0|          OJPH_ERROR(0x00050096, "error reading SOT marker");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2457|      0|        if (file->read(&TNsot, 1) != 1)
  ------------------
  |  Branch (2457:13): [True: 0, False: 0]
  ------------------
 2458|      0|          OJPH_ERROR(0x00050097, "error reading SOT marker");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2459|      0|      }
 2460|   190k|      return true;
 2461|   206k|    }
_ZNK4ojph5local9param_dfs7get_dfsEi:
 2531|   421k|    {
 2532|   421k|      const param_dfs* p = this;
 2533|   440k|      while (p && p->Sdfs != index)
  ------------------
  |  Branch (2533:14): [True: 440k, False: 4]
  |  Branch (2533:19): [True: 19.5k, False: 421k]
  ------------------
 2534|  19.5k|        p = p->next;
 2535|   421k|      return p;
 2536|   421k|    }
_ZNK4ojph5local9param_dfs12get_dwt_typeEj:
 2540|   755k|    {
 2541|   755k|      decomp_level = ojph_min(decomp_level, Ids);
  ------------------
  |  |   76|   755k|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 724k, False: 30.5k]
  |  |  ------------------
  ------------------
 2542|   755k|      ui32 d = decomp_level - 1;          // decomp_level starts from 1
 2543|   755k|      ui32 idx = d >> 2;                  // complete bytes
 2544|   755k|      ui32 bits = d & 0x3;                // bit within the bytes
 2545|   755k|      ui32 val = (Ddfs[idx] >> (6 - 2 * bits)) & 0x3;
 2546|   755k|      return (dfs_dwt_type)val;
 2547|   755k|    }
_ZNK4ojph5local9param_dfs15get_subband_idxEjjj:
 2552|   246k|    {
 2553|   246k|      assert((resolution == 0 && subband == 0) ||
 2554|   246k|              (resolution > 0 && subband > 0 && subband < 4));
 2555|       |
 2556|   246k|      ui32 ns[4] = { 0, 3, 1, 1 };
 2557|       |
 2558|   246k|      ui32 idx = 0;
 2559|   246k|      if (resolution > 0)
  ------------------
  |  Branch (2559:11): [True: 207k, False: 39.2k]
  ------------------
 2560|   207k|      {
 2561|   207k|        idx = 0;
 2562|   207k|        ui32 i = 1;
 2563|   456k|        for (; i < resolution; ++i)
  ------------------
  |  Branch (2563:16): [True: 248k, False: 207k]
  ------------------
 2564|   248k|          idx += ns[get_dwt_type(num_decompositions - i + 1)];
 2565|   207k|        dfs_dwt_type t = get_dwt_type(num_decompositions - i + 1);
 2566|   207k|        idx += subband;
 2567|   207k|        if (t == VERT_DWT && subband == 2)
  ------------------
  |  Branch (2567:13): [True: 53.5k, False: 153k]
  |  Branch (2567:30): [True: 53.5k, False: 0]
  ------------------
 2568|  53.5k|          --idx;
 2569|   207k|      }
 2570|       |
 2571|   246k|      return idx;
 2572|   246k|    }
_ZNK4ojph5local9param_dfs16get_res_downsampEj:
 2576|  23.0k|    {
 2577|  23.0k|      point factor(1, 1);
 2578|  23.0k|      ui32 decomp_level = 1;
 2579|  57.1k|      while (skipped_resolutions > 0)
  ------------------
  |  Branch (2579:14): [True: 34.0k, False: 23.0k]
  ------------------
 2580|  34.0k|      {
 2581|  34.0k|        param_dfs::dfs_dwt_type type = get_dwt_type(decomp_level);
 2582|  34.0k|        if (type == BIDIR_DWT)
  ------------------
  |  Branch (2582:13): [True: 1.74k, False: 32.2k]
  ------------------
 2583|  1.74k|        { factor.x *= 2; factor.y *= 2; }
 2584|  32.2k|        else if (type == HORZ_DWT)
  ------------------
  |  Branch (2584:18): [True: 3.65k, False: 28.6k]
  ------------------
 2585|  3.65k|          factor.x *= 2;
 2586|  28.6k|        else if (type == VERT_DWT)
  ------------------
  |  Branch (2586:18): [True: 12.1k, False: 16.4k]
  ------------------
 2587|  12.1k|          factor.y *= 2;
 2588|       |
 2589|  34.0k|        ++decomp_level;
 2590|  34.0k|        --skipped_resolutions;
 2591|  34.0k|      }
 2592|  23.0k|      return factor;
 2593|  23.0k|    }
_ZN4ojph5local9param_dfs4readEPNS_11infile_baseE:
 2597|  1.40M|    {
 2598|  1.40M|      if (Ldfs != 0) { // this param_dfs is used
  ------------------
  |  Branch (2598:11): [True: 700k, False: 701k]
  ------------------
 2599|   700k|        param_dfs* p = this;
 2600|  10.4G|        while (p->next != NULL)
  ------------------
  |  Branch (2600:16): [True: 10.4G, False: 700k]
  ------------------
 2601|  10.4G|          p = p->next;
 2602|   700k|        if (avail)
  ------------------
  |  Branch (2602:13): [True: 0, False: 700k]
  ------------------
 2603|      0|        {
 2604|      0|          p->next = avail;
 2605|      0|          avail = avail->next;
 2606|      0|          p->next->init();
 2607|      0|        }
 2608|   700k|        else
 2609|   700k|          p->next = new param_dfs;
 2610|   700k|        p = p->next;
 2611|   700k|        return p->read(file);
 2612|   700k|      }
 2613|       |
 2614|   701k|      if (file->read(&Ldfs, 2) != 2)
  ------------------
  |  Branch (2614:11): [True: 11, False: 701k]
  ------------------
 2615|     11|        OJPH_ERROR(0x000500D1, "error reading DFS-Ldfs parameter");
  ------------------
  |  |  289|     11|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     11|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 11, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2616|   701k|      Ldfs = swap_bytes_if_le(Ldfs);
 2617|   701k|      if (file->read(&Sdfs, 2) != 2)
  ------------------
  |  Branch (2617:11): [True: 3, False: 701k]
  ------------------
 2618|      3|        OJPH_ERROR(0x000500D2, "error reading DFS-Sdfs parameter");
  ------------------
  |  |  289|      3|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      3|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 3, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2619|   701k|      Sdfs = swap_bytes_if_le(Sdfs);
 2620|   701k|      if (Sdfs > 15)
  ------------------
  |  Branch (2620:11): [True: 22, False: 701k]
  ------------------
 2621|     22|        OJPH_ERROR(0x000500D3, "The DFS-Sdfs parameter is %d, which is "
  ------------------
  |  |  289|     22|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     22|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 22, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2622|   701k|          "larger than the permissible 15", Sdfs);
 2623|   701k|      ui8 t, l_Ids = 0;
 2624|   701k|      if (file->read(&l_Ids, 1) != 1)
  ------------------
  |  Branch (2624:11): [True: 4, False: 701k]
  ------------------
 2625|      4|        OJPH_ERROR(0x000500D4, "error reading DFS-Ids parameter");
  ------------------
  |  |  289|      4|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      4|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2626|   701k|      if (l_Ids == 0)
  ------------------
  |  Branch (2626:11): [True: 9, False: 701k]
  ------------------
 2627|      9|        OJPH_ERROR(0x000500D8,
  ------------------
  |  |  289|      9|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      9|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 9, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2628|   701k|          "The value of the Ids member in the DFS marker segment cannot be 0");
 2629|   701k|      constexpr int max_Ddfs = sizeof(Ddfs) * 4;
 2630|   701k|      if (l_Ids > max_Ddfs)
  ------------------
  |  Branch (2630:11): [True: 22.0k, False: 679k]
  ------------------
 2631|  22.0k|        OJPH_INFO(0x000500D5, "The DFS-Ids parameter is %d; while this is "
  ------------------
  |  |  285|  22.0k|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|  22.0k|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 22.0k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2632|   701k|          "valid, the number is unnessarily large -- you do not need more "
 2633|   701k|          "than %d.  Please contact me regarding this issue.",
 2634|   701k|          l_Ids, max_Ddfs);
 2635|   701k|      Ids = l_Ids < max_Ddfs ? l_Ids : max_Ddfs;
  ------------------
  |  Branch (2635:13): [True: 679k, False: 22.1k]
  ------------------
 2636|  2.70M|      for (int i = 0; i < Ids; i += 4)
  ------------------
  |  Branch (2636:23): [True: 2.00M, False: 701k]
  ------------------
 2637|  2.00M|        if (file->read(&Ddfs[i / 4], 1) != 1)
  ------------------
  |  Branch (2637:13): [True: 26, False: 2.00M]
  ------------------
 2638|     26|          OJPH_ERROR(0x000500D6, "error reading DFS-Ddfs parameters");
  ------------------
  |  |  289|   701k|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     26|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 26, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2639|   762k|      for (int i = Ids; i < l_Ids; i += 4)
  ------------------
  |  Branch (2639:25): [True: 61.6k, False: 701k]
  ------------------
 2640|  61.6k|        if (file->read(&t, 1) != 1)
  ------------------
  |  Branch (2640:13): [True: 14, False: 61.6k]
  ------------------
 2641|     14|          OJPH_ERROR(0x000500D7, "error reading DFS-Ddfs parameters");
  ------------------
  |  |  289|   701k|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     14|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 14, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2642|   701k|      return true;
 2643|  1.40M|    }
_ZN4ojph5local9param_atk7get_atkEi:
 2655|  6.13k|    {
 2656|  6.13k|      assert(top_atk == NULL);
 2657|       |
 2658|  6.13k|      if (Latk == 0)
  ------------------
  |  Branch (2658:11): [True: 5.28k, False: 853]
  ------------------
 2659|  5.28k|      {
 2660|       |        // This atk object is not used, initialize it to either 0 (irv97)
 2661|       |        // or 1 (rev53), and use it.  If index is not 0 nor 1, then index
 2662|       |        // must have been read from file previously, otherwise it is an
 2663|       |        // error.
 2664|  5.28k|        if (index == 0) { this->init_irv97(); return this; }
  ------------------
  |  Branch (2664:13): [True: 1.20k, False: 4.08k]
  ------------------
 2665|  4.08k|        else if (index == 1) { this->init_rev53(); return this; }
  ------------------
  |  Branch (2665:18): [True: 4.07k, False: 8]
  ------------------
 2666|  5.28k|      }
 2667|       |
 2668|    861|      param_atk* p = this;
 2669|  1.78k|      while (p && p->get_index() != index)
  ------------------
  |  Branch (2669:14): [True: 1.36k, False: 414]
  |  Branch (2669:19): [True: 921, False: 447]
  ------------------
 2670|    921|        p = p->next;
 2671|       |
 2672|    861|      if (p == NULL && (index == 0 || index == 1))
  ------------------
  |  Branch (2672:11): [True: 414, False: 447]
  |  Branch (2672:25): [True: 100, False: 314]
  |  Branch (2672:39): [True: 158, False: 156]
  ------------------
 2673|    258|      {
 2674|       |        // The index was not found, add an atk object only if the index is
 2675|       |        // either 0 or 1
 2676|    258|        p = add_object();
 2677|    258|        if (index == 0)
  ------------------
  |  Branch (2677:13): [True: 100, False: 158]
  ------------------
 2678|    100|          p->init_irv97();
 2679|    158|        else if (index == 1)
  ------------------
  |  Branch (2679:18): [True: 158, False: 0]
  ------------------
 2680|    158|          p->init_rev53();
 2681|    258|      }
 2682|       |
 2683|    861|      return p;
 2684|  6.13k|    }
_ZN4ojph5local9param_atk16read_coefficientEPNS_11infile_baseERfRi:
 2688|  1.48k|    {
 2689|  1.48k|      int coeff_type = get_coeff_type();
 2690|  1.48k|      if (coeff_type == 0) { // 8bit
  ------------------
  |  Branch (2690:11): [True: 306, False: 1.18k]
  ------------------
 2691|    306|        ui8 v;
 2692|    306|        if (file->read(&v, 1) != 1) return false;
  ------------------
  |  Branch (2692:13): [True: 3, False: 303]
  ------------------
 2693|    303|        bytes -= 1;
 2694|    303|        K = v;
 2695|    303|      }
 2696|  1.18k|      else if (coeff_type == 1) { // 16bit
  ------------------
  |  Branch (2696:16): [True: 103, False: 1.08k]
  ------------------
 2697|    103|        ui16 v;
 2698|    103|        if (file->read(&v, 2) != 2) return false;
  ------------------
  |  Branch (2698:13): [True: 6, False: 97]
  ------------------
 2699|     97|        bytes -= 2;
 2700|     97|        K = swap_bytes_if_le(v);
 2701|     97|      }
 2702|  1.08k|      else if (coeff_type == 2) { // float
  ------------------
  |  Branch (2702:16): [True: 280, False: 800]
  ------------------
 2703|    280|        ui32 i;
 2704|    280|        if (file->read(&i, sizeof(ui32)) != sizeof(ui32)) return false;
  ------------------
  |  Branch (2704:13): [True: 5, False: 275]
  ------------------
 2705|    275|        bytes -= 4;
 2706|    275|        i = swap_bytes_if_le(i);
 2707|    275|        float f;
 2708|    275|        memcpy(&f, &i, sizeof(float));
 2709|    275|        K = f;
 2710|    275|      }
 2711|    800|      else if (coeff_type == 3) { // double
  ------------------
  |  Branch (2711:16): [True: 305, False: 495]
  ------------------
 2712|    305|        ui64 i;
 2713|    305|        if (file->read(&i, sizeof(ui64)) != sizeof(ui64)) return false;
  ------------------
  |  Branch (2713:13): [True: 9, False: 296]
  ------------------
 2714|    296|        bytes -= 8;
 2715|    296|        i = swap_bytes_if_le(i);
 2716|    296|        double d;
 2717|    296|        memcpy(&d, &i, sizeof(double));
 2718|    296|        K = (float)d;
 2719|    296|      }
 2720|    495|      else if (coeff_type == 4) { // 128 bit float
  ------------------
  |  Branch (2720:16): [True: 215, False: 280]
  ------------------
 2721|    215|        ui64 v, v1;
 2722|    215|        if (file->read(&v, 8) != 8) return false;
  ------------------
  |  Branch (2722:13): [True: 4, False: 211]
  ------------------
 2723|    211|        bytes -= 8;
 2724|    211|        if (file->read(&v1, 8) != 8) return false; // v1 not needed
  ------------------
  |  Branch (2724:13): [True: 5, False: 206]
  ------------------
 2725|    206|        bytes -= 8;
 2726|    206|        v = swap_bytes_if_le(v);
 2727|       |
 2728|       |        // convert the MSB of 128b float to 32b float
 2729|       |        // 32b float has 1 sign bit, 8 exponent (offset 127), 23 mantissa
 2730|       |        // 128b float has 1 sign bit, 15 exponent (offset 16383), 112 mantissa
 2731|    206|        si32 e = (si32)((v >> 48) & 0x7FFF);   // exponent
 2732|    206|        e -= 16383;
 2733|    206|        e += 127;
 2734|    206|        e = e & 0xFF;                          // removes MSBs if negative
 2735|    206|        e <<= 23;                              // move bits to their location
 2736|    206|        ui32 i = 0;
 2737|    206|        i |= ((ui32)(v >> 32) & 0x80000000); // copy sign bit
 2738|    206|        i |= (ui32)e;                        // copy exponent
 2739|    206|        i |= (ui32)((v >> 25) & 0x007FFFFF); // copy 23 mantissa
 2740|    206|        float f;
 2741|    206|        memcpy(&f, &i, sizeof(float));
 2742|    206|        K = f;
 2743|    206|      }
 2744|  1.45k|      return true;
 2745|  1.48k|    }
_ZN4ojph5local9param_atk16read_coefficientEPNS_11infile_baseERsRi:
 2750|    450|    {
 2751|    450|      int coeff_type = get_coeff_type();
 2752|    450|      if (coeff_type == 0) {
  ------------------
  |  Branch (2752:11): [True: 358, False: 92]
  ------------------
 2753|    358|        si8 v;
 2754|    358|        if (file->read(&v, 1) != 1) return false;
  ------------------
  |  Branch (2754:13): [True: 2, False: 356]
  ------------------
 2755|    356|        bytes -= 1;
 2756|    356|        K = v;
 2757|    356|      }
 2758|     92|      else if (coeff_type == 1) {
  ------------------
  |  Branch (2758:16): [True: 92, False: 0]
  ------------------
 2759|     92|        si16 v;
 2760|     92|        if (file->read(&v, 2) != 2) return false;
  ------------------
  |  Branch (2760:13): [True: 3, False: 89]
  ------------------
 2761|     89|        bytes -= 2;
 2762|     89|        K = (si16)swap_bytes_if_le((ui16)v);
 2763|     89|      }
 2764|      0|      else
 2765|      0|        return false;
 2766|    445|      return true;
 2767|    450|    }
_ZN4ojph5local9param_atk4readEPNS_11infile_baseE:
 2771|    567|    {
 2772|    567|      if (Latk != 0) // this param_atk is used
  ------------------
  |  Branch (2772:11): [True: 158, False: 409]
  ------------------
 2773|    158|        return add_object()->read(file);
 2774|       |
 2775|    409|      if (file->read(&Latk, 2) != 2)
  ------------------
  |  Branch (2775:11): [True: 4, False: 405]
  ------------------
 2776|      4|        OJPH_ERROR(0x000500E1, "error reading ATK-Latk parameter");
  ------------------
  |  |  289|      4|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      4|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2777|    409|      Latk = swap_bytes_if_le(Latk);
 2778|    409|      si32 bytes = Latk - 2;
 2779|    409|      ojph::ui16 temp_Satk;
 2780|    409|      if (file->read(&temp_Satk, 2) != 2)
  ------------------
  |  Branch (2780:11): [True: 2, False: 407]
  ------------------
 2781|      2|        OJPH_ERROR(0x000500E2, "error reading ATK-Satk parameter");
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2782|    409|      bytes -= 2;
 2783|    409|      temp_Satk = swap_bytes_if_le(temp_Satk);
 2784|    409|      int tmp_idx = temp_Satk & 0xFF;
 2785|    409|      if ((top_atk && top_atk->get_atk(tmp_idx) != NULL)
  ------------------
  |  Branch (2785:12): [True: 155, False: 254]
  |  Branch (2785:23): [True: 9, False: 146]
  ------------------
 2786|    394|        || tmp_idx == 0 || tmp_idx == 1)
  ------------------
  |  Branch (2786:12): [True: 1, False: 393]
  |  Branch (2786:28): [True: 1, False: 392]
  ------------------
 2787|     11|        OJPH_ERROR(0x000500F3, "ATK-Satk parameter sets ATK marker index to "
  ------------------
  |  |  289|     11|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     11|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 11, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2788|    409|          "the illegal value of %d. ATK-Satk should be in (2-255) and, I "
 2789|    409|          "believe, must not be repeated; otherwise, it would be unclear "
 2790|    409|          "what marker segment must be employed when an index is repeated.",
 2791|    409|          tmp_idx);
 2792|    409|      Satk = temp_Satk;
 2793|    409|      if (is_m_init0() == false)  // only even-indexed is supported
  ------------------
  |  Branch (2793:11): [True: 1, False: 408]
  ------------------
 2794|      1|        OJPH_ERROR(0x000500E3, "ATK-Satk parameter sets m_init to 1, "
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2795|    409|          "requiring odd-indexed subsequence in first reconstruction step, "
 2796|    409|          "which is not supported yet.");
 2797|    409|      if (is_whole_sample() == false)  // ARB filter not supported
  ------------------
  |  Branch (2797:11): [True: 10, False: 399]
  ------------------
 2798|     10|        OJPH_ERROR(0x000500E4, "ATK-Satk parameter specified ARB filter, "
  ------------------
  |  |  289|     10|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     10|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 10, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2799|    409|          "which is not supported yet.");
 2800|    409|      if (is_reversible() && get_coeff_type() >= 2) // reversible & float
  ------------------
  |  Branch (2800:11): [True: 149, False: 260]
  |  Branch (2800:30): [True: 2, False: 147]
  ------------------
 2801|      2|        OJPH_ERROR(0x000500E5, "ATK-Satk parameter does not make sense. "
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2802|    409|          "It employs floats with reversible filtering.");
 2803|    409|      if (is_using_ws_extension() == false)  // only sym. ext is supported
  ------------------
  |  Branch (2803:11): [True: 1, False: 408]
  ------------------
 2804|      1|        OJPH_ERROR(0x000500E6, "ATK-Satk parameter requires constant "
  ------------------
  |  |  289|      1|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2805|    409|          "boundary extension, which is not supported yet.");
 2806|    409|      if (is_reversible() == false)
  ------------------
  |  Branch (2806:11): [True: 231, False: 178]
  ------------------
 2807|    231|        if (read_coefficient(file, Katk, bytes) == false)
  ------------------
  |  Branch (2807:13): [True: 14, False: 217]
  ------------------
 2808|     14|          OJPH_ERROR(0x000500E7, "error reading ATK-Katk parameter");
  ------------------
  |  |  289|     14|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     14|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 14, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2809|    409|      if (file->read(&Natk, 1) != 1)
  ------------------
  |  Branch (2809:11): [True: 11, False: 398]
  ------------------
 2810|     11|        OJPH_ERROR(0x000500E8, "error reading ATK-Natk parameter");
  ------------------
  |  |  289|     11|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     11|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 11, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2811|    409|      bytes -= 1;
 2812|    409|      if (Natk > max_steps) {
  ------------------
  |  Branch (2812:11): [True: 85, False: 324]
  ------------------
 2813|     85|        if (d != d_store) // was this allocated -- very unlikely
  ------------------
  |  Branch (2813:13): [True: 0, False: 85]
  ------------------
 2814|      0|          delete[] d;
 2815|     85|        d = new lifting_step[Natk];
 2816|     85|        max_steps = Natk;
 2817|     85|      }
 2818|       |
 2819|    409|      if (is_reversible())
  ------------------
  |  Branch (2819:11): [True: 145, False: 264]
  ------------------
 2820|    145|      {
 2821|    627|        for (int s = 0; s < Natk; ++s)
  ------------------
  |  Branch (2821:25): [True: 482, False: 145]
  ------------------
 2822|    482|        {
 2823|    482|          if (file->read(&d[s].rev.Eatk, 1) != 1)
  ------------------
  |  Branch (2823:15): [True: 9, False: 473]
  ------------------
 2824|      9|            OJPH_ERROR(0x000500E9, "error reading ATK-Eatk parameter");
  ------------------
  |  |  289|      9|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      9|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 9, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2825|    482|          bytes -= 1;
 2826|    482|          if (file->read(&d[s].rev.Batk, 2) != 2)
  ------------------
  |  Branch (2826:15): [True: 8, False: 474]
  ------------------
 2827|      8|            OJPH_ERROR(0x000500EA, "error reading ATK-Batk parameter");
  ------------------
  |  |  289|      8|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      8|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2828|    482|          bytes -= 2;
 2829|    482|          d[s].rev.Batk = (si16)swap_bytes_if_le((ui16)d[s].rev.Batk);
 2830|    482|          ui8 LCatk;
 2831|    482|          if (file->read(&LCatk, 1) != 1)
  ------------------
  |  Branch (2831:15): [True: 5, False: 477]
  ------------------
 2832|      5|            OJPH_ERROR(0x000500EB, "error reading ATK-LCatk parameter");
  ------------------
  |  |  289|      5|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      5|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 5, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2833|    482|          bytes -= 1;
 2834|    482|          if (LCatk == 0)
  ------------------
  |  Branch (2834:15): [True: 2, False: 480]
  ------------------
 2835|      2|            OJPH_ERROR(0x000500EC, "Encountered a ATK-LCatk value of zero; "
  ------------------
  |  |  289|      2|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      2|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2836|    482|              "something is wrong.");
 2837|    482|          if (LCatk > 1)
  ------------------
  |  Branch (2837:15): [True: 8, False: 474]
  ------------------
 2838|      8|            OJPH_ERROR(0x000500ED, "ATK-LCatk value greater than 1; "
  ------------------
  |  |  289|      8|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      8|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2839|    482|              "that is, a multitap filter is not supported");
 2840|    482|          if (read_coefficient(file, d[s].rev.Aatk, bytes) == false)
  ------------------
  |  Branch (2840:15): [True: 5, False: 477]
  ------------------
 2841|      5|            OJPH_ERROR(0x000500EE, "Error reding ATK-Aatk parameter");
  ------------------
  |  |  289|      5|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      5|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 5, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2842|    482|        }
 2843|    145|      }
 2844|    264|      else
 2845|    264|      {
 2846|  1.56k|        for (int s = 0; s < Natk; ++s)
  ------------------
  |  Branch (2846:25): [True: 1.30k, False: 264]
  ------------------
 2847|  1.30k|        {
 2848|  1.30k|          ui8 LCatk;
 2849|  1.30k|          if (file->read(&LCatk, 1) != 1)
  ------------------
  |  Branch (2849:15): [True: 19, False: 1.28k]
  ------------------
 2850|     19|            OJPH_ERROR(0x000500EF, "error reading ATK-LCatk parameter");
  ------------------
  |  |  289|     19|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     19|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 19, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2851|  1.30k|          bytes -= 1;
 2852|  1.30k|          if (LCatk == 0)
  ------------------
  |  Branch (2852:15): [True: 5, False: 1.29k]
  ------------------
 2853|      5|            OJPH_ERROR(0x000500F0, "Encountered a ATK-LCatk value of zero; "
  ------------------
  |  |  289|      5|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      5|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 5, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2854|  1.30k|              "something is wrong.");
 2855|  1.30k|          if (LCatk > 1)
  ------------------
  |  Branch (2855:15): [True: 20, False: 1.28k]
  ------------------
 2856|     20|            OJPH_ERROR(0x000500F1, "ATK-LCatk value greater than 1; "
  ------------------
  |  |  289|     20|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     20|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 20, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2857|  1.30k|              "that is, a multitap filter is not supported.");
 2858|  1.30k|          if (read_coefficient(file, d[s].irv.Aatk, bytes) == false)
  ------------------
  |  Branch (2858:15): [True: 18, False: 1.28k]
  ------------------
 2859|     18|            OJPH_ERROR(0x000500F2, "Error reding ATK-Aatk parameter");
  ------------------
  |  |  289|     18|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     18|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 18, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2860|  1.30k|        }
 2861|    264|      }
 2862|    409|      if (bytes != 0)
  ------------------
  |  Branch (2862:11): [True: 18, False: 391]
  ------------------
 2863|     18|        OJPH_ERROR(0x000500F3, "The length of an ATK marker segment "
  ------------------
  |  |  289|     18|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     18|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 18, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2864|    409|          "(ATK-Latk) is not correct");
 2865|       |
 2866|    409|      return true;
 2867|    567|    }
_ZN4ojph5local9param_atk10init_irv97Ev:
 2871|  1.30k|    {
 2872|  1.30k|      Satk = 0x4a00;     // illegal because ATK = 0
 2873|  1.30k|      Katk = (float)1.230174104914001;
 2874|  1.30k|      Natk = 4;
 2875|       |      // next is (A-4) in T.801 second line
 2876|  1.30k|      Latk = (ui16)(5 + Natk + sizeof(float) * (1 + Natk));
 2877|  1.30k|      d[0].irv.Aatk = (float)0.443506852043971;
 2878|  1.30k|      d[1].irv.Aatk = (float)0.882911075530934;
 2879|  1.30k|      d[2].irv.Aatk = (float)-0.052980118572961;
 2880|  1.30k|      d[3].irv.Aatk = (float)-1.586134342059924;
 2881|  1.30k|    }
_ZN4ojph5local9param_atk10init_rev53Ev:
 2885|  4.23k|    {
 2886|  4.23k|      Satk = 0x5801;     // illegal because ATK = 1
 2887|  4.23k|      Natk = 2;
 2888|       |      // next is (A-4) in T.801 fourth line
 2889|  4.23k|      Latk = (ui16)(5 + 2 * Natk + sizeof(ui8) * (Natk + Natk));
 2890|  4.23k|      d[0].rev.Aatk = 1;
 2891|  4.23k|      d[0].rev.Batk = 2;
 2892|  4.23k|      d[0].rev.Eatk = 2;
 2893|  4.23k|      d[1].rev.Aatk = -1;
 2894|  4.23k|      d[1].rev.Batk = 1;
 2895|  4.23k|      d[1].rev.Eatk = 1;
 2896|  4.23k|    }
_ZN4ojph5local9param_atk10add_objectEv:
 2900|    416|    {
 2901|    416|      assert(top_atk == NULL);
 2902|    416|      param_atk *p = this;
 2903|    773|      while (p->next != NULL)
  ------------------
  |  Branch (2903:14): [True: 357, False: 416]
  ------------------
 2904|    357|        p = p->next;
 2905|    416|      if (avail)
  ------------------
  |  Branch (2905:11): [True: 0, False: 416]
  ------------------
 2906|      0|      {
 2907|      0|        p->next = avail;
 2908|      0|        avail = avail->next;
 2909|      0|      }
 2910|    416|      else
 2911|    416|        p->next = new param_atk;
 2912|    416|      p = p->next;
 2913|    416|      p->init(this);
 2914|    416|      return p;
 2915|    416|    }

_ZN4ojph5local9param_sizC2Ev:
  177|  6.74k|      param_siz() { init(); }
_ZN4ojph5local9param_sizD2Ev:
  178|  6.74k|      ~param_siz() { destroy(); }
_ZN4ojph5local9param_siz4initEv:
  181|  6.74k|      {
  182|  6.74k|        Lsiz = Csiz = 0;
  183|  6.74k|        Xsiz = Ysiz = XOsiz = YOsiz = XTsiz = YTsiz = XTOsiz = YTOsiz = 0;
  184|  6.74k|        skipped_resolutions = 0;
  185|  6.74k|        memset(store, 0, sizeof(store));
  186|  6.74k|        ws_kern_support_needed = dfs_support_needed = false;
  187|  6.74k|        cod = NULL;
  188|       |        dfs = NULL;
  189|  6.74k|        Rsiz = RSIZ_HT_FLAG;
  190|  6.74k|        cptr = store;
  191|  6.74k|        old_Csiz = sizeof(store) / sizeof(siz_comp_info);
  192|  6.74k|      }
_ZN4ojph5local9param_siz7destroyEv:
  195|  6.74k|      { if (cptr != store) { delete[] cptr; cptr = NULL; } }
  ------------------
  |  Branch (195:13): [True: 153, False: 6.59k]
  ------------------
_ZN4ojph5local9param_siz18set_num_componentsEj:
  198|  6.52k|      {
  199|  6.52k|        Csiz = (ui16)num_comps;
  200|  6.52k|        if (Csiz > old_Csiz)
  ------------------
  |  Branch (200:13): [True: 153, False: 6.37k]
  ------------------
  201|    153|        {
  202|    153|          if (cptr != store)
  ------------------
  |  Branch (202:15): [True: 0, False: 153]
  ------------------
  203|      0|            delete[] cptr;
  204|    153|          cptr = new siz_comp_info[num_comps];
  205|    153|          old_Csiz = Csiz;
  206|    153|        }
  207|  6.52k|        memset(cptr, 0, sizeof(local::siz_comp_info) * num_comps);
  208|  6.52k|      }
_ZN4ojph5local9param_siz13set_tile_sizeENS_4sizeE:
  222|  6.58k|      void set_tile_size(size s) { XTsiz = s.w; YTsiz = s.h; }
_ZN4ojph5local9param_siz16set_image_offsetENS_5pointE:
  225|  6.58k|      { XOsiz = offset.x; YOsiz = offset.y; }
_ZN4ojph5local9param_siz15set_tile_offsetENS_5pointE:
  229|  6.57k|      { XTOsiz = offset.x; YTOsiz = offset.y; }
_ZN4ojph5local9param_siz14check_validityEv:
  236|  6.50k|      {
  237|  6.50k|        if (Xsiz == 0 || Ysiz == 0 || XTsiz == 0 || YTsiz == 0)
  ------------------
  |  Branch (237:13): [True: 1, False: 6.49k]
  |  Branch (237:26): [True: 2, False: 6.49k]
  |  Branch (237:39): [True: 3, False: 6.49k]
  |  Branch (237:53): [True: 8, False: 6.48k]
  ------------------
  238|     14|          OJPH_ERROR(0x00040001,
  ------------------
  |  |  289|     14|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     14|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 14, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  239|  6.50k|            "Image extent and/or tile size cannot be zero");
  240|  6.50k|        if (XTOsiz > XOsiz || YTOsiz > YOsiz)
  ------------------
  |  Branch (240:13): [True: 43, False: 6.45k]
  |  Branch (240:31): [True: 22, False: 6.43k]
  ------------------
  241|     51|          OJPH_ERROR(0x00040002,
  ------------------
  |  |  289|     51|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     51|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 51, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  242|  6.50k|            "Tile offset has to be smaller than the image offset");
  243|  6.50k|        if (XTsiz + XTOsiz <= XOsiz || YTsiz + YTOsiz <= YOsiz)
  ------------------
  |  Branch (243:13): [True: 96, False: 6.40k]
  |  Branch (243:40): [True: 19, False: 6.38k]
  ------------------
  244|     50|          OJPH_ERROR(0x00040003,
  ------------------
  |  |  289|     50|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     50|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 50, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  245|  6.50k|            "The top left tile must intersect with the image");
  246|  6.50k|        if (Xsiz <= XOsiz || Ysiz <= YOsiz)
  ------------------
  |  Branch (246:13): [True: 127, False: 6.37k]
  |  Branch (246:30): [True: 11, False: 6.36k]
  ------------------
  247|     23|          OJPH_ERROR(0x00040004,
  ------------------
  |  |  289|     23|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     23|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 23, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  248|  6.50k|            "The image extent must be larger than the image offset");
  249|  6.50k|      }
_ZNK4ojph5local9param_siz18get_num_componentsEv:
  251|   500k|      ui16 get_num_components() const { return Csiz; }
_ZNK4ojph5local9param_siz13get_bit_depthEj:
  253|   271k|      {
  254|       |        assert(comp_num < Csiz);
  255|   271k|        return (cptr[comp_num].SSiz & 0x7F) + 1u;
  256|   271k|      }
_ZNK4ojph5local9param_siz9is_signedEj:
  258|   271k|      {
  259|       |        assert(comp_num < Csiz);
  260|   271k|        return (cptr[comp_num].SSiz & 0x80) != 0;
  261|   271k|      }
_ZNK4ojph5local9param_siz16get_downsamplingEj:
  263|   817k|      {
  264|       |        assert(comp_num < Csiz);
  265|   817k|        return point(cptr[comp_num].XRsiz, cptr[comp_num].YRsiz);
  266|   817k|      }
_ZN4ojph5local9param_siz4linkEPKNS0_9param_codE:
  272|  5.35k|      { this->cod = cod; }
_ZN4ojph5local9param_siz4linkEPKNS0_9param_dfsE:
  275|    271|      { this->dfs = dfs; }
_ZN4ojph5local9param_siz23set_skipped_resolutionsEj:
  278|  1.48k|      { this->skipped_resolutions = skipped_resolutions; }
_ZNK4ojph5local9param_siz9get_widthEj:
  281|  6.24k|      {
  282|  6.24k|        assert(comp_num < get_num_components());
  283|  6.24k|        ui32 ds = (ui32)cptr[comp_num].XRsiz;
  284|  6.24k|        ui32 t = ojph_div_ceil(Xsiz, ds) - ojph_div_ceil(XOsiz, ds);
  ------------------
  |  |   70|  6.24k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
                      ui32 t = ojph_div_ceil(Xsiz, ds) - ojph_div_ceil(XOsiz, ds);
  ------------------
  |  |   70|  6.24k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  285|  6.24k|        return t;
  286|  6.24k|      }
_ZNK4ojph5local9param_siz10get_heightEj:
  289|  6.24k|      {
  290|  6.24k|        assert(comp_num < get_num_components());
  291|  6.24k|        ui32 ds = (ui32)cptr[comp_num].YRsiz;
  292|  6.24k|        ui32 t = ojph_div_ceil(Ysiz, ds) - ojph_div_ceil(YOsiz, ds);
  ------------------
  |  |   70|  6.24k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
                      ui32 t = ojph_div_ceil(Ysiz, ds) - ojph_div_ceil(YOsiz, ds);
  ------------------
  |  |   70|  6.24k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  293|  6.24k|        return t;
  294|  6.24k|      }
_ZNK4ojph5local9param_siz15get_recon_widthEj:
  299|  18.8k|      { return get_recon_size(comp_num).x; }
_ZNK4ojph5local9param_siz16get_recon_heightEj:
  301|  18.5k|      { return get_recon_size(comp_num).y; }
_ZN4ojph5local9cod_SPcodC2Ev:
  346|  21.8k|      cod_SPcod() {
  347|  21.8k|        num_decomp = 5;
  348|  21.8k|        block_width = 4;    // 64
  349|  21.8k|        block_height = 4;   // 64
  350|  21.8k|        block_style = 0x40; // HT mode
  351|  21.8k|        wavelet_trans = 0;  // reversible 5 / 3
  352|  21.8k|        memset(precinct_size, 0, sizeof(precinct_size));
  353|  21.8k|      }
_ZNK4ojph5local9cod_SPcod18get_log_block_dimsEv:
  363|  5.82M|      { return size(block_width + 2, block_height + 2); }
_ZNK4ojph5local9cod_SPcod21get_log_precinct_sizeEj:
  367|  6.94M|      {
  368|       |        assert(res_num <= num_decomp);
  369|  6.94M|        size ps(precinct_size[res_num] & 0xF, precinct_size[res_num] >> 4);
  370|  6.94M|        return ps;
  371|  6.94M|      }
_ZN4ojph5local9cod_SGcodC2Ev:
  377|  7.56k|      cod_SGcod() : prog_order(OJPH_PO_RPCL), num_layers(1), mc_trans(0) {}
_ZN4ojph5local9param_codC2EPS1_t:
  414|  7.56k|      { avail = NULL; init(top_cod, comp_idx); }
_ZN4ojph5local9param_codD2Ev:
  415|  7.56k|      ~param_cod() { destroy(); }
_ZN4ojph5local9param_cod7restartEv:
  419|  6.74k|      {
  420|  6.74k|        param_cod** p = &avail; // move next to the end of avail
  421|  6.74k|        while (*p != NULL)
  ------------------
  |  Branch (421:16): [True: 0, False: 6.74k]
  ------------------
  422|      0|          p = &((*p)->next);
  423|  6.74k|        *p = next;
  424|  6.74k|        this->init(top_cod, OJPH_COD_DEFAULT);
  425|  6.74k|      }
_ZNK4ojph5local9param_cod22get_num_decompositionsEv:
  505|  8.37M|      {
  506|  8.37M|        if (type == COD_MAIN)
  ------------------
  |  Branch (506:13): [True: 7.70M, False: 662k]
  ------------------
  507|  7.70M|          return SPcod.num_decomp;
  508|   662k|        else if (type == COC_MAIN)
  ------------------
  |  Branch (508:18): [True: 662k, False: 0]
  ------------------
  509|   662k|        {
  510|   662k|          if (is_dfs_defined())
  ------------------
  |  Branch (510:15): [True: 574k, False: 87.4k]
  ------------------
  511|   574k|            return top_cod->get_num_decompositions();
  512|  87.4k|          else
  513|  87.4k|            return SPcod.num_decomp;
  514|   662k|        }
  515|      0|        else {
  516|       |          assert(0);
  517|      0|          return 0; // just in case
  518|      0|        }
  519|  8.37M|      }
_ZNK4ojph5local9param_cod18get_log_block_dimsEv:
  527|  5.82M|      { return SPcod.get_log_block_dims(); }
_ZNK4ojph5local9param_cod16get_wavelet_kernEv:
  531|  5.40M|      { return SPcod.wavelet_trans; }
_ZNK4ojph5local9param_cod28is_employing_color_transformEv:
  538|  7.18M|      {
  539|  7.18M|        if (type == COD_MAIN || type == COD_TILE)
  ------------------
  |  Branch (539:13): [True: 7.18M, False: 0]
  |  Branch (539:33): [True: 0, False: 0]
  ------------------
  540|  7.18M|          return (SGCod.mc_trans == 1);
  541|      0|        else
  542|      0|          return top_cod->is_employing_color_transform();
  543|  7.18M|      }
_ZNK4ojph5local9param_cod17get_precinct_sizeEj:
  547|  31.2k|      {
  548|  31.2k|        size t = get_log_precinct_size(res_num);
  549|  31.2k|        return size(1 << t.w, 1 << t.h);
  550|  31.2k|      }
_ZNK4ojph5local9param_cod21get_log_precinct_sizeEj:
  554|  7.46M|      {
  555|  7.46M|        if (Scod & 1)
  ------------------
  |  Branch (555:13): [True: 6.94M, False: 517k]
  ------------------
  556|  6.94M|          return SPcod.get_log_precinct_size(res_num);
  557|   517k|        else
  558|   517k|          return size(15, 15);
  559|  7.46M|      }
_ZNK4ojph5local9param_cod19packets_may_use_sopEv:
  563|  8.05M|      {
  564|  8.05M|        if (type == COD_MAIN || type == COD_TILE)
  ------------------
  |  Branch (564:13): [True: 7.30M, False: 749k]
  |  Branch (564:33): [True: 0, False: 749k]
  ------------------
  565|  7.30M|          return (Scod & 2) == 2;
  566|   749k|        return false;
  567|  8.05M|      }
_ZNK4ojph5local9param_cod15packets_use_ephEv:
  571|  8.05M|      {
  572|  8.05M|        if (type == COD_MAIN || type == COD_TILE)
  ------------------
  |  Branch (572:13): [True: 7.30M, False: 749k]
  |  Branch (572:33): [True: 0, False: 749k]
  ------------------
  573|  7.30M|          return (Scod & 4) == 4;
  574|   749k|        return false;
  575|  8.05M|      }
_ZNK4ojph5local9param_cod28get_block_vertical_causalityEv:
  579|  5.13M|      { return (SPcod.block_style & local::param_cod::VERT_CAUSAL_MODE) != 0; }
_ZNK4ojph5local9param_cod10access_atkEv:
  609|  9.80M|      const param_atk* access_atk() const { return atk; }
_ZNK4ojph5local9param_cod14is_dfs_definedEv:
  614|  7.74M|      { return (SPcod.num_decomp & 0x80) != 0; }
_ZNK4ojph5local9param_cod13get_dfs_indexEv:
  618|   421k|      { return SPcod.num_decomp & 0xF; }
_ZNK4ojph5local9param_cod12get_comp_idxEv:
  622|  6.67M|      {
  623|       |        assert((type == COC_MAIN && comp_idx != OJPH_COD_DEFAULT) ||
  624|  6.67M|               (type == COD_MAIN && comp_idx == OJPH_COD_DEFAULT));
  625|  6.67M|        return comp_idx;
  626|  6.67M|      }
_ZN4ojph5local9param_cod4initEPS1_t:
  631|  14.3k|      {
  632|  14.3k|        type = top_cod ? COC_MAIN : COD_MAIN;
  ------------------
  |  Branch (632:16): [True: 820, False: 13.4k]
  ------------------
  633|  14.3k|        Lcod = 0;
  634|  14.3k|        Scod = 0;
  635|  14.3k|        SPcod = cod_SPcod();  // SPcod is initialized to default values
  636|  14.3k|        next = NULL;
  637|  14.3k|        atk = NULL;
  638|       |        // For COC marker segment:
  639|       |        // Lcod will be initialized on writing the marker segment to disk
  640|       |        // Scod is initialized to 0
  641|       |        // SGcod does not exist in COC
  642|       |        // SPcoc is initialized to default values
  643|       |        // atk is initialized to NULL
  644|  14.3k|        this->top_cod = top_cod;
  645|  14.3k|        this->comp_idx = comp_idx;
  646|  14.3k|      }
_ZN4ojph5local9param_cod7destroyEv:
  649|  7.56k|      void destroy() {
  650|  7.56k|        if (avail)
  ------------------
  |  Branch (650:13): [True: 0, False: 7.56k]
  ------------------
  651|      0|          delete avail;
  652|  7.56k|        if (next) {
  ------------------
  |  Branch (652:13): [True: 820, False: 6.74k]
  ------------------
  653|    820|          delete next;
  654|       |          next = NULL;
  655|    820|        }
  656|  7.56k|      }
_ZN4ojph5local9param_qcdC2EPS1_t:
  714|  7.01k|      { avail = NULL; init(top_qcd, comp_idx); }
_ZN4ojph5local9param_qcdD2Ev:
  715|  7.01k|      ~param_qcd() { destroy(); }
_ZN4ojph5local9param_qcd7restartEv:
  719|  6.74k|      {
  720|  6.74k|        param_qcd** p = &avail; // move next to the end of avail
  721|  6.74k|        while (*p != NULL)
  ------------------
  |  Branch (721:16): [True: 0, False: 6.74k]
  ------------------
  722|      0|          p = &((*p)->next);
  723|  6.74k|        *p = next;
  724|  6.74k|        this->init(top_qcd, OJPH_QCD_DEFAULT);
  725|  6.74k|      }
_ZNK4ojph5local9param_qcd12get_comp_idxEv:
  752|    413|      ui16 get_comp_idx() const { return comp_idx; }
_ZN4ojph5local9param_qcd4initEPS1_t:
  757|  13.7k|      {
  758|  13.7k|        is_init = false;
  759|  13.7k|        type = top_qcd ? QCC_MAIN : QCD_MAIN;
  ------------------
  |  Branch (759:16): [True: 269, False: 13.4k]
  ------------------
  760|  13.7k|        Lqcd = 0;
  761|  13.7k|        Sqcd = 0;
  762|  13.7k|        memset(&SPqcd, 0, sizeof(SPqcd));
  763|  13.7k|        num_subbands = 0;
  764|  13.7k|        base_delta = -1.0f;
  765|  13.7k|        qfactor = QFACTOR_UNSET;
  766|  13.7k|        ctype = comp_type::OJPH_COMP_Y;
  767|  13.7k|        sampling = ojph::point(1, 1);
  768|  13.7k|        enabled = true;
  769|       |        next = NULL;
  770|  13.7k|        this->top_qcd = top_qcd;
  771|  13.7k|        this->comp_idx = comp_idx;
  772|  13.7k|      }
_ZN4ojph5local9param_qcd7destroyEv:
  775|  7.01k|      void destroy() {
  776|  7.01k|        if (avail)
  ------------------
  |  Branch (776:13): [True: 0, False: 7.01k]
  ------------------
  777|      0|          delete avail;
  778|  7.01k|        if (next)
  ------------------
  |  Branch (778:13): [True: 269, False: 6.74k]
  ------------------
  779|    269|        {
  780|    269|          delete next;
  781|       |          next = NULL;
  782|    269|        }
  783|  7.01k|      }
_ZNK4ojph5local9param_qcd12decode_SPqcdEh:
  795|  72.9M|      { return (ui8)(v >> 3); }
_ZN4ojph5local9param_nltC2Ev:
  846|  7.12k|      param_nlt() { avail = NULL; init(); }
_ZN4ojph5local9param_nltD2Ev:
  847|  7.12k|      ~param_nlt() { destroy(); }
_ZN4ojph5local9param_nlt7restartEv:
  851|  6.74k|      {
  852|  6.74k|        param_nlt** p = &avail; // move next to the end of avail
  853|  6.74k|        while (*p != NULL)
  ------------------
  |  Branch (853:16): [True: 0, False: 6.74k]
  ------------------
  854|      0|          p = &((*p)->next);
  855|  6.74k|        *p = next;
  856|  6.74k|        this->init();
  857|  6.74k|      }
_ZN4ojph5local9param_nlt4initEv:
  869|  13.8k|      {
  870|  13.8k|        Lnlt = 6;
  871|  13.8k|        Cnlt = special_comp_num::ALL_COMPS; // default
  872|  13.8k|        BDnlt = 0;
  873|  13.8k|        Tnlt = nonlinearity::OJPH_NLT_UNDEFINED;
  874|       |        enabled = false; next = NULL;
  875|  13.8k|      }
_ZN4ojph5local9param_nlt7destroyEv:
  879|  7.12k|      {
  880|  7.12k|        if (avail)
  ------------------
  |  Branch (880:13): [True: 0, False: 7.12k]
  ------------------
  881|      0|          delete avail;
  882|  7.12k|        if (next) {
  ------------------
  |  Branch (882:13): [True: 385, False: 6.74k]
  ------------------
  883|    385|          delete next;
  884|       |          next = NULL;
  885|    385|        }
  886|  7.12k|      }
_ZN4ojph5local9param_capC2Ev:
  923|  6.74k|      {
  924|  6.74k|        memset(this, 0, sizeof(param_cap));
  925|  6.74k|        Lcap = 8;
  926|  6.74k|        Pcap = 0x00020000; //for jph, Pcap^15 must be set, the 15th MSB
  927|  6.74k|      }
_ZN4ojph5local9param_sot4initEjthh:
  969|   248k|      {
  970|   248k|        Lsot = 10;
  971|   248k|        Psot = payload_length + 12; //total = payload + SOT marker
  972|   248k|        Isot = tile_idx;
  973|   248k|        TPsot = tile_part_index;
  974|   248k|        TNsot = num_tile_parts;
  975|   248k|      }
_ZNK4ojph5local9param_sot14get_tile_indexEv:
  981|   375k|      ui16 get_tile_index() const { return Isot; }
_ZNK4ojph5local9param_sot18get_payload_lengthEv:
  982|   369k|      ui32 get_payload_length() const { return Psot > 0 ? Psot - 12 : 0; }
  ------------------
  |  Branch (982:48): [True: 28.4k, False: 340k]
  ------------------
_ZNK4ojph5local9param_sot19get_tile_part_indexEv:
  983|   490k|      ui8  get_tile_part_index() const { return TPsot; }
_ZNK4ojph5local9param_sot18get_num_tile_partsEv:
  984|   243k|      ui8  get_num_tile_parts() const { return TNsot; }
_ZN4ojph5local9param_tlmC2Ev:
 1010|  6.74k|      param_tlm() { pairs = NULL; num_pairs = 0; next_pair_index = 0; };
_ZN4ojph5local9param_dfsC2Ev:
 1043|   707k|      param_dfs() { avail = NULL; init(); }
_ZN4ojph5local9param_dfsD2Ev:
 1044|   707k|      ~param_dfs() { destroy(); }
_ZN4ojph5local9param_dfs7restartEv:
 1048|  6.74k|      {
 1049|  6.74k|        param_dfs** p = &avail; // move next to the end of avail
 1050|  6.74k|        while (*p != NULL)
  ------------------
  |  Branch (1050:16): [True: 0, False: 6.74k]
  ------------------
 1051|      0|          p = &((*p)->next);
 1052|  6.74k|        *p = next;
 1053|  6.74k|        this->init();
 1054|  6.74k|      }
_ZNK4ojph5local9param_dfs6existsEv:
 1057|   650k|      bool exists() const { return Ldfs != 0; }
_ZN4ojph5local9param_dfs4initEv:
 1071|   714k|      { Ldfs = Sdfs = Ids = 0; memset(Ddfs, 0, sizeof(Ddfs)); next = NULL; }
_ZN4ojph5local9param_dfs7destroyEv:
 1075|   707k|      {
 1076|   707k|        if (avail)
  ------------------
  |  Branch (1076:13): [True: 0, False: 707k]
  ------------------
 1077|      0|          delete avail;
 1078|   707k|        if (next) {
  ------------------
  |  Branch (1078:13): [True: 700k, False: 6.74k]
  ------------------
 1079|   700k|          delete next;
 1080|       |          next = NULL;
 1081|   700k|        }
 1082|   707k|      }
_ZN4ojph5local9param_atkC2Ev:
 1133|  7.16k|      {
 1134|  7.16k|        d = d_store;
 1135|  7.16k|        max_steps = sizeof(d_store) / sizeof(lifting_step);
 1136|       |        init(NULL);
 1137|  7.16k|      }
_ZN4ojph5local9param_atkD2Ev:
 1139|  7.16k|      {
 1140|  7.16k|        if (avail) {
  ------------------
  |  Branch (1140:13): [True: 0, False: 7.16k]
  ------------------
 1141|      0|          delete avail;
 1142|      0|          avail = NULL;
 1143|      0|        }
 1144|  7.16k|        if (next) {
  ------------------
  |  Branch (1144:13): [True: 416, False: 6.74k]
  ------------------
 1145|    416|          delete next;
 1146|    416|          next = NULL;
 1147|    416|        }
 1148|  7.16k|        if (d != NULL && d != d_store) {
  ------------------
  |  Branch (1148:13): [True: 7.16k, False: 0]
  |  Branch (1148:26): [True: 85, False: 7.07k]
  ------------------
 1149|     85|          delete[] d;
 1150|     85|          d = d_store;
 1151|     85|          max_steps = sizeof(d_store) / sizeof(lifting_step);
 1152|     85|        }
 1153|  7.16k|      }
_ZN4ojph5local9param_atk7restartEv:
 1157|  6.74k|      {
 1158|  6.74k|        assert(top_atk == NULL);
 1159|       |
 1160|  6.74k|        Latk = Satk = 0;
 1161|  6.74k|        Katk = 0.0f;
 1162|  6.74k|        Natk = 0;
 1163|  6.74k|        if (d == NULL || d == d_store) {
  ------------------
  |  Branch (1163:13): [True: 0, False: 6.74k]
  |  Branch (1163:26): [True: 6.74k, False: 0]
  ------------------
 1164|  6.74k|          d = d_store;
 1165|  6.74k|          max_steps = sizeof(d_store) / sizeof(lifting_step);
 1166|  6.74k|        }
 1167|  6.74k|        memset(d, 0, max_steps * sizeof(lifting_step));
 1168|       |
 1169|  6.74k|        param_atk** p = &avail; // move next to the end of avail
 1170|  6.74k|        while (*p != NULL)
  ------------------
  |  Branch (1170:16): [True: 0, False: 6.74k]
  ------------------
 1171|      0|          p = &((*p)->next);
 1172|  6.74k|        *p = next;
 1173|       |
 1174|       |        next = NULL;
 1175|  6.74k|      }
_ZNK4ojph5local9param_atk9get_indexEv:
 1179|  1.36k|      ui8 get_index() const { return (ui8)(Satk & 0xFF); }
_ZNK4ojph5local9param_atk14get_coeff_typeEv:
 1180|  2.08k|      int get_coeff_type() const { return (Satk >> 8) & 0x7; }
_ZNK4ojph5local9param_atk15is_whole_sampleEv:
 1181|    391|      bool is_whole_sample() const { return (Satk & 0x800) != 0; }
_ZNK4ojph5local9param_atk13is_reversibleEv:
 1182|  6.68M|      bool is_reversible() const { return (Satk & 0x1000) != 0; }
_ZNK4ojph5local9param_atk10is_m_init0Ev:
 1183|    392|      bool is_m_init0() const { return (Satk & 0x2000) == 0; }
_ZNK4ojph5local9param_atk21is_using_ws_extensionEv:
 1184|    379|      bool is_using_ws_extension() const { return (Satk & 0x4000) != 0; }
_ZNK4ojph5local9param_atk8get_stepEj:
 1187|  9.13M|      { assert(s < Natk); return d + s; }
_ZNK4ojph5local9param_atk13get_num_stepsEv:
 1188|  3.72M|      ui32 get_num_steps() const { return Natk; }
_ZNK4ojph5local9param_atk5get_KEv:
 1189|  1.85M|      float get_K() const { return Katk; }
_ZN4ojph5local9param_atk4initEPS1_:
 1194|  7.57k|      {
 1195|  7.57k|        Latk = Satk = 0;
 1196|  7.57k|        Katk = 0.0f;
 1197|  7.57k|        Natk = 0;
 1198|  7.57k|        if (d == NULL || d == d_store) {
  ------------------
  |  Branch (1198:13): [True: 0, False: 7.57k]
  |  Branch (1198:26): [True: 7.57k, False: 0]
  ------------------
 1199|  7.57k|          d = d_store;
 1200|  7.57k|          max_steps = sizeof(d_store) / sizeof(lifting_step);
 1201|  7.57k|        }
 1202|  7.57k|        memset(d, 0, max_steps * sizeof(lifting_step));
 1203|  7.57k|        next = NULL;
 1204|  7.57k|        this->top_atk = top_atk;
 1205|       |        avail = NULL;
 1206|  7.57k|      }

_ZN4ojph5local8precinct5parseEiPjPNS_21mem_elastic_allocatorERjPNS_11infile_baseEb:
  332|   526k|    {
  333|   526k|      assert(data_left > 0);
  334|   526k|      bit_read_buf bb;
  335|   526k|      bb_init(&bb, data_left, file);
  336|   526k|      if (may_use_sop)
  ------------------
  |  Branch (336:11): [True: 82.3k, False: 443k]
  ------------------
  337|  82.3k|        bb_skip_sop(&bb);
  338|       |
  339|   526k|      bool empty_packet = true;
  340|  1.32M|      for (int s = 0; s < 4; ++s)
  ------------------
  |  Branch (340:23): [True: 1.20M, False: 112k]
  ------------------
  341|  1.20M|      {
  342|  1.20M|        if (bands[s].empty)
  ------------------
  |  Branch (342:13): [True: 503k, False: 705k]
  ------------------
  343|   503k|          continue;
  344|       |
  345|   705k|        if (cb_idxs[s].siz.w == 0 || cb_idxs[s].siz.h == 0)
  ------------------
  |  Branch (345:13): [True: 6.64k, False: 698k]
  |  Branch (345:38): [True: 6.65k, False: 691k]
  ------------------
  346|  13.2k|          continue;
  347|       |
  348|   691k|        if (empty_packet) //one bit to check if the packet is empty
  ------------------
  |  Branch (348:13): [True: 522k, False: 169k]
  ------------------
  349|   522k|        {
  350|   522k|          ui32 bit;
  351|   522k|          bb_read_bit(&bb, bit);
  352|   522k|          if (bit == 0) //empty packet
  ------------------
  |  Branch (352:15): [True: 393k, False: 128k]
  ------------------
  353|   393k|          { bb_terminate(&bb, uses_eph); data_left = bb.bytes_left; return; }
  354|   128k|          empty_packet = false;
  355|   128k|        }
  356|       |
  357|   297k|        ui32 num_levels = 1 +
  358|   297k|          ojph_max(log2ceil(cb_idxs[s].siz.w), log2ceil(cb_idxs[s].siz.h));
  ------------------
  |  |   73|   297k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 2.55k, False: 295k]
  |  |  ------------------
  ------------------
  359|       |
  360|       |        //create quad trees for inclusion and missing msbs
  361|   297k|        tag_tree inc_tag, inc_tag_flags, mmsb_tag, mmsb_tag_flags;
  362|   297k|        inc_tag.init(scratch, lev_idx, num_levels, cb_idxs[s].siz, 0);
  363|   297k|        *inc_tag.get(0, 0, num_levels) = 0;
  364|   297k|        inc_tag_flags.init(scratch + tag_tree_size, lev_idx, num_levels,
  365|   297k|          cb_idxs[s].siz, 0);
  366|   297k|        *inc_tag_flags.get(0, 0, num_levels) = 0;
  367|   297k|        mmsb_tag.init(scratch + (tag_tree_size<<1), lev_idx, num_levels,
  368|   297k|          cb_idxs[s].siz, 0);
  369|   297k|        *mmsb_tag.get(0, 0, num_levels) = 0;
  370|   297k|        mmsb_tag_flags.init(scratch + (tag_tree_size<<1) + tag_tree_size,
  371|   297k|          lev_idx, num_levels, cb_idxs[s].siz, 0);
  372|   297k|        *mmsb_tag_flags.get(0, 0, num_levels) = 0;
  373|       |
  374|       |        //
  375|   297k|        ui32 band_width = bands[s].num_blocks.w;
  376|   297k|        ui32 width = cb_idxs[s].siz.w;
  377|   297k|        ui32 height = cb_idxs[s].siz.h;
  378|   637k|        for (ui32 y = 0; y < height; ++y)
  ------------------
  |  Branch (378:26): [True: 359k, False: 277k]
  ------------------
  379|   359k|        {
  380|   359k|          coded_cb_header *cp = bands[s].coded_cbs;
  381|   359k|          cp += cb_idxs[s].org.x + (y + cb_idxs[s].org.y) * band_width;
  382|   794k|          for (ui32 x = 0; x < width; ++x, ++cp)
  ------------------
  |  Branch (382:28): [True: 454k, False: 339k]
  ------------------
  383|   454k|          {
  384|       |            //process inclusion
  385|   454k|            bool empty_cb = false;
  386|   838k|            for (ui32 cl = num_levels; cl > 0; --cl)
  ------------------
  |  Branch (386:40): [True: 703k, False: 134k]
  ------------------
  387|   703k|            {
  388|   703k|              ui32 cur_lev = cl - 1;
  389|   703k|              empty_cb = *inc_tag.get(x>>cur_lev, y>>cur_lev, cur_lev) == 1;
  390|   703k|              if (empty_cb)
  ------------------
  |  Branch (390:19): [True: 162k, False: 541k]
  ------------------
  391|   162k|                break;
  392|       |              //check received
  393|   541k|              if (*inc_tag_flags.get(x>>cur_lev, y>>cur_lev, cur_lev) == 0)
  ------------------
  |  Branch (393:19): [True: 301k, False: 239k]
  ------------------
  394|   301k|              {
  395|   301k|                ui32 bit;
  396|   301k|                if (bb_read_bit(&bb, bit) == false)
  ------------------
  |  Branch (396:21): [True: 232, False: 300k]
  ------------------
  397|    232|                { data_left = 0; throw "error reading from file p1"; }
  398|   300k|                empty_cb = (bit == 0);
  399|   300k|                *inc_tag.get(x>>cur_lev, y>>cur_lev, cur_lev) = (ui8)(1 - bit);
  400|   300k|                *inc_tag_flags.get(x>>cur_lev, y>>cur_lev, cur_lev) = 1;
  401|   300k|              }
  402|   540k|              if (empty_cb)
  ------------------
  |  Branch (402:19): [True: 157k, False: 383k]
  ------------------
  403|   157k|                break;
  404|   540k|            }
  405|       |
  406|   454k|            if (empty_cb)
  ------------------
  |  Branch (406:17): [True: 319k, False: 134k]
  ------------------
  407|   319k|              continue;
  408|       |
  409|       |            //process missing msbs
  410|   134k|            ui32 mmsbs = 0;
  411|   276k|            for (ui32 levp1 = num_levels; levp1 > 0; --levp1)
  ------------------
  |  Branch (411:43): [True: 142k, False: 134k]
  ------------------
  412|   142k|            {
  413|   142k|              ui32 cur_lev = levp1 - 1;
  414|   142k|              mmsbs = *mmsb_tag.get(x>>levp1, y>>levp1, levp1);
  415|       |              //check received
  416|   142k|              if (*mmsb_tag_flags.get(x>>cur_lev, y>>cur_lev, cur_lev) == 0)
  ------------------
  |  Branch (416:19): [True: 140k, False: 2.15k]
  ------------------
  417|   140k|              {
  418|   140k|                ui32 bit = 0;
  419|  68.0M|                while (bit == 0)
  ------------------
  |  Branch (419:24): [True: 67.8M, False: 140k]
  ------------------
  420|  67.8M|                {
  421|  67.8M|                  if (bb_read_bit(&bb, bit) == false)
  ------------------
  |  Branch (421:23): [True: 120, False: 67.8M]
  ------------------
  422|    120|                  { data_left = 0; throw "error reading from file p2"; }
  423|  67.8M|                  mmsbs += 1 - bit;
  424|  67.8M|                }
  425|   140k|                *mmsb_tag.get(x>>cur_lev, y>>cur_lev, cur_lev) = (ui8)mmsbs;
  426|   140k|                *mmsb_tag_flags.get(x>>cur_lev, y>>cur_lev, cur_lev) = 1;
  427|   140k|              }
  428|   142k|            }
  429|       |
  430|   134k|            if (mmsbs > cp->Kmax)
  ------------------
  |  Branch (430:17): [True: 4.02k, False: 130k]
  ------------------
  431|  4.02k|              throw "error in parsing a tile header; "
  432|  4.02k|              "missing msbs are larger or equal to Kmax. The most likely "
  433|  4.02k|              "cause is a corruption in the bitstream.";
  434|   130k|            cp->missing_msbs = mmsbs;
  435|       |
  436|       |            //get number of passes
  437|   130k|            ui32 bit, num_passes = 1;
  438|   130k|            if (bb_read_bit(&bb, bit) == false)
  ------------------
  |  Branch (438:17): [True: 254, False: 130k]
  ------------------
  439|    254|            { data_left = 0; throw "error reading from file p3"; }
  440|   130k|            if (bit)
  ------------------
  |  Branch (440:17): [True: 108k, False: 21.4k]
  ------------------
  441|   108k|            {
  442|   108k|              num_passes = 2;
  443|   108k|              if (bb_read_bit(&bb, bit) == false)
  ------------------
  |  Branch (443:19): [True: 203, False: 108k]
  ------------------
  444|    203|              { data_left = 0; throw "error reading from file p4"; }
  445|   108k|              if (bit)
  ------------------
  |  Branch (445:19): [True: 82.9k, False: 25.7k]
  ------------------
  446|  82.9k|              {
  447|  82.9k|                if (bb_read_bits(&bb, 2, bit) == false)
  ------------------
  |  Branch (447:21): [True: 239, False: 82.7k]
  ------------------
  448|    239|                { data_left = 0; throw "error reading from file p5";  }
  449|  82.7k|                num_passes = 3 + bit;
  450|  82.7k|                if (bit == 3)
  ------------------
  |  Branch (450:21): [True: 59.3k, False: 23.3k]
  ------------------
  451|  59.3k|                {
  452|  59.3k|                  if (bb_read_bits(&bb, 5, bit) == false)
  ------------------
  |  Branch (452:23): [True: 264, False: 59.0k]
  ------------------
  453|    264|                  { data_left = 0; throw "error reading from file p6"; }
  454|  59.0k|                  num_passes = 6 + bit;
  455|  59.0k|                  if (bit == 31)
  ------------------
  |  Branch (455:23): [True: 14.1k, False: 44.8k]
  ------------------
  456|  14.1k|                  {
  457|  14.1k|                    if (bb_read_bits(&bb, 7, bit) == false)
  ------------------
  |  Branch (457:25): [True: 301, False: 13.8k]
  ------------------
  458|    301|                    { data_left = 0; throw "error reading from file p7"; }
  459|  13.8k|                    num_passes = 37 + bit;
  460|  13.8k|                  }
  461|  59.0k|                }
  462|  82.7k|              }
  463|   108k|            }
  464|   129k|            cp->num_passes = num_passes;
  465|       |
  466|       |            // Parse pass lengths
  467|       |            // When number of passes is one, one length.
  468|       |            // When number of passes is two or three, two lengths.
  469|       |            // When number of passes > 3, we have place holder passes;
  470|       |            // In this case, subtract multiples of 3 from the number of
  471|       |            // passes; for example, if we have 10 passes, we subtract 9,
  472|       |            // producing 1 pass.
  473|       |
  474|       |            // 1 => 1, 2 => 2, 3 => 3, 4 => 1, 5 => 2, 6 => 3
  475|   129k|            ui32 num_phld_passes = (num_passes - 1) / 3;
  476|   129k|            cp->missing_msbs += num_phld_passes;
  477|       |
  478|   129k|            num_phld_passes *= 3;
  479|   129k|            cp->num_passes = num_passes - num_phld_passes;
  480|   129k|            cp->pass_length[0] = cp->pass_length[1] = 0;
  481|       |
  482|   129k|            int Lblock = 3;
  483|   129k|            bit = 1;
  484|  4.76M|            while (bit)
  ------------------
  |  Branch (484:20): [True: 4.63M, False: 129k]
  ------------------
  485|  4.63M|            {
  486|       |              // add any extra bits here
  487|  4.63M|              if (bb_read_bit(&bb, bit) == false)
  ------------------
  |  Branch (487:19): [True: 216, False: 4.63M]
  ------------------
  488|    216|              { data_left = 0; throw "error reading from file p8"; }
  489|  4.63M|              Lblock += bit;
  490|  4.63M|            }
  491|       |
  492|   129k|            int bits = Lblock + 31 -
  493|   129k|              (int)count_leading_zeros(num_phld_passes + 1);
  494|   129k|            if (bb_read_bits(&bb, bits, bit) == false)
  ------------------
  |  Branch (494:17): [True: 314, False: 128k]
  ------------------
  495|    314|            { data_left = 0; throw "error reading from file p9"; }
  496|   128k|            if (bit < 2)
  ------------------
  |  Branch (496:17): [True: 9.51k, False: 119k]
  ------------------
  497|  9.51k|              throw "The cleanup segment of an HT codeblock cannot contain "
  498|  9.51k|                "less than 2 bytes";
  499|   119k|            if (bit >= 65535)
  ------------------
  |  Branch (499:17): [True: 3.31k, False: 116k]
  ------------------
  500|  3.31k|              throw "The cleanup segment of an HT codeblock must contain "
  501|  3.31k|                "less than 65535 bytes";
  502|   116k|            cp->pass_length[0] = bit;
  503|       |
  504|   116k|            if (cp->num_passes > 1)
  ------------------
  |  Branch (504:17): [True: 84.5k, False: 31.4k]
  ------------------
  505|  84.5k|            {
  506|       |              //bits = Lblock + 31 - count_leading_zeros(cp->num_passes - 1);
  507|       |              // The following is simpler than the above, I think?
  508|  84.5k|              bits = Lblock + (cp->num_passes > 2 ? 1 : 0);
  ------------------
  |  Branch (508:32): [True: 38.4k, False: 46.1k]
  ------------------
  509|  84.5k|              if (bb_read_bits(&bb, bits, bit) == false)
  ------------------
  |  Branch (509:19): [True: 248, False: 84.3k]
  ------------------
  510|    248|              { data_left = 0; throw "error reading from file p10"; }
  511|  84.3k|              if (bit >= 2047)
  ------------------
  |  Branch (511:19): [True: 829, False: 83.5k]
  ------------------
  512|    829|                throw "The refinement segment (SigProp and MagRep passes) of "
  513|    829|                  "an HT codeblock must contain less than 2047 bytes";
  514|  83.5k|              cp->pass_length[1] = bit;
  515|  83.5k|            }
  516|   116k|          }
  517|   359k|        }
  518|   297k|      }
  519|   112k|      if (empty_packet)
  ------------------
  |  Branch (519:11): [True: 1.48k, False: 110k]
  ------------------
  520|  1.48k|      { // all subbands are empty
  521|  1.48k|        ui32 bit = 0;
  522|  1.48k|        bb_read_bit(&bb, bit);
  523|       |        //assert(bit == 0);
  524|  1.48k|      }
  525|   112k|      bb_terminate(&bb, uses_eph);
  526|       |      //read codeblock data
  527|   467k|      for (int s = 0; s < 4; ++s)
  ------------------
  |  Branch (527:23): [True: 354k, False: 112k]
  ------------------
  528|   354k|      {
  529|   354k|        if (bands[s].empty)
  ------------------
  |  Branch (529:13): [True: 107k, False: 247k]
  ------------------
  530|   107k|          continue;
  531|       |
  532|   247k|        ui32 band_width = bands[s].num_blocks.w;
  533|   247k|        ui32 width = cb_idxs[s].siz.w;
  534|   247k|        ui32 height = cb_idxs[s].siz.h;
  535|   561k|        for (ui32 y = 0; y < height; ++y)
  ------------------
  |  Branch (535:26): [True: 313k, False: 247k]
  ------------------
  536|   313k|        {
  537|   313k|          coded_cb_header *cp = bands[s].coded_cbs;
  538|   313k|          cp += cb_idxs[s].org.x + (y + cb_idxs[s].org.y) * band_width;
  539|   707k|          for (ui32 x = 0; x < width; ++x, ++cp)
  ------------------
  |  Branch (539:28): [True: 394k, False: 313k]
  ------------------
  540|   394k|          {
  541|   394k|            ui32 num_bytes = cp->pass_length[0] + cp->pass_length[1];
  542|   394k|            if (data_left)
  ------------------
  |  Branch (542:17): [True: 377k, False: 16.9k]
  ------------------
  543|   377k|            {
  544|   377k|              if (num_bytes)
  ------------------
  |  Branch (544:19): [True: 98.2k, False: 279k]
  ------------------
  545|  98.2k|              {
  546|  98.2k|                if (skipped)
  ------------------
  |  Branch (546:21): [True: 5.75k, False: 92.5k]
  ------------------
  547|  5.75k|                { //no need to read
  548|  5.75k|                  si64 cur_loc = file->tell();
  549|  5.75k|                  ui32 t = ojph_min(num_bytes, bb.bytes_left);
  ------------------
  |  |   76|  5.75k|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 5.07k, False: 673]
  |  |  ------------------
  ------------------
  550|  5.75k|                  file->seek(t, infile_base::OJPH_SEEK_CUR);
  551|  5.75k|                  ui32 bytes_read = (ui32)(file->tell() - cur_loc);
  552|  5.75k|                  cp->pass_length[0] = cp->pass_length[1] = 0;
  553|  5.75k|                  bb.bytes_left -= bytes_read;
  554|  5.75k|                  assert(bytes_read == t || bb.bytes_left == 0);
  555|  5.75k|                }
  556|  92.5k|                else
  557|  92.5k|                {
  558|  92.5k|                  if (!bb_read_chunk(&bb, num_bytes, cp->next_coded, elastic))
  ------------------
  |  Branch (558:23): [True: 9.02k, False: 83.5k]
  ------------------
  559|  9.02k|                  {
  560|       |                    //no need to decode a broken codeblock
  561|  9.02k|                    cp->pass_length[0] = cp->pass_length[1] = 0;
  562|  9.02k|                    data_left = 0;
  563|  9.02k|                  }
  564|  92.5k|                }
  565|  98.2k|              }
  566|   377k|            }
  567|  16.9k|            else
  568|  16.9k|              cp->pass_length[0] = cp->pass_length[1] = 0;
  569|   394k|          }
  570|   313k|        }
  571|   247k|      }
  572|   112k|      data_left = bb.bytes_left;
  573|   112k|    }
ojph_precinct.cpp:_ZN4ojph5localL8log2ceilEj:
   88|   861k|    {
   89|   861k|      ui32 t = 31 - count_leading_zeros(x);
   90|   861k|      return t + (x & (x - 1) ? 1 : 0);
  ------------------
  |  Branch (90:19): [True: 4.68k, False: 856k]
  ------------------
   91|   861k|    }
_ZN4ojph5local8tag_tree4initEPhPjjNS_4sizeEi:
   61|  1.14M|      {
   62|  3.51M|        for (ui32 i = 0; i <= num_levels; ++i) //on extra level
  ------------------
  |  Branch (62:26): [True: 2.36M, False: 1.14M]
  ------------------
   63|  2.36M|          levs[i] = buf + lev_idx[i];
   64|  17.1M|        for (ui32 i = num_levels + 1; i < 16; ++i)
  ------------------
  |  Branch (64:39): [True: 16.0M, False: 1.14M]
  ------------------
   65|  16.0M|          levs[i] = (ui8*)INT_MAX; //make it crash on error
   66|  1.14M|        width = s.w;
   67|  1.14M|        height = s.h;
   68|  2.36M|        for (ui32 i = 0; i < num_levels; ++i)
  ------------------
  |  Branch (68:26): [True: 1.22M, False: 1.14M]
  ------------------
   69|  1.22M|        {
   70|  1.22M|          ui32 size = 1u << ((num_levels - 1 - i) << 1);
   71|  1.22M|          memset(levs[i], init_val, size);
   72|  1.22M|        }
   73|  1.14M|        *levs[num_levels] = 0;
   74|  1.14M|        this->num_levels = num_levels;
   75|  1.14M|      }
_ZN4ojph5local8tag_tree3getEjjj:
   78|  3.55M|      {
   79|  3.55M|        return levs[lev] + (x + y * ((width + (1 << lev) - 1) >> lev));
   80|  3.55M|      }

_ZN4ojph5local8precinctC2Ev:
   60|  8.05M|      precinct() {
   61|  8.05M|        scratch = NULL; bands = NULL; coded = NULL;
   62|  8.05M|        may_use_sop = uses_eph = false;
   63|  8.05M|      }

_ZN4ojph5local10resolution9pre_allocEPNS0_10codestreamERKNS_4rectES6_jj:
   62|  1.57M|    {
   63|  1.57M|      mem_fixed_allocator* allocator = codestream->get_allocator();
   64|  1.57M|      const param_cod* cdp = codestream->get_coc(comp_num);
   65|  1.57M|      ui32 num_decomps = cdp->get_num_decompositions();
   66|  1.57M|      ui32 t = num_decomps - codestream->get_skipped_res_for_recon();
   67|  1.57M|      bool skipped_res_for_recon = res_num > t;
   68|       |
   69|  1.57M|      const param_atk* atk = cdp->access_atk();
   70|  1.57M|      param_dfs::dfs_dwt_type ds = param_dfs::BIDIR_DWT;
   71|  1.57M|      if (cdp->is_dfs_defined()) {
  ------------------
  |  Branch (71:11): [True: 133k, False: 1.44M]
  ------------------
   72|   133k|        const param_dfs* dfs = codestream->access_dfs();
   73|   133k|        if (dfs == NULL) {
  ------------------
  |  Branch (73:13): [True: 5, False: 133k]
  ------------------
   74|      5|          OJPH_ERROR(0x00070001, "There is a problem with codestream "
  ------------------
  |  |  289|      5|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      5|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 5, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   75|      5|            "marker segments. COD/COC specifies the use of a DFS marker "
   76|      5|            "but there are no DFS markers within the main codestream "
   77|      5|            "headers");
   78|      5|        }
   79|   133k|        else {
   80|   133k|          ui16 dfs_idx = cdp->get_dfs_index();
   81|   133k|          dfs = dfs->get_dfs(dfs_idx);
   82|   133k|          if (dfs == NULL) {
  ------------------
  |  Branch (82:15): [True: 4, False: 133k]
  ------------------
   83|      4|            OJPH_ERROR(0x00070002, "There is a problem with codestream "
  ------------------
  |  |  289|      4|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      4|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   84|      4|              "marker segments. COD/COC specifies the use of a DFS marker "
   85|      4|              "with index %d, but there are no such marker within the "
   86|      4|              "main codestream headers", dfs_idx);
   87|      4|          }
   88|   133k|          ds = dfs->get_dwt_type(num_decomps - res_num + 1);
   89|   133k|        }
   90|   133k|      }
   91|       |
   92|  1.57M|      ui32 transform_flags = 0;
   93|  1.57M|      if (res_num > 0)
  ------------------
  |  Branch (93:11): [True: 1.30M, False: 274k]
  ------------------
   94|  1.30M|      {
   95|  1.30M|        if (ds == param_dfs::BIDIR_DWT)
  ------------------
  |  Branch (95:13): [True: 1.21M, False: 89.4k]
  ------------------
   96|  1.21M|          transform_flags = HORZ_TRX | VERT_TRX;
   97|  89.4k|        else if (ds == param_dfs::HORZ_DWT)
  ------------------
  |  Branch (97:18): [True: 16.6k, False: 72.7k]
  ------------------
   98|  16.6k|          transform_flags = HORZ_TRX;
   99|  72.7k|        else if (ds == param_dfs::VERT_DWT)
  ------------------
  |  Branch (99:18): [True: 29.8k, False: 42.8k]
  ------------------
  100|  29.8k|          transform_flags = VERT_TRX;
  101|  1.30M|      }
  102|       |
  103|       |      //allocate resolution/subbands
  104|  1.57M|      ui32 trx0 = res_rect.org.x;
  105|  1.57M|      ui32 try0 = res_rect.org.y;
  106|  1.57M|      ui32 trx1 = res_rect.org.x + res_rect.siz.w;
  107|  1.57M|      ui32 try1 = res_rect.org.y + res_rect.siz.h;
  108|  1.57M|      allocator->pre_alloc_obj<subband>(4);
  109|  1.57M|      if (res_num > 0)
  ------------------
  |  Branch (109:11): [True: 1.30M, False: 274k]
  ------------------
  110|  1.30M|      {
  111|  1.30M|        if (ds == param_dfs::BIDIR_DWT)
  ------------------
  |  Branch (111:13): [True: 1.21M, False: 89.4k]
  ------------------
  112|  1.21M|        {
  113|  6.05M|          for (ui32 i = 0; i < 4; ++i)
  ------------------
  |  Branch (113:28): [True: 4.84M, False: 1.21M]
  ------------------
  114|  4.84M|          {
  115|  4.84M|            ui32 tbx0 = (trx0 - (i & 1) + 1) >> 1;
  116|  4.84M|            ui32 tbx1 = (trx1 - (i & 1) + 1) >> 1;
  117|  4.84M|            ui32 tby0 = (try0 - (i >> 1) + 1) >> 1;
  118|  4.84M|            ui32 tby1 = (try1 - (i >> 1) + 1) >> 1;
  119|       |
  120|  4.84M|            rect re;
  121|  4.84M|            re.org.x = tbx0;
  122|  4.84M|            re.org.y = tby0;
  123|  4.84M|            re.siz.w = tbx1 - tbx0;
  124|  4.84M|            re.siz.h = tby1 - tby0;
  125|  4.84M|            if (i == 0) {
  ------------------
  |  Branch (125:17): [True: 1.21M, False: 3.63M]
  ------------------
  126|  1.21M|              allocator->pre_alloc_obj<resolution>(1);
  127|  1.21M|              resolution::pre_alloc(codestream, re,
  128|  1.21M|                skipped_res_for_recon ? recon_res_rect : re,
  ------------------
  |  Branch (128:17): [True: 332k, False: 878k]
  ------------------
  129|  1.21M|                comp_num, res_num - 1);
  130|  1.21M|            }
  131|  3.63M|            else
  132|  3.63M|              subband::pre_alloc(codestream, re, comp_num, res_num,
  133|  3.63M|                                 transform_flags);
  134|  4.84M|          }
  135|  1.21M|        }
  136|  89.4k|        else if (ds == param_dfs::VERT_DWT)
  ------------------
  |  Branch (136:18): [True: 29.8k, False: 59.5k]
  ------------------
  137|  29.8k|        {
  138|  29.8k|          ui32 tby0, tby1;
  139|  29.8k|          rect re = res_rect;
  140|  29.8k|          tby0 = (try0 + 1) >> 1;
  141|  29.8k|          tby1 = (try1 + 1) >> 1;
  142|  29.8k|          re.org.y = tby0;
  143|  29.8k|          re.siz.h = tby1 - tby0;
  144|  29.8k|          allocator->pre_alloc_obj<resolution>(1);
  145|  29.8k|          resolution::pre_alloc(codestream, re,
  146|  29.8k|            skipped_res_for_recon ? recon_res_rect : re,
  ------------------
  |  Branch (146:13): [True: 11.8k, False: 18.0k]
  ------------------
  147|  29.8k|            comp_num, res_num - 1);
  148|       |
  149|  29.8k|          tby0 = try0 >> 1;
  150|  29.8k|          tby1 = try1 >> 1;
  151|  29.8k|          re.org.y = tby0;
  152|  29.8k|          re.siz.h = tby1 - tby0;
  153|  29.8k|          subband::pre_alloc(codestream, re, comp_num, res_num,
  154|  29.8k|                             transform_flags);
  155|  29.8k|        }
  156|  59.5k|        else if (ds == param_dfs::HORZ_DWT)
  ------------------
  |  Branch (156:18): [True: 16.6k, False: 42.8k]
  ------------------
  157|  16.6k|        {
  158|  16.6k|          ui32 tbx0, tbx1;
  159|  16.6k|          rect re = res_rect;
  160|  16.6k|          tbx0 = (trx0 + 1) >> 1;
  161|  16.6k|          tbx1 = (trx1 + 1) >> 1;
  162|  16.6k|          re.org.x = tbx0;
  163|  16.6k|          re.siz.w = tbx1 - tbx0;
  164|  16.6k|          allocator->pre_alloc_obj<resolution>(1);
  165|  16.6k|          resolution::pre_alloc(codestream, re,
  166|  16.6k|            skipped_res_for_recon ? recon_res_rect : re,
  ------------------
  |  Branch (166:13): [True: 3.32k, False: 13.3k]
  ------------------
  167|  16.6k|            comp_num, res_num - 1);
  168|       |
  169|  16.6k|          tbx0 = trx0 >> 1;
  170|  16.6k|          tbx1 = trx1 >> 1;
  171|  16.6k|          re.org.x = tbx0;
  172|  16.6k|          re.siz.w = tbx1 - tbx0;
  173|  16.6k|          subband::pre_alloc(codestream, re, comp_num, res_num,
  174|  16.6k|                             transform_flags);
  175|  16.6k|        }
  176|  42.8k|        else
  177|  42.8k|        {
  178|  42.8k|          assert(ds == param_dfs::NO_DWT);
  179|  42.8k|          allocator->pre_alloc_obj<resolution>(1);
  180|  42.8k|          resolution::pre_alloc(codestream, res_rect,
  181|  42.8k|            skipped_res_for_recon ? recon_res_rect : res_rect,
  ------------------
  |  Branch (181:13): [True: 15.9k, False: 26.9k]
  ------------------
  182|  42.8k|            comp_num, res_num - 1);
  183|  42.8k|        }
  184|  1.30M|      }
  185|   274k|      else
  186|   274k|        subband::pre_alloc(codestream, res_rect, comp_num, res_num,
  187|   274k|                           transform_flags);
  188|       |
  189|       |      //prealloc precincts
  190|  1.57M|      size log_PP = cdp->get_log_precinct_size(res_num);
  191|  1.57M|      size num_precincts;
  192|  1.57M|      if (trx0 != trx1 && try0 != try1)
  ------------------
  |  Branch (192:11): [True: 769k, False: 805k]
  |  Branch (192:27): [True: 385k, False: 383k]
  ------------------
  193|   385k|      {
  194|   385k|        num_precincts.w = (trx1 + (1 << log_PP.w) - 1) >> log_PP.w;
  195|   385k|        num_precincts.w -= trx0 >> log_PP.w;
  196|   385k|        num_precincts.h = (try1 + (1 << log_PP.h) - 1) >> log_PP.h;
  197|   385k|        num_precincts.h -= try0 >> log_PP.h;
  198|   385k|        allocator->pre_alloc_obj<precinct>((size_t)num_precincts.area());
  199|   385k|      }
  200|       |
  201|       |      //allocate lines
  202|  1.57M|      if (skipped_res_for_recon == false)
  ------------------
  |  Branch (202:11): [True: 1.21M, False: 363k]
  ------------------
  203|  1.21M|      {
  204|  1.21M|        ui32 num_steps = atk->get_num_steps();
  205|  1.21M|        allocator->pre_alloc_obj<line_buf>(num_steps + 2);
  206|  1.21M|        allocator->pre_alloc_obj<lifting_buf>(num_steps + 2);
  207|       |
  208|  1.21M|        const param_qcd* qp = codestream->access_qcd()->get_qcc(comp_num);
  209|  1.21M|        ui32 precision = qp->propose_precision(cdp);
  210|  1.21M|        const param_atk* atk = cdp->access_atk();
  211|  1.21M|        bool reversible = atk->is_reversible();
  212|       |
  213|  1.21M|        ui32 width = res_rect.siz.w + 1;
  214|  1.21M|        if (reversible)
  ------------------
  |  Branch (214:13): [True: 924k, False: 286k]
  ------------------
  215|   924k|        {
  216|   924k|          if (precision <= 32) {
  ------------------
  |  Branch (216:15): [True: 647k, False: 276k]
  ------------------
  217|  1.94M|            for (ui32 i = 0; i < num_steps; ++i)
  ------------------
  |  Branch (217:30): [True: 1.29M, False: 647k]
  ------------------
  218|  1.29M|              allocator->pre_alloc_data<si32>(width, 1);
  219|   647k|            allocator->pre_alloc_data<si32>(width, 1);
  220|   647k|            allocator->pre_alloc_data<si32>(width, 1);
  221|   647k|          }
  222|   276k|          else
  223|   276k|          {
  224|   826k|            for (ui32 i = 0; i < num_steps; ++i)
  ------------------
  |  Branch (224:30): [True: 550k, False: 276k]
  ------------------
  225|   550k|              allocator->pre_alloc_data<si64>(width, 1);
  226|   276k|            allocator->pre_alloc_data<si64>(width, 1);
  227|   276k|            allocator->pre_alloc_data<si64>(width, 1);
  228|   276k|          }
  229|   924k|        }
  230|   286k|        else {
  231|  1.40M|          for (ui32 i = 0; i < num_steps; ++i)
  ------------------
  |  Branch (231:28): [True: 1.12M, False: 286k]
  ------------------
  232|  1.12M|            allocator->pre_alloc_data<float>(width, 1);
  233|   286k|          allocator->pre_alloc_data<float>(width, 1);
  234|   286k|          allocator->pre_alloc_data<float>(width, 1);
  235|   286k|        }
  236|  1.21M|      }
  237|  1.57M|    }
_ZN4ojph5local10resolution14finalize_allocEPNS0_10codestreamERKNS_4rectES6_jjNS_5pointES7_PNS0_9tile_compEPS1_:
  247|  1.56M|    {
  248|  1.56M|      mem_fixed_allocator* allocator = codestream->get_allocator();
  249|  1.56M|      elastic = codestream->get_elastic_alloc();
  250|  1.56M|      const param_cod* cdp = codestream->get_coc(comp_num);
  251|  1.56M|      ui32 t, num_decomps = cdp->get_num_decompositions();
  252|  1.56M|      t = num_decomps - codestream->get_skipped_res_for_recon();
  253|  1.56M|      skipped_res_for_recon = res_num > t;
  254|  1.56M|      t = num_decomps - codestream->get_skipped_res_for_read();
  255|  1.56M|      skipped_res_for_read = res_num > t;
  256|       |
  257|  1.56M|      this->comp_downsamp = comp_downsamp;
  258|  1.56M|      this->parent_comp = parent_tile_comp;
  259|  1.56M|      this->parent_res = parent_res;
  260|  1.56M|      this->res_rect = res_rect;
  261|  1.56M|      this->comp_num = comp_num;
  262|  1.56M|      this->res_num = res_num;
  263|  1.56M|      this->num_bytes = 0;
  264|  1.56M|      this->atk = cdp->access_atk();
  265|  1.56M|      param_dfs::dfs_dwt_type ds = param_dfs::BIDIR_DWT;
  266|  1.56M|      if (cdp->is_dfs_defined()) {
  ------------------
  |  Branch (266:11): [True: 131k, False: 1.42M]
  ------------------
  267|   131k|        const param_dfs* dfs = codestream->access_dfs();
  268|   131k|        if (dfs == NULL) {
  ------------------
  |  Branch (268:13): [True: 0, False: 131k]
  ------------------
  269|      0|          OJPH_ERROR(0x00070011, "There is a problem with codestream "
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  270|      0|            "marker segments. COD/COC specifies the use of a DFS marker "
  271|      0|            "but there are no DFS markers within the main codestream "
  272|      0|            "headers");
  273|      0|        }
  274|   131k|        else {
  275|   131k|          ui16 dfs_idx = cdp->get_dfs_index();
  276|   131k|          dfs = dfs->get_dfs(dfs_idx);
  277|   131k|          if (dfs == NULL) {
  ------------------
  |  Branch (277:15): [True: 0, False: 131k]
  ------------------
  278|      0|            OJPH_ERROR(0x00070012, "There is a problem with codestream "
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  279|      0|              "marker segments. COD/COC specifies the use of a DFS marker "
  280|      0|              "with index %d, but there are no such marker within the "
  281|      0|              "main codestream headers", dfs_idx);
  282|      0|          }
  283|   131k|          ui32 num_decomps = cdp->get_num_decompositions();
  284|   131k|          ds = dfs->get_dwt_type(num_decomps - res_num + 1);
  285|   131k|        }
  286|   131k|      }
  287|       |
  288|  1.56M|      transform_flags = 0;
  289|  1.56M|      if (res_num > 0)
  ------------------
  |  Branch (289:11): [True: 1.28M, False: 271k]
  ------------------
  290|  1.28M|      {
  291|  1.28M|        if (ds == param_dfs::BIDIR_DWT)
  ------------------
  |  Branch (291:13): [True: 1.20M, False: 88.0k]
  ------------------
  292|  1.20M|          transform_flags = HORZ_TRX | VERT_TRX;
  293|  88.0k|        else if (ds == param_dfs::HORZ_DWT)
  ------------------
  |  Branch (293:18): [True: 16.3k, False: 71.6k]
  ------------------
  294|  16.3k|          transform_flags = HORZ_TRX;
  295|  71.6k|        else if (ds == param_dfs::VERT_DWT)
  ------------------
  |  Branch (295:18): [True: 29.4k, False: 42.2k]
  ------------------
  296|  29.4k|          transform_flags = VERT_TRX;
  297|  1.28M|      }
  298|       |
  299|       |      //allocate resolution/subbands
  300|  1.56M|      ui32 trx0 = res_rect.org.x;
  301|  1.56M|      ui32 try0 = res_rect.org.y;
  302|  1.56M|      ui32 trx1 = res_rect.org.x + res_rect.siz.w;
  303|  1.56M|      ui32 try1 = res_rect.org.y + res_rect.siz.h;
  304|  1.56M|      bands = allocator->post_alloc_obj<subband>(4);
  305|  7.80M|      for (int i = 0; i < 4; ++i)
  ------------------
  |  Branch (305:23): [True: 6.24M, False: 1.56M]
  ------------------
  306|  6.24M|        new (bands + i) subband;
  307|  1.56M|      if (res_num > 0)
  ------------------
  |  Branch (307:11): [True: 1.28M, False: 271k]
  ------------------
  308|  1.28M|      {
  309|  1.28M|        if (ds == param_dfs::BIDIR_DWT)
  ------------------
  |  Branch (309:13): [True: 1.20M, False: 88.0k]
  ------------------
  310|  1.20M|        {
  311|  6.00M|          for (ui32 i = 0; i < 4; ++i)
  ------------------
  |  Branch (311:28): [True: 4.80M, False: 1.20M]
  ------------------
  312|  4.80M|          {
  313|  4.80M|            ui32 tbx0 = (trx0 - (i & 1) + 1) >> 1;
  314|  4.80M|            ui32 tbx1 = (trx1 - (i & 1) + 1) >> 1;
  315|  4.80M|            ui32 tby0 = (try0 - (i >> 1) + 1) >> 1;
  316|  4.80M|            ui32 tby1 = (try1 - (i >> 1) + 1) >> 1;
  317|       |
  318|  4.80M|            rect re;
  319|  4.80M|            re.org.x = tbx0;
  320|  4.80M|            re.org.y = tby0;
  321|  4.80M|            re.siz.w = tbx1 - tbx0;
  322|  4.80M|            re.siz.h = tby1 - tby0;
  323|  4.80M|            if (i == 0) {
  ------------------
  |  Branch (323:17): [True: 1.20M, False: 3.60M]
  ------------------
  324|  1.20M|              point next_res_downsamp;
  325|  1.20M|              next_res_downsamp.x = res_downsamp.x * 2;
  326|  1.20M|              next_res_downsamp.y = res_downsamp.y * 2;
  327|       |
  328|  1.20M|              child_res = allocator->post_alloc_obj<resolution>(1);
  329|  1.20M|              child_res->finalize_alloc(codestream, re,
  330|  1.20M|                skipped_res_for_recon ? recon_res_rect : re, comp_num,
  ------------------
  |  Branch (330:17): [True: 327k, False: 873k]
  ------------------
  331|  1.20M|                res_num - 1, comp_downsamp, next_res_downsamp,
  332|  1.20M|                parent_tile_comp, this);
  333|  1.20M|            }
  334|  3.60M|            else
  335|  3.60M|              bands[i].finalize_alloc(codestream, re, this, res_num, i);
  336|  4.80M|          }
  337|  1.20M|        }
  338|  88.0k|        else if (ds == param_dfs::VERT_DWT)
  ------------------
  |  Branch (338:18): [True: 29.4k, False: 58.5k]
  ------------------
  339|  29.4k|        {
  340|  29.4k|          ui32 tby0, tby1;
  341|  29.4k|          rect re = res_rect;
  342|  29.4k|          tby0 = (try0 + 1) >> 1;
  343|  29.4k|          tby1 = (try1 + 1) >> 1;
  344|  29.4k|          re.org.y = tby0;
  345|  29.4k|          re.siz.h = tby1 - tby0;
  346|       |
  347|  29.4k|          point next_res_downsamp;
  348|  29.4k|          next_res_downsamp.x = res_downsamp.x;
  349|  29.4k|          next_res_downsamp.y = res_downsamp.y * 2;
  350|  29.4k|          child_res = allocator->post_alloc_obj<resolution>(1);
  351|  29.4k|          child_res->finalize_alloc(codestream, re,
  352|  29.4k|            skipped_res_for_recon ? recon_res_rect : re, comp_num,
  ------------------
  |  Branch (352:13): [True: 11.7k, False: 17.6k]
  ------------------
  353|  29.4k|            res_num - 1, comp_downsamp, next_res_downsamp,
  354|  29.4k|            parent_tile_comp, this);
  355|       |
  356|  29.4k|          tby0 = try0 >> 1;
  357|  29.4k|          tby1 = try1 >> 1;
  358|  29.4k|          re.org.y = tby0;
  359|  29.4k|          re.siz.h = tby1 - tby0;
  360|  29.4k|          bands[2].finalize_alloc(codestream, re, this, res_num, 2);
  361|  29.4k|        }
  362|  58.5k|        else if (ds == param_dfs::HORZ_DWT)
  ------------------
  |  Branch (362:18): [True: 16.3k, False: 42.2k]
  ------------------
  363|  16.3k|        {
  364|  16.3k|          ui32 tbx0, tbx1;
  365|  16.3k|          rect re = res_rect;
  366|  16.3k|          tbx0 = (trx0 + 1) >> 1;
  367|  16.3k|          tbx1 = (trx1 + 1) >> 1;
  368|  16.3k|          re.org.x = tbx0;
  369|  16.3k|          re.siz.w = tbx1 - tbx0;
  370|       |
  371|  16.3k|          point next_res_downsamp;
  372|  16.3k|          next_res_downsamp.x = res_downsamp.x * 2;
  373|  16.3k|          next_res_downsamp.y = res_downsamp.y;
  374|  16.3k|          child_res = allocator->post_alloc_obj<resolution>(1);
  375|  16.3k|          child_res->finalize_alloc(codestream, re,
  376|  16.3k|            skipped_res_for_recon ? recon_res_rect : re, comp_num,
  ------------------
  |  Branch (376:13): [True: 3.26k, False: 13.0k]
  ------------------
  377|  16.3k|            res_num - 1, comp_downsamp, next_res_downsamp,
  378|  16.3k|            parent_tile_comp, this);
  379|       |
  380|  16.3k|          tbx0 = trx0 >> 1;
  381|  16.3k|          tbx1 = trx1 >> 1;
  382|  16.3k|          re.org.x = tbx0;
  383|  16.3k|          re.siz.w = tbx1 - tbx0;
  384|  16.3k|          bands[1].finalize_alloc(codestream, re, this, res_num, 1);
  385|  16.3k|        }
  386|  42.2k|        else
  387|  42.2k|        {
  388|  42.2k|          assert(ds == param_dfs::NO_DWT);
  389|  42.2k|          child_res = allocator->post_alloc_obj<resolution>(1);
  390|  42.2k|          child_res->finalize_alloc(codestream, res_rect,
  391|  42.2k|            skipped_res_for_recon ? recon_res_rect : res_rect, comp_num,
  ------------------
  |  Branch (391:13): [True: 15.8k, False: 26.3k]
  ------------------
  392|  42.2k|            res_num - 1, comp_downsamp, res_downsamp, parent_tile_comp, this);
  393|  42.2k|        }
  394|  1.28M|      }
  395|   271k|      else {
  396|   271k|        child_res = NULL;
  397|   271k|        bands[0].finalize_alloc(codestream, res_rect, this, res_num, 0);
  398|   271k|      }
  399|       |
  400|       |      //finalize precincts
  401|  1.56M|      log_PP = cdp->get_log_precinct_size(res_num);
  402|  1.56M|      num_precincts = size();
  403|  1.56M|      precincts = NULL;
  404|  1.56M|      if (trx0 != trx1 && try0 != try1)
  ------------------
  |  Branch (404:11): [True: 757k, False: 803k]
  |  Branch (404:27): [True: 380k, False: 376k]
  ------------------
  405|   380k|      {
  406|   380k|        num_precincts.w = (trx1 + (1 << log_PP.w) - 1) >> log_PP.w;
  407|   380k|        num_precincts.w -= trx0 >> log_PP.w;
  408|   380k|        num_precincts.h = (try1 + (1 << log_PP.h) - 1) >> log_PP.h;
  409|   380k|        num_precincts.h -= try0 >> log_PP.h;
  410|   380k|        precincts =
  411|   380k|          allocator->post_alloc_obj<precinct>((size_t)num_precincts.area());
  412|   380k|        ui64 num = num_precincts.area();
  413|  8.43M|        for (ui64 i = 0; i < num; ++i)
  ------------------
  |  Branch (413:26): [True: 8.05M, False: 380k]
  ------------------
  414|  8.05M|          precincts[i] = precinct();
  415|   380k|      }
  416|       |      // precincts will be initialized in full shortly
  417|       |
  418|  1.56M|      ui32 x_lower_bound = (trx0 >> log_PP.w) << log_PP.w;
  419|  1.56M|      ui32 y_lower_bound = (try0 >> log_PP.h) << log_PP.h;
  420|       |
  421|  1.56M|      precinct* pp = precincts;
  422|  1.56M|      point tile_top_left = parent_tile_comp->get_tile()->get_tile_rect().org;
  423|  3.07M|      for (ui32 y = 0; y < num_precincts.h; ++y)
  ------------------
  |  Branch (423:24): [True: 1.51M, False: 1.56M]
  ------------------
  424|  1.51M|      {
  425|  1.51M|        ui32 ppy0 = y_lower_bound + (y << log_PP.h);
  426|  9.56M|        for (ui32 x = 0; x < num_precincts.w; ++x, ++pp)
  ------------------
  |  Branch (426:26): [True: 8.05M, False: 1.51M]
  ------------------
  427|  8.05M|        {
  428|  8.05M|          ui32 ppx0 = x_lower_bound + (x << log_PP.w);
  429|  8.05M|          point t(res_downsamp.x * ppx0, res_downsamp.y * ppy0);
  430|  8.05M|          t.x = t.x > tile_top_left.x ? t.x : tile_top_left.x;
  ------------------
  |  Branch (430:17): [True: 6.55M, False: 1.49M]
  ------------------
  431|  8.05M|          t.y = t.y > tile_top_left.y ? t.y : tile_top_left.y;
  ------------------
  |  Branch (431:17): [True: 4.83M, False: 3.22M]
  ------------------
  432|  8.05M|          pp->img_point = t;
  433|  8.05M|          pp->bands = bands;
  434|  8.05M|          pp->may_use_sop = cdp->packets_may_use_sop();
  435|  8.05M|          pp->uses_eph = cdp->packets_use_eph();
  436|  8.05M|          pp->scratch = codestream->get_precinct_scratch();
  437|  8.05M|          pp->coded = NULL;
  438|  8.05M|        }
  439|  1.51M|      }
  440|  7.80M|      for (int i = 0; i < 4; ++i)
  ------------------
  |  Branch (440:23): [True: 6.24M, False: 1.56M]
  ------------------
  441|  6.24M|        if (bands[i].exists())
  ------------------
  |  Branch (441:13): [True: 335k, False: 5.90M]
  ------------------
  442|   335k|          bands[i].get_cb_indices(num_precincts, precincts);
  443|       |
  444|       |      // determine how to divide scratch into multiple levels of
  445|       |      // tag trees
  446|  1.56M|      size log_cb = cdp->get_log_block_dims();
  447|  1.56M|      log_PP.w -= (transform_flags & HORZ_TRX) ? 1 : 0;
  ------------------
  |  Branch (447:19): [True: 1.21M, False: 343k]
  ------------------
  448|  1.56M|      log_PP.h -= (transform_flags & VERT_TRX) ? 1 : 0;
  ------------------
  |  Branch (448:19): [True: 1.23M, False: 330k]
  ------------------
  449|  1.56M|      size ratio;
  450|  1.56M|      ratio.w = log_PP.w - ojph_min(log_cb.w, log_PP.w);
  ------------------
  |  |   76|  1.56M|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 276k, False: 1.28M]
  |  |  ------------------
  ------------------
  451|  1.56M|      ratio.h = log_PP.h - ojph_min(log_cb.h, log_PP.h);
  ------------------
  |  |   76|  1.56M|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 250k, False: 1.30M]
  |  |  ------------------
  ------------------
  452|  1.56M|      max_num_levels = ojph_max(ratio.w, ratio.h);
  ------------------
  |  |   73|  1.56M|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 160k, False: 1.40M]
  |  |  ------------------
  ------------------
  453|  1.56M|      ui32 val = 1u << (max_num_levels << 1);
  454|  1.56M|      tag_tree_size = (int)((val * 4 + 2) / 3);
  455|  1.56M|      ++max_num_levels;
  456|  1.56M|      level_index[0] = 0;
  457|  5.35M|      for (ui32 i = 1; i <= max_num_levels; ++i, val >>= 2)
  ------------------
  |  Branch (457:24): [True: 3.79M, False: 1.56M]
  ------------------
  458|  3.79M|        level_index[i] = level_index[i - 1] + val;
  459|  1.56M|      cur_precinct_loc = point(0, 0);
  460|       |
  461|       |      //allocate lines
  462|  1.56M|      if (skipped_res_for_recon == false)
  ------------------
  |  Branch (462:11): [True: 1.20M, False: 358k]
  ------------------
  463|  1.20M|      {
  464|  1.20M|        this->atk = cdp->access_atk();
  465|  1.20M|        this->reversible = atk->is_reversible();
  466|  1.20M|        this->num_steps = atk->get_num_steps();
  467|       |        // create line buffers and lifting_bufs
  468|  1.20M|        lines = allocator->post_alloc_obj<line_buf>(num_steps + 2);
  469|  1.20M|        ssp = allocator->post_alloc_obj<lifting_buf>(num_steps + 2);
  470|  1.20M|        sig = ssp + num_steps;
  471|  1.20M|        aug = ssp + num_steps + 1;
  472|       |
  473|       |        // initiate lifting_bufs
  474|  4.13M|        for (ui32 i = 0; i < num_steps; ++i) {
  ------------------
  |  Branch (474:26): [True: 2.93M, False: 1.20M]
  ------------------
  475|  2.93M|          new (ssp + i) lifting_buf;
  476|  2.93M|          ssp[i].line = lines + i;
  477|  2.93M|        };
  478|  1.20M|        new (sig) lifting_buf;
  479|  1.20M|        sig->line = lines + num_steps;
  480|  1.20M|        new (aug) lifting_buf;
  481|  1.20M|        aug->line = lines + num_steps + 1;
  482|       |
  483|  1.20M|        const param_qcd* qp = codestream->access_qcd()->get_qcc(comp_num);
  484|  1.20M|        ui32 precision = qp->propose_precision(cdp);
  485|       |
  486|       |        // initiate storage of line_buf
  487|  1.20M|        ui32 width = res_rect.siz.w + 1;
  488|  1.20M|        if (this->reversible)
  ------------------
  |  Branch (488:13): [True: 923k, False: 279k]
  ------------------
  489|   923k|        {
  490|   923k|          if (precision <= 32)
  ------------------
  |  Branch (490:15): [True: 647k, False: 276k]
  ------------------
  491|   647k|          {
  492|  1.93M|            for (ui32 i = 0; i < num_steps; ++i)
  ------------------
  |  Branch (492:30): [True: 1.29M, False: 647k]
  ------------------
  493|  1.29M|              ssp[i].line->wrap(
  494|  1.29M|                allocator->post_alloc_data<si32>(width, 1), width, 1);
  495|   647k|            sig->line->wrap(
  496|   647k|              allocator->post_alloc_data<si32>(width, 1), width, 1);
  497|   647k|            aug->line->wrap(
  498|   647k|              allocator->post_alloc_data<si32>(width, 1), width, 1);
  499|   647k|          }
  500|   276k|          else
  501|   276k|          {
  502|   825k|            for (ui32 i = 0; i < num_steps; ++i)
  ------------------
  |  Branch (502:30): [True: 549k, False: 276k]
  ------------------
  503|   549k|              ssp[i].line->wrap(
  504|   549k|                allocator->post_alloc_data<si64>(width, 1), width, 1);
  505|   276k|            sig->line->wrap(
  506|   276k|              allocator->post_alloc_data<si64>(width, 1), width, 1);
  507|   276k|            aug->line->wrap(
  508|   276k|              allocator->post_alloc_data<si64>(width, 1), width, 1);
  509|   276k|          }
  510|   923k|        }
  511|   279k|        else
  512|   279k|        {
  513|  1.36M|            for (ui32 i = 0; i < num_steps; ++i)
  ------------------
  |  Branch (513:30): [True: 1.09M, False: 279k]
  ------------------
  514|  1.09M|              ssp[i].line->wrap(
  515|  1.09M|                allocator->post_alloc_data<float>(width, 1), width, 1);
  516|   279k|            sig->line->wrap(
  517|   279k|              allocator->post_alloc_data<float>(width, 1), width, 1);
  518|   279k|            aug->line->wrap(
  519|   279k|              allocator->post_alloc_data<float>(width, 1), width, 1);
  520|   279k|        }
  521|       |
  522|  1.20M|        cur_line = 0;
  523|  1.20M|        rows_to_produce = res_rect.siz.h;
  524|  1.20M|        vert_even = (res_rect.org.y & 1) == 0;
  525|  1.20M|        horz_even = (res_rect.org.x & 1) == 0;
  526|  1.20M|      }
  527|  1.56M|    }
_ZN4ojph5local10resolution9pull_lineEv:
  714|  7.03M|    {
  715|  7.03M|      if (res_num == 0)
  ------------------
  |  Branch (715:11): [True: 634k, False: 6.39M]
  ------------------
  716|   634k|      {
  717|   634k|        assert(child_res == NULL);
  718|   634k|        return bands[0].pull_line();
  719|   634k|      }
  720|       |
  721|  6.39M|      if (skipped_res_for_recon == true)
  ------------------
  |  Branch (721:11): [True: 609k, False: 5.78M]
  ------------------
  722|   609k|        return child_res->pull_line();
  723|       |
  724|  5.78M|      ui32 width = res_rect.siz.w;
  725|  5.78M|      if (width == 0)
  ------------------
  |  Branch (725:11): [True: 195k, False: 5.59M]
  ------------------
  726|   195k|        return NULL;
  727|       |
  728|  5.59M|      if (transform_flags & VERT_TRX)
  ------------------
  |  Branch (728:11): [True: 4.81M, False: 781k]
  ------------------
  729|  4.81M|      {
  730|  4.81M|        if (reversible)
  ------------------
  |  Branch (730:13): [True: 3.16M, False: 1.65M]
  ------------------
  731|  3.16M|        {
  732|  3.16M|          if (res_rect.siz.h > 1)
  ------------------
  |  Branch (732:15): [True: 3.07M, False: 87.2k]
  ------------------
  733|  3.07M|          {
  734|  3.07M|            if (sig->active) {
  ------------------
  |  Branch (734:17): [True: 1.51M, False: 1.55M]
  ------------------
  735|  1.51M|              sig->active = false;
  736|  1.51M|              return sig->line;
  737|  1.55M|            };
  738|  1.55M|            for (;;)
  739|  3.12M|            {
  740|       |              //horizontal transform
  741|  3.12M|              if (cur_line < res_rect.siz.h)
  ------------------
  |  Branch (741:19): [True: 3.07M, False: 55.2k]
  ------------------
  742|  3.07M|              {
  743|  3.07M|                if (vert_even) { // even
  ------------------
  |  Branch (743:21): [True: 1.53M, False: 1.53M]
  ------------------
  744|  1.53M|                  if (transform_flags & HORZ_TRX)
  ------------------
  |  Branch (744:23): [True: 1.53M, False: 1.58k]
  ------------------
  745|  1.53M|                    rev_horz_syn(atk, aug->line, child_res->pull_line(),
  746|  1.53M|                      bands[1].pull_line(), width, horz_even);
  747|  1.58k|                  else
  748|  1.58k|                    memcpy(aug->line->p, child_res->pull_line()->p,
  749|  1.58k|                      (size_t)width
  750|  1.58k|                      * (aug->line->flags & line_buf::LFT_SIZE_MASK));
  751|  1.53M|                  aug->active = true;
  752|  1.53M|                  vert_even = !vert_even;
  753|  1.53M|                  ++cur_line;
  754|  1.53M|                  continue;
  755|  1.53M|                }
  756|  1.53M|                else {
  757|  1.53M|                  if (transform_flags & HORZ_TRX)
  ------------------
  |  Branch (757:23): [True: 1.53M, False: 1.58k]
  ------------------
  758|  1.53M|                    rev_horz_syn(atk, sig->line, bands[2].pull_line(),
  759|  1.53M|                      bands[3].pull_line(), width, horz_even);
  760|  1.58k|                  else
  761|  1.58k|                    memcpy(sig->line->p, bands[2].pull_line()->p,
  762|  1.58k|                      (size_t)width
  763|  1.58k|                      * (sig->line->flags & line_buf::LFT_SIZE_MASK));
  764|  1.53M|                  sig->active = true;
  765|  1.53M|                  vert_even = !vert_even;
  766|  1.53M|                  ++cur_line;
  767|  1.53M|                }
  768|  3.07M|              }
  769|       |
  770|       |              //vertical transform
  771|  4.51M|              for (ui32 i = 0; i < num_steps; ++i)
  ------------------
  |  Branch (771:32): [True: 2.92M, False: 1.58M]
  ------------------
  772|  2.92M|              {
  773|  2.92M|                if (aug->active && (sig->active || ssp[i].active))
  ------------------
  |  Branch (773:21): [True: 2.82M, False: 106k]
  |  Branch (773:37): [True: 2.78M, False: 36.4k]
  |  Branch (773:52): [True: 36.4k, False: 0]
  ------------------
  774|  2.82M|                {
  775|  2.82M|                  line_buf* dp = aug->line;
  776|  2.82M|                  line_buf* sp1 = sig->active ? sig->line : ssp[i].line;
  ------------------
  |  Branch (776:35): [True: 2.78M, False: 36.4k]
  ------------------
  777|  2.82M|                  line_buf* sp2 = ssp[i].active ? ssp[i].line : sig->line;
  ------------------
  |  Branch (777:35): [True: 2.78M, False: 36.4k]
  ------------------
  778|  2.82M|                  const lifting_step* s = atk->get_step(i);
  779|  2.82M|                  rev_vert_step(s, sp1, sp2, dp, width, true);
  780|  2.82M|                }
  781|  2.92M|                lifting_buf t = *aug; *aug = ssp[i]; ssp[i] = *sig; *sig = t;
  782|  2.92M|              }
  783|       |
  784|  1.58M|              if (aug->active) {
  ------------------
  |  Branch (784:19): [True: 1.53M, False: 50.8k]
  ------------------
  785|  1.53M|                aug->active = false;
  786|  1.53M|                return aug->line;
  787|  1.53M|              }
  788|  50.8k|              if (sig->active) {
  ------------------
  |  Branch (788:19): [True: 14.4k, False: 36.4k]
  ------------------
  789|  14.4k|                sig->active = false;
  790|  14.4k|                return sig->line;
  791|  36.4k|              };
  792|  36.4k|            }
  793|  1.55M|          }
  794|  87.2k|          else
  795|  87.2k|          {
  796|  87.2k|            if (vert_even) {
  ------------------
  |  Branch (796:17): [True: 51.4k, False: 35.8k]
  ------------------
  797|  51.4k|              if (transform_flags & HORZ_TRX)
  ------------------
  |  Branch (797:19): [True: 50.9k, False: 450]
  ------------------
  798|  50.9k|                rev_horz_syn(atk, aug->line, child_res->pull_line(),
  799|  50.9k|                  bands[1].pull_line(), width, horz_even);
  800|    450|              else
  801|    450|                memcpy(aug->line->p, child_res->pull_line()->p,
  802|    450|                  (size_t)width
  803|    450|                  * (aug->line->flags & line_buf::LFT_SIZE_MASK));
  804|  51.4k|            }
  805|  35.8k|            else
  806|  35.8k|            {
  807|  35.8k|              if (transform_flags & HORZ_TRX)
  ------------------
  |  Branch (807:19): [True: 35.1k, False: 744]
  ------------------
  808|  35.1k|                rev_horz_syn(atk, aug->line, bands[2].pull_line(),
  809|  35.1k|                  bands[3].pull_line(), width, horz_even);
  810|    744|              else
  811|    744|                memcpy(aug->line->p, bands[2].pull_line()->p,
  812|    744|                  (size_t)width
  813|    744|                  * (aug->line->flags & line_buf::LFT_SIZE_MASK));
  814|  35.8k|              if (aug->line->flags & line_buf::LFT_32BIT)
  ------------------
  |  Branch (814:19): [True: 28.9k, False: 6.95k]
  ------------------
  815|  28.9k|              {
  816|  28.9k|                si32* sp = aug->line->i32;
  817|   941k|                for (ui32 i = width; i > 0; --i)
  ------------------
  |  Branch (817:38): [True: 912k, False: 28.9k]
  ------------------
  818|   912k|                  *sp++ >>= 1;
  819|  28.9k|              }
  820|  6.95k|              else
  821|  6.95k|              {
  822|  6.95k|                assert(aug->line->flags & line_buf::LFT_64BIT);
  823|  6.95k|                si64* sp = aug->line->i64;
  824|   283k|                for (ui32 i = width; i > 0; --i)
  ------------------
  |  Branch (824:38): [True: 276k, False: 6.95k]
  ------------------
  825|   276k|                  *sp++ >>= 1;
  826|  6.95k|              }
  827|  35.8k|            }
  828|  87.2k|            return aug->line;
  829|  87.2k|          }
  830|  3.16M|        }
  831|  1.65M|        else
  832|  1.65M|        {
  833|  1.65M|          if (res_rect.siz.h > 1)
  ------------------
  |  Branch (833:15): [True: 1.61M, False: 35.0k]
  ------------------
  834|  1.61M|          {
  835|  1.61M|            if (sig->active) {
  ------------------
  |  Branch (835:17): [True: 798k, False: 818k]
  ------------------
  836|   798k|              sig->active = false;
  837|   798k|              return sig->line;
  838|   818k|            };
  839|   818k|            for (;;)
  840|  1.67M|            {
  841|       |              //horizontal transform
  842|  1.67M|              if (cur_line < res_rect.siz.h)
  ------------------
  |  Branch (842:19): [True: 1.61M, False: 56.6k]
  ------------------
  843|  1.61M|              {
  844|  1.61M|                if (vert_even) { // even
  ------------------
  |  Branch (844:21): [True: 809k, False: 808k]
  ------------------
  845|   809k|                  if (transform_flags & HORZ_TRX)
  ------------------
  |  Branch (845:23): [True: 654k, False: 155k]
  ------------------
  846|   654k|                    irv_horz_syn(atk, aug->line, child_res->pull_line(),
  847|   654k|                      bands[1].pull_line(), width, horz_even);
  848|   155k|                  else
  849|   155k|                    memcpy(aug->line->f32, child_res->pull_line()->f32,
  850|   155k|                      width * sizeof(float));
  851|   809k|                  aug->active = true;
  852|   809k|                  vert_even = !vert_even;
  853|   809k|                  ++cur_line;
  854|       |
  855|   809k|                  const float K = atk->get_K();
  856|   809k|                  irv_vert_times_K(K, aug->line, width);
  857|       |
  858|   809k|                  continue;
  859|   809k|                }
  860|   808k|                else {
  861|   808k|                  if (transform_flags & HORZ_TRX)
  ------------------
  |  Branch (861:23): [True: 652k, False: 155k]
  ------------------
  862|   652k|                    irv_horz_syn(atk, sig->line, bands[2].pull_line(),
  863|   652k|                      bands[3].pull_line(), width, horz_even);
  864|   155k|                  else
  865|   155k|                    memcpy(sig->line->f32, bands[2].pull_line()->f32,
  866|   155k|                      width * sizeof(float));
  867|   808k|                  sig->active = true;
  868|   808k|                  vert_even = !vert_even;
  869|   808k|                  ++cur_line;
  870|       |
  871|   808k|                  const float K_inv = 1.0f / atk->get_K();
  872|   808k|                  irv_vert_times_K(K_inv, sig->line, width);
  873|   808k|                }
  874|  1.61M|              }
  875|       |
  876|       |              //vertical transform
  877|  4.31M|              for (ui32 i = 0; i < num_steps; ++i)
  ------------------
  |  Branch (877:32): [True: 3.45M, False: 864k]
  ------------------
  878|  3.45M|              {
  879|  3.45M|                if (aug->active && (sig->active || ssp[i].active))
  ------------------
  |  Branch (879:21): [True: 3.23M, False: 223k]
  |  Branch (879:37): [True: 3.18M, False: 45.7k]
  |  Branch (879:52): [True: 45.7k, False: 0]
  ------------------
  880|  3.23M|                {
  881|  3.23M|                  line_buf* dp = aug->line;
  882|  3.23M|                  line_buf* sp1 = sig->active ? sig->line : ssp[i].line;
  ------------------
  |  Branch (882:35): [True: 3.18M, False: 45.7k]
  ------------------
  883|  3.23M|                  line_buf* sp2 = ssp[i].active ? ssp[i].line : sig->line;
  ------------------
  |  Branch (883:35): [True: 3.18M, False: 45.7k]
  ------------------
  884|  3.23M|                  const lifting_step* s = atk->get_step(i);
  885|  3.23M|                  irv_vert_step(s, sp1, sp2, dp, width, true);
  886|  3.23M|                }
  887|  3.45M|                lifting_buf t = *aug; *aug = ssp[i]; ssp[i] = *sig; *sig = t;
  888|  3.45M|              }
  889|       |
  890|   864k|              if (aug->active) {
  ------------------
  |  Branch (890:19): [True: 809k, False: 54.9k]
  ------------------
  891|   809k|                aug->active = false;
  892|   809k|                return aug->line;
  893|   809k|              }
  894|  54.9k|              if (sig->active) {
  ------------------
  |  Branch (894:19): [True: 9.22k, False: 45.7k]
  ------------------
  895|  9.22k|                sig->active = false;
  896|  9.22k|                return sig->line;
  897|  45.7k|              };
  898|  45.7k|            }
  899|   818k|          }
  900|  35.0k|          else
  901|  35.0k|          {
  902|  35.0k|            if (vert_even) {
  ------------------
  |  Branch (902:17): [True: 25.2k, False: 9.80k]
  ------------------
  903|  25.2k|              if (transform_flags & HORZ_TRX)
  ------------------
  |  Branch (903:19): [True: 24.9k, False: 319]
  ------------------
  904|  24.9k|                irv_horz_syn(atk, aug->line, child_res->pull_line(),
  905|  24.9k|                  bands[1].pull_line(), width, horz_even);
  906|    319|              else
  907|    319|                memcpy(aug->line->f32, child_res->pull_line()->f32,
  908|    319|                  width * sizeof(float));
  909|  25.2k|            }
  910|  9.80k|            else
  911|  9.80k|            {
  912|  9.80k|              if (transform_flags & HORZ_TRX)
  ------------------
  |  Branch (912:19): [True: 9.48k, False: 322]
  ------------------
  913|  9.48k|                irv_horz_syn(atk, aug->line, bands[2].pull_line(),
  914|  9.48k|                  bands[3].pull_line(), width, horz_even);
  915|    322|             else
  916|    322|                memcpy(aug->line->f32, bands[2].pull_line()->f32,
  917|    322|                  width * sizeof(float));
  918|  9.80k|              float* sp = aug->line->f32;
  919|   458k|              for (ui32 i = width; i > 0; --i)
  ------------------
  |  Branch (919:36): [True: 448k, False: 9.80k]
  ------------------
  920|   448k|                *sp++ *= 0.5f;
  921|  9.80k|            }
  922|  35.0k|            return aug->line;
  923|  35.0k|          }
  924|  1.65M|        }
  925|  4.81M|      }
  926|   781k|      else
  927|   781k|      {
  928|   781k|        if (reversible)
  ------------------
  |  Branch (928:13): [True: 17.3k, False: 763k]
  ------------------
  929|  17.3k|        {
  930|  17.3k|          if (transform_flags & HORZ_TRX)
  ------------------
  |  Branch (930:15): [True: 2.71k, False: 14.6k]
  ------------------
  931|  2.71k|            rev_horz_syn(atk, aug->line, child_res->pull_line(),
  932|  2.71k|              bands[1].pull_line(), width, horz_even);
  933|  14.6k|          else
  934|  14.6k|            memcpy(aug->line->p, child_res->pull_line()->p,
  935|  14.6k|              (size_t)width * (aug->line->flags & line_buf::LFT_SIZE_MASK));
  936|  17.3k|          return aug->line;
  937|  17.3k|        }
  938|   763k|        else
  939|   763k|        {
  940|   763k|          if (transform_flags & HORZ_TRX)
  ------------------
  |  Branch (940:15): [True: 52.5k, False: 711k]
  ------------------
  941|  52.5k|            irv_horz_syn(atk, aug->line, child_res->pull_line(),
  942|  52.5k|              bands[1].pull_line(), width, horz_even);
  943|   711k|          else
  944|   711k|            memcpy(aug->line->f32, child_res->pull_line()->f32,
  945|   711k|              width * sizeof(float));
  946|   763k|          return aug->line;
  947|   763k|        }
  948|   781k|      }
  949|  5.59M|    }
_ZN4ojph5local10resolution21get_top_left_precinctERNS_5pointE:
  976|  2.98M|    {
  977|  2.98M|      ui32 idx = cur_precinct_loc.x + cur_precinct_loc.y * num_precincts.w;
  978|  2.98M|      if (idx < num_precincts.area())
  ------------------
  |  Branch (978:11): [True: 1.74M, False: 1.24M]
  ------------------
  979|  1.74M|      {
  980|  1.74M|        top_left = precincts[idx].img_point;
  981|  1.74M|        return true;
  982|  1.74M|      }
  983|  1.24M|      return false;
  984|  2.98M|    }
_ZN4ojph5local10resolution19parse_all_precinctsERjPNS_11infile_baseE:
 1002|  83.3k|    {
 1003|  83.3k|      precinct* p = precincts;
 1004|  83.3k|      ui32 idx = cur_precinct_loc.x + cur_precinct_loc.y * num_precincts.w;
 1005|   147k|      for (ui32 i = idx; i < num_precincts.area(); ++i)
  ------------------
  |  Branch (1005:26): [True: 64.7k, False: 82.6k]
  ------------------
 1006|  64.7k|      {
 1007|  64.7k|        if (data_left == 0)
  ------------------
  |  Branch (1007:13): [True: 694, False: 64.1k]
  ------------------
 1008|    694|          break;
 1009|  64.1k|        p[i].parse(tag_tree_size, level_index, elastic, data_left, file,
 1010|  64.1k|          skipped_res_for_read);
 1011|  64.1k|        if (++cur_precinct_loc.x >= num_precincts.w)
  ------------------
  |  Branch (1011:13): [True: 9.49k, False: 54.6k]
  ------------------
 1012|  9.49k|        {
 1013|  9.49k|          cur_precinct_loc.x = 0;
 1014|  9.49k|          ++cur_precinct_loc.y;
 1015|  9.49k|        }
 1016|  64.1k|      }
 1017|  83.3k|    }
_ZN4ojph5local10resolution18parse_one_precinctERjPNS_11infile_baseE:
 1021|   462k|    {
 1022|   462k|      ui32 idx = cur_precinct_loc.x + cur_precinct_loc.y * num_precincts.w;
 1023|   462k|      assert(idx < num_precincts.area());
 1024|       |
 1025|   462k|      if (data_left == 0)
  ------------------
  |  Branch (1025:11): [True: 0, False: 462k]
  ------------------
 1026|      0|        return;
 1027|   462k|      precinct* p = precincts + idx;
 1028|   462k|      p->parse(tag_tree_size, level_index, elastic, data_left, file,
 1029|   462k|        skipped_res_for_read);
 1030|   462k|      if (++cur_precinct_loc.x >= num_precincts.w)
  ------------------
  |  Branch (1030:11): [True: 38.0k, False: 424k]
  ------------------
 1031|  38.0k|      {
 1032|  38.0k|        cur_precinct_loc.x = 0;
 1033|  38.0k|        ++cur_precinct_loc.y;
 1034|  38.0k|      }
 1035|   462k|    }

_ZN4ojph5local10resolution15next_resolutionEv:
   91|  7.96M|      resolution *next_resolution() { return child_res; }
_ZN4ojph5local10resolution8get_rectEv:
   82|   335k|      rect get_rect() { return res_rect; }
_ZN4ojph5local10resolution12get_comp_numEv:
   83|  3.91M|      ui32 get_comp_num() { return comp_num; }
_ZN4ojph5local10resolution18has_horz_transformEv:
   84|  4.25M|      bool has_horz_transform() { return (transform_flags & HORZ_TRX) != 0; }
_ZN4ojph5local10resolution18has_vert_transformEv:
   85|  4.25M|      bool has_vert_transform() { return (transform_flags & VERT_TRX) != 0; }

_ZN4ojph5local7subband9pre_allocEPNS0_10codestreamERKNS_4rectEjjj:
   59|  3.95M|    {
   60|  3.95M|      mem_fixed_allocator* allocator = codestream->get_allocator();
   61|       |
   62|  3.95M|      bool empty = ((band_rect.siz.w == 0) || (band_rect.siz.h == 0));
  ------------------
  |  Branch (62:21): [True: 2.83M, False: 1.12M]
  |  Branch (62:47): [True: 780k, False: 341k]
  ------------------
   63|  3.95M|      if (empty)
  ------------------
  |  Branch (63:11): [True: 3.61M, False: 341k]
  ------------------
   64|  3.61M|        return;
   65|       |
   66|   341k|      const param_cod* cdp = codestream->get_coc(comp_num);
   67|   341k|      size log_cb = cdp->get_log_block_dims();
   68|   341k|      size log_PP = cdp->get_log_precinct_size(res_num);
   69|       |
   70|   341k|      ui32 x_off = ((transform_flags & resolution::HORZ_TRX) ? 1 : 0);
  ------------------
  |  Branch (70:21): [True: 309k, False: 31.8k]
  ------------------
   71|   341k|      ui32 y_off = ((transform_flags & resolution::VERT_TRX) ? 1 : 0);
  ------------------
  |  Branch (71:21): [True: 319k, False: 21.9k]
  ------------------
   72|       |
   73|   341k|      ui32 xcb_prime = ojph_min(log_cb.w, log_PP.w - x_off);
  ------------------
  |  |   76|   341k|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 57.1k, False: 284k]
  |  |  ------------------
  ------------------
   74|   341k|      ui32 ycb_prime = ojph_min(log_cb.h, log_PP.h - y_off);
  ------------------
  |  |   76|   341k|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 71.8k, False: 269k]
  |  |  ------------------
  ------------------
   75|       |
   76|   341k|      size nominal(1 << xcb_prime, 1 << ycb_prime);
   77|       |
   78|   341k|      ui32 tbx0 = band_rect.org.x;
   79|   341k|      ui32 tby0 = band_rect.org.y;
   80|   341k|      ui32 tbx1 = band_rect.org.x + band_rect.siz.w;
   81|   341k|      ui32 tby1 = band_rect.org.y + band_rect.siz.h;
   82|       |
   83|   341k|      size num_blocks;
   84|   341k|      num_blocks.w = (tbx1 + (1 << xcb_prime) - 1) >> xcb_prime;
   85|   341k|      num_blocks.w -= tbx0 >> xcb_prime;
   86|   341k|      num_blocks.h = (tby1 + (1 << ycb_prime) - 1) >> ycb_prime;
   87|   341k|      num_blocks.h -= tby0 >> ycb_prime;
   88|       |
   89|   341k|      allocator->pre_alloc_obj<codeblock>(num_blocks.w);
   90|       |      //allocate codeblock headers
   91|   341k|      allocator->pre_alloc_obj<coded_cb_header>((size_t)num_blocks.area());
   92|       |
   93|   341k|      const param_qcd* qp = codestream->access_qcd()->get_qcc(comp_num);
   94|   341k|      ui32 precision = qp->propose_precision(cdp);
   95|   341k|      const param_atk* atk = cdp->access_atk();
   96|   341k|      bool reversible = atk->is_reversible();
   97|       |
   98|  5.73M|      for (ui32 i = 0; i < num_blocks.w; ++i)
  ------------------
  |  Branch (98:24): [True: 5.39M, False: 341k]
  ------------------
   99|  5.39M|        codeblock::pre_alloc(codestream, nominal, precision);
  100|       |
  101|       |      //allocate lines
  102|   341k|      allocator->pre_alloc_obj<line_buf>(1);
  103|       |      //allocate line_buf
  104|   341k|      ui32 width = band_rect.siz.w + 1;
  105|   341k|      if (reversible)
  ------------------
  |  Branch (105:11): [True: 234k, False: 106k]
  ------------------
  106|   234k|      {
  107|   234k|        if (precision <= 32)
  ------------------
  |  Branch (107:13): [True: 172k, False: 61.4k]
  ------------------
  108|   172k|          allocator->pre_alloc_data<si32>(width, 1);
  109|  61.4k|        else
  110|  61.4k|          allocator->pre_alloc_data<si64>(width, 1);
  111|   234k|      }
  112|   106k|      else
  113|   106k|        allocator->pre_alloc_data<float>(width, 1);
  114|   341k|    }
_ZN4ojph5local7subband14finalize_allocEPNS0_10codestreamERKNS_4rectEPNS0_10resolutionEjj:
  121|  3.91M|    {
  122|  3.91M|      mem_fixed_allocator* allocator = codestream->get_allocator();
  123|  3.91M|      elastic = codestream->get_elastic_alloc();
  124|       |
  125|  3.91M|      this->res_num = res_num;
  126|  3.91M|      this->band_num = subband_num;
  127|  3.91M|      this->band_rect = band_rect;
  128|  3.91M|      this->parent = res;
  129|       |
  130|  3.91M|      ui32 comp_num = parent->get_comp_num();
  131|  3.91M|      const param_cod* cdp = codestream->get_coc(comp_num);
  132|  3.91M|      this->reversible = cdp->access_atk()->is_reversible();
  133|  3.91M|      size log_cb = cdp->get_log_block_dims();
  134|  3.91M|      log_PP = cdp->get_log_precinct_size(res_num);
  135|       |
  136|  3.91M|      ui32 x_off = ((parent->has_horz_transform()) ? 1 : 0);
  ------------------
  |  Branch (136:21): [True: 3.61M, False: 300k]
  ------------------
  137|  3.91M|      ui32 y_off = ((parent->has_vert_transform()) ? 1 : 0);
  ------------------
  |  Branch (137:21): [True: 3.63M, False: 287k]
  ------------------
  138|       |
  139|  3.91M|      xcb_prime = ojph_min(log_cb.w, log_PP.w - x_off);
  ------------------
  |  |   76|  3.91M|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 534k, False: 3.38M]
  |  |  ------------------
  ------------------
  140|  3.91M|      ycb_prime = ojph_min(log_cb.h, log_PP.h - y_off);
  ------------------
  |  |   76|  3.91M|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 455k, False: 3.46M]
  |  |  ------------------
  ------------------
  141|       |
  142|  3.91M|      size nominal(1 << xcb_prime, 1 << ycb_prime);
  143|       |
  144|  3.91M|      cur_cb_row = 0;
  145|  3.91M|      cur_line = 0;
  146|  3.91M|      cur_cb_height = 0;
  147|  3.91M|      const param_dfs* dfs = NULL;
  148|  3.91M|      if (cdp->is_dfs_defined()) {
  ------------------
  |  Branch (148:11): [True: 132k, False: 3.78M]
  ------------------
  149|   132k|        dfs = codestream->access_dfs();
  150|   132k|        if (dfs != NULL)
  ------------------
  |  Branch (150:13): [True: 132k, False: 0]
  ------------------
  151|   132k|          dfs = dfs->get_dfs(cdp->get_dfs_index());
  152|   132k|      }
  153|  3.91M|      const param_qcd* qcd = codestream->access_qcd()->get_qcc(comp_num);
  154|  3.91M|      ui32 num_decomps = cdp->get_num_decompositions();
  155|  3.91M|      this->K_max = qcd->get_Kmax(dfs, num_decomps, this->res_num, band_num);
  156|  3.91M|      if (!reversible)
  ------------------
  |  Branch (156:11): [True: 870k, False: 3.04M]
  ------------------
  157|   870k|      {
  158|   870k|        float d =
  159|   870k|          qcd->get_irrev_delta(dfs, num_decomps,
  160|   870k|            comp_num, res_num, subband_num);
  161|   870k|        d /= (float)(1u << (31 - this->K_max));
  162|   870k|        delta = d;
  163|   870k|        delta_inv = (1.0f/d);
  164|   870k|      }
  165|  3.91M|      ui32 precision = qcd->propose_precision(cdp);
  166|       |
  167|  3.91M|      this->empty = ((band_rect.siz.w == 0) || (band_rect.siz.h == 0));
  ------------------
  |  Branch (167:22): [True: 2.82M, False: 1.09M]
  |  Branch (167:48): [True: 761k, False: 335k]
  ------------------
  168|  3.91M|      if (this->empty)
  ------------------
  |  Branch (168:11): [True: 3.58M, False: 335k]
  ------------------
  169|  3.58M|        return;
  170|       |
  171|   335k|      ui32 tbx0 = band_rect.org.x;
  172|   335k|      ui32 tby0 = band_rect.org.y;
  173|   335k|      ui32 tbx1 = band_rect.org.x + band_rect.siz.w;
  174|   335k|      ui32 tby1 = band_rect.org.y + band_rect.siz.h;
  175|       |
  176|   335k|      num_blocks = size();
  177|   335k|      num_blocks.w = (tbx1 + (1 << xcb_prime) - 1) >> xcb_prime;
  178|   335k|      num_blocks.w -= tbx0 >> xcb_prime;
  179|   335k|      num_blocks.h = (tby1 + (1 << ycb_prime) - 1) >> ycb_prime;
  180|   335k|      num_blocks.h -= tby0 >> ycb_prime;
  181|       |
  182|   335k|      blocks = allocator->post_alloc_obj<codeblock>(num_blocks.w);
  183|       |      //allocate codeblock headers
  184|   335k|      coded_cb_header *cp = coded_cbs =
  185|   335k|        allocator->post_alloc_obj<coded_cb_header>((size_t)num_blocks.area());
  186|   335k|      memset(coded_cbs, 0, sizeof(coded_cb_header) * (size_t)num_blocks.area());
  187|  17.8M|      for (int i = (int)num_blocks.area(); i > 0; --i, ++cp)
  ------------------
  |  Branch (187:44): [True: 17.4M, False: 335k]
  ------------------
  188|  17.4M|        cp->Kmax = K_max;
  189|       |
  190|   335k|      ui32 x_lower_bound = (tbx0 >> xcb_prime) << xcb_prime;
  191|   335k|      ui32 y_lower_bound = (tby0 >> ycb_prime) << ycb_prime;
  192|       |
  193|   335k|      size cb_size;
  194|   335k|      cb_size.h = ojph_min(tby1, y_lower_bound + nominal.h) - tby0;
  ------------------
  |  |   76|   335k|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 213k, False: 122k]
  |  |  ------------------
  ------------------
  195|   335k|      cur_cb_height = (si32)cb_size.h;
  196|   335k|      int line_offset = 0;
  197|  5.46M|      for (ui32 i = 0; i < num_blocks.w; ++i)
  ------------------
  |  Branch (197:24): [True: 5.13M, False: 335k]
  ------------------
  198|  5.13M|      {
  199|  5.13M|        ui32 cbx0 = ojph_max(tbx0, x_lower_bound + i * nominal.w);
  ------------------
  |  |   73|  5.13M|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 109k, False: 5.02M]
  |  |  ------------------
  ------------------
  200|  5.13M|        ui32 cbx1 = ojph_min(tbx1, x_lower_bound + (i + 1) * nominal.w);
  ------------------
  |  |   76|  5.13M|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 197k, False: 4.93M]
  |  |  ------------------
  ------------------
  201|  5.13M|        cb_size.w = cbx1 - cbx0;
  202|  5.13M|        blocks[i].finalize_alloc(codestream, this, nominal, cb_size,
  203|  5.13M|                                 coded_cbs + i, K_max, line_offset,
  204|  5.13M|                                 precision, comp_num);
  205|  5.13M|        line_offset += cb_size.w;
  206|  5.13M|      }
  207|       |
  208|       |      //allocate lines
  209|   335k|      lines = allocator->post_alloc_obj<line_buf>(1);
  210|       |      //allocate line_buf
  211|   335k|      ui32 width = band_rect.siz.w + 1;
  212|   335k|      if (reversible)
  ------------------
  |  Branch (212:11): [True: 233k, False: 102k]
  ------------------
  213|   233k|      {
  214|   233k|        if (precision <= 32)
  ------------------
  |  Branch (214:13): [True: 172k, False: 61.0k]
  ------------------
  215|   172k|          lines->wrap(allocator->post_alloc_data<si32>(width, 1), width, 1);
  216|  61.0k|        else
  217|  61.0k|          lines->wrap(allocator->post_alloc_data<si64>(width, 1), width, 1);
  218|   233k|      }
  219|   102k|      else
  220|   102k|        lines->wrap(allocator->post_alloc_data<float>(width, 1), width, 1);
  221|   335k|    }
_ZN4ojph5local7subband14get_cb_indicesERKNS_4sizeEPNS0_8precinctE:
  226|   335k|    {
  227|   335k|      if (empty)
  ------------------
  |  Branch (227:11): [True: 0, False: 335k]
  ------------------
  228|      0|        return;
  229|       |
  230|   335k|      rect res_rect = parent->get_rect();
  231|   335k|      ui32 trx0 = res_rect.org.x;
  232|   335k|      ui32 try0 = res_rect.org.y;
  233|   335k|      ui32 trx1 = res_rect.org.x + res_rect.siz.w;
  234|   335k|      ui32 try1 = res_rect.org.y + res_rect.siz.h;
  235|       |
  236|   335k|      ui32 pc_lft = (res_rect.org.x >> log_PP.w) << log_PP.w;
  237|   335k|      ui32 pc_top = (res_rect.org.y >> log_PP.h) << log_PP.h;
  238|       |
  239|   335k|      ui32 pcx0, pcx1, pcy0, pcy1;
  240|   335k|      ui32 x_shift = parent->has_horz_transform() ? 1 : 0;
  ------------------
  |  Branch (240:22): [True: 304k, False: 30.7k]
  ------------------
  241|   335k|      ui32 y_shift = parent->has_vert_transform() ? 1 : 0;
  ------------------
  |  Branch (241:22): [True: 314k, False: 20.9k]
  ------------------
  242|   335k|      ui32 yb, xb, coly = 0, colx = 0;
  243|  2.17M|      for (ui32 y = 0; y < num_precincts.h; ++y)
  ------------------
  |  Branch (243:24): [True: 1.83M, False: 335k]
  ------------------
  244|  1.83M|      {
  245|  1.83M|        pcy0 = ojph_max(try0, pc_top + (y << log_PP.h));
  ------------------
  |  |   73|  1.83M|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 203k, False: 1.63M]
  |  |  ------------------
  ------------------
  246|  1.83M|        pcy1 = ojph_min(try1, pc_top + ((y + 1) << log_PP.h));
  ------------------
  |  |   76|  1.83M|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 296k, False: 1.53M]
  |  |  ------------------
  ------------------
  247|  1.83M|        pcy0 = (pcy0 - (band_num >> 1) + (1 << y_shift) - 1) >> y_shift;
  248|  1.83M|        pcy1 = (pcy1 - (band_num >> 1) + (1 << y_shift) - 1) >> y_shift;
  249|       |
  250|  1.83M|        precinct *p = precincts + y * num_precincts.w;
  251|  1.83M|        yb = ((pcy1 + (1<<ycb_prime) - 1) >> ycb_prime);
  252|  1.83M|        yb -= (pcy0 >> ycb_prime);
  253|  1.83M|        colx = 0;
  254|       |
  255|  18.6M|        for (ui32 x = 0; x < num_precincts.w; ++x, ++p)
  ------------------
  |  Branch (255:26): [True: 16.8M, False: 1.83M]
  ------------------
  256|  16.8M|        {
  257|  16.8M|          pcx0 = ojph_max(trx0, pc_lft + (x << log_PP.w));
  ------------------
  |  |   73|  16.8M|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 434k, False: 16.4M]
  |  |  ------------------
  ------------------
  258|  16.8M|          pcx1 = ojph_min(trx1, pc_lft + ((x + 1) << log_PP.w));
  ------------------
  |  |   76|  16.8M|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 1.60M, False: 15.2M]
  |  |  ------------------
  ------------------
  259|  16.8M|          pcx0 = (pcx0 - (band_num & 1) + (1 << x_shift) - 1) >> x_shift;
  260|  16.8M|          pcx1 = (pcx1 - (band_num & 1) + (1 << x_shift) - 1) >> x_shift;
  261|       |
  262|  16.8M|          rect *bp = p->cb_idxs + band_num;
  263|  16.8M|          xb = ((pcx1 + (1<<xcb_prime) - 1) >> xcb_prime);
  264|  16.8M|          xb -= (pcx0 >> xcb_prime);
  265|       |
  266|  16.8M|          bp->org.x = colx;
  267|  16.8M|          bp->org.y = coly;
  268|  16.8M|          bp->siz.w = xb;
  269|  16.8M|          bp->siz.h = yb;
  270|       |
  271|  16.8M|          colx += xb;
  272|  16.8M|        }
  273|  1.83M|        coly += yb;
  274|  1.83M|      }
  275|       |      assert(colx == num_blocks.w && coly == num_blocks.h);
  276|   335k|    }
_ZN4ojph5local7subband9pull_lineEv:
  337|  7.57M|    {
  338|  7.57M|      if (empty)
  ------------------
  |  Branch (338:11): [True: 3.04M, False: 4.53M]
  ------------------
  339|  3.04M|        return lines;
  340|       |
  341|       |      //pull from codeblocks
  342|  4.53M|      if (--cur_line <= 0)
  ------------------
  |  Branch (342:11): [True: 1.50M, False: 3.02M]
  ------------------
  343|  1.50M|      {
  344|  1.50M|        if (cur_cb_row < num_blocks.h)
  ------------------
  |  Branch (344:13): [True: 1.50M, False: 86]
  ------------------
  345|  1.50M|        {
  346|  1.50M|          ui32 tbx0 = band_rect.org.x;
  347|  1.50M|          ui32 tby0 = band_rect.org.y;
  348|  1.50M|          ui32 tbx1 = band_rect.org.x + band_rect.siz.w;
  349|  1.50M|          ui32 tby1 = band_rect.org.y + band_rect.siz.h;
  350|  1.50M|          size nominal(1 << xcb_prime, 1 << ycb_prime);
  351|       |
  352|  1.50M|          ui32 x_lower_bound = (tbx0 >> xcb_prime) << xcb_prime;
  353|  1.50M|          ui32 y_lower_bound = (tby0 >> ycb_prime) << ycb_prime;
  354|  1.50M|          ui32 cby0 = ojph_max(tby0, y_lower_bound + cur_cb_row * nominal.h);
  ------------------
  |  |   73|  1.50M|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 116k, False: 1.38M]
  |  |  ------------------
  ------------------
  355|  1.50M|          ui32 cby1 = ojph_min(tby1, y_lower_bound+(cur_cb_row+1)*nominal.h);
  ------------------
  |  |   76|  1.50M|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 161k, False: 1.34M]
  |  |  ------------------
  ------------------
  356|       |
  357|  1.50M|          size cb_size;
  358|  1.50M|          cb_size.h = cby1 - cby0;
  359|  1.50M|          cur_line = cur_cb_height = (int)cb_size.h;
  360|  14.1M|          for (ui32 i = 0; i < num_blocks.w; ++i)
  ------------------
  |  Branch (360:28): [True: 12.6M, False: 1.50M]
  ------------------
  361|  12.6M|          {
  362|  12.6M|            ui32 cbx0 = ojph_max(tbx0, x_lower_bound + i * nominal.w);
  ------------------
  |  |   73|  12.6M|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 209k, False: 12.4M]
  |  |  ------------------
  ------------------
  363|  12.6M|            ui32 cbx1 = ojph_min(tbx1, x_lower_bound + (i + 1) * nominal.w);
  ------------------
  |  |   76|  12.6M|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 1.03M, False: 11.6M]
  |  |  ------------------
  ------------------
  364|  12.6M|            cb_size.w = cbx1 - cbx0;
  365|  12.6M|            blocks[i].recreate(cb_size,
  366|  12.6M|                               coded_cbs + i + cur_cb_row * num_blocks.w);
  367|  12.6M|            blocks[i].decode();
  368|  12.6M|          }
  369|  1.50M|          ++cur_cb_row;
  370|  1.50M|        }
  371|  1.50M|      }
  372|       |
  373|  4.53M|      assert(cur_line >= 0);
  374|       |
  375|       |      //pull from codeblocks
  376|  43.3M|      for (ui32 i = 0; i < num_blocks.w; ++i)
  ------------------
  |  Branch (376:24): [True: 38.8M, False: 4.53M]
  ------------------
  377|  38.8M|        blocks[i].pull_line(lines + 0);
  378|       |
  379|  4.53M|      return lines;
  380|  7.57M|    }

_ZN4ojph5local7subbandC2Ev:
   66|  6.24M|      subband() { 
   67|  6.24M|        res_num = band_num = 0;
   68|  6.24M|        reversible = false;
   69|  6.24M|        empty = true;             // <---- true
   70|  6.24M|        lines = NULL;
   71|  6.24M|        parent = NULL;
   72|  6.24M|        blocks = NULL;
   73|  6.24M|        xcb_prime = ycb_prime = 0;
   74|  6.24M|        cur_cb_row = 0;
   75|  6.24M|        cur_line = 0;
   76|  6.24M|        cur_cb_height = 0;
   77|  6.24M|        delta = delta_inv = 0.0f;
   78|  6.24M|        K_max = 0;
   79|  6.24M|        coded_cbs = NULL;
   80|       |        elastic = NULL;
   81|  6.24M|      }
_ZN4ojph5local7subband6existsEv:
   94|  6.24M|      bool exists() { return !empty; }
_ZN4ojph5local7subband9get_deltaEv:
   93|  5.13M|      float get_delta() { return delta; }

_ZN4ojph5local4tile9pre_allocEPNS0_10codestreamERKNS_4rectES6_Rj:
   59|   249k|    {
   60|   249k|      mem_fixed_allocator* allocator = codestream->get_allocator();
   61|       |
   62|       |      //allocate tiles_comp
   63|   249k|      const param_siz *szp = codestream->get_siz();
   64|   249k|      ui32 num_comps = szp->get_num_components();
   65|   249k|      allocator->pre_alloc_obj<tile_comp>(num_comps);
   66|   249k|      allocator->pre_alloc_obj<rect>(num_comps); //for comp_rects
   67|   249k|      allocator->pre_alloc_obj<rect>(num_comps); //for recon_comp_rects
   68|   249k|      allocator->pre_alloc_obj<ui32>(num_comps); //for line_offsets
   69|   249k|      allocator->pre_alloc_obj<ui32>(num_comps); //for num_bits
   70|   249k|      allocator->pre_alloc_obj<bool>(num_comps); //for is_signed
   71|   249k|      allocator->pre_alloc_obj<bool>(num_comps); //for reversible
   72|   249k|      allocator->pre_alloc_obj<ui8>(num_comps);  //for nlt_type3
   73|   249k|      allocator->pre_alloc_obj<ui32>(num_comps); //for cur_line
   74|       |
   75|   249k|      {
   76|   249k|        ui32 tilepart_div = codestream->get_tilepart_div();
   77|   249k|        ui32 t = tilepart_div & OJPH_TILEPART_MASK;
   78|   249k|        if (t == OJPH_TILEPART_NO_DIVISIONS)
  ------------------
  |  Branch (78:13): [True: 249k, False: 0]
  ------------------
   79|   249k|          num_tileparts = 1; //for num_rc_bytes
   80|      0|        else if (t == OJPH_TILEPART_COMPONENTS)
  ------------------
  |  Branch (80:18): [True: 0, False: 0]
  ------------------
   81|      0|          num_tileparts = num_comps;
   82|      0|        else if (t == OJPH_TILEPART_RESOLUTIONS)
  ------------------
  |  Branch (82:18): [True: 0, False: 0]
  ------------------
   83|      0|        {
   84|      0|          ui32 max_decs = 0;
   85|      0|          for (ui32 c = 0; c < num_comps; ++c) {
  ------------------
  |  Branch (85:28): [True: 0, False: 0]
  ------------------
   86|      0|            ui32 s = codestream->get_coc(c)->get_num_decompositions();
   87|      0|            max_decs = ojph_max(max_decs, s);
  ------------------
  |  |   73|      0|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   88|      0|          }
   89|      0|          num_tileparts = 1 + max_decs;
   90|      0|        }
   91|      0|        else if (t == (OJPH_TILEPART_COMPONENTS | OJPH_TILEPART_RESOLUTIONS))
  ------------------
  |  Branch (91:18): [True: 0, False: 0]
  ------------------
   92|      0|        {
   93|      0|          num_tileparts = 0;
   94|      0|          for (ui32 c = 0; c < num_comps; ++c) {
  ------------------
  |  Branch (94:28): [True: 0, False: 0]
  ------------------
   95|      0|            ui32 s = codestream->get_coc(c)->get_num_decompositions();
   96|      0|            num_tileparts += s + 1;
   97|      0|          }
   98|      0|        }
   99|   249k|        if (num_tileparts > 255)
  ------------------
  |  Branch (99:13): [True: 0, False: 249k]
  ------------------
  100|      0|          OJPH_ERROR(0x000300D1, "Trying to create %d tileparts; a tile "
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  101|   249k|            "cannot have more than 255 tile parts.", num_tileparts);
  102|   249k|      }
  103|       |
  104|   249k|      ui32 tx0 = tile_rect.org.x;
  105|   249k|      ui32 ty0 = tile_rect.org.y;
  106|   249k|      ui32 tx1 = tile_rect.org.x + tile_rect.siz.w;
  107|   249k|      ui32 ty1 = tile_rect.org.y + tile_rect.siz.h;
  108|   249k|      ui32 recon_tx0 = recon_tile_rect.org.x;
  109|   249k|      ui32 recon_ty0 = recon_tile_rect.org.y;
  110|   249k|      ui32 recon_tx1 = recon_tile_rect.org.x + recon_tile_rect.siz.w;
  111|   249k|      ui32 recon_ty1 = recon_tile_rect.org.y + recon_tile_rect.siz.h;
  112|       |
  113|   249k|      ui32 width = 0;
  114|   249k|      rect colour_comp_rect[3];
  115|   524k|      for (ui32 i = 0; i < num_comps; ++i)
  ------------------
  |  Branch (115:24): [True: 274k, False: 249k]
  ------------------
  116|   274k|      {
  117|   274k|        point downsamp = szp->get_downsampling(i);
  118|       |
  119|   274k|        ui32 tcx0 = ojph_div_ceil(tx0, downsamp.x);
  ------------------
  |  |   70|   274k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  120|   274k|        ui32 tcy0 = ojph_div_ceil(ty0, downsamp.y);
  ------------------
  |  |   70|   274k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  121|   274k|        ui32 tcx1 = ojph_div_ceil(tx1, downsamp.x);
  ------------------
  |  |   70|   274k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  122|   274k|        ui32 tcy1 = ojph_div_ceil(ty1, downsamp.y);
  ------------------
  |  |   70|   274k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  123|   274k|        ui32 recon_tcx0 = ojph_div_ceil(recon_tx0, downsamp.x);
  ------------------
  |  |   70|   274k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  124|   274k|        ui32 recon_tcy0 = ojph_div_ceil(recon_ty0, downsamp.y);
  ------------------
  |  |   70|   274k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  125|   274k|        ui32 recon_tcx1 = ojph_div_ceil(recon_tx1, downsamp.x);
  ------------------
  |  |   70|   274k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  126|   274k|        ui32 recon_tcy1 = ojph_div_ceil(recon_ty1, downsamp.y);
  ------------------
  |  |   70|   274k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  127|       |
  128|   274k|        rect comp_rect;
  129|   274k|        comp_rect.org.x = tcx0;
  130|   274k|        comp_rect.org.y = tcy0;
  131|   274k|        comp_rect.siz.w = tcx1 - tcx0;
  132|   274k|        comp_rect.siz.h = tcy1 - tcy0;
  133|       |
  134|   274k|        if (i < 3)
  ------------------
  |  Branch (134:13): [True: 270k, False: 3.51k]
  ------------------
  135|   270k|          colour_comp_rect[i] = comp_rect;
  136|       |
  137|   274k|        rect recon_comp_rect;
  138|   274k|        recon_comp_rect.org.x = recon_tcx0;
  139|   274k|        recon_comp_rect.org.y = recon_tcy0;
  140|   274k|        recon_comp_rect.siz.w = recon_tcx1 - recon_tcx0;
  141|   274k|        recon_comp_rect.siz.h = recon_tcy1 - recon_tcy0;
  142|       |
  143|   274k|        tile_comp::pre_alloc(codestream, i, comp_rect, recon_comp_rect);
  144|   274k|        width = ojph_max(width, recon_comp_rect.siz.w);
  ------------------
  |  |   73|   274k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 5.02k, False: 269k]
  |  |  ------------------
  ------------------
  145|   274k|      }
  146|       |
  147|       |      //allocate lines
  148|   249k|      const param_cod* cdp = codestream->get_cod();
  149|   249k|      if (cdp->is_employing_color_transform())
  ------------------
  |  Branch (149:11): [True: 3.78k, False: 246k]
  ------------------
  150|  3.78k|      {
  151|  3.78k|        bool reversible[3];
  152|  15.1k|        for (ui32 i = 0; i < 3; ++i)
  ------------------
  |  Branch (152:26): [True: 11.3k, False: 3.78k]
  ------------------
  153|  11.3k|          reversible[i] = codestream->get_coc(i)->is_reversible();
  154|  3.78k|        if (reversible[0] != reversible[1] || reversible[1] != reversible[2])
  ------------------
  |  Branch (154:13): [True: 29, False: 3.75k]
  |  Branch (154:47): [True: 2, False: 3.75k]
  ------------------
  155|     31|          OJPH_ERROR(0x000300A2, "When the colour transform is employed, "
  ------------------
  |  |  289|    186|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|     31|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 31, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (289:52): [True: 23, False: 8]
  |  |  |  Branch (289:52): [True: 8, False: 23]
  |  |  |  Branch (289:52): [True: 8, False: 23]
  |  |  ------------------
  ------------------
  156|  3.78k|            "all colour components must undergo either reversible or "
  157|  3.78k|            "irreversible wavelet transform; if not, then it is not clear "
  158|  3.78k|            "what colour transform should be used (reversible or "
  159|  3.78k|            "irreversible).  Here we found that the first three colour "
  160|  3.78k|            "components uses %s, %s, and %s transforms, respectively.",
  161|  3.78k|            reversible[0] ? "reversible" : "irreversible",
  162|  3.78k|            reversible[1] ? "reversible" : "irreversible",
  163|  3.78k|            reversible[2] ? "reversible" : "irreversible");
  164|       |
  165|  3.78k|        if (colour_comp_rect[0] != colour_comp_rect[1] ||
  ------------------
  |  Branch (165:13): [True: 185, False: 3.59k]
  ------------------
  166|  3.59k|          colour_comp_rect[1] != colour_comp_rect[2])
  ------------------
  |  Branch (166:11): [True: 28, False: 3.56k]
  ------------------
  167|    182|          OJPH_ERROR(0x000300A3, "When the colour transform is employed, "
  ------------------
  |  |  289|    182|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|    182|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 182, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  168|  3.78k|            "the first three colour components must have the same rectangle; "
  169|  3.78k|            "i.e., the same origin on the canvas and the same width and "
  170|  3.78k|            "height. The first three components have the following "
  171|  3.78k|            "origin-size (x,y)-(w,h) values. Component 0 (%d,%d)-(%d,%d), "
  172|  3.78k|            "Component 1 (%d,%d)-(%d,%d), Component 2 (%d,%d)-(%d,%d)",
  173|  3.78k|            colour_comp_rect[0].org.x, colour_comp_rect[0].org.y,
  174|  3.78k|            colour_comp_rect[0].siz.w, colour_comp_rect[0].siz.h,
  175|  3.78k|            colour_comp_rect[1].org.x, colour_comp_rect[1].org.y,
  176|  3.78k|            colour_comp_rect[1].siz.w, colour_comp_rect[1].siz.h,
  177|  3.78k|            colour_comp_rect[2].org.x, colour_comp_rect[2].org.y,
  178|  3.78k|            colour_comp_rect[2].siz.w, colour_comp_rect[2].siz.h);
  179|       |
  180|  3.78k|        allocator->pre_alloc_obj<line_buf>(3);
  181|  3.78k|        if (reversible[0])
  ------------------
  |  Branch (181:13): [True: 2.26k, False: 1.52k]
  ------------------
  182|  9.04k|          for (int i = 0; i < 3; ++i)
  ------------------
  |  Branch (182:27): [True: 6.78k, False: 2.26k]
  ------------------
  183|  6.78k|            allocator->pre_alloc_data<si32>(width, 0);
  184|  1.52k|        else
  185|  5.44k|          for (int i = 0; i < 3; ++i)
  ------------------
  |  Branch (185:27): [True: 3.92k, False: 1.52k]
  ------------------
  186|  3.92k|            allocator->pre_alloc_data<float>(width, 0);
  187|  3.78k|      }
  188|   249k|    }
_ZN4ojph5local4tile14finalize_allocEPNS0_10codestreamERKNS_4rectEjRjS7_:
  194|   248k|    {
  195|       |      //this->parent = codestream;
  196|   248k|      mem_fixed_allocator* allocator = codestream->get_allocator();
  197|       |
  198|   248k|      sot.init(0, (ui16)tile_idx, 0, 1);
  199|   248k|      prog_order = codestream->access_cod().get_progression_order();
  200|       |
  201|       |      //allocate tiles_comp
  202|   248k|      const param_siz *szp = codestream->get_siz();
  203|   248k|      const param_nlt *nlp = codestream->get_nlt();
  204|       |
  205|   248k|      this->num_bytes = 0;
  206|   248k|      num_comps = szp->get_num_components();
  207|   248k|      skipped_res_for_read = codestream->get_skipped_res_for_read();
  208|   248k|      comps = allocator->post_alloc_obj<tile_comp>(num_comps);
  209|   248k|      comp_rects = allocator->post_alloc_obj<rect>(num_comps);
  210|   248k|      recon_comp_rects = allocator->post_alloc_obj<rect>(num_comps);
  211|   248k|      line_offsets = allocator->post_alloc_obj<ui32>(num_comps);
  212|   248k|      num_bits = allocator->post_alloc_obj<ui32>(num_comps);
  213|   248k|      is_signed = allocator->post_alloc_obj<bool>(num_comps);
  214|   248k|      reversible = allocator->post_alloc_obj<bool>(num_comps);
  215|   248k|      nlt_type3 = allocator->post_alloc_obj<ui8>(num_comps);
  216|   248k|      cur_line = allocator->post_alloc_obj<ui32>(num_comps);
  217|       |
  218|   248k|      profile = codestream->get_profile();
  219|   248k|      tilepart_div = codestream->get_tilepart_div();
  220|   248k|      need_tlm = codestream->is_tlm_needed();
  221|   248k|      {
  222|   248k|        ui32 tilepart_div = codestream->get_tilepart_div();
  223|   248k|        ui32 t = tilepart_div & OJPH_TILEPART_MASK;
  224|   248k|        if (t == OJPH_TILEPART_NO_DIVISIONS)
  ------------------
  |  Branch (224:13): [True: 248k, False: 0]
  ------------------
  225|   248k|          num_tileparts = 1; //for num_rc_bytes
  226|      0|        else if (t == OJPH_TILEPART_COMPONENTS)
  ------------------
  |  Branch (226:18): [True: 0, False: 0]
  ------------------
  227|      0|          num_tileparts = num_comps;
  228|      0|        else if (t == OJPH_TILEPART_RESOLUTIONS)
  ------------------
  |  Branch (228:18): [True: 0, False: 0]
  ------------------
  229|      0|        {
  230|      0|          ui32 max_decs = 0;
  231|      0|          for (ui32 c = 0; c < num_comps; ++c) {
  ------------------
  |  Branch (231:28): [True: 0, False: 0]
  ------------------
  232|      0|            ui32 s = codestream->get_coc(c)->get_num_decompositions();
  233|      0|            max_decs = ojph_max(max_decs, s);
  ------------------
  |  |   73|      0|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  234|      0|          }
  235|      0|          num_tileparts = 1 + max_decs;
  236|      0|        }
  237|      0|        else if (t == (OJPH_TILEPART_COMPONENTS | OJPH_TILEPART_RESOLUTIONS))
  ------------------
  |  Branch (237:18): [True: 0, False: 0]
  ------------------
  238|      0|        {
  239|      0|          num_tileparts = 0;
  240|      0|          for (ui32 c = 0; c < num_comps; ++c) {
  ------------------
  |  Branch (240:28): [True: 0, False: 0]
  ------------------
  241|      0|            ui32 s = codestream->get_coc(c)->get_num_decompositions();
  242|      0|            num_tileparts += s + 1;
  243|      0|          }
  244|      0|        }
  245|   248k|        if (num_tileparts > 255)
  ------------------
  |  Branch (245:13): [True: 0, False: 248k]
  ------------------
  246|      0|          OJPH_ERROR(0x000300D1, "Trying to create %d tileparts; a tile "
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  247|   248k|          "cannot have more than 255 tile parts.", num_tileparts);
  248|   248k|      }
  249|       |
  250|   248k|      this->resilient = codestream->is_resilient();
  251|   248k|      this->tile_rect = tile_rect;
  252|       |
  253|   248k|      ui32 tx0 = tile_rect.org.x;
  254|   248k|      ui32 ty0 = tile_rect.org.y;
  255|   248k|      ui32 tx1 = tile_rect.org.x + tile_rect.siz.w;
  256|   248k|      ui32 ty1 = tile_rect.org.y + tile_rect.siz.h;
  257|       |
  258|   248k|      ui32 width = 0;
  259|   519k|      for (ui32 i = 0; i < num_comps; ++i)
  ------------------
  |  Branch (259:24): [True: 271k, False: 248k]
  ------------------
  260|   271k|      {
  261|   271k|        ui8 bd; bool is; // used for nlt_type3
  262|       |
  263|   271k|        point downsamp = szp->get_downsampling(i);
  264|   271k|        point recon_downsamp = szp->get_recon_downsampling(i);
  265|       |
  266|   271k|        ui32 tcx0 = ojph_div_ceil(tx0, downsamp.x);
  ------------------
  |  |   70|   271k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  267|   271k|        ui32 tcy0 = ojph_div_ceil(ty0, downsamp.y);
  ------------------
  |  |   70|   271k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  268|   271k|        ui32 tcx1 = ojph_div_ceil(tx1, downsamp.x);
  ------------------
  |  |   70|   271k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  269|   271k|        ui32 tcy1 = ojph_div_ceil(ty1, downsamp.y);
  ------------------
  |  |   70|   271k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  270|   271k|        ui32 recon_tcx0 = ojph_div_ceil(tx0, recon_downsamp.x);
  ------------------
  |  |   70|   271k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  271|   271k|        ui32 recon_tcy0 = ojph_div_ceil(ty0, recon_downsamp.y);
  ------------------
  |  |   70|   271k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  272|   271k|        ui32 recon_tcx1 = ojph_div_ceil(tx1, recon_downsamp.x);
  ------------------
  |  |   70|   271k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  273|   271k|        ui32 recon_tcy1 = ojph_div_ceil(ty1, recon_downsamp.y);
  ------------------
  |  |   70|   271k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  274|       |
  275|   271k|        line_offsets[i] =
  276|   271k|          recon_tcx0 - ojph_div_ceil(tx0 - offset, recon_downsamp.x);
  ------------------
  |  |   70|   271k|#define ojph_div_ceil(a, b) (((a) + (b) - 1) / (b))
  ------------------
  277|   271k|        comp_rects[i].org.x = tcx0;
  278|   271k|        comp_rects[i].org.y = tcy0;
  279|   271k|        comp_rects[i].siz.w = tcx1 - tcx0;
  280|   271k|        comp_rects[i].siz.h = tcy1 - tcy0;
  281|   271k|        recon_comp_rects[i].org.x = recon_tcx0;
  282|   271k|        recon_comp_rects[i].org.y = recon_tcy0;
  283|   271k|        recon_comp_rects[i].siz.w = recon_tcx1 - recon_tcx0;
  284|   271k|        recon_comp_rects[i].siz.h = recon_tcy1 - recon_tcy0;
  285|       |
  286|   271k|        comps[i].finalize_alloc(codestream, this, i, comp_rects[i],
  287|   271k|          recon_comp_rects[i]);
  288|   271k|        width = ojph_max(width, recon_comp_rects[i].siz.w);
  ------------------
  |  |   73|   271k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 4.96k, False: 266k]
  |  |  ------------------
  ------------------
  289|       |
  290|   271k|        num_bits[i] = szp->get_bit_depth(i);
  291|   271k|        is_signed[i] = szp->is_signed(i);
  292|   271k|        bool result = nlp->get_nonlinear_transform(i, bd, is, nlt_type3[i]);
  293|   271k|        if (result == true && (bd != num_bits[i] || is != is_signed[i]))
  ------------------
  |  Branch (293:13): [True: 65.5k, False: 205k]
  |  Branch (293:32): [True: 8, False: 65.5k]
  |  Branch (293:53): [True: 1, False: 65.5k]
  ------------------
  294|      9|          OJPH_ERROR(0x000300A1, "Mismatch between Ssiz (bit_depth = %d, "
  ------------------
  |  |  289|     36|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      9|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 9, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (289:52): [True: 2, False: 7]
  |  |  |  Branch (289:52): [True: 8, False: 1]
  |  |  ------------------
  ------------------
  295|   271k|            "is_signed = %s) from SIZ marker segment, and BDnlt "
  296|   271k|            "(bit_depth = %d, is_signed = %s) from NLT marker segment, "
  297|   271k|            "for component %d", num_bits[i],
  298|   271k|            is_signed[i] ? "True" : "False", bd, is ? "True" : "False", i);
  299|   271k|        if (result == false)
  ------------------
  |  Branch (299:13): [True: 205k, False: 65.5k]
  ------------------
  300|   205k|          nlt_type3[i] = param_nlt::nonlinearity::OJPH_NLT_NO_NLT;
  301|   271k|        cur_line[i] = 0;
  302|   271k|        reversible[i] = codestream->get_coc(i)->is_reversible();
  303|   271k|      }
  304|       |
  305|   248k|      offset += tile_rect.siz.w;
  306|       |
  307|       |      //allocate lines
  308|   248k|      const param_cod* cdp = codestream->get_cod();
  309|   248k|      this->employ_color_transform = cdp->is_employing_color_transform();
  310|   248k|      if (this->employ_color_transform)
  ------------------
  |  Branch (310:11): [True: 2.95k, False: 245k]
  ------------------
  311|  2.95k|      {
  312|  2.95k|        num_lines = 3;
  313|  2.95k|        lines = allocator->post_alloc_obj<line_buf>(num_lines);
  314|  2.95k|        if (reversible[0])
  ------------------
  |  Branch (314:13): [True: 2.23k, False: 717]
  ------------------
  315|  8.94k|          for (int i = 0; i < 3; ++i)
  ------------------
  |  Branch (315:27): [True: 6.70k, False: 2.23k]
  ------------------
  316|  6.70k|            lines[i].wrap(
  317|  6.70k|              allocator->post_alloc_data<si32>(width, 0), width, 0);
  318|    717|        else
  319|  2.86k|          for (int i = 0; i < 3; ++i)
  ------------------
  |  Branch (319:27): [True: 2.15k, False: 717]
  ------------------
  320|  2.15k|            lines[i].wrap(
  321|  2.15k|              allocator->post_alloc_data<float>(width, 0), width, 0);
  322|  2.95k|      }
  323|   245k|      else
  324|   245k|      {
  325|       |        lines = NULL;
  326|   245k|        num_lines = 0;
  327|   245k|      }
  328|   248k|      next_tile_part = 0;
  329|   248k|    }
_ZN4ojph5local4tile4pullEPNS_8line_bufEj:
  426|  3.45M|    {
  427|  3.45M|      constexpr ui8 type3 =
  428|  3.45M|        param_nlt::nonlinearity::OJPH_NLT_BINARY_COMPLEMENT_NLT;
  429|       |
  430|  3.45M|      assert(comp_num < num_comps);
  431|  3.45M|      if (cur_line[comp_num] >= recon_comp_rects[comp_num].siz.h)
  ------------------
  |  Branch (431:11): [True: 116k, False: 3.33M]
  ------------------
  432|   116k|        return false;
  433|       |
  434|  3.33M|      cur_line[comp_num]++;
  435|       |
  436|  3.33M|      ui32 comp_width = recon_comp_rects[comp_num].siz.w;
  437|  3.33M|      if (comp_width == 0)
  ------------------
  |  Branch (437:11): [True: 121k, False: 3.21M]
  ------------------
  438|   121k|        return true; // nothing to pull, but not an error
  439|       |
  440|  3.21M|      if (!employ_color_transform || num_comps == 1)
  ------------------
  |  Branch (440:11): [True: 3.19M, False: 26.2k]
  |  Branch (440:38): [True: 0, False: 26.2k]
  ------------------
  441|  3.19M|      {
  442|  3.19M|        line_buf *src_line = comps[comp_num].pull_line();
  443|  3.19M|        if (reversible[comp_num])
  ------------------
  |  Branch (443:13): [True: 1.85M, False: 1.33M]
  ------------------
  444|  1.85M|        {
  445|  1.85M|          si64 shift = (si64)1 << (num_bits[comp_num] - 1);
  446|  1.85M|          if (is_signed[comp_num] && nlt_type3[comp_num] == type3)
  ------------------
  |  Branch (446:15): [True: 198k, False: 1.65M]
  |  Branch (446:38): [True: 8.86k, False: 189k]
  ------------------
  447|  8.86k|            rev_convert_nlt_type3(src_line, 0, tgt_line,
  448|  8.86k|              line_offsets[comp_num], shift + 1, comp_width);
  449|  1.84M|          else {
  450|  1.84M|            shift = is_signed[comp_num] ? 0 : shift;
  ------------------
  |  Branch (450:21): [True: 189k, False: 1.65M]
  ------------------
  451|  1.84M|            rev_convert(src_line, 0, tgt_line,
  452|  1.84M|              line_offsets[comp_num], shift, comp_width);
  453|  1.84M|          }
  454|  1.85M|        }
  455|  1.33M|        else
  456|  1.33M|        {
  457|  1.33M|          if (nlt_type3[comp_num] == type3)
  ------------------
  |  Branch (457:15): [True: 10.6k, False: 1.32M]
  ------------------
  458|  10.6k|            irv_convert_to_integer_nlt_type3(src_line, tgt_line,
  459|  10.6k|              line_offsets[comp_num], num_bits[comp_num],
  460|  10.6k|              is_signed[comp_num], comp_width);
  461|  1.32M|          else
  462|  1.32M|            irv_convert_to_integer(src_line, tgt_line,
  463|  1.32M|              line_offsets[comp_num], num_bits[comp_num],
  464|  1.32M|              is_signed[comp_num], comp_width);
  465|  1.33M|        }
  466|  3.19M|      }
  467|  26.2k|      else
  468|  26.2k|      {
  469|  26.2k|        assert(num_comps >= 3);
  470|  26.2k|        if (comp_num == 0)
  ------------------
  |  Branch (470:13): [True: 6.11k, False: 20.0k]
  ------------------
  471|  6.11k|        {
  472|  6.11k|          if (reversible[comp_num])
  ------------------
  |  Branch (472:15): [True: 3.48k, False: 2.63k]
  ------------------
  473|  3.48k|            rct_backward(comps[0].pull_line(), comps[1].pull_line(),
  474|  3.48k|              comps[2].pull_line(), lines + 0, lines + 1,
  475|  3.48k|              lines + 2, comp_width);
  476|  2.63k|          else
  477|  2.63k|            ict_backward(comps[0].pull_line()->f32, comps[1].pull_line()->f32,
  478|  2.63k|              comps[2].pull_line()->f32, lines[0].f32, lines[1].f32,
  479|  2.63k|              lines[2].f32, comp_width);
  480|  6.11k|        }
  481|  26.2k|        if (reversible[comp_num])
  ------------------
  |  Branch (481:13): [True: 10.8k, False: 15.3k]
  ------------------
  482|  10.8k|        {
  483|  10.8k|          si64 shift = (si64)1 << (num_bits[comp_num] - 1);
  484|  10.8k|          line_buf* src_line;
  485|  10.8k|          if (comp_num < 3)
  ------------------
  |  Branch (485:15): [True: 10.3k, False: 519]
  ------------------
  486|  10.3k|            src_line = lines + comp_num;
  487|    519|          else
  488|    519|            src_line = comps[comp_num].pull_line();
  489|  10.8k|          if (is_signed[comp_num] && nlt_type3[comp_num] == type3)
  ------------------
  |  Branch (489:15): [True: 712, False: 10.1k]
  |  Branch (489:38): [True: 274, False: 438]
  ------------------
  490|    274|            rev_convert_nlt_type3(src_line, 0, tgt_line,
  491|    274|              line_offsets[comp_num], shift + 1, comp_width);
  492|  10.6k|          else {
  493|  10.6k|            shift = is_signed[comp_num] ? 0 : shift;
  ------------------
  |  Branch (493:21): [True: 438, False: 10.1k]
  ------------------
  494|  10.6k|            rev_convert(src_line, 0, tgt_line,
  495|  10.6k|              line_offsets[comp_num], shift, comp_width);
  496|  10.6k|          }
  497|  10.8k|        }
  498|  15.3k|        else
  499|  15.3k|        {
  500|  15.3k|          line_buf* lbp;
  501|  15.3k|          if (comp_num < 3)
  ------------------
  |  Branch (501:15): [True: 7.90k, False: 7.42k]
  ------------------
  502|  7.90k|            lbp = lines + comp_num;
  503|  7.42k|          else
  504|  7.42k|            lbp = comps[comp_num].pull_line();
  505|  15.3k|          if (nlt_type3[comp_num] == type3)
  ------------------
  |  Branch (505:15): [True: 322, False: 15.0k]
  ------------------
  506|    322|            irv_convert_to_integer_nlt_type3(lbp, tgt_line,
  507|    322|              line_offsets[comp_num], num_bits[comp_num],
  508|    322|              is_signed[comp_num], comp_width);
  509|  15.0k|          else
  510|  15.0k|            irv_convert_to_integer(lbp, tgt_line,
  511|  15.0k|              line_offsets[comp_num], num_bits[comp_num],
  512|  15.0k|              is_signed[comp_num], comp_width);
  513|  15.3k|        }
  514|  26.2k|      }
  515|       |
  516|  3.21M|      return true;
  517|  3.33M|    }
_ZN4ojph5local4tile17parse_tile_headerERKNS0_9param_sotEPNS_11infile_baseERKm:
  779|   184k|    {
  780|   184k|      if (sot.get_tile_part_index() != next_tile_part)
  ------------------
  |  Branch (780:11): [True: 182k, False: 1.73k]
  ------------------
  781|   182k|      {
  782|   182k|        if (resilient)
  ------------------
  |  Branch (782:13): [True: 182k, False: 0]
  ------------------
  783|   182k|          OJPH_INFO(0x00030091, "wrong tile part index")
  ------------------
  |  |  285|   182k|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|   182k|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 182k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  784|      0|        else
  785|      0|          OJPH_ERROR(0x00030091, "wrong tile part index")
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  786|   182k|      }
  787|   184k|      ++next_tile_part;
  788|       |
  789|       |      //tile_end_location used on failure
  790|   184k|      ui64 tile_end_location = tile_start_location + sot.get_payload_length();
  791|       |
  792|   184k|      ui32 data_left = sot.get_payload_length(); //bytes left to parse
  793|   184k|      data_left -= (ui32)((ui64)file->tell() - tile_start_location);
  794|       |
  795|   184k|      if (data_left == 0)
  ------------------
  |  Branch (795:11): [True: 440, False: 184k]
  ------------------
  796|    440|        return;
  797|       |
  798|   184k|      ui32 max_decompositions = 0;
  799|   380k|      for (ui32 c = 0; c < num_comps; ++c)
  ------------------
  |  Branch (799:24): [True: 196k, False: 184k]
  ------------------
  800|   196k|        max_decompositions = ojph_max(max_decompositions,
  ------------------
  |  |   73|   380k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 4.24k, False: 192k]
  |  |  ------------------
  ------------------
  801|   184k|          comps[c].get_num_decompositions());
  802|       |
  803|   184k|      try
  804|   184k|      {
  805|       |        //sequence the reading of precincts according to progression order
  806|   184k|        if (prog_order == OJPH_PO_LRCP || prog_order == OJPH_PO_RLCP)
  ------------------
  |  Branch (806:13): [True: 9.15k, False: 174k]
  |  Branch (806:43): [True: 1.83k, False: 173k]
  ------------------
  807|  10.9k|        {
  808|  10.9k|          max_decompositions -= skipped_res_for_read;
  809|  73.2k|          for (ui32 r = 0; r <= max_decompositions; ++r)
  ------------------
  |  Branch (809:28): [True: 62.2k, False: 10.9k]
  ------------------
  810|   177k|            for (ui32 c = 0; c < num_comps; ++c)
  ------------------
  |  Branch (810:30): [True: 114k, False: 62.2k]
  ------------------
  811|   114k|              if (data_left > 0)
  ------------------
  |  Branch (811:19): [True: 104k, False: 10.1k]
  ------------------
  812|   104k|                comps[c].parse_precincts(r, data_left, file);
  813|  10.9k|        }
  814|   173k|        else if (prog_order == OJPH_PO_RPCL)
  ------------------
  |  Branch (814:18): [True: 17.1k, False: 155k]
  ------------------
  815|  17.1k|        {
  816|  17.1k|          max_decompositions -= skipped_res_for_read;
  817|  87.8k|          for (ui32 r = 0; r <= max_decompositions; ++r)
  ------------------
  |  Branch (817:28): [True: 70.7k, False: 17.1k]
  ------------------
  818|  70.7k|          {
  819|   175k|            while (true)
  ------------------
  |  Branch (819:20): [True: 164k, Folded]
  ------------------
  820|   164k|            {
  821|   164k|              bool found = false;
  822|   164k|              ui32 comp_num = 0;
  823|   164k|              point smallest(INT_MAX, INT_MAX), cur;
  824|   369k|              for (ui32 c = 0; c < num_comps; ++c)
  ------------------
  |  Branch (824:32): [True: 204k, False: 164k]
  ------------------
  825|   204k|              {
  826|   204k|                if (!comps[c].get_top_left_precinct(r, cur))
  ------------------
  |  Branch (826:21): [True: 81.7k, False: 122k]
  ------------------
  827|  81.7k|                  continue;
  828|   122k|                else
  829|   122k|                  found = true;
  830|       |
  831|   122k|                if (cur.y < smallest.y)
  ------------------
  |  Branch (831:21): [True: 106k, False: 15.9k]
  ------------------
  832|   106k|                { smallest = cur; comp_num = c; }
  833|  15.9k|                else if (cur.y == smallest.y && cur.x < smallest.x)
  ------------------
  |  Branch (833:26): [True: 15.3k, False: 596]
  |  Branch (833:49): [True: 4.76k, False: 10.5k]
  ------------------
  834|  4.76k|                { smallest = cur; comp_num = c; }
  835|   122k|              }
  836|   164k|              if (found == true && data_left > 0)
  ------------------
  |  Branch (836:19): [True: 106k, False: 58.7k]
  |  Branch (836:36): [True: 105k, False: 957]
  ------------------
  837|   105k|                comps[comp_num].parse_one_precinct(r, data_left, file);
  838|  59.6k|              else
  839|  59.6k|                break;
  840|   164k|            }
  841|  70.7k|          }
  842|  17.1k|        }
  843|   155k|        else if (prog_order == OJPH_PO_PCRL)
  ------------------
  |  Branch (843:18): [True: 4.39k, False: 151k]
  ------------------
  844|  4.39k|        {
  845|   116k|          while (true)
  ------------------
  |  Branch (845:18): [True: 112k, Folded]
  ------------------
  846|   112k|          {
  847|   112k|            bool found = false;
  848|   112k|            ui32 comp_num = 0;
  849|   112k|            ui32 res_num = 0;
  850|   112k|            point smallest(INT_MAX, INT_MAX), cur;
  851|   227k|            for (ui32 c = 0; c < num_comps; ++c)
  ------------------
  |  Branch (851:30): [True: 114k, False: 112k]
  ------------------
  852|   114k|            {
  853|   804k|              for (ui32 r = 0; r <= comps[c].get_num_decompositions(); ++r)
  ------------------
  |  Branch (853:32): [True: 689k, False: 114k]
  ------------------
  854|   689k|              {
  855|   689k|                if (!comps[c].get_top_left_precinct(r, cur))
  ------------------
  |  Branch (855:21): [True: 106k, False: 583k]
  ------------------
  856|   106k|                  continue;
  857|   583k|                else
  858|   583k|                  found = true;
  859|       |
  860|   583k|                if (cur.y < smallest.y)
  ------------------
  |  Branch (860:21): [True: 276k, False: 307k]
  ------------------
  861|   276k|                { smallest = cur; comp_num = c; res_num = r; }
  862|   307k|                else if (cur.y == smallest.y && cur.x < smallest.x)
  ------------------
  |  Branch (862:26): [True: 296k, False: 10.7k]
  |  Branch (862:49): [True: 85.4k, False: 211k]
  ------------------
  863|  85.4k|                { smallest = cur; comp_num = c; res_num = r; }
  864|   221k|                else if (cur.y == smallest.y && cur.x == smallest.x &&
  ------------------
  |  Branch (864:26): [True: 211k, False: 10.7k]
  |  Branch (864:49): [True: 158k, False: 52.3k]
  ------------------
  865|   158k|                         c < comp_num)
  ------------------
  |  Branch (865:26): [True: 0, False: 158k]
  ------------------
  866|      0|                { smallest = cur; comp_num = c; res_num = r; }
  867|   221k|                else if (cur.y == smallest.y && cur.x == smallest.x &&
  ------------------
  |  Branch (867:26): [True: 211k, False: 10.7k]
  |  Branch (867:49): [True: 158k, False: 52.3k]
  ------------------
  868|   158k|                         c == comp_num && r < res_num)
  ------------------
  |  Branch (868:26): [True: 151k, False: 6.80k]
  |  Branch (868:43): [True: 0, False: 151k]
  ------------------
  869|      0|                { smallest = cur; comp_num = c; res_num = r; }
  870|   583k|              }
  871|   114k|            }
  872|   112k|            if (found == true && data_left > 0)
  ------------------
  |  Branch (872:17): [True: 112k, False: 338]
  |  Branch (872:34): [True: 112k, False: 299]
  ------------------
  873|   112k|              comps[comp_num].parse_one_precinct(res_num, data_left, file);
  874|    637|            else
  875|    637|              break;
  876|   112k|          }
  877|  4.39k|        }
  878|   151k|        else if (prog_order == OJPH_PO_CPRL)
  ------------------
  |  Branch (878:18): [True: 151k, False: 248]
  ------------------
  879|   151k|        {
  880|   306k|          for (ui32 c = 0; c < num_comps; ++c)
  ------------------
  |  Branch (880:28): [True: 154k, False: 151k]
  ------------------
  881|   154k|          {
  882|   399k|            while (true)
  ------------------
  |  Branch (882:20): [True: 377k, Folded]
  ------------------
  883|   377k|            {
  884|   377k|              bool found = false;
  885|   377k|              ui32 res_num = 0;
  886|   377k|              point smallest(INT_MAX, INT_MAX), cur;
  887|  2.46M|              for (ui32 r = 0; r <= max_decompositions; ++r)
  ------------------
  |  Branch (887:32): [True: 2.08M, False: 377k]
  ------------------
  888|  2.08M|              {
  889|  2.08M|                if (!comps[c].get_top_left_precinct(r, cur)) //res exist?
  ------------------
  |  Branch (889:21): [True: 1.05M, False: 1.03M]
  ------------------
  890|  1.05M|                  continue;
  891|  1.03M|                else
  892|  1.03M|                  found = true;
  893|       |
  894|  1.03M|                if (cur.y < smallest.y)
  ------------------
  |  Branch (894:21): [True: 534k, False: 500k]
  ------------------
  895|   534k|                { smallest = cur; res_num = r; }
  896|   500k|                else if (cur.y == smallest.y && cur.x < smallest.x)
  ------------------
  |  Branch (896:26): [True: 453k, False: 46.6k]
  |  Branch (896:49): [True: 127k, False: 326k]
  ------------------
  897|   127k|                { smallest = cur; res_num = r; }
  898|  1.03M|              }
  899|   377k|              if (found == true && data_left > 0)
  ------------------
  |  Branch (899:19): [True: 245k, False: 132k]
  |  Branch (899:36): [True: 244k, False: 778]
  ------------------
  900|   244k|                comps[c].parse_one_precinct(res_num, data_left, file);
  901|   132k|              else
  902|   132k|                break;
  903|   377k|            }
  904|   154k|          }
  905|   151k|        }
  906|    248|        else
  907|   151k|          assert(0);
  908|       |
  909|   184k|      }
  910|   184k|      catch (const char *error)
  911|   184k|      {
  912|  44.4k|        if (resilient)
  ------------------
  |  Branch (912:13): [True: 44.4k, False: 0]
  ------------------
  913|  44.4k|          OJPH_INFO(0x00030092, "%s", error)
  ------------------
  |  |  285|  44.4k|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|  44.4k|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 44.4k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  914|      0|        else
  915|      0|          OJPH_ERROR(0x00030092, "%s", error)
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  916|  44.4k|      }
  917|       |      // The decode path is meant to throw const char* only, but a nested
  918|       |      // OJPH_ERROR throws std::runtime_error and the allocators can throw
  919|       |      // std::bad_alloc.  These two handlers make sure such throws are also
  920|       |      // subject to the resilience setting, instead of unwinding past
  921|       |      // parse_tile_header.  In the non-resilient case the throw is passed on
  922|       |      // unchanged, because it has already been reported at its origin.
  923|   184k|      catch (const std::exception& error)
  924|   184k|      {
  925|      0|        if (resilient)
  ------------------
  |  Branch (925:13): [True: 0, False: 0]
  ------------------
  926|      0|          OJPH_INFO(0x00030093, "%s", error.what())
  ------------------
  |  |  285|      0|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  927|      0|        else
  928|      0|          throw;
  929|      0|      }
  930|   184k|      catch (...)
  931|   184k|      {
  932|      0|        if (resilient)
  ------------------
  |  Branch (932:13): [True: 0, False: 0]
  ------------------
  933|      0|          OJPH_INFO(0x00030094, "unknown error while parsing a tile header")
  ------------------
  |  |  285|      0|  { ojph::get_info()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  934|      0|        else
  935|      0|          throw;
  936|      0|      }
  937|   184k|      file->seek((si64)tile_end_location, infile_base::OJPH_SEEK_SET);
  938|   184k|    }

_ZN4ojph5local4tile13get_tile_rectEv:
   75|  1.56M|      rect get_tile_rect() { return tile_rect; }

_ZN4ojph5local9tile_comp9pre_allocEPNS0_10codestreamEjRKNS_4rectES6_:
   57|   274k|    {
   58|   274k|      mem_fixed_allocator* allocator = codestream->get_allocator();
   59|       |
   60|       |      //allocate a resolution
   61|   274k|      ui32 num_decomps;
   62|   274k|      num_decomps = codestream->get_coc(comp_num)->get_num_decompositions();
   63|   274k|      allocator->pre_alloc_obj<resolution>(1);
   64|       |
   65|   274k|      resolution::pre_alloc(codestream, comp_rect, recon_comp_rect, comp_num, 
   66|   274k|                            num_decomps);
   67|   274k|    }
_ZN4ojph5local9tile_comp14finalize_allocEPNS0_10codestreamEPNS0_4tileEjRKNS_4rectES8_:
   73|   271k|    {
   74|   271k|      mem_fixed_allocator* allocator = codestream->get_allocator();
   75|       |
   76|       |      //allocate a resolution
   77|   271k|      num_decomps = codestream->get_coc(comp_num)->get_num_decompositions();
   78|       |
   79|   271k|      comp_downsamp = codestream->get_siz()->get_downsampling(comp_num);
   80|   271k|      this->comp_rect = comp_rect;
   81|   271k|      this->parent_tile = parent;
   82|       |
   83|   271k|      this->comp_num = comp_num;
   84|   271k|      this->num_bytes = 0;
   85|   271k|      res = allocator->post_alloc_obj<resolution>(1);
   86|   271k|      res->finalize_alloc(codestream, comp_rect, recon_comp_rect, comp_num,
   87|   271k|                          num_decomps, comp_downsamp, comp_downsamp, this, 
   88|       |                          NULL);
   89|   271k|    }
_ZN4ojph5local9tile_comp9pull_lineEv:
  105|  3.21M|    {
  106|  3.21M|      return res->pull_line();
  107|  3.21M|    }
_ZN4ojph5local9tile_comp21get_top_left_precinctEjRNS_5pointE:
  133|  2.98M|    {
  134|  2.98M|      int resolution_num = (int)num_decomps - (int)res_num;
  135|  2.98M|      resolution *r = res;
  136|  10.2M|       while (resolution_num > 0 && r != NULL)
  ------------------
  |  Branch (136:15): [True: 7.29M, False: 2.98M]
  |  Branch (136:37): [True: 7.29M, False: 0]
  ------------------
  137|  7.29M|      {
  138|  7.29M|        r = r->next_resolution();
  139|  7.29M|        --resolution_num;
  140|  7.29M|      }
  141|  2.98M|      if (r) //resolution does not exist if r is NULL
  ------------------
  |  Branch (141:11): [True: 2.98M, False: 0]
  ------------------
  142|  2.98M|        return r->get_top_left_precinct(top_left);
  143|      0|      else
  144|      0|        return false;
  145|  2.98M|    }
_ZN4ojph5local9tile_comp15parse_precinctsEjRjPNS_11infile_baseE:
  164|   104k|    {
  165|   104k|      assert(res_num <= num_decomps);
  166|   104k|      res_num = num_decomps - res_num; //how many levels to go down
  167|   104k|      resolution *r = res;
  168|   504k|      while (res_num > 0 && r != NULL)
  ------------------
  |  Branch (168:14): [True: 421k, False: 83.3k]
  |  Branch (168:29): [True: 400k, False: 21.3k]
  ------------------
  169|   400k|      {
  170|   400k|        r = r->next_resolution();
  171|   400k|        --res_num;
  172|   400k|      }
  173|   104k|      if (r) //resolution does not exist if r is NULL
  ------------------
  |  Branch (173:11): [True: 83.3k, False: 21.3k]
  ------------------
  174|  83.3k|        r->parse_all_precincts(data_left, file);
  175|   104k|    }
_ZN4ojph5local9tile_comp18parse_one_precinctEjRjPNS_11infile_baseE:
  181|   462k|    {
  182|   462k|      assert(res_num <= num_decomps);
  183|   462k|      res_num = num_decomps - res_num;
  184|   462k|      resolution *r = res;
  185|   727k|      while (res_num > 0 && r != NULL)
  ------------------
  |  Branch (185:14): [True: 264k, False: 462k]
  |  Branch (185:29): [True: 264k, False: 0]
  ------------------
  186|   264k|      {
  187|   264k|        r = r->next_resolution();
  188|   264k|        --res_num;
  189|   264k|      }
  190|   462k|      if (r) //resolution does not exist if r is NULL
  ------------------
  |  Branch (190:11): [True: 462k, False: 0]
  ------------------
  191|   462k|        r->parse_one_precinct(data_left, file);
  192|   462k|    }

_ZN4ojph5local9tile_comp22get_num_decompositionsEv:
   73|  1.19M|      ui32 get_num_decompositions() { return num_decomps; }
_ZN4ojph5local9tile_comp8get_tileEv:
   74|  1.56M|      tile* get_tile() { return parent_tile; }

ojph_block_common.cpp:_ZN4ojph5localL15vlc_init_tablesEv:
  125|      2|    {
  126|      2|      const bool debug = false; //useful for checking 
  127|       |
  128|       |      //Data in the table is arranged in this format (taken from the standard)
  129|       |      // c_q is the context for a quad
  130|       |      // rho is the significance pattern for a quad
  131|       |      // u_off indicate if u value is 0 (u_off is 0), or communicated
  132|       |      // e_k, e_1 EMB patterns
  133|       |      // cwd VLC codeword
  134|       |      // cwd VLC codeword length
  135|      2|      struct vlc_src_table { int c_q, rho, u_off, e_k, e_1, cwd, cwd_len; };
  136|       |      // initial quad rows
  137|      2|      vlc_src_table tbl0[] = {
  138|      2|    #include "table0.h"
  ------------------
  |  |    1|      2|{0, 0x1, 0x0, 0x0, 0x0, 0x06, 4},
  |  |    2|      2|{0, 0x1, 0x1, 0x1, 0x1, 0x3F, 7},
  |  |    3|      2|{0, 0x2, 0x0, 0x0, 0x0, 0x00, 3},
  |  |    4|      2|{0, 0x2, 0x1, 0x2, 0x2, 0x7F, 7},
  |  |    5|      2|{0, 0x3, 0x0, 0x0, 0x0, 0x11, 5},
  |  |    6|      2|{0, 0x3, 0x1, 0x2, 0x2, 0x5F, 7},
  |  |    7|      2|{0, 0x3, 0x1, 0x3, 0x1, 0x1F, 7},
  |  |    8|      2|{0, 0x4, 0x0, 0x0, 0x0, 0x02, 3},
  |  |    9|      2|{0, 0x4, 0x1, 0x4, 0x4, 0x13, 6},
  |  |   10|      2|{0, 0x5, 0x0, 0x0, 0x0, 0x0E, 5},
  |  |   11|      2|{0, 0x5, 0x1, 0x4, 0x4, 0x23, 6},
  |  |   12|      2|{0, 0x5, 0x1, 0x5, 0x1, 0x0F, 7},
  |  |   13|      2|{0, 0x6, 0x0, 0x0, 0x0, 0x03, 6},
  |  |   14|      2|{0, 0x6, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |   15|      2|{0, 0x7, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   16|      2|{0, 0x7, 0x1, 0x2, 0x2, 0x4F, 7},
  |  |   17|      2|{0, 0x7, 0x1, 0x2, 0x0, 0x0D, 6},
  |  |   18|      2|{0, 0x8, 0x0, 0x0, 0x0, 0x04, 3},
  |  |   19|      2|{0, 0x8, 0x1, 0x8, 0x8, 0x3D, 6},
  |  |   20|      2|{0, 0x9, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |   21|      2|{0, 0x9, 0x1, 0x0, 0x0, 0x2D, 6},
  |  |   22|      2|{0, 0xA, 0x0, 0x0, 0x0, 0x01, 5},
  |  |   23|      2|{0, 0xA, 0x1, 0x8, 0x8, 0x35, 6},
  |  |   24|      2|{0, 0xA, 0x1, 0xA, 0x2, 0x77, 7},
  |  |   25|      2|{0, 0xB, 0x0, 0x0, 0x0, 0x37, 7},
  |  |   26|      2|{0, 0xB, 0x1, 0x1, 0x1, 0x57, 7},
  |  |   27|      2|{0, 0xB, 0x1, 0x1, 0x0, 0x09, 6},
  |  |   28|      2|{0, 0xC, 0x0, 0x0, 0x0, 0x1E, 5},
  |  |   29|      2|{0, 0xC, 0x1, 0xC, 0xC, 0x17, 7},
  |  |   30|      2|{0, 0xC, 0x1, 0xC, 0x4, 0x15, 6},
  |  |   31|      2|{0, 0xC, 0x1, 0xC, 0x8, 0x25, 6},
  |  |   32|      2|{0, 0xD, 0x0, 0x0, 0x0, 0x67, 7},
  |  |   33|      2|{0, 0xD, 0x1, 0x1, 0x1, 0x27, 7},
  |  |   34|      2|{0, 0xD, 0x1, 0x5, 0x4, 0x47, 7},
  |  |   35|      2|{0, 0xD, 0x1, 0xD, 0x8, 0x07, 7},
  |  |   36|      2|{0, 0xE, 0x0, 0x0, 0x0, 0x7B, 7},
  |  |   37|      2|{0, 0xE, 0x1, 0x2, 0x2, 0x4B, 7},
  |  |   38|      2|{0, 0xE, 0x1, 0xA, 0x8, 0x05, 6},
  |  |   39|      2|{0, 0xE, 0x1, 0xE, 0x4, 0x3B, 7},
  |  |   40|      2|{0, 0xF, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |   41|      2|{0, 0xF, 0x1, 0x9, 0x9, 0x1B, 7},
  |  |   42|      2|{0, 0xF, 0x1, 0xB, 0xA, 0x6B, 7},
  |  |   43|      2|{0, 0xF, 0x1, 0xF, 0xC, 0x2B, 7},
  |  |   44|      2|{0, 0xF, 0x1, 0xF, 0x8, 0x39, 6},
  |  |   45|      2|{0, 0xF, 0x1, 0xE, 0x6, 0x73, 7},
  |  |   46|      2|{0, 0xF, 0x1, 0xE, 0x2, 0x19, 6},
  |  |   47|      2|{0, 0xF, 0x1, 0xF, 0x5, 0x0B, 7},
  |  |   48|      2|{0, 0xF, 0x1, 0xF, 0x4, 0x29, 6},
  |  |   49|      2|{0, 0xF, 0x1, 0xF, 0x1, 0x33, 7},
  |  |   50|      2|{1, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |   51|      2|{1, 0x1, 0x0, 0x0, 0x0, 0x0E, 4},
  |  |   52|      2|{1, 0x1, 0x1, 0x1, 0x1, 0x1F, 7},
  |  |   53|      2|{1, 0x2, 0x0, 0x0, 0x0, 0x06, 4},
  |  |   54|      2|{1, 0x2, 0x1, 0x2, 0x2, 0x3B, 6},
  |  |   55|      2|{1, 0x3, 0x0, 0x0, 0x0, 0x1B, 6},
  |  |   56|      2|{1, 0x3, 0x1, 0x0, 0x0, 0x3D, 6},
  |  |   57|      2|{1, 0x4, 0x0, 0x0, 0x0, 0x0A, 4},
  |  |   58|      2|{1, 0x4, 0x1, 0x4, 0x4, 0x2B, 6},
  |  |   59|      2|{1, 0x5, 0x0, 0x0, 0x0, 0x0B, 6},
  |  |   60|      2|{1, 0x5, 0x1, 0x4, 0x4, 0x33, 6},
  |  |   61|      2|{1, 0x5, 0x1, 0x5, 0x1, 0x7F, 7},
  |  |   62|      2|{1, 0x6, 0x0, 0x0, 0x0, 0x13, 6},
  |  |   63|      2|{1, 0x6, 0x1, 0x0, 0x0, 0x23, 6},
  |  |   64|      2|{1, 0x7, 0x0, 0x0, 0x0, 0x3F, 7},
  |  |   65|      2|{1, 0x7, 0x1, 0x2, 0x2, 0x5F, 7},
  |  |   66|      2|{1, 0x7, 0x1, 0x2, 0x0, 0x03, 6},
  |  |   67|      2|{1, 0x8, 0x0, 0x0, 0x0, 0x02, 4},
  |  |   68|      2|{1, 0x8, 0x1, 0x8, 0x8, 0x1D, 6},
  |  |   69|      2|{1, 0x9, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |   70|      2|{1, 0x9, 0x1, 0x0, 0x0, 0x0D, 6},
  |  |   71|      2|{1, 0xA, 0x0, 0x0, 0x0, 0x35, 6},
  |  |   72|      2|{1, 0xA, 0x1, 0x8, 0x8, 0x15, 6},
  |  |   73|      2|{1, 0xA, 0x1, 0xA, 0x2, 0x6F, 7},
  |  |   74|      2|{1, 0xB, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   75|      2|{1, 0xB, 0x1, 0x1, 0x1, 0x4F, 7},
  |  |   76|      2|{1, 0xB, 0x1, 0x1, 0x0, 0x11, 6},
  |  |   77|      2|{1, 0xC, 0x0, 0x0, 0x0, 0x01, 5},
  |  |   78|      2|{1, 0xC, 0x1, 0x8, 0x8, 0x25, 6},
  |  |   79|      2|{1, 0xC, 0x1, 0xC, 0x4, 0x05, 6},
  |  |   80|      2|{1, 0xD, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |   81|      2|{1, 0xD, 0x1, 0x1, 0x1, 0x17, 7},
  |  |   82|      2|{1, 0xD, 0x1, 0x5, 0x4, 0x39, 6},
  |  |   83|      2|{1, 0xD, 0x1, 0xD, 0x8, 0x77, 7},
  |  |   84|      2|{1, 0xE, 0x0, 0x0, 0x0, 0x37, 7},
  |  |   85|      2|{1, 0xE, 0x1, 0x2, 0x2, 0x57, 7},
  |  |   86|      2|{1, 0xE, 0x1, 0xA, 0x8, 0x19, 6},
  |  |   87|      2|{1, 0xE, 0x1, 0xE, 0x4, 0x67, 7},
  |  |   88|      2|{1, 0xF, 0x0, 0x0, 0x0, 0x07, 7},
  |  |   89|      2|{1, 0xF, 0x1, 0xB, 0x8, 0x29, 6},
  |  |   90|      2|{1, 0xF, 0x1, 0x8, 0x8, 0x27, 7},
  |  |   91|      2|{1, 0xF, 0x1, 0xA, 0x2, 0x09, 6},
  |  |   92|      2|{1, 0xF, 0x1, 0xE, 0x4, 0x31, 6},
  |  |   93|      2|{1, 0xF, 0x1, 0xF, 0x1, 0x47, 7},
  |  |   94|      2|{2, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |   95|      2|{2, 0x1, 0x0, 0x0, 0x0, 0x0E, 4},
  |  |   96|      2|{2, 0x1, 0x1, 0x1, 0x1, 0x1B, 6},
  |  |   97|      2|{2, 0x2, 0x0, 0x0, 0x0, 0x06, 4},
  |  |   98|      2|{2, 0x2, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |   99|      2|{2, 0x3, 0x0, 0x0, 0x0, 0x2B, 6},
  |  |  100|      2|{2, 0x3, 0x1, 0x1, 0x1, 0x33, 6},
  |  |  101|      2|{2, 0x3, 0x1, 0x3, 0x2, 0x7F, 7},
  |  |  102|      2|{2, 0x4, 0x0, 0x0, 0x0, 0x0A, 4},
  |  |  103|      2|{2, 0x4, 0x1, 0x4, 0x4, 0x0B, 6},
  |  |  104|      2|{2, 0x5, 0x0, 0x0, 0x0, 0x01, 5},
  |  |  105|      2|{2, 0x5, 0x1, 0x5, 0x5, 0x2F, 7},
  |  |  106|      2|{2, 0x5, 0x1, 0x5, 0x1, 0x13, 6},
  |  |  107|      2|{2, 0x5, 0x1, 0x5, 0x4, 0x23, 6},
  |  |  108|      2|{2, 0x6, 0x0, 0x0, 0x0, 0x03, 6},
  |  |  109|      2|{2, 0x6, 0x1, 0x0, 0x0, 0x5F, 7},
  |  |  110|      2|{2, 0x7, 0x0, 0x0, 0x0, 0x1F, 7},
  |  |  111|      2|{2, 0x7, 0x1, 0x2, 0x2, 0x6F, 7},
  |  |  112|      2|{2, 0x7, 0x1, 0x3, 0x1, 0x11, 6},
  |  |  113|      2|{2, 0x7, 0x1, 0x7, 0x4, 0x37, 7},
  |  |  114|      2|{2, 0x8, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  115|      2|{2, 0x8, 0x1, 0x8, 0x8, 0x4F, 7},
  |  |  116|      2|{2, 0x9, 0x0, 0x0, 0x0, 0x3D, 6},
  |  |  117|      2|{2, 0x9, 0x1, 0x0, 0x0, 0x1D, 6},
  |  |  118|      2|{2, 0xA, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |  119|      2|{2, 0xA, 0x1, 0x0, 0x0, 0x0D, 6},
  |  |  120|      2|{2, 0xB, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |  121|      2|{2, 0xB, 0x1, 0x2, 0x2, 0x77, 7},
  |  |  122|      2|{2, 0xB, 0x1, 0x2, 0x0, 0x35, 6},
  |  |  123|      2|{2, 0xC, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  124|      2|{2, 0xC, 0x1, 0x4, 0x4, 0x25, 6},
  |  |  125|      2|{2, 0xC, 0x1, 0xC, 0x8, 0x57, 7},
  |  |  126|      2|{2, 0xD, 0x0, 0x0, 0x0, 0x17, 7},
  |  |  127|      2|{2, 0xD, 0x1, 0x8, 0x8, 0x05, 6},
  |  |  128|      2|{2, 0xD, 0x1, 0xC, 0x4, 0x39, 6},
  |  |  129|      2|{2, 0xD, 0x1, 0xD, 0x1, 0x67, 7},
  |  |  130|      2|{2, 0xE, 0x0, 0x0, 0x0, 0x27, 7},
  |  |  131|      2|{2, 0xE, 0x1, 0x2, 0x2, 0x7B, 7},
  |  |  132|      2|{2, 0xE, 0x1, 0x2, 0x0, 0x19, 6},
  |  |  133|      2|{2, 0xF, 0x0, 0x0, 0x0, 0x47, 7},
  |  |  134|      2|{2, 0xF, 0x1, 0xF, 0x1, 0x29, 6},
  |  |  135|      2|{2, 0xF, 0x1, 0x1, 0x1, 0x09, 6},
  |  |  136|      2|{2, 0xF, 0x1, 0x3, 0x2, 0x07, 7},
  |  |  137|      2|{2, 0xF, 0x1, 0x7, 0x4, 0x31, 6},
  |  |  138|      2|{2, 0xF, 0x1, 0xF, 0x8, 0x3B, 7},
  |  |  139|      2|{3, 0x0, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  140|      2|{3, 0x1, 0x0, 0x0, 0x0, 0x04, 4},
  |  |  141|      2|{3, 0x1, 0x1, 0x1, 0x1, 0x3D, 6},
  |  |  142|      2|{3, 0x2, 0x0, 0x0, 0x0, 0x0C, 5},
  |  |  143|      2|{3, 0x2, 0x1, 0x2, 0x2, 0x4F, 7},
  |  |  144|      2|{3, 0x3, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  145|      2|{3, 0x3, 0x1, 0x1, 0x1, 0x05, 6},
  |  |  146|      2|{3, 0x3, 0x1, 0x3, 0x2, 0x7F, 7},
  |  |  147|      2|{3, 0x4, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  148|      2|{3, 0x4, 0x1, 0x4, 0x4, 0x2D, 6},
  |  |  149|      2|{3, 0x5, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  150|      2|{3, 0x5, 0x1, 0x5, 0x5, 0x1A, 5},
  |  |  151|      2|{3, 0x5, 0x1, 0x5, 0x1, 0x0D, 6},
  |  |  152|      2|{3, 0x5, 0x1, 0x5, 0x4, 0x35, 6},
  |  |  153|      2|{3, 0x6, 0x0, 0x0, 0x0, 0x3F, 7},
  |  |  154|      2|{3, 0x6, 0x1, 0x4, 0x4, 0x5F, 7},
  |  |  155|      2|{3, 0x6, 0x1, 0x6, 0x2, 0x1F, 7},
  |  |  156|      2|{3, 0x7, 0x0, 0x0, 0x0, 0x6F, 7},
  |  |  157|      2|{3, 0x7, 0x1, 0x6, 0x6, 0x2F, 7},
  |  |  158|      2|{3, 0x7, 0x1, 0x6, 0x4, 0x15, 6},
  |  |  159|      2|{3, 0x7, 0x1, 0x7, 0x3, 0x77, 7},
  |  |  160|      2|{3, 0x7, 0x1, 0x7, 0x1, 0x25, 6},
  |  |  161|      2|{3, 0x7, 0x1, 0x7, 0x2, 0x0F, 7},
  |  |  162|      2|{3, 0x8, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  163|      2|{3, 0x8, 0x1, 0x8, 0x8, 0x07, 7},
  |  |  164|      2|{3, 0x9, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  165|      2|{3, 0x9, 0x1, 0x1, 0x1, 0x37, 7},
  |  |  166|      2|{3, 0x9, 0x1, 0x9, 0x8, 0x57, 7},
  |  |  167|      2|{3, 0xA, 0x0, 0x0, 0x0, 0x19, 6},
  |  |  168|      2|{3, 0xA, 0x1, 0x8, 0x8, 0x29, 6},
  |  |  169|      2|{3, 0xA, 0x1, 0xA, 0x2, 0x17, 7},
  |  |  170|      2|{3, 0xB, 0x0, 0x0, 0x0, 0x67, 7},
  |  |  171|      2|{3, 0xB, 0x1, 0xB, 0x1, 0x27, 7},
  |  |  172|      2|{3, 0xB, 0x1, 0x1, 0x1, 0x47, 7},
  |  |  173|      2|{3, 0xB, 0x1, 0x3, 0x2, 0x09, 6},
  |  |  174|      2|{3, 0xB, 0x1, 0xB, 0x8, 0x7B, 7},
  |  |  175|      2|{3, 0xC, 0x0, 0x0, 0x0, 0x31, 6},
  |  |  176|      2|{3, 0xC, 0x1, 0x4, 0x4, 0x11, 6},
  |  |  177|      2|{3, 0xC, 0x1, 0xC, 0x8, 0x3B, 7},
  |  |  178|      2|{3, 0xD, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  179|      2|{3, 0xD, 0x1, 0x9, 0x9, 0x1B, 7},
  |  |  180|      2|{3, 0xD, 0x1, 0xD, 0x5, 0x2B, 7},
  |  |  181|      2|{3, 0xD, 0x1, 0xD, 0x1, 0x21, 6},
  |  |  182|      2|{3, 0xD, 0x1, 0xD, 0xC, 0x6B, 7},
  |  |  183|      2|{3, 0xD, 0x1, 0xD, 0x4, 0x01, 6},
  |  |  184|      2|{3, 0xD, 0x1, 0xD, 0x8, 0x4B, 7},
  |  |  185|      2|{3, 0xE, 0x0, 0x0, 0x0, 0x0B, 7},
  |  |  186|      2|{3, 0xE, 0x1, 0xE, 0x4, 0x73, 7},
  |  |  187|      2|{3, 0xE, 0x1, 0x4, 0x4, 0x13, 7},
  |  |  188|      2|{3, 0xE, 0x1, 0xC, 0x8, 0x3E, 6},
  |  |  189|      2|{3, 0xE, 0x1, 0xE, 0x2, 0x33, 7},
  |  |  190|      2|{3, 0xF, 0x0, 0x0, 0x0, 0x53, 7},
  |  |  191|      2|{3, 0xF, 0x1, 0xA, 0xA, 0x0E, 6},
  |  |  192|      2|{3, 0xF, 0x1, 0xB, 0x9, 0x63, 7},
  |  |  193|      2|{3, 0xF, 0x1, 0xF, 0xC, 0x03, 7},
  |  |  194|      2|{3, 0xF, 0x1, 0xF, 0x8, 0x12, 5},
  |  |  195|      2|{3, 0xF, 0x1, 0xE, 0x6, 0x23, 7},
  |  |  196|      2|{3, 0xF, 0x1, 0xF, 0x5, 0x1E, 6},
  |  |  197|      2|{3, 0xF, 0x1, 0xF, 0x4, 0x02, 5},
  |  |  198|      2|{3, 0xF, 0x1, 0xF, 0x3, 0x43, 7},
  |  |  199|      2|{3, 0xF, 0x1, 0xF, 0x1, 0x1C, 5},
  |  |  200|      2|{3, 0xF, 0x1, 0xF, 0x2, 0x2E, 6},
  |  |  201|      2|{4, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |  202|      2|{4, 0x1, 0x0, 0x0, 0x0, 0x0E, 4},
  |  |  203|      2|{4, 0x1, 0x1, 0x1, 0x1, 0x3F, 7},
  |  |  204|      2|{4, 0x2, 0x0, 0x0, 0x0, 0x06, 4},
  |  |  205|      2|{4, 0x2, 0x1, 0x2, 0x2, 0x1B, 6},
  |  |  206|      2|{4, 0x3, 0x0, 0x0, 0x0, 0x2B, 6},
  |  |  207|      2|{4, 0x3, 0x1, 0x2, 0x2, 0x3D, 6},
  |  |  208|      2|{4, 0x3, 0x1, 0x3, 0x1, 0x7F, 7},
  |  |  209|      2|{4, 0x4, 0x0, 0x0, 0x0, 0x0A, 4},
  |  |  210|      2|{4, 0x4, 0x1, 0x4, 0x4, 0x5F, 7},
  |  |  211|      2|{4, 0x5, 0x0, 0x0, 0x0, 0x0B, 6},
  |  |  212|      2|{4, 0x5, 0x1, 0x0, 0x0, 0x33, 6},
  |  |  213|      2|{4, 0x6, 0x0, 0x0, 0x0, 0x13, 6},
  |  |  214|      2|{4, 0x6, 0x1, 0x0, 0x0, 0x23, 6},
  |  |  215|      2|{4, 0x7, 0x0, 0x0, 0x0, 0x1F, 7},
  |  |  216|      2|{4, 0x7, 0x1, 0x4, 0x4, 0x6F, 7},
  |  |  217|      2|{4, 0x7, 0x1, 0x4, 0x0, 0x03, 6},
  |  |  218|      2|{4, 0x8, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  219|      2|{4, 0x8, 0x1, 0x8, 0x8, 0x1D, 6},
  |  |  220|      2|{4, 0x9, 0x0, 0x0, 0x0, 0x11, 6},
  |  |  221|      2|{4, 0x9, 0x1, 0x0, 0x0, 0x77, 7},
  |  |  222|      2|{4, 0xA, 0x0, 0x0, 0x0, 0x01, 5},
  |  |  223|      2|{4, 0xA, 0x1, 0xA, 0xA, 0x2F, 7},
  |  |  224|      2|{4, 0xA, 0x1, 0xA, 0x2, 0x2D, 6},
  |  |  225|      2|{4, 0xA, 0x1, 0xA, 0x8, 0x0D, 6},
  |  |  226|      2|{4, 0xB, 0x0, 0x0, 0x0, 0x4F, 7},
  |  |  227|      2|{4, 0xB, 0x1, 0xB, 0x2, 0x0F, 7},
  |  |  228|      2|{4, 0xB, 0x1, 0x0, 0x0, 0x35, 6},
  |  |  229|      2|{4, 0xC, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  230|      2|{4, 0xC, 0x1, 0x8, 0x8, 0x25, 6},
  |  |  231|      2|{4, 0xC, 0x1, 0xC, 0x4, 0x37, 7},
  |  |  232|      2|{4, 0xD, 0x0, 0x0, 0x0, 0x57, 7},
  |  |  233|      2|{4, 0xD, 0x1, 0x1, 0x1, 0x07, 7},
  |  |  234|      2|{4, 0xD, 0x1, 0x1, 0x0, 0x05, 6},
  |  |  235|      2|{4, 0xE, 0x0, 0x0, 0x0, 0x17, 7},
  |  |  236|      2|{4, 0xE, 0x1, 0x4, 0x4, 0x39, 6},
  |  |  237|      2|{4, 0xE, 0x1, 0xC, 0x8, 0x19, 6},
  |  |  238|      2|{4, 0xE, 0x1, 0xE, 0x2, 0x67, 7},
  |  |  239|      2|{4, 0xF, 0x0, 0x0, 0x0, 0x27, 7},
  |  |  240|      2|{4, 0xF, 0x1, 0x9, 0x9, 0x47, 7},
  |  |  241|      2|{4, 0xF, 0x1, 0x9, 0x1, 0x29, 6},
  |  |  242|      2|{4, 0xF, 0x1, 0x7, 0x6, 0x7B, 7},
  |  |  243|      2|{4, 0xF, 0x1, 0x7, 0x2, 0x09, 6},
  |  |  244|      2|{4, 0xF, 0x1, 0xB, 0x8, 0x31, 6},
  |  |  245|      2|{4, 0xF, 0x1, 0xF, 0x4, 0x3B, 7},
  |  |  246|      2|{5, 0x0, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  247|      2|{5, 0x1, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  248|      2|{5, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |  249|      2|{5, 0x2, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  250|      2|{5, 0x2, 0x1, 0x2, 0x2, 0x1D, 6},
  |  |  251|      2|{5, 0x3, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |  252|      2|{5, 0x3, 0x1, 0x3, 0x3, 0x5F, 7},
  |  |  253|      2|{5, 0x3, 0x1, 0x3, 0x2, 0x39, 6},
  |  |  254|      2|{5, 0x3, 0x1, 0x3, 0x1, 0x3F, 7},
  |  |  255|      2|{5, 0x4, 0x0, 0x0, 0x0, 0x12, 5},
  |  |  256|      2|{5, 0x4, 0x1, 0x4, 0x4, 0x1F, 7},
  |  |  257|      2|{5, 0x5, 0x0, 0x0, 0x0, 0x0D, 6},
  |  |  258|      2|{5, 0x5, 0x1, 0x4, 0x4, 0x35, 6},
  |  |  259|      2|{5, 0x5, 0x1, 0x5, 0x1, 0x6F, 7},
  |  |  260|      2|{5, 0x6, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  261|      2|{5, 0x6, 0x1, 0x2, 0x2, 0x25, 6},
  |  |  262|      2|{5, 0x6, 0x1, 0x6, 0x4, 0x2F, 7},
  |  |  263|      2|{5, 0x7, 0x0, 0x0, 0x0, 0x4F, 7},
  |  |  264|      2|{5, 0x7, 0x1, 0x6, 0x6, 0x57, 7},
  |  |  265|      2|{5, 0x7, 0x1, 0x6, 0x4, 0x05, 6},
  |  |  266|      2|{5, 0x7, 0x1, 0x7, 0x3, 0x0F, 7},
  |  |  267|      2|{5, 0x7, 0x1, 0x7, 0x2, 0x77, 7},
  |  |  268|      2|{5, 0x7, 0x1, 0x7, 0x1, 0x37, 7},
  |  |  269|      2|{5, 0x8, 0x0, 0x0, 0x0, 0x02, 5},
  |  |  270|      2|{5, 0x8, 0x1, 0x8, 0x8, 0x19, 6},
  |  |  271|      2|{5, 0x9, 0x0, 0x0, 0x0, 0x26, 6},
  |  |  272|      2|{5, 0x9, 0x1, 0x8, 0x8, 0x17, 7},
  |  |  273|      2|{5, 0x9, 0x1, 0x9, 0x1, 0x67, 7},
  |  |  274|      2|{5, 0xA, 0x0, 0x0, 0x0, 0x1C, 5},
  |  |  275|      2|{5, 0xA, 0x1, 0xA, 0xA, 0x29, 6},
  |  |  276|      2|{5, 0xA, 0x1, 0xA, 0x2, 0x09, 6},
  |  |  277|      2|{5, 0xA, 0x1, 0xA, 0x8, 0x31, 6},
  |  |  278|      2|{5, 0xB, 0x0, 0x0, 0x0, 0x27, 7},
  |  |  279|      2|{5, 0xB, 0x1, 0x9, 0x9, 0x07, 7},
  |  |  280|      2|{5, 0xB, 0x1, 0x9, 0x8, 0x11, 6},
  |  |  281|      2|{5, 0xB, 0x1, 0xB, 0x3, 0x47, 7},
  |  |  282|      2|{5, 0xB, 0x1, 0xB, 0x2, 0x21, 6},
  |  |  283|      2|{5, 0xB, 0x1, 0xB, 0x1, 0x7B, 7},
  |  |  284|      2|{5, 0xC, 0x0, 0x0, 0x0, 0x01, 6},
  |  |  285|      2|{5, 0xC, 0x1, 0x8, 0x8, 0x3E, 6},
  |  |  286|      2|{5, 0xC, 0x1, 0xC, 0x4, 0x3B, 7},
  |  |  287|      2|{5, 0xD, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  288|      2|{5, 0xD, 0x1, 0x9, 0x9, 0x6B, 7},
  |  |  289|      2|{5, 0xD, 0x1, 0x9, 0x8, 0x1E, 6},
  |  |  290|      2|{5, 0xD, 0x1, 0xD, 0x5, 0x1B, 7},
  |  |  291|      2|{5, 0xD, 0x1, 0xD, 0x4, 0x2E, 6},
  |  |  292|      2|{5, 0xD, 0x1, 0xD, 0x1, 0x2B, 7},
  |  |  293|      2|{5, 0xE, 0x0, 0x0, 0x0, 0x4B, 7},
  |  |  294|      2|{5, 0xE, 0x1, 0x6, 0x6, 0x0B, 7},
  |  |  295|      2|{5, 0xE, 0x1, 0xE, 0xA, 0x33, 7},
  |  |  296|      2|{5, 0xE, 0x1, 0xE, 0x2, 0x0E, 6},
  |  |  297|      2|{5, 0xE, 0x1, 0xE, 0xC, 0x73, 7},
  |  |  298|      2|{5, 0xE, 0x1, 0xE, 0x8, 0x36, 6},
  |  |  299|      2|{5, 0xE, 0x1, 0xE, 0x4, 0x53, 7},
  |  |  300|      2|{5, 0xF, 0x0, 0x0, 0x0, 0x13, 7},
  |  |  301|      2|{5, 0xF, 0x1, 0x7, 0x7, 0x43, 7},
  |  |  302|      2|{5, 0xF, 0x1, 0x7, 0x6, 0x16, 6},
  |  |  303|      2|{5, 0xF, 0x1, 0x7, 0x5, 0x63, 7},
  |  |  304|      2|{5, 0xF, 0x1, 0xF, 0xC, 0x23, 7},
  |  |  305|      2|{5, 0xF, 0x1, 0xF, 0x4, 0x0C, 5},
  |  |  306|      2|{5, 0xF, 0x1, 0xD, 0x9, 0x03, 7},
  |  |  307|      2|{5, 0xF, 0x1, 0xF, 0xA, 0x3D, 7},
  |  |  308|      2|{5, 0xF, 0x1, 0xF, 0x8, 0x14, 5},
  |  |  309|      2|{5, 0xF, 0x1, 0xF, 0x3, 0x7D, 7},
  |  |  310|      2|{5, 0xF, 0x1, 0xF, 0x2, 0x04, 5},
  |  |  311|      2|{5, 0xF, 0x1, 0xF, 0x1, 0x06, 6},
  |  |  312|      2|{6, 0x0, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  313|      2|{6, 0x1, 0x0, 0x0, 0x0, 0x04, 4},
  |  |  314|      2|{6, 0x1, 0x1, 0x1, 0x1, 0x03, 6},
  |  |  315|      2|{6, 0x2, 0x0, 0x0, 0x0, 0x0C, 5},
  |  |  316|      2|{6, 0x2, 0x1, 0x2, 0x2, 0x0D, 6},
  |  |  317|      2|{6, 0x3, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  318|      2|{6, 0x3, 0x1, 0x3, 0x3, 0x3D, 6},
  |  |  319|      2|{6, 0x3, 0x1, 0x3, 0x1, 0x1D, 6},
  |  |  320|      2|{6, 0x3, 0x1, 0x3, 0x2, 0x2D, 6},
  |  |  321|      2|{6, 0x4, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  322|      2|{6, 0x4, 0x1, 0x4, 0x4, 0x3F, 7},
  |  |  323|      2|{6, 0x5, 0x0, 0x0, 0x0, 0x35, 6},
  |  |  324|      2|{6, 0x5, 0x1, 0x1, 0x1, 0x15, 6},
  |  |  325|      2|{6, 0x5, 0x1, 0x5, 0x4, 0x7F, 7},
  |  |  326|      2|{6, 0x6, 0x0, 0x0, 0x0, 0x25, 6},
  |  |  327|      2|{6, 0x6, 0x1, 0x2, 0x2, 0x5F, 7},
  |  |  328|      2|{6, 0x6, 0x1, 0x6, 0x4, 0x1F, 7},
  |  |  329|      2|{6, 0x7, 0x0, 0x0, 0x0, 0x6F, 7},
  |  |  330|      2|{6, 0x7, 0x1, 0x6, 0x6, 0x4F, 7},
  |  |  331|      2|{6, 0x7, 0x1, 0x6, 0x4, 0x05, 6},
  |  |  332|      2|{6, 0x7, 0x1, 0x7, 0x3, 0x2F, 7},
  |  |  333|      2|{6, 0x7, 0x1, 0x7, 0x1, 0x36, 6},
  |  |  334|      2|{6, 0x7, 0x1, 0x7, 0x2, 0x77, 7},
  |  |  335|      2|{6, 0x8, 0x0, 0x0, 0x0, 0x12, 5},
  |  |  336|      2|{6, 0x8, 0x1, 0x8, 0x8, 0x0F, 7},
  |  |  337|      2|{6, 0x9, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  338|      2|{6, 0x9, 0x1, 0x1, 0x1, 0x37, 7},
  |  |  339|      2|{6, 0x9, 0x1, 0x9, 0x8, 0x57, 7},
  |  |  340|      2|{6, 0xA, 0x0, 0x0, 0x0, 0x19, 6},
  |  |  341|      2|{6, 0xA, 0x1, 0x2, 0x2, 0x29, 6},
  |  |  342|      2|{6, 0xA, 0x1, 0xA, 0x8, 0x17, 7},
  |  |  343|      2|{6, 0xB, 0x0, 0x0, 0x0, 0x67, 7},
  |  |  344|      2|{6, 0xB, 0x1, 0x9, 0x9, 0x47, 7},
  |  |  345|      2|{6, 0xB, 0x1, 0x9, 0x1, 0x09, 6},
  |  |  346|      2|{6, 0xB, 0x1, 0xB, 0xA, 0x27, 7},
  |  |  347|      2|{6, 0xB, 0x1, 0xB, 0x2, 0x31, 6},
  |  |  348|      2|{6, 0xB, 0x1, 0xB, 0x8, 0x7B, 7},
  |  |  349|      2|{6, 0xC, 0x0, 0x0, 0x0, 0x11, 6},
  |  |  350|      2|{6, 0xC, 0x1, 0xC, 0xC, 0x07, 7},
  |  |  351|      2|{6, 0xC, 0x1, 0xC, 0x8, 0x21, 6},
  |  |  352|      2|{6, 0xC, 0x1, 0xC, 0x4, 0x3B, 7},
  |  |  353|      2|{6, 0xD, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  354|      2|{6, 0xD, 0x1, 0x5, 0x5, 0x33, 7},
  |  |  355|      2|{6, 0xD, 0x1, 0x5, 0x4, 0x01, 6},
  |  |  356|      2|{6, 0xD, 0x1, 0xC, 0x8, 0x1B, 7},
  |  |  357|      2|{6, 0xD, 0x1, 0xD, 0x1, 0x6B, 7},
  |  |  358|      2|{6, 0xE, 0x0, 0x0, 0x0, 0x2B, 7},
  |  |  359|      2|{6, 0xE, 0x1, 0xE, 0x2, 0x4B, 7},
  |  |  360|      2|{6, 0xE, 0x1, 0x2, 0x2, 0x0B, 7},
  |  |  361|      2|{6, 0xE, 0x1, 0xE, 0xC, 0x73, 7},
  |  |  362|      2|{6, 0xE, 0x1, 0xE, 0x8, 0x3E, 6},
  |  |  363|      2|{6, 0xE, 0x1, 0xE, 0x4, 0x53, 7},
  |  |  364|      2|{6, 0xF, 0x0, 0x0, 0x0, 0x13, 7},
  |  |  365|      2|{6, 0xF, 0x1, 0x6, 0x6, 0x1E, 6},
  |  |  366|      2|{6, 0xF, 0x1, 0xE, 0xA, 0x2E, 6},
  |  |  367|      2|{6, 0xF, 0x1, 0xF, 0x3, 0x0E, 6},
  |  |  368|      2|{6, 0xF, 0x1, 0xF, 0x2, 0x02, 5},
  |  |  369|      2|{6, 0xF, 0x1, 0xB, 0x9, 0x63, 7},
  |  |  370|      2|{6, 0xF, 0x1, 0xF, 0xC, 0x16, 6},
  |  |  371|      2|{6, 0xF, 0x1, 0xF, 0x8, 0x06, 6},
  |  |  372|      2|{6, 0xF, 0x1, 0xF, 0x5, 0x23, 7},
  |  |  373|      2|{6, 0xF, 0x1, 0xF, 0x1, 0x1C, 5},
  |  |  374|      2|{6, 0xF, 0x1, 0xF, 0x4, 0x26, 6},
  |  |  375|      2|{7, 0x0, 0x0, 0x0, 0x0, 0x12, 5},
  |  |  376|      2|{7, 0x1, 0x0, 0x0, 0x0, 0x05, 6},
  |  |  377|      2|{7, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |  378|      2|{7, 0x2, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  379|      2|{7, 0x2, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |  380|      2|{7, 0x3, 0x0, 0x0, 0x0, 0x5F, 7},
  |  |  381|      2|{7, 0x3, 0x1, 0x3, 0x3, 0x1F, 7},
  |  |  382|      2|{7, 0x3, 0x1, 0x3, 0x2, 0x6F, 7},
  |  |  383|      2|{7, 0x3, 0x1, 0x3, 0x1, 0x2F, 7},
  |  |  384|      2|{7, 0x4, 0x0, 0x0, 0x0, 0x4F, 7},
  |  |  385|      2|{7, 0x4, 0x1, 0x4, 0x4, 0x0F, 7},
  |  |  386|      2|{7, 0x5, 0x0, 0x0, 0x0, 0x57, 7},
  |  |  387|      2|{7, 0x5, 0x1, 0x1, 0x1, 0x19, 6},
  |  |  388|      2|{7, 0x5, 0x1, 0x5, 0x4, 0x77, 7},
  |  |  389|      2|{7, 0x6, 0x0, 0x0, 0x0, 0x37, 7},
  |  |  390|      2|{7, 0x6, 0x1, 0x0, 0x0, 0x29, 6},
  |  |  391|      2|{7, 0x7, 0x0, 0x0, 0x0, 0x17, 7},
  |  |  392|      2|{7, 0x7, 0x1, 0x6, 0x6, 0x67, 7},
  |  |  393|      2|{7, 0x7, 0x1, 0x7, 0x3, 0x27, 7},
  |  |  394|      2|{7, 0x7, 0x1, 0x7, 0x2, 0x47, 7},
  |  |  395|      2|{7, 0x7, 0x1, 0x7, 0x5, 0x1B, 7},
  |  |  396|      2|{7, 0x7, 0x1, 0x7, 0x1, 0x09, 6},
  |  |  397|      2|{7, 0x7, 0x1, 0x7, 0x4, 0x07, 7},
  |  |  398|      2|{7, 0x8, 0x0, 0x0, 0x0, 0x7B, 7},
  |  |  399|      2|{7, 0x8, 0x1, 0x8, 0x8, 0x3B, 7},
  |  |  400|      2|{7, 0x9, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  401|      2|{7, 0x9, 0x1, 0x0, 0x0, 0x31, 6},
  |  |  402|      2|{7, 0xA, 0x0, 0x0, 0x0, 0x53, 7},
  |  |  403|      2|{7, 0xA, 0x1, 0x2, 0x2, 0x11, 6},
  |  |  404|      2|{7, 0xA, 0x1, 0xA, 0x8, 0x6B, 7},
  |  |  405|      2|{7, 0xB, 0x0, 0x0, 0x0, 0x2B, 7},
  |  |  406|      2|{7, 0xB, 0x1, 0x9, 0x9, 0x4B, 7},
  |  |  407|      2|{7, 0xB, 0x1, 0xB, 0x3, 0x0B, 7},
  |  |  408|      2|{7, 0xB, 0x1, 0xB, 0x1, 0x73, 7},
  |  |  409|      2|{7, 0xB, 0x1, 0xB, 0xA, 0x33, 7},
  |  |  410|      2|{7, 0xB, 0x1, 0xB, 0x2, 0x21, 6},
  |  |  411|      2|{7, 0xB, 0x1, 0xB, 0x8, 0x13, 7},
  |  |  412|      2|{7, 0xC, 0x0, 0x0, 0x0, 0x63, 7},
  |  |  413|      2|{7, 0xC, 0x1, 0x8, 0x8, 0x23, 7},
  |  |  414|      2|{7, 0xC, 0x1, 0xC, 0x4, 0x43, 7},
  |  |  415|      2|{7, 0xD, 0x0, 0x0, 0x0, 0x03, 7},
  |  |  416|      2|{7, 0xD, 0x1, 0x9, 0x9, 0x7D, 7},
  |  |  417|      2|{7, 0xD, 0x1, 0xD, 0x5, 0x5D, 7},
  |  |  418|      2|{7, 0xD, 0x1, 0xD, 0x1, 0x01, 6},
  |  |  419|      2|{7, 0xD, 0x1, 0xD, 0xC, 0x3D, 7},
  |  |  420|      2|{7, 0xD, 0x1, 0xD, 0x4, 0x3E, 6},
  |  |  421|      2|{7, 0xD, 0x1, 0xD, 0x8, 0x1D, 7},
  |  |  422|      2|{7, 0xE, 0x0, 0x0, 0x0, 0x6D, 7},
  |  |  423|      2|{7, 0xE, 0x1, 0x6, 0x6, 0x2D, 7},
  |  |  424|      2|{7, 0xE, 0x1, 0xE, 0xA, 0x0D, 7},
  |  |  425|      2|{7, 0xE, 0x1, 0xE, 0x2, 0x1E, 6},
  |  |  426|      2|{7, 0xE, 0x1, 0xE, 0xC, 0x4D, 7},
  |  |  427|      2|{7, 0xE, 0x1, 0xE, 0x8, 0x0E, 6},
  |  |  428|      2|{7, 0xE, 0x1, 0xE, 0x4, 0x75, 7},
  |  |  429|      2|{7, 0xF, 0x0, 0x0, 0x0, 0x15, 7},
  |  |  430|      2|{7, 0xF, 0x1, 0xF, 0xF, 0x06, 5},
  |  |  431|      2|{7, 0xF, 0x1, 0xF, 0xD, 0x35, 7},
  |  |  432|      2|{7, 0xF, 0x1, 0xF, 0x7, 0x55, 7},
  |  |  433|      2|{7, 0xF, 0x1, 0xF, 0x5, 0x1A, 5},
  |  |  434|      2|{7, 0xF, 0x1, 0xF, 0xB, 0x25, 7},
  |  |  435|      2|{7, 0xF, 0x1, 0xF, 0x3, 0x0A, 5},
  |  |  436|      2|{7, 0xF, 0x1, 0xF, 0x9, 0x2E, 6},
  |  |  437|      2|{7, 0xF, 0x1, 0xF, 0x1, 0x00, 4},
  |  |  438|      2|{7, 0xF, 0x1, 0xF, 0xE, 0x65, 7},
  |  |  439|      2|{7, 0xF, 0x1, 0xF, 0x6, 0x36, 6},
  |  |  440|      2|{7, 0xF, 0x1, 0xF, 0xA, 0x02, 5},
  |  |  441|      2|{7, 0xF, 0x1, 0xF, 0x2, 0x0C, 4},
  |  |  442|      2|{7, 0xF, 0x1, 0xF, 0xC, 0x16, 6},
  |  |  443|      2|{7, 0xF, 0x1, 0xF, 0x8, 0x04, 4},
  |  |  444|      2|{7, 0xF, 0x1, 0xF, 0x4, 0x08, 4}
  ------------------
  139|      2|      };
  140|       |      // number of entries in the table
  141|      2|      size_t tbl0_size = sizeof(tbl0) / sizeof(vlc_src_table); 
  142|       |
  143|       |      // nono-initial quad rows
  144|      2|      vlc_src_table tbl1[] = {
  145|      2|    #include "table1.h"
  ------------------
  |  |    1|      2|{0, 0x1, 0x0, 0x0, 0x0, 0x00, 3},
  |  |    2|      2|{0, 0x1, 0x1, 0x1, 0x1, 0x27, 6},
  |  |    3|      2|{0, 0x2, 0x0, 0x0, 0x0, 0x06, 3},
  |  |    4|      2|{0, 0x2, 0x1, 0x2, 0x2, 0x17, 6},
  |  |    5|      2|{0, 0x3, 0x0, 0x0, 0x0, 0x0D, 5},
  |  |    6|      2|{0, 0x3, 0x1, 0x0, 0x0, 0x3B, 6},
  |  |    7|      2|{0, 0x4, 0x0, 0x0, 0x0, 0x02, 3},
  |  |    8|      2|{0, 0x4, 0x1, 0x4, 0x4, 0x07, 6},
  |  |    9|      2|{0, 0x5, 0x0, 0x0, 0x0, 0x15, 5},
  |  |   10|      2|{0, 0x5, 0x1, 0x0, 0x0, 0x2B, 6},
  |  |   11|      2|{0, 0x6, 0x0, 0x0, 0x0, 0x01, 5},
  |  |   12|      2|{0, 0x6, 0x1, 0x0, 0x0, 0x7F, 7},
  |  |   13|      2|{0, 0x7, 0x0, 0x0, 0x0, 0x1F, 7},
  |  |   14|      2|{0, 0x7, 0x1, 0x0, 0x0, 0x1B, 6},
  |  |   15|      2|{0, 0x8, 0x0, 0x0, 0x0, 0x04, 3},
  |  |   16|      2|{0, 0x8, 0x1, 0x8, 0x8, 0x05, 5},
  |  |   17|      2|{0, 0x9, 0x0, 0x0, 0x0, 0x19, 5},
  |  |   18|      2|{0, 0x9, 0x1, 0x0, 0x0, 0x13, 6},
  |  |   19|      2|{0, 0xA, 0x0, 0x0, 0x0, 0x09, 5},
  |  |   20|      2|{0, 0xA, 0x1, 0x8, 0x8, 0x0B, 6},
  |  |   21|      2|{0, 0xA, 0x1, 0xA, 0x2, 0x3F, 7},
  |  |   22|      2|{0, 0xB, 0x0, 0x0, 0x0, 0x5F, 7},
  |  |   23|      2|{0, 0xB, 0x1, 0x0, 0x0, 0x33, 6},
  |  |   24|      2|{0, 0xC, 0x0, 0x0, 0x0, 0x11, 5},
  |  |   25|      2|{0, 0xC, 0x1, 0x8, 0x8, 0x23, 6},
  |  |   26|      2|{0, 0xC, 0x1, 0xC, 0x4, 0x6F, 7},
  |  |   27|      2|{0, 0xD, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |   28|      2|{0, 0xD, 0x1, 0x0, 0x0, 0x03, 6},
  |  |   29|      2|{0, 0xE, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   30|      2|{0, 0xE, 0x1, 0x4, 0x4, 0x4F, 7},
  |  |   31|      2|{0, 0xE, 0x1, 0x4, 0x0, 0x3D, 6},
  |  |   32|      2|{0, 0xF, 0x0, 0x0, 0x0, 0x77, 7},
  |  |   33|      2|{0, 0xF, 0x1, 0x1, 0x1, 0x37, 7},
  |  |   34|      2|{0, 0xF, 0x1, 0x1, 0x0, 0x1D, 6},
  |  |   35|      2|{1, 0x0, 0x0, 0x0, 0x0, 0x00, 1},
  |  |   36|      2|{1, 0x1, 0x0, 0x0, 0x0, 0x05, 4},
  |  |   37|      2|{1, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |   38|      2|{1, 0x2, 0x0, 0x0, 0x0, 0x09, 4},
  |  |   39|      2|{1, 0x2, 0x1, 0x2, 0x2, 0x1F, 7},
  |  |   40|      2|{1, 0x3, 0x0, 0x0, 0x0, 0x1D, 5},
  |  |   41|      2|{1, 0x3, 0x1, 0x1, 0x1, 0x3F, 7},
  |  |   42|      2|{1, 0x3, 0x1, 0x3, 0x2, 0x5F, 7},
  |  |   43|      2|{1, 0x4, 0x0, 0x0, 0x0, 0x0D, 5},
  |  |   44|      2|{1, 0x4, 0x1, 0x4, 0x4, 0x37, 7},
  |  |   45|      2|{1, 0x5, 0x0, 0x0, 0x0, 0x03, 6},
  |  |   46|      2|{1, 0x5, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |   47|      2|{1, 0x6, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   48|      2|{1, 0x6, 0x1, 0x0, 0x0, 0x4F, 7},
  |  |   49|      2|{1, 0x7, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |   50|      2|{1, 0x7, 0x1, 0x0, 0x0, 0x77, 7},
  |  |   51|      2|{1, 0x8, 0x0, 0x0, 0x0, 0x01, 4},
  |  |   52|      2|{1, 0x8, 0x1, 0x8, 0x8, 0x17, 7},
  |  |   53|      2|{1, 0x9, 0x0, 0x0, 0x0, 0x0B, 6},
  |  |   54|      2|{1, 0x9, 0x1, 0x0, 0x0, 0x57, 7},
  |  |   55|      2|{1, 0xA, 0x0, 0x0, 0x0, 0x33, 6},
  |  |   56|      2|{1, 0xA, 0x1, 0x0, 0x0, 0x67, 7},
  |  |   57|      2|{1, 0xB, 0x0, 0x0, 0x0, 0x27, 7},
  |  |   58|      2|{1, 0xB, 0x1, 0x0, 0x0, 0x2B, 7},
  |  |   59|      2|{1, 0xC, 0x0, 0x0, 0x0, 0x13, 6},
  |  |   60|      2|{1, 0xC, 0x1, 0x0, 0x0, 0x47, 7},
  |  |   61|      2|{1, 0xD, 0x0, 0x0, 0x0, 0x07, 7},
  |  |   62|      2|{1, 0xD, 0x1, 0x0, 0x0, 0x7B, 7},
  |  |   63|      2|{1, 0xE, 0x0, 0x0, 0x0, 0x3B, 7},
  |  |   64|      2|{1, 0xE, 0x1, 0x0, 0x0, 0x5B, 7},
  |  |   65|      2|{1, 0xF, 0x0, 0x0, 0x0, 0x1B, 7},
  |  |   66|      2|{1, 0xF, 0x1, 0x4, 0x4, 0x6B, 7},
  |  |   67|      2|{1, 0xF, 0x1, 0x4, 0x0, 0x23, 6},
  |  |   68|      2|{2, 0x0, 0x0, 0x0, 0x0, 0x00, 1},
  |  |   69|      2|{2, 0x1, 0x0, 0x0, 0x0, 0x09, 4},
  |  |   70|      2|{2, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |   71|      2|{2, 0x2, 0x0, 0x0, 0x0, 0x01, 4},
  |  |   72|      2|{2, 0x2, 0x1, 0x2, 0x2, 0x23, 6},
  |  |   73|      2|{2, 0x3, 0x0, 0x0, 0x0, 0x3D, 6},
  |  |   74|      2|{2, 0x3, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |   75|      2|{2, 0x3, 0x1, 0x3, 0x1, 0x1F, 7},
  |  |   76|      2|{2, 0x4, 0x0, 0x0, 0x0, 0x15, 5},
  |  |   77|      2|{2, 0x4, 0x1, 0x4, 0x4, 0x5F, 7},
  |  |   78|      2|{2, 0x5, 0x0, 0x0, 0x0, 0x03, 6},
  |  |   79|      2|{2, 0x5, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |   80|      2|{2, 0x6, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   81|      2|{2, 0x6, 0x1, 0x0, 0x0, 0x4F, 7},
  |  |   82|      2|{2, 0x7, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |   83|      2|{2, 0x7, 0x1, 0x0, 0x0, 0x17, 7},
  |  |   84|      2|{2, 0x8, 0x0, 0x0, 0x0, 0x05, 5},
  |  |   85|      2|{2, 0x8, 0x1, 0x8, 0x8, 0x77, 7},
  |  |   86|      2|{2, 0x9, 0x0, 0x0, 0x0, 0x37, 7},
  |  |   87|      2|{2, 0x9, 0x1, 0x0, 0x0, 0x57, 7},
  |  |   88|      2|{2, 0xA, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |   89|      2|{2, 0xA, 0x1, 0xA, 0xA, 0x7B, 7},
  |  |   90|      2|{2, 0xA, 0x1, 0xA, 0x2, 0x2D, 6},
  |  |   91|      2|{2, 0xA, 0x1, 0xA, 0x8, 0x67, 7},
  |  |   92|      2|{2, 0xB, 0x0, 0x0, 0x0, 0x27, 7},
  |  |   93|      2|{2, 0xB, 0x1, 0xB, 0x2, 0x47, 7},
  |  |   94|      2|{2, 0xB, 0x1, 0x0, 0x0, 0x07, 7},
  |  |   95|      2|{2, 0xC, 0x0, 0x0, 0x0, 0x0D, 6},
  |  |   96|      2|{2, 0xC, 0x1, 0x0, 0x0, 0x3B, 7},
  |  |   97|      2|{2, 0xD, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |   98|      2|{2, 0xD, 0x1, 0x0, 0x0, 0x1B, 7},
  |  |   99|      2|{2, 0xE, 0x0, 0x0, 0x0, 0x6B, 7},
  |  |  100|      2|{2, 0xE, 0x1, 0x4, 0x4, 0x2B, 7},
  |  |  101|      2|{2, 0xE, 0x1, 0x4, 0x0, 0x4B, 7},
  |  |  102|      2|{2, 0xF, 0x0, 0x0, 0x0, 0x0B, 7},
  |  |  103|      2|{2, 0xF, 0x1, 0x4, 0x4, 0x73, 7},
  |  |  104|      2|{2, 0xF, 0x1, 0x5, 0x1, 0x33, 7},
  |  |  105|      2|{2, 0xF, 0x1, 0x7, 0x2, 0x53, 7},
  |  |  106|      2|{2, 0xF, 0x1, 0xF, 0x8, 0x13, 7},
  |  |  107|      2|{3, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |  108|      2|{3, 0x1, 0x0, 0x0, 0x0, 0x0A, 4},
  |  |  109|      2|{3, 0x1, 0x1, 0x1, 0x1, 0x0B, 6},
  |  |  110|      2|{3, 0x2, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  111|      2|{3, 0x2, 0x1, 0x2, 0x2, 0x23, 6},
  |  |  112|      2|{3, 0x3, 0x0, 0x0, 0x0, 0x0E, 5},
  |  |  113|      2|{3, 0x3, 0x1, 0x3, 0x3, 0x7F, 7},
  |  |  114|      2|{3, 0x3, 0x1, 0x3, 0x2, 0x33, 6},
  |  |  115|      2|{3, 0x3, 0x1, 0x3, 0x1, 0x13, 6},
  |  |  116|      2|{3, 0x4, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  117|      2|{3, 0x4, 0x1, 0x4, 0x4, 0x3F, 7},
  |  |  118|      2|{3, 0x5, 0x0, 0x0, 0x0, 0x03, 6},
  |  |  119|      2|{3, 0x5, 0x1, 0x1, 0x1, 0x3D, 6},
  |  |  120|      2|{3, 0x5, 0x1, 0x5, 0x4, 0x1F, 7},
  |  |  121|      2|{3, 0x6, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  122|      2|{3, 0x6, 0x1, 0x0, 0x0, 0x5F, 7},
  |  |  123|      2|{3, 0x7, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |  124|      2|{3, 0x7, 0x1, 0x4, 0x4, 0x2F, 7},
  |  |  125|      2|{3, 0x7, 0x1, 0x5, 0x1, 0x1E, 6},
  |  |  126|      2|{3, 0x7, 0x1, 0x7, 0x2, 0x6F, 7},
  |  |  127|      2|{3, 0x8, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  128|      2|{3, 0x8, 0x1, 0x8, 0x8, 0x4F, 7},
  |  |  129|      2|{3, 0x9, 0x0, 0x0, 0x0, 0x0D, 6},
  |  |  130|      2|{3, 0x9, 0x1, 0x0, 0x0, 0x35, 6},
  |  |  131|      2|{3, 0xA, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  132|      2|{3, 0xA, 0x1, 0x2, 0x2, 0x25, 6},
  |  |  133|      2|{3, 0xA, 0x1, 0xA, 0x8, 0x0F, 7},
  |  |  134|      2|{3, 0xB, 0x0, 0x0, 0x0, 0x05, 6},
  |  |  135|      2|{3, 0xB, 0x1, 0x8, 0x8, 0x39, 6},
  |  |  136|      2|{3, 0xB, 0x1, 0xB, 0x3, 0x17, 7},
  |  |  137|      2|{3, 0xB, 0x1, 0xB, 0x2, 0x19, 6},
  |  |  138|      2|{3, 0xB, 0x1, 0xB, 0x1, 0x77, 7},
  |  |  139|      2|{3, 0xC, 0x0, 0x0, 0x0, 0x29, 6},
  |  |  140|      2|{3, 0xC, 0x1, 0x0, 0x0, 0x09, 6},
  |  |  141|      2|{3, 0xD, 0x0, 0x0, 0x0, 0x37, 7},
  |  |  142|      2|{3, 0xD, 0x1, 0x4, 0x4, 0x57, 7},
  |  |  143|      2|{3, 0xD, 0x1, 0x4, 0x0, 0x31, 6},
  |  |  144|      2|{3, 0xE, 0x0, 0x0, 0x0, 0x67, 7},
  |  |  145|      2|{3, 0xE, 0x1, 0x4, 0x4, 0x27, 7},
  |  |  146|      2|{3, 0xE, 0x1, 0xC, 0x8, 0x47, 7},
  |  |  147|      2|{3, 0xE, 0x1, 0xE, 0x2, 0x6B, 7},
  |  |  148|      2|{3, 0xF, 0x0, 0x0, 0x0, 0x11, 6},
  |  |  149|      2|{3, 0xF, 0x1, 0x6, 0x6, 0x07, 7},
  |  |  150|      2|{3, 0xF, 0x1, 0x7, 0x3, 0x7B, 7},
  |  |  151|      2|{3, 0xF, 0x1, 0xF, 0xA, 0x3B, 7},
  |  |  152|      2|{3, 0xF, 0x1, 0xF, 0x2, 0x21, 6},
  |  |  153|      2|{3, 0xF, 0x1, 0xF, 0x8, 0x01, 6},
  |  |  154|      2|{3, 0xF, 0x1, 0xA, 0x8, 0x5B, 7},
  |  |  155|      2|{3, 0xF, 0x1, 0xF, 0x5, 0x1B, 7},
  |  |  156|      2|{3, 0xF, 0x1, 0xF, 0x1, 0x3E, 6},
  |  |  157|      2|{3, 0xF, 0x1, 0xF, 0x4, 0x2B, 7},
  |  |  158|      2|{4, 0x0, 0x0, 0x0, 0x0, 0x00, 1},
  |  |  159|      2|{4, 0x1, 0x0, 0x0, 0x0, 0x0D, 5},
  |  |  160|      2|{4, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |  161|      2|{4, 0x2, 0x0, 0x0, 0x0, 0x15, 5},
  |  |  162|      2|{4, 0x2, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |  163|      2|{4, 0x3, 0x0, 0x0, 0x0, 0x5F, 7},
  |  |  164|      2|{4, 0x3, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |  165|      2|{4, 0x4, 0x0, 0x0, 0x0, 0x09, 4},
  |  |  166|      2|{4, 0x4, 0x1, 0x4, 0x4, 0x23, 6},
  |  |  167|      2|{4, 0x5, 0x0, 0x0, 0x0, 0x33, 6},
  |  |  168|      2|{4, 0x5, 0x1, 0x0, 0x0, 0x1F, 7},
  |  |  169|      2|{4, 0x6, 0x0, 0x0, 0x0, 0x13, 6},
  |  |  170|      2|{4, 0x6, 0x1, 0x0, 0x0, 0x2F, 7},
  |  |  171|      2|{4, 0x7, 0x0, 0x0, 0x0, 0x4F, 7},
  |  |  172|      2|{4, 0x7, 0x1, 0x0, 0x0, 0x57, 7},
  |  |  173|      2|{4, 0x8, 0x0, 0x0, 0x0, 0x01, 4},
  |  |  174|      2|{4, 0x8, 0x1, 0x8, 0x8, 0x0F, 7},
  |  |  175|      2|{4, 0x9, 0x0, 0x0, 0x0, 0x77, 7},
  |  |  176|      2|{4, 0x9, 0x1, 0x0, 0x0, 0x37, 7},
  |  |  177|      2|{4, 0xA, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  178|      2|{4, 0xA, 0x1, 0x0, 0x0, 0x17, 7},
  |  |  179|      2|{4, 0xB, 0x0, 0x0, 0x0, 0x67, 7},
  |  |  180|      2|{4, 0xB, 0x1, 0x0, 0x0, 0x6B, 7},
  |  |  181|      2|{4, 0xC, 0x0, 0x0, 0x0, 0x05, 5},
  |  |  182|      2|{4, 0xC, 0x1, 0xC, 0xC, 0x27, 7},
  |  |  183|      2|{4, 0xC, 0x1, 0xC, 0x8, 0x47, 7},
  |  |  184|      2|{4, 0xC, 0x1, 0xC, 0x4, 0x07, 7},
  |  |  185|      2|{4, 0xD, 0x0, 0x0, 0x0, 0x7B, 7},
  |  |  186|      2|{4, 0xD, 0x1, 0x0, 0x0, 0x3B, 7},
  |  |  187|      2|{4, 0xE, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  188|      2|{4, 0xE, 0x1, 0x2, 0x2, 0x1B, 7},
  |  |  189|      2|{4, 0xE, 0x1, 0x2, 0x0, 0x03, 6},
  |  |  190|      2|{4, 0xF, 0x0, 0x0, 0x0, 0x2B, 7},
  |  |  191|      2|{4, 0xF, 0x1, 0x1, 0x1, 0x4B, 7},
  |  |  192|      2|{4, 0xF, 0x1, 0x3, 0x2, 0x0B, 7},
  |  |  193|      2|{4, 0xF, 0x1, 0x3, 0x0, 0x3D, 6},
  |  |  194|      2|{5, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |  195|      2|{5, 0x1, 0x0, 0x0, 0x0, 0x1E, 5},
  |  |  196|      2|{5, 0x1, 0x1, 0x1, 0x1, 0x3B, 6},
  |  |  197|      2|{5, 0x2, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  198|      2|{5, 0x2, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |  199|      2|{5, 0x3, 0x0, 0x0, 0x0, 0x1B, 6},
  |  |  200|      2|{5, 0x3, 0x1, 0x0, 0x0, 0x0B, 6},
  |  |  201|      2|{5, 0x4, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  202|      2|{5, 0x4, 0x1, 0x4, 0x4, 0x2B, 6},
  |  |  203|      2|{5, 0x5, 0x0, 0x0, 0x0, 0x0E, 5},
  |  |  204|      2|{5, 0x5, 0x1, 0x4, 0x4, 0x33, 6},
  |  |  205|      2|{5, 0x5, 0x1, 0x5, 0x1, 0x7F, 7},
  |  |  206|      2|{5, 0x6, 0x0, 0x0, 0x0, 0x13, 6},
  |  |  207|      2|{5, 0x6, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |  208|      2|{5, 0x7, 0x0, 0x0, 0x0, 0x23, 6},
  |  |  209|      2|{5, 0x7, 0x1, 0x2, 0x2, 0x5F, 7},
  |  |  210|      2|{5, 0x7, 0x1, 0x2, 0x0, 0x15, 6},
  |  |  211|      2|{5, 0x8, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  212|      2|{5, 0x8, 0x1, 0x8, 0x8, 0x03, 6},
  |  |  213|      2|{5, 0x9, 0x0, 0x0, 0x0, 0x3D, 6},
  |  |  214|      2|{5, 0x9, 0x1, 0x0, 0x0, 0x1F, 7},
  |  |  215|      2|{5, 0xA, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  216|      2|{5, 0xA, 0x1, 0x0, 0x0, 0x2D, 6},
  |  |  217|      2|{5, 0xB, 0x0, 0x0, 0x0, 0x0D, 6},
  |  |  218|      2|{5, 0xB, 0x1, 0x1, 0x1, 0x4F, 7},
  |  |  219|      2|{5, 0xB, 0x1, 0x1, 0x0, 0x35, 6},
  |  |  220|      2|{5, 0xC, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  221|      2|{5, 0xC, 0x1, 0x4, 0x4, 0x25, 6},
  |  |  222|      2|{5, 0xC, 0x1, 0xC, 0x8, 0x2F, 7},
  |  |  223|      2|{5, 0xD, 0x0, 0x0, 0x0, 0x05, 6},
  |  |  224|      2|{5, 0xD, 0x1, 0x1, 0x1, 0x77, 7},
  |  |  225|      2|{5, 0xD, 0x1, 0x5, 0x4, 0x39, 6},
  |  |  226|      2|{5, 0xD, 0x1, 0xD, 0x8, 0x0F, 7},
  |  |  227|      2|{5, 0xE, 0x0, 0x0, 0x0, 0x19, 6},
  |  |  228|      2|{5, 0xE, 0x1, 0x2, 0x2, 0x57, 7},
  |  |  229|      2|{5, 0xE, 0x1, 0xA, 0x8, 0x01, 6},
  |  |  230|      2|{5, 0xE, 0x1, 0xE, 0x4, 0x37, 7},
  |  |  231|      2|{5, 0xF, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  232|      2|{5, 0xF, 0x1, 0x9, 0x9, 0x17, 7},
  |  |  233|      2|{5, 0xF, 0x1, 0xD, 0x5, 0x67, 7},
  |  |  234|      2|{5, 0xF, 0x1, 0xF, 0x3, 0x07, 7},
  |  |  235|      2|{5, 0xF, 0x1, 0xF, 0x1, 0x29, 6},
  |  |  236|      2|{5, 0xF, 0x1, 0x7, 0x6, 0x27, 7},
  |  |  237|      2|{5, 0xF, 0x1, 0xF, 0xC, 0x09, 6},
  |  |  238|      2|{5, 0xF, 0x1, 0xF, 0x4, 0x31, 6},
  |  |  239|      2|{5, 0xF, 0x1, 0xF, 0xA, 0x47, 7},
  |  |  240|      2|{5, 0xF, 0x1, 0xF, 0x8, 0x11, 6},
  |  |  241|      2|{5, 0xF, 0x1, 0xF, 0x2, 0x21, 6},
  |  |  242|      2|{6, 0x0, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  243|      2|{6, 0x1, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  244|      2|{6, 0x1, 0x1, 0x1, 0x1, 0x03, 6},
  |  |  245|      2|{6, 0x2, 0x0, 0x0, 0x0, 0x0C, 4},
  |  |  246|      2|{6, 0x2, 0x1, 0x2, 0x2, 0x3D, 6},
  |  |  247|      2|{6, 0x3, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  248|      2|{6, 0x3, 0x1, 0x2, 0x2, 0x0D, 6},
  |  |  249|      2|{6, 0x3, 0x1, 0x3, 0x1, 0x7F, 7},
  |  |  250|      2|{6, 0x4, 0x0, 0x0, 0x0, 0x04, 4},
  |  |  251|      2|{6, 0x4, 0x1, 0x4, 0x4, 0x2D, 6},
  |  |  252|      2|{6, 0x5, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  253|      2|{6, 0x5, 0x1, 0x4, 0x4, 0x35, 6},
  |  |  254|      2|{6, 0x5, 0x1, 0x5, 0x1, 0x2F, 7},
  |  |  255|      2|{6, 0x6, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  256|      2|{6, 0x6, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |  257|      2|{6, 0x6, 0x1, 0x6, 0x4, 0x5F, 7},
  |  |  258|      2|{6, 0x7, 0x0, 0x0, 0x0, 0x25, 6},
  |  |  259|      2|{6, 0x7, 0x1, 0x2, 0x2, 0x29, 6},
  |  |  260|      2|{6, 0x7, 0x1, 0x3, 0x1, 0x1F, 7},
  |  |  261|      2|{6, 0x7, 0x1, 0x7, 0x4, 0x6F, 7},
  |  |  262|      2|{6, 0x8, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  263|      2|{6, 0x8, 0x1, 0x8, 0x8, 0x05, 6},
  |  |  264|      2|{6, 0x9, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  265|      2|{6, 0x9, 0x1, 0x0, 0x0, 0x19, 6},
  |  |  266|      2|{6, 0xA, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  267|      2|{6, 0xA, 0x1, 0xA, 0xA, 0x0F, 7},
  |  |  268|      2|{6, 0xA, 0x1, 0xA, 0x2, 0x09, 6},
  |  |  269|      2|{6, 0xA, 0x1, 0xA, 0x8, 0x4F, 7},
  |  |  270|      2|{6, 0xB, 0x0, 0x0, 0x0, 0x0E, 6},
  |  |  271|      2|{6, 0xB, 0x1, 0xB, 0x2, 0x77, 7},
  |  |  272|      2|{6, 0xB, 0x1, 0x2, 0x2, 0x37, 7},
  |  |  273|      2|{6, 0xB, 0x1, 0xA, 0x8, 0x57, 7},
  |  |  274|      2|{6, 0xB, 0x1, 0xB, 0x1, 0x47, 7},
  |  |  275|      2|{6, 0xC, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  276|      2|{6, 0xC, 0x1, 0xC, 0xC, 0x17, 7},
  |  |  277|      2|{6, 0xC, 0x1, 0xC, 0x8, 0x67, 7},
  |  |  278|      2|{6, 0xC, 0x1, 0xC, 0x4, 0x27, 7},
  |  |  279|      2|{6, 0xD, 0x0, 0x0, 0x0, 0x31, 6},
  |  |  280|      2|{6, 0xD, 0x1, 0xD, 0x4, 0x07, 7},
  |  |  281|      2|{6, 0xD, 0x1, 0x4, 0x4, 0x7B, 7},
  |  |  282|      2|{6, 0xD, 0x1, 0xC, 0x8, 0x3B, 7},
  |  |  283|      2|{6, 0xD, 0x1, 0xD, 0x1, 0x2B, 7},
  |  |  284|      2|{6, 0xE, 0x0, 0x0, 0x0, 0x11, 6},
  |  |  285|      2|{6, 0xE, 0x1, 0xE, 0x4, 0x5B, 7},
  |  |  286|      2|{6, 0xE, 0x1, 0x4, 0x4, 0x1B, 7},
  |  |  287|      2|{6, 0xE, 0x1, 0xE, 0xA, 0x6B, 7},
  |  |  288|      2|{6, 0xE, 0x1, 0xE, 0x8, 0x21, 6},
  |  |  289|      2|{6, 0xE, 0x1, 0xE, 0x2, 0x33, 7},
  |  |  290|      2|{6, 0xF, 0x0, 0x0, 0x0, 0x01, 6},
  |  |  291|      2|{6, 0xF, 0x1, 0x3, 0x3, 0x4B, 7},
  |  |  292|      2|{6, 0xF, 0x1, 0x7, 0x6, 0x0B, 7},
  |  |  293|      2|{6, 0xF, 0x1, 0xF, 0xA, 0x73, 7},
  |  |  294|      2|{6, 0xF, 0x1, 0xF, 0x2, 0x3E, 6},
  |  |  295|      2|{6, 0xF, 0x1, 0xB, 0x9, 0x53, 7},
  |  |  296|      2|{6, 0xF, 0x1, 0xF, 0xC, 0x63, 7},
  |  |  297|      2|{6, 0xF, 0x1, 0xF, 0x8, 0x1E, 6},
  |  |  298|      2|{6, 0xF, 0x1, 0xF, 0x5, 0x13, 7},
  |  |  299|      2|{6, 0xF, 0x1, 0xF, 0x4, 0x2E, 6},
  |  |  300|      2|{6, 0xF, 0x1, 0xF, 0x1, 0x23, 7},
  |  |  301|      2|{7, 0x0, 0x0, 0x0, 0x0, 0x04, 4},
  |  |  302|      2|{7, 0x1, 0x0, 0x0, 0x0, 0x33, 6},
  |  |  303|      2|{7, 0x1, 0x1, 0x1, 0x1, 0x13, 6},
  |  |  304|      2|{7, 0x2, 0x0, 0x0, 0x0, 0x23, 6},
  |  |  305|      2|{7, 0x2, 0x1, 0x2, 0x2, 0x7F, 7},
  |  |  306|      2|{7, 0x3, 0x0, 0x0, 0x0, 0x03, 6},
  |  |  307|      2|{7, 0x3, 0x1, 0x1, 0x1, 0x3F, 7},
  |  |  308|      2|{7, 0x3, 0x1, 0x3, 0x2, 0x6F, 7},
  |  |  309|      2|{7, 0x4, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |  310|      2|{7, 0x4, 0x1, 0x4, 0x4, 0x5F, 7},
  |  |  311|      2|{7, 0x5, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  312|      2|{7, 0x5, 0x1, 0x1, 0x1, 0x3D, 6},
  |  |  313|      2|{7, 0x5, 0x1, 0x5, 0x4, 0x1F, 7},
  |  |  314|      2|{7, 0x6, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  315|      2|{7, 0x6, 0x1, 0x0, 0x0, 0x77, 7},
  |  |  316|      2|{7, 0x7, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  317|      2|{7, 0x7, 0x1, 0x7, 0x4, 0x2F, 7},
  |  |  318|      2|{7, 0x7, 0x1, 0x4, 0x4, 0x4F, 7},
  |  |  319|      2|{7, 0x7, 0x1, 0x7, 0x3, 0x0F, 7},
  |  |  320|      2|{7, 0x7, 0x1, 0x7, 0x1, 0x0D, 6},
  |  |  321|      2|{7, 0x7, 0x1, 0x7, 0x2, 0x57, 7},
  |  |  322|      2|{7, 0x8, 0x0, 0x0, 0x0, 0x35, 6},
  |  |  323|      2|{7, 0x8, 0x1, 0x8, 0x8, 0x37, 7},
  |  |  324|      2|{7, 0x9, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  325|      2|{7, 0x9, 0x1, 0x0, 0x0, 0x27, 7},
  |  |  326|      2|{7, 0xA, 0x0, 0x0, 0x0, 0x25, 6},
  |  |  327|      2|{7, 0xA, 0x1, 0x0, 0x0, 0x29, 6},
  |  |  328|      2|{7, 0xB, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  329|      2|{7, 0xB, 0x1, 0xB, 0x1, 0x17, 7},
  |  |  330|      2|{7, 0xB, 0x1, 0x1, 0x1, 0x67, 7},
  |  |  331|      2|{7, 0xB, 0x1, 0x3, 0x2, 0x05, 6},
  |  |  332|      2|{7, 0xB, 0x1, 0xB, 0x8, 0x7B, 7},
  |  |  333|      2|{7, 0xC, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  334|      2|{7, 0xC, 0x1, 0x0, 0x0, 0x19, 6},
  |  |  335|      2|{7, 0xD, 0x0, 0x0, 0x0, 0x0C, 5},
  |  |  336|      2|{7, 0xD, 0x1, 0xD, 0x1, 0x47, 7},
  |  |  337|      2|{7, 0xD, 0x1, 0x1, 0x1, 0x07, 7},
  |  |  338|      2|{7, 0xD, 0x1, 0x5, 0x4, 0x09, 6},
  |  |  339|      2|{7, 0xD, 0x1, 0xD, 0x8, 0x1B, 7},
  |  |  340|      2|{7, 0xE, 0x0, 0x0, 0x0, 0x31, 6},
  |  |  341|      2|{7, 0xE, 0x1, 0xE, 0x2, 0x3B, 7},
  |  |  342|      2|{7, 0xE, 0x1, 0x2, 0x2, 0x5B, 7},
  |  |  343|      2|{7, 0xE, 0x1, 0xA, 0x8, 0x3E, 6},
  |  |  344|      2|{7, 0xE, 0x1, 0xE, 0x4, 0x0B, 7},
  |  |  345|      2|{7, 0xF, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  346|      2|{7, 0xF, 0x1, 0xF, 0xF, 0x6B, 7},
  |  |  347|      2|{7, 0xF, 0x1, 0xF, 0x7, 0x2B, 7},
  |  |  348|      2|{7, 0xF, 0x1, 0xF, 0xB, 0x4B, 7},
  |  |  349|      2|{7, 0xF, 0x1, 0xF, 0x3, 0x11, 6},
  |  |  350|      2|{7, 0xF, 0x1, 0x7, 0x6, 0x21, 6},
  |  |  351|      2|{7, 0xF, 0x1, 0xF, 0xA, 0x01, 6},
  |  |  352|      2|{7, 0xF, 0x1, 0xF, 0x2, 0x0A, 5},
  |  |  353|      2|{7, 0xF, 0x1, 0xB, 0x9, 0x1E, 6},
  |  |  354|      2|{7, 0xF, 0x1, 0xF, 0xC, 0x0E, 6},
  |  |  355|      2|{7, 0xF, 0x1, 0xF, 0x8, 0x12, 5},
  |  |  356|      2|{7, 0xF, 0x1, 0xF, 0x5, 0x2E, 6},
  |  |  357|      2|{7, 0xF, 0x1, 0xF, 0x1, 0x02, 5},
  |  |  358|      2|{7, 0xF, 0x1, 0xF, 0x4, 0x1C, 5}
  ------------------
  146|      2|      };
  147|       |      // number of entries in the table
  148|      2|      size_t tbl1_size = sizeof(tbl1) / sizeof(vlc_src_table);
  149|       |
  150|      2|      if (debug) memset(vlc_tbl0, 0, sizeof(vlc_tbl0)); //unnecessary
  ------------------
  |  Branch (150:11): [Folded, False: 2]
  ------------------
  151|       |
  152|       |      // this is to convert table entries into values for decoder look up
  153|       |      // There can be at most 1024 possibilities, not all of them are valid.
  154|       |      // 
  155|  2.05k|      for (int i = 0; i < 1024; ++i)
  ------------------
  |  Branch (155:23): [True: 2.04k, False: 2]
  ------------------
  156|  2.04k|      {
  157|  2.04k|        int cwd = i & 0x7F; // from i extract codeword
  158|  2.04k|        int c_q = i >> 7;   // from i extract context
  159|       |        // See if this case exist in the table, if so then set the entry in
  160|       |        // vlc_tbl0
  161|   911k|        for (size_t j = 0; j < tbl0_size; ++j) 
  ------------------
  |  Branch (161:28): [True: 909k, False: 2.04k]
  ------------------
  162|   909k|          if (tbl0[j].c_q == c_q) // this is an and operation
  ------------------
  |  Branch (162:15): [True: 113k, False: 795k]
  ------------------
  163|   113k|            if (tbl0[j].cwd == (cwd & ((1 << tbl0[j].cwd_len) - 1)))
  ------------------
  |  Branch (163:17): [True: 2.04k, False: 111k]
  ------------------
  164|  2.04k|            {
  165|  2.04k|              if (debug) assert(vlc_tbl0[i] == 0);
  ------------------
  |  Branch (165:19): [Folded, False: 2.04k]
  ------------------
  166|       |              // Put this entry into the table
  167|  2.04k|              vlc_tbl0[i] = (ui16)((tbl0[j].rho << 4) | (tbl0[j].u_off << 3)
  168|  2.04k|                | (tbl0[j].e_k << 12) | (tbl0[j].e_1 << 8) | tbl0[j].cwd_len);
  169|  2.04k|            }
  170|  2.04k|      }
  171|       |
  172|      2|      if (debug) memset(vlc_tbl1, 0, sizeof(vlc_tbl1)); //unnecessary
  ------------------
  |  Branch (172:11): [Folded, False: 2]
  ------------------
  173|       |
  174|       |      // this the same as above but for non-initial rows
  175|  2.05k|      for (int i = 0; i < 1024; ++i)
  ------------------
  |  Branch (175:23): [True: 2.04k, False: 2]
  ------------------
  176|  2.04k|      {
  177|  2.04k|        int cwd = i & 0x7F; //7 bits
  178|  2.04k|        int c_q = i >> 7;
  179|   735k|        for (size_t j = 0; j < tbl1_size; ++j)
  ------------------
  |  Branch (179:28): [True: 733k, False: 2.04k]
  ------------------
  180|   733k|          if (tbl1[j].c_q == c_q) // this is an and operation
  ------------------
  |  Branch (180:15): [True: 91.6k, False: 641k]
  ------------------
  181|  91.6k|            if (tbl1[j].cwd == (cwd & ((1 << tbl1[j].cwd_len) - 1)))
  ------------------
  |  Branch (181:17): [True: 2.04k, False: 89.6k]
  ------------------
  182|  2.04k|            {
  183|  2.04k|              if (debug) assert(vlc_tbl1[i] == 0);
  ------------------
  |  Branch (183:19): [Folded, False: 2.04k]
  ------------------
  184|  2.04k|              vlc_tbl1[i] = (ui16)((tbl1[j].rho << 4) | (tbl1[j].u_off << 3)
  185|  2.04k|                | (tbl1[j].e_k << 12) | (tbl1[j].e_1 << 8) | tbl1[j].cwd_len);
  186|  2.04k|            }
  187|  2.04k|      }
  188|       |
  189|      2|      return true;
  190|      2|    }
ojph_block_common.cpp:_ZN4ojph5localL16uvlc_init_tablesEv:
  197|      2|    {
  198|       |      // table stores possible decoding three bits from vlc
  199|       |      // there are 8 entries for xx1, x10, 100, 000, where x means do not
  200|       |      // care table value is made up of
  201|       |      // 2 bits in the LSB for prefix length 
  202|       |      // 3 bits for suffix length
  203|       |      // 3 bits in the MSB for prefix value (u_pfx in Table 3 of ITU T.814)
  204|      2|      static const ui8 dec[8] = { // the index is the prefix codeword
  205|      2|        3 | (5 << 2) | (5 << 5), //000 == 000, prefix codeword "000"
  206|      2|        1 | (0 << 2) | (1 << 5), //001 == xx1, prefix codeword "1"
  207|      2|        2 | (0 << 2) | (2 << 5), //010 == x10, prefix codeword "01"
  208|      2|        1 | (0 << 2) | (1 << 5), //011 == xx1, prefix codeword "1"
  209|      2|        3 | (1 << 2) | (3 << 5), //100 == 100, prefix codeword "001"
  210|      2|        1 | (0 << 2) | (1 << 5), //101 == xx1, prefix codeword "1"
  211|      2|        2 | (0 << 2) | (2 << 5), //110 == x10, prefix codeword "01"
  212|      2|        1 | (0 << 2) | (1 << 5)  //111 == xx1, prefix codeword "1"
  213|      2|      };
  214|       |
  215|    642|      for (ui32 i = 0; i < 256 + 64; ++i)
  ------------------
  |  Branch (215:24): [True: 640, False: 2]
  ------------------
  216|    640|      { 
  217|    640|        ui32 mode = i >> 6;
  218|    640|        ui32 vlc = i & 0x3F;
  219|       |
  220|    640|        if (mode == 0) {      // both u_off are 0
  ------------------
  |  Branch (220:13): [True: 128, False: 512]
  ------------------
  221|    128|          uvlc_tbl0[i] = 0;
  222|    128|          uvlc_bias[i] = 0;
  223|    128|        }
  224|    512|        else if (mode <= 2) // u_off are either 01 or 10
  ------------------
  |  Branch (224:18): [True: 256, False: 256]
  ------------------
  225|    256|        {
  226|    256|          ui32 d = dec[vlc & 0x7];   //look at the least significant 3 bits
  227|       |
  228|    256|          ui32 total_prefix = d & 0x3;
  229|    256|          ui32 total_suffix = (d >> 2) & 0x7;
  230|    256|          ui32 u0_suffix_len = (mode == 1) ? total_suffix : 0;
  ------------------
  |  Branch (230:32): [True: 128, False: 128]
  ------------------
  231|    256|          ui32 u0 = (mode == 1) ? (d >> 5) : 0;
  ------------------
  |  Branch (231:21): [True: 128, False: 128]
  ------------------
  232|    256|          ui32 u1 = (mode == 1) ? 0 : (d >> 5);
  ------------------
  |  Branch (232:21): [True: 128, False: 128]
  ------------------
  233|       |
  234|    256|          uvlc_tbl0[i] = (ui16)(total_prefix | 
  235|    256|                               (total_suffix << 3) |
  236|    256|                               (u0_suffix_len << 7) |
  237|    256|                               (u0 << 10) |
  238|    256|                               (u1 << 13));
  239|       |          
  240|    256|        }
  241|    256|        else if (mode == 3) // both u_off are 1, and MEL event is 0
  ------------------
  |  Branch (241:18): [True: 128, False: 128]
  ------------------
  242|    128|        {
  243|    128|          ui32 d0 = dec[vlc & 0x7];  // LSBs of VLC are prefix codeword
  244|    128|          vlc >>= d0 & 0x3;          // Consume bits
  245|    128|          ui32 d1 = dec[vlc & 0x7];  // LSBs of VLC are prefix codeword
  246|       |
  247|    128|          ui32 total_prefix, u0_suffix_len, total_suffix, u0, u1;
  248|    128|          if ((d0 & 0x3) == 3)
  ------------------
  |  Branch (248:15): [True: 32, False: 96]
  ------------------
  249|     32|          {
  250|     32|            total_prefix = (d0 & 0x3) + 1;
  251|     32|            u0_suffix_len = (d0 >> 2) & 0x7;
  252|     32|            total_suffix = u0_suffix_len;
  253|     32|            u0 = d0 >> 5;
  254|     32|            u1 = (vlc & 1) + 1;
  255|     32|            uvlc_bias[i] = 4; // 0b00 for u0 and 0b01 for u1
  256|     32|          }
  257|     96|          else
  258|     96|          {
  259|     96|            total_prefix = (d0 & 0x3) + (d1 & 0x3);
  260|     96|            u0_suffix_len = (d0 >> 2) & 0x7;
  261|     96|            total_suffix = u0_suffix_len + ((d1 >> 2) & 0x7);
  262|     96|            u0 = d0 >> 5;
  263|     96|            u1 = d1 >> 5;
  264|     96|            uvlc_bias[i] = 0;
  265|     96|          }
  266|       |
  267|    128|          uvlc_tbl0[i] = (ui16)(total_prefix | 
  268|    128|                               (total_suffix << 3) |
  269|    128|                               (u0_suffix_len << 7) |
  270|    128|                               (u0 << 10) |
  271|    128|                               (u1 << 13));
  272|    128|        }
  273|    128|        else if (mode == 4) // both u_off are 1, and MEL event is 1
  ------------------
  |  Branch (273:18): [True: 128, False: 0]
  ------------------
  274|    128|        {
  275|    128|          ui32 d0 = dec[vlc & 0x7];  // LSBs of VLC are prefix codeword
  276|    128|          vlc >>= d0 & 0x3;          // Consume bits
  277|    128|          ui32 d1 = dec[vlc & 0x7];  // LSBs of VLC are prefix codeword
  278|       |
  279|    128|          ui32 total_prefix = (d0 & 0x3) + (d1 & 0x3);
  280|    128|          ui32 u0_suffix_len = (d0 >> 2) & 0x7;
  281|    128|          ui32 total_suffix = u0_suffix_len + ((d1 >> 2) & 0x7);
  282|    128|          ui32 u0 = (d0 >> 5) + 2;
  283|    128|          ui32 u1 = (d1 >> 5) + 2;
  284|       |
  285|    128|          uvlc_tbl0[i] = (ui16)(total_prefix | 
  286|    128|                               (total_suffix << 3) |
  287|    128|                               (u0_suffix_len << 7) |
  288|    128|                               (u0 << 10) |
  289|    128|                               (u1 << 13));
  290|    128|          uvlc_bias[i] = 10; // 0b10 for u0 and 0b10 for u1
  291|    128|        }
  292|    640|      }
  293|       |
  294|    514|      for (ui32 i = 0; i < 256; ++i)
  ------------------
  |  Branch (294:24): [True: 512, False: 2]
  ------------------
  295|    512|      {
  296|    512|        ui32 mode = i >> 6;
  297|    512|        ui32 vlc = i & 0x3F;
  298|       |
  299|    512|        if (mode == 0)       // both u_off are 0
  ------------------
  |  Branch (299:13): [True: 128, False: 384]
  ------------------
  300|    128|          uvlc_tbl1[i] = 0;
  301|    384|        else if (mode <= 2)  // u_off are either 01 or 10
  ------------------
  |  Branch (301:18): [True: 256, False: 128]
  ------------------
  302|    256|        {
  303|    256|          ui32 d = dec[vlc & 0x7];   // look at the 3 LSB bits
  304|       |
  305|    256|          ui32 total_prefix = d & 0x3;
  306|    256|          ui32 total_suffix = (d >> 2) & 0x7;
  307|    256|          ui32 u0_suffix_len = (mode == 1) ? total_suffix : 0;
  ------------------
  |  Branch (307:32): [True: 128, False: 128]
  ------------------
  308|    256|          ui32 u0 = (mode == 1) ? (d >> 5) : 0;
  ------------------
  |  Branch (308:21): [True: 128, False: 128]
  ------------------
  309|    256|          ui32 u1 = (mode == 1) ? 0 : (d >> 5);
  ------------------
  |  Branch (309:21): [True: 128, False: 128]
  ------------------
  310|       |
  311|    256|          uvlc_tbl1[i] = (ui16)(total_prefix | 
  312|    256|                               (total_suffix << 3) |
  313|    256|                               (u0_suffix_len << 7) |
  314|    256|                               (u0 << 10) |
  315|    256|                               (u1 << 13));
  316|    256|        }
  317|    128|        else if (mode == 3) // both u_off are 1
  ------------------
  |  Branch (317:18): [True: 128, False: 0]
  ------------------
  318|    128|        {
  319|    128|          ui32 d0 = dec[vlc & 0x7];  // LSBs of VLC are prefix codeword
  320|    128|          vlc >>= d0 & 0x3;          // Consume bits
  321|    128|          ui32 d1 = dec[vlc & 0x7];  // LSBs of VLC are prefix codeword
  322|       |
  323|    128|          ui32 total_prefix = (d0 & 0x3) + (d1 & 0x3);
  324|    128|          ui32 u0_suffix_len = (d0 >> 2) & 0x7;
  325|    128|          ui32 total_suffix = u0_suffix_len + ((d1 >> 2) & 0x7);
  326|    128|          ui32 u0 = d0 >> 5;
  327|    128|          ui32 u1 = d1 >> 5;
  328|       |
  329|    128|          uvlc_tbl1[i] = (ui16)(total_prefix | 
  330|    128|                               (total_suffix << 3) |
  331|    128|                               (u0_suffix_len << 7) |
  332|    128|                               (u0 << 10) |
  333|    128|                               (u1 << 13));
  334|    128|        }
  335|    512|      }
  336|      2|      return true;
  337|      2|    }
ojph_block_common.cpp:_ZN4ojph5localL20uvlc_init_wide_tableEv:
  347|      2|    {
  348|      2|      static const ui8 dec[8] = {
  349|      2|        3 | (5 << 2) | (5 << 5), //000
  350|      2|        1 | (0 << 2) | (1 << 5), //xx1
  351|      2|        2 | (0 << 2) | (2 << 5), //x10
  352|      2|        1 | (0 << 2) | (1 << 5), //xx1
  353|      2|        3 | (1 << 2) | (3 << 5), //100
  354|      2|        1 | (0 << 2) | (1 << 5), //xx1
  355|      2|        2 | (0 << 2) | (2 << 5), //x10
  356|      2|        1 | (0 << 2) | (1 << 5)  //xx1
  357|      2|      };
  358|       |
  359|  8.19k|      for (ui32 idx = 0; idx < 4096; ++idx)
  ------------------
  |  Branch (359:26): [True: 8.19k, False: 2]
  ------------------
  360|  8.19k|      {
  361|  8.19k|        ui32 mode = idx >> 10;       // 2 bits
  362|  8.19k|        ui32 vlc = idx & 0x3FF;      // 10 bits
  363|       |
  364|  8.19k|        if (mode == 0) {
  ------------------
  |  Branch (364:13): [True: 2.04k, False: 6.14k]
  ------------------
  365|  2.04k|          uvlc_tbl1_wide[idx] = 0;
  366|  2.04k|          continue;
  367|  2.04k|        }
  368|       |
  369|  6.14k|        if (mode <= 2) // single UVLC (one u_off set)
  ------------------
  |  Branch (369:13): [True: 4.09k, False: 2.04k]
  ------------------
  370|  4.09k|        {
  371|  4.09k|          ui32 d = dec[vlc & 0x7];
  372|  4.09k|          ui32 prefix_len = d & 0x3;
  373|  4.09k|          ui32 suffix_len = (d >> 2) & 0x7;
  374|  4.09k|          ui32 u_pfx = d >> 5;
  375|  4.09k|          ui32 suffix_val = (vlc >> prefix_len) & ((1u << suffix_len) - 1);
  376|  4.09k|          ui32 u_val = u_pfx + suffix_val;
  377|  4.09k|          ui32 total = prefix_len + suffix_len;
  378|  4.09k|          ui32 u_q0 = (mode == 1) ? u_val : 0;
  ------------------
  |  Branch (378:23): [True: 2.04k, False: 2.04k]
  ------------------
  379|  4.09k|          ui32 u_q1 = (mode == 2) ? u_val : 0;
  ------------------
  |  Branch (379:23): [True: 2.04k, False: 2.04k]
  ------------------
  380|  4.09k|          uvlc_tbl1_wide[idx] = total | (u_q0 << 5) | (u_q1 << 13);
  381|  4.09k|          continue;
  382|  4.09k|        }
  383|       |
  384|       |        // mode == 3: both u_off set
  385|       |        // Bitstream layout: [prefix0][prefix1][suffix0][suffix1]
  386|  2.04k|        ui32 d0 = dec[vlc & 0x7];
  387|  2.04k|        ui32 p0_len = d0 & 0x3;
  388|  2.04k|        ui32 s0_len = (d0 >> 2) & 0x7;
  389|  2.04k|        ui32 u0_pfx = d0 >> 5;
  390|       |
  391|  2.04k|        ui32 vlc1 = vlc >> p0_len;  // consume prefix0
  392|  2.04k|        ui32 d1 = dec[vlc1 & 0x7];
  393|  2.04k|        ui32 p1_len = d1 & 0x3;
  394|  2.04k|        ui32 s1_len = (d1 >> 2) & 0x7;
  395|  2.04k|        ui32 u1_pfx = d1 >> 5;
  396|       |
  397|  2.04k|        ui32 total_prefix = p0_len + p1_len;
  398|  2.04k|        ui32 total_suffix = s0_len + s1_len;
  399|  2.04k|        ui32 total = total_prefix + total_suffix;
  400|       |
  401|  2.04k|        if (total > 10) {
  ------------------
  |  Branch (401:13): [True: 96, False: 1.95k]
  ------------------
  402|     96|          uvlc_tbl1_wide[idx] = 0x1F; // fallback sentinel
  403|     96|          continue;
  404|     96|        }
  405|       |
  406|       |        // suffixes follow both prefixes in the bitstream
  407|  1.95k|        ui32 suffix_bits = vlc >> total_prefix;
  408|  1.95k|        ui32 s0_val = suffix_bits & ((1u << s0_len) - 1);
  409|  1.95k|        ui32 s1_val = (suffix_bits >> s0_len) & ((1u << s1_len) - 1);
  410|       |
  411|  1.95k|        ui32 u_q0 = u0_pfx + s0_val;
  412|  1.95k|        ui32 u_q1 = u1_pfx + s1_val;
  413|  1.95k|        uvlc_tbl1_wide[idx] = total | (u_q0 << 5) | (u_q1 << 13);
  414|  1.95k|      }
  415|      2|      return true;
  416|      2|    }

_ZN4ojph5local10dec_mel_stC2Ev:
   64|  46.8k|      dec_mel_st() : data(NULL), tmp(0), bits(0), size(0), unstuff(false),
   65|  46.8k|        k(0), num_runs(0), runs(0)
   66|  46.8k|      {}
_ZN4ojph5local10rev_structC2Ev:
  276|  26.1k|      rev_struct() : data(NULL), tmp(0), bits(0), size(0), unstuff(false)
  277|  26.1k|      {}

_ZN4ojph5local23ojph_decode_codeblock64EPhPmjjjjjjjb:
  771|  30.1k|    {
  772|       |      // static bool insufficient_precision = false;
  773|       |      // static bool modify_code = false;
  774|       |      // static bool truncate_spp_mrp = false;
  775|       |
  776|  30.1k|      if (num_passes > 1 && lengths2 == 0)
  ------------------
  |  Branch (776:11): [True: 24.6k, False: 5.49k]
  |  Branch (776:29): [True: 4.30k, False: 20.3k]
  ------------------
  777|  4.30k|      {
  778|  4.30k|        OJPH_WARN(0x00010001, "A malformed codeblock that has more than "
  ------------------
  |  |  287|  4.30k|  { ojph::get_warning()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|  4.30k|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 4.30k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  779|  4.30k|                              "one coding pass, but zero length for "
  780|  4.30k|                              "2nd and potential 3rd pass.");
  781|  4.30k|        num_passes = 1;
  782|  4.30k|      }
  783|       |
  784|  30.1k|      if (num_passes > 3)
  ------------------
  |  Branch (784:11): [True: 0, False: 30.1k]
  ------------------
  785|      0|      {
  786|      0|        OJPH_WARN(0x00010002, "We do not support more than 3 coding passes; "
  ------------------
  |  |  287|      0|  { ojph::get_warning()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  787|      0|                              "This codeblocks has %d passes.",
  788|      0|                              num_passes);
  789|      0|        return false;
  790|      0|      }
  791|       |
  792|       |      // if (missing_msbs > 30) // p < 0
  793|       |      // {
  794|       |      //   if (insufficient_precision == false) 
  795|       |      //   {
  796|       |      //     insufficient_precision = true;
  797|       |      //     OJPH_WARN(0x00010003, "32 bits are not enough to decode this "
  798|       |      //                           "codeblock. This message will not be "
  799|       |      //                           "displayed again.");
  800|       |      //   }
  801|       |      //   return false;
  802|       |      // }       
  803|       |      // else if (missing_msbs == 30) // p == 0
  804|       |      // { // not enough precision to decode and set the bin center to 1
  805|       |      //   if (modify_code == false) {
  806|       |      //     modify_code = true;
  807|       |      //     OJPH_WARN(0x00010004, "Not enough precision to decode the cleanup "
  808|       |      //                           "pass. The code can be modified to support "
  809|       |      //                           "this case. This message will not be "
  810|       |      //                           "displayed again.");
  811|       |      //   }
  812|       |      //    return false;         // 32 bits are not enough to decode this
  813|       |      //  }
  814|       |      // else if (missing_msbs == 29) // if p is 1, then num_passes must be 1
  815|       |      // {
  816|       |      //   if (num_passes > 1) {
  817|       |      //     num_passes = 1;
  818|       |      //     if (truncate_spp_mrp == false) {
  819|       |      //       truncate_spp_mrp = true;
  820|       |      //       OJPH_WARN(0x00010005, "Not enough precision to decode the SgnProp "
  821|       |      //                             "nor MagRef passes; both will be skipped. "
  822|       |      //                             "This message will not be displayed "
  823|       |      //                             "again.");
  824|       |      //     }
  825|       |      //   }
  826|       |      // }
  827|  30.1k|      ui32 p = 62 - missing_msbs; // The least significant bitplane for CUP
  828|       |      // There is a way to handle the case of p == 0, but a different path
  829|       |      // is required
  830|       |
  831|  30.1k|      if (lengths1 < 2)
  ------------------
  |  Branch (831:11): [True: 0, False: 30.1k]
  ------------------
  832|      0|      {
  833|      0|        OJPH_WARN(0x00010006, "Wrong codeblock length.");
  ------------------
  |  |  287|      0|  { ojph::get_warning()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  834|      0|        return false;
  835|      0|      }
  836|       |
  837|       |      // read scup and fix the bytes there
  838|  30.1k|      int lcup, scup;
  839|  30.1k|      lcup = (int)lengths1;  // length of CUP
  840|       |      //scup is the length of MEL + VLC
  841|  30.1k|      scup = (((int)coded_data[lcup-1]) << 4) + (coded_data[lcup-2] & 0xF);
  842|  30.1k|      if (scup < 2 || scup > lcup || scup > 4079) //something is wrong
  ------------------
  |  Branch (842:11): [True: 2.53k, False: 27.6k]
  |  Branch (842:23): [True: 8.90k, False: 18.6k]
  |  Branch (842:38): [True: 209, False: 18.4k]
  ------------------
  843|  11.6k|        return false;
  844|       |
  845|       |      // The temporary storage scratch holds two types of data in an 
  846|       |      // interleaved fashion. The interleaving allows us to use one
  847|       |      // memory pointer.
  848|       |      // We have one entry for a decoded VLC code, and one entry for UVLC.
  849|       |      // Entries are 16 bits each, corresponding to one quad, 
  850|       |      // but since we want to use XMM registers of the SSE family 
  851|       |      // of SIMD; we allocated 16 bytes or more per quad row; that is,
  852|       |      // the width is no smaller than 16 bytes (or 8 entries), and the
  853|       |      // height is 512 quads
  854|       |      // Each VLC entry contains, in the following order, starting 
  855|       |      // from MSB
  856|       |      // e_k (4bits), e_1 (4bits), rho (4bits), useless for step 2 (4bits)
  857|       |      // Each entry in UVLC contains u_q
  858|       |      // One extra row to handle the case of SPP propagating downwards
  859|       |      // when codeblock width is 4
  860|  18.4k|      ui16 scratch[8 * 513] = {0};       // 8 kB
  861|       |
  862|       |      // We need an extra two entries (one inf and one u_q) beyond
  863|       |      // the last column. 
  864|       |      // If the block width is 4 (2 quads), then we use sstr of 8 
  865|       |      // (enough for 4 quads). If width is 8 (4 quads) we use 
  866|       |      // sstr is 16 (enough for 8 quads). For a width of 16 (8 
  867|       |      // quads), we use 24 (enough for 12 quads).
  868|  18.4k|      ui32 sstr = ((width + 2u) + 7u) & ~7u; // multiples of 8
  869|       |
  870|  18.4k|      ui32 mmsbp2 = missing_msbs + 2;
  871|       |
  872|       |      // The cleanup pass is decoded in two steps; in step one,
  873|       |      // the VLC and MEL segments are decoded, generating a record that 
  874|       |      // has 2 bytes per quad. The 2 bytes contain, u, rho, e^1 & e^k.
  875|       |      // This information should be sufficient for the next step.
  876|       |      // In step 2, we decode the MagSgn segment.
  877|       |
  878|       |      // step 1 decoding VLC and MEL segments
  879|  18.4k|      {
  880|       |        // init structures
  881|  18.4k|        dec_mel_st mel;
  882|  18.4k|        mel_init(&mel, coded_data, lcup, scup);
  883|  18.4k|        rev_struct vlc;
  884|  18.4k|        rev_init8(&vlc, coded_data, lcup, scup);
  885|       |
  886|  18.4k|        int run = mel_get_run(&mel); // decode runs of events from MEL bitstrm
  887|       |                                     // data represented as runs of 0 events
  888|       |                                     // See mel_decode description
  889|       |
  890|  18.4k|        ui64 vlc_val;
  891|  18.4k|        ui32 c_q = 0;
  892|  18.4k|        ui16 *sp = scratch;
  893|       |        //initial quad row
  894|  84.2k|        for (ui32 x = 0; x < width; sp += 4)
  ------------------
  |  Branch (894:26): [True: 65.7k, False: 18.4k]
  ------------------
  895|  65.7k|        {
  896|       |          // decode VLC
  897|       |          /////////////
  898|       |
  899|       |          // first quad
  900|  65.7k|          vlc_val = rev_fetch64(&vlc);
  901|       |
  902|       |          //decode VLC using the context c_q and the head of VLC bitstream
  903|  65.7k|          ui16 t0 = vlc_tbl0[ c_q + (vlc_val & 0x7F) ];
  904|       |
  905|       |          // if context is zero, use one MEL event
  906|  65.7k|          if (c_q == 0) //zero context
  ------------------
  |  Branch (906:15): [True: 36.1k, False: 29.6k]
  ------------------
  907|  36.1k|          {
  908|  36.1k|            run -= 2; //subtract 2, since events number if multiplied by 2
  909|       |
  910|       |            // Is the run terminated in 1? if so, use decoded VLC code, 
  911|       |            // otherwise, discard decoded data, since we will decoded again 
  912|       |            // using a different context
  913|  36.1k|            t0 = (run == -1) ? t0 : 0;
  ------------------
  |  Branch (913:18): [True: 22.4k, False: 13.6k]
  ------------------
  914|       |
  915|       |            // is run -1 or -2? this means a run has been consumed
  916|  36.1k|            if (run < 0) 
  ------------------
  |  Branch (916:17): [True: 33.5k, False: 2.58k]
  ------------------
  917|  33.5k|              run = mel_get_run(&mel);  // get another run
  918|  36.1k|          }
  919|       |          //run -= (c_q == 0) ? 2 : 0;
  920|       |          //t0 = (c_q != 0 || run == -1) ? t0 : 0;
  921|       |          //if (run < 0)
  922|       |          //  run = mel_get_run(&mel);  // get another run
  923|  65.7k|          sp[0] = t0;
  924|  65.7k|          x += 2;
  925|       |
  926|       |          // prepare context for the next quad; eqn. 1 in ITU T.814
  927|  65.7k|          c_q = ((t0 & 0x10U) << 3) | ((t0 & 0xE0U) << 2);
  928|       |
  929|       |          //remove data from vlc stream (0 bits are removed if vlc is not used)
  930|  65.7k|          vlc_val = rev_advance64(&vlc, t0 & 0x7);
  931|       |
  932|       |          //second quad
  933|  65.7k|          ui16 t1 = 0;
  934|       |
  935|       |          //decode VLC using the context c_q and the head of VLC bitstream
  936|  65.7k|          t1 = vlc_tbl0[c_q + (vlc_val & 0x7F)]; 
  937|       |
  938|       |          // if context is zero, use one MEL event
  939|  65.7k|          if (c_q == 0 && x < width) //zero context
  ------------------
  |  Branch (939:15): [True: 22.5k, False: 43.2k]
  |  Branch (939:27): [True: 19.5k, False: 3.00k]
  ------------------
  940|  19.5k|          {
  941|  19.5k|            run -= 2; //subtract 2, since events number if multiplied by 2
  942|       |
  943|       |            // if event is 0, discard decoded t1
  944|  19.5k|            t1 = (run == -1) ? t1 : 0;
  ------------------
  |  Branch (944:18): [True: 10.4k, False: 9.05k]
  ------------------
  945|       |
  946|  19.5k|            if (run < 0) // have we consumed all events in a run
  ------------------
  |  Branch (946:17): [True: 14.4k, False: 5.13k]
  ------------------
  947|  14.4k|              run = mel_get_run(&mel); // if yes, then get another run
  948|  19.5k|          }
  949|  65.7k|          t1 = x < width ? t1 : 0;
  ------------------
  |  Branch (949:16): [True: 54.1k, False: 11.6k]
  ------------------
  950|       |          //run -= (c_q == 0 && x < width) ? 2 : 0;
  951|       |          //t1 = (c_q != 0 || run == -1) ? t1 : 0;
  952|       |          //if (run < 0)
  953|       |          //  run = mel_get_run(&mel);  // get another run
  954|  65.7k|          sp[2] = t1;
  955|  65.7k|          x += 2;
  956|       |
  957|       |          //prepare context for the next quad, eqn. 1 in ITU T.814
  958|  65.7k|          c_q = ((t1 & 0x10U) << 3) | ((t1 & 0xE0U) << 2);
  959|       |
  960|       |          //remove data from vlc stream, if qinf is not used, cwdlen is 0
  961|  65.7k|          vlc_val = rev_advance64(&vlc, t1 & 0x7);
  962|       |          
  963|       |          // decode u
  964|       |          /////////////
  965|       |          // uvlc_mode is made up of u_offset bits from the quad pair
  966|  65.7k|          ui32 uvlc_mode = ((t0 & 0x8U) << 3) | ((t1 & 0x8U) << 4);
  967|  65.7k|          if (uvlc_mode == 0xc0)// if both u_offset are set, get an event from
  ------------------
  |  Branch (967:15): [True: 17.9k, False: 47.8k]
  ------------------
  968|  17.9k|          {                     // the MEL run of events
  969|  17.9k|            run -= 2; //subtract 2, since events number if multiplied by 2
  970|       |
  971|  17.9k|            uvlc_mode += (run == -1) ? 0x40 : 0; // increment uvlc_mode by
  ------------------
  |  Branch (971:26): [True: 8.79k, False: 9.20k]
  ------------------
  972|       |                                                 // is 0x40
  973|       |
  974|  17.9k|            if (run < 0)//if run is consumed (run is -1 or -2), get another run
  ------------------
  |  Branch (974:17): [True: 14.8k, False: 3.19k]
  ------------------
  975|  14.8k|              run = mel_get_run(&mel);
  976|  17.9k|          }
  977|       |          //run -= (uvlc_mode == 0xc0) ? 2 : 0;
  978|       |          //uvlc_mode += (uvlc_mode == 0xc0 && run == -1) ? 0x40 : 0;
  979|       |          //if (run < 0)
  980|       |          //  run = mel_get_run(&mel);  // get another run
  981|       |
  982|       |          //decode uvlc_mode to get u for both quads
  983|  65.7k|          ui32 idx = uvlc_mode + (ui32)(vlc_val & 0x3F);
  984|  65.7k|          ui32 uvlc_entry = uvlc_tbl0[idx];
  985|  65.7k|          ui16 u_bias = uvlc_bias[idx];          
  986|       |          //remove total prefix length
  987|  65.7k|          vlc_val = rev_advance64(&vlc, uvlc_entry & 0x7); 
  988|  65.7k|          uvlc_entry >>= 3; 
  989|       |          //extract suffixes for quad 0 and 1
  990|  65.7k|          ui32 len = uvlc_entry & 0xF;             // suffix length for 2 quads
  991|  65.7k|          ui32 tmp = (ui32)(vlc_val&((1<<len)-1)); // suffix value for 2 quads
  992|  65.7k|          vlc_val = rev_advance64(&vlc, len);
  993|  65.7k|          uvlc_entry >>= 4;
  994|       |          // quad 0 length
  995|  65.7k|          len = uvlc_entry & 0x7; // quad 0 suffix length
  996|  65.7k|          uvlc_entry >>= 3;
  997|  65.7k|          ui16 u_q0 = (ui16)((uvlc_entry & 7) + (tmp & ~(0xFFU << len)));
  998|  65.7k|          ui16 u_q1 = (ui16)((uvlc_entry >> 3) + (tmp >> len));
  999|       |
 1000|       |          // decode u_q extensions, which is needed only when u_q > 32
 1001|  65.7k|          ui16 u_ext; bool cond0, cond1;
 1002|  65.7k|          cond0 = u_q0 - (u_bias & 0x3) > 32;
 1003|  65.7k|          u_ext = (ui16)(cond0 ? (vlc_val & 0xF) : 0);
  ------------------
  |  Branch (1003:26): [True: 263, False: 65.5k]
  ------------------
 1004|  65.7k|          vlc_val = rev_advance64(&vlc, cond0 ? 4 : 0);
  ------------------
  |  Branch (1004:41): [True: 263, False: 65.5k]
  ------------------
 1005|  65.7k|          u_q0 = (ui16)(u_q0 + (u_ext << 2));
 1006|  65.7k|          sp[1] = (ui16)(u_q0 + 1); // kappa = 1
 1007|  65.7k|          cond1 = u_q1 - (u_bias >> 2) > 32;
 1008|  65.7k|          u_ext = (ui16)(cond1 ? (vlc_val & 0xF) : 0);
  ------------------
  |  Branch (1008:26): [True: 267, False: 65.5k]
  ------------------
 1009|  65.7k|          vlc_val = rev_advance64(&vlc, cond1 ? 4 : 0);
  ------------------
  |  Branch (1009:41): [True: 267, False: 65.5k]
  ------------------
 1010|  65.7k|          u_q1 = (ui16)(u_q1 + (u_ext << 2));
 1011|  65.7k|          sp[3] = (ui16)(u_q1 + 1); // kappa = 1
 1012|  65.7k|        }
 1013|  18.4k|        sp[0] = sp[1] = 0;
 1014|       |
 1015|       |        //non initial quad rows
 1016|   155k|        for (ui32 y = 2; y < height; y += 2)
  ------------------
  |  Branch (1016:26): [True: 136k, False: 18.4k]
  ------------------
 1017|   136k|        {
 1018|   136k|          c_q = 0;                                // context
 1019|   136k|          ui16 *sp = scratch + (y >> 1) * sstr;   // this row of quads
 1020|       |
 1021|   361k|          for (ui32 x = 0; x < width; sp += 4)
  ------------------
  |  Branch (1021:28): [True: 224k, False: 136k]
  ------------------
 1022|   224k|          {
 1023|       |            // decode VLC
 1024|       |            /////////////
 1025|       |
 1026|       |            // sigma_q (n, ne, nf)
 1027|   224k|            c_q |= ((sp[0 - (si32)sstr] & 0xA0U) << 2);
 1028|   224k|            c_q |= ((sp[2 - (si32)sstr] & 0x20U) << 4);
 1029|       |
 1030|       |            // first quad
 1031|   224k|            vlc_val = rev_fetch64(&vlc);
 1032|       |
 1033|       |            //decode VLC using the context c_q and the head of VLC bitstream
 1034|   224k|            ui16 t0 = vlc_tbl1[ c_q + (vlc_val & 0x7F) ];
 1035|       |
 1036|       |            // if context is zero, use one MEL event
 1037|   224k|            if (c_q == 0) //zero context
  ------------------
  |  Branch (1037:17): [True: 183k, False: 40.9k]
  ------------------
 1038|   183k|            {
 1039|   183k|              run -= 2; //subtract 2, since events number is multiplied by 2
 1040|       |
 1041|       |              // Is the run terminated in 1? if so, use decoded VLC code, 
 1042|       |              // otherwise, discard decoded data, since we will decoded again 
 1043|       |              // using a different context
 1044|   183k|              t0 = (run == -1) ? t0 : 0;
  ------------------
  |  Branch (1044:20): [True: 63.5k, False: 120k]
  ------------------
 1045|       |
 1046|       |              // is run -1 or -2? this means a run has been consumed
 1047|   183k|              if (run < 0) 
  ------------------
  |  Branch (1047:19): [True: 108k, False: 75.4k]
  ------------------
 1048|   108k|                run = mel_get_run(&mel);  // get another run
 1049|   183k|            }
 1050|       |            //run -= (c_q == 0) ? 2 : 0;
 1051|       |            //t0 = (c_q != 0 || run == -1) ? t0 : 0;
 1052|       |            //if (run < 0)
 1053|       |            //  run = mel_get_run(&mel);  // get another run
 1054|   224k|            sp[0] = t0;
 1055|   224k|            x += 2;
 1056|       |
 1057|       |            // prepare context for the next quad; eqn. 2 in ITU T.814
 1058|       |            // sigma_q (w, sw)
 1059|   224k|            c_q = ((t0 & 0x40U) << 2) | ((t0 & 0x80U) << 1);
 1060|       |            // sigma_q (nw)
 1061|   224k|            c_q |= sp[0 - (si32)sstr] & 0x80;
 1062|       |            // sigma_q (n, ne, nf)
 1063|   224k|            c_q |= ((sp[2 - (si32)sstr] & 0xA0U) << 2);
 1064|   224k|            c_q |= ((sp[4 - (si32)sstr] & 0x20U) << 4);
 1065|       |
 1066|       |            //remove data from vlc stream (0 bits are removed if vlc is unused)
 1067|   224k|            vlc_val = rev_advance64(&vlc, t0 & 0x7);
 1068|       |
 1069|       |            //second quad
 1070|   224k|            ui16 t1 = 0;
 1071|       |
 1072|       |            //decode VLC using the context c_q and the head of VLC bitstream
 1073|   224k|            t1 = vlc_tbl1[ c_q + (vlc_val & 0x7F)]; 
 1074|       |
 1075|       |            // if context is zero, use one MEL event
 1076|   224k|            if (c_q == 0 && x < width) //zero context
  ------------------
  |  Branch (1076:17): [True: 179k, False: 45.5k]
  |  Branch (1076:29): [True: 98.5k, False: 80.5k]
  ------------------
 1077|  98.5k|            {
 1078|  98.5k|              run -= 2; //subtract 2, since events number if multiplied by 2
 1079|       |
 1080|       |              // if event is 0, discard decoded t1
 1081|  98.5k|              t1 = (run == -1) ? t1 : 0;
  ------------------
  |  Branch (1081:20): [True: 23.2k, False: 75.2k]
  ------------------
 1082|       |
 1083|  98.5k|              if (run < 0) // have we consumed all events in a run
  ------------------
  |  Branch (1083:19): [True: 43.8k, False: 54.6k]
  ------------------
 1084|  43.8k|                run = mel_get_run(&mel); // if yes, then get another run
 1085|  98.5k|            }
 1086|   224k|            t1 = x < width ? t1 : 0;
  ------------------
  |  Branch (1086:18): [True: 129k, False: 94.9k]
  ------------------
 1087|       |            //run -= (c_q == 0 && x < width) ? 2 : 0;
 1088|       |            //t1 = (c_q != 0 || run == -1) ? t1 : 0;
 1089|       |            //if (run < 0)
 1090|       |            //  run = mel_get_run(&mel);  // get another run
 1091|   224k|            sp[2] = t1;
 1092|   224k|            x += 2;
 1093|       |
 1094|       |            // partial c_q, will be completed when we process the next quad
 1095|       |            // sigma_q (w, sw)
 1096|   224k|            c_q = ((t1 & 0x40U) << 2) | ((t1 & 0x80U) << 1);
 1097|       |            // sigma_q (nw)
 1098|   224k|            c_q |= sp[2 - (si32)sstr] & 0x80;
 1099|       |
 1100|       |            //remove data from vlc stream, if qinf is not used, cwdlen is 0
 1101|   224k|            vlc_val = rev_advance64(&vlc, t1 & 0x7);
 1102|       |          
 1103|       |            // decode u
 1104|       |            /////////////
 1105|       |            // uvlc_mode is made up of u_offset bits from the quad pair
 1106|   224k|            ui32 uvlc_mode = ((t0 & 0x8U) << 3) | ((t1 & 0x8U) << 4);
 1107|   224k|            ui32 uvlc_entry = uvlc_tbl1[uvlc_mode + (vlc_val & 0x3F)];
 1108|       |            //remove total prefix length
 1109|   224k|            vlc_val = rev_advance64(&vlc, uvlc_entry & 0x7);
 1110|   224k|            uvlc_entry >>= 3;
 1111|       |            //extract suffixes for quad 0 and 1
 1112|   224k|            ui32 len = uvlc_entry & 0xF;             //suffix length for 2 quads
 1113|   224k|            ui32 tmp = (ui32)(vlc_val&((1<<len)-1)); //suffix value for 2 quads
 1114|   224k|            vlc_val = rev_advance64(&vlc, len);
 1115|   224k|            uvlc_entry >>= 4;
 1116|       |            // quad 0 length
 1117|   224k|            len = uvlc_entry & 0x7; // quad 0 suffix length
 1118|   224k|            uvlc_entry >>= 3;
 1119|   224k|            ui16 u_q0 = (ui16)((uvlc_entry & 7) + (tmp & ~(0xFFU << len)));
 1120|   224k|            ui16 u_q1 = (ui16)((uvlc_entry >> 3) + (tmp >> len)); // u_q
 1121|       |
 1122|       |            // decode u_q extensions, which is needed only when u_q > 32
 1123|   224k|            ui16 u_ext; bool cond0, cond1;
 1124|   224k|            cond0 = u_q0 > 32;
 1125|   224k|            u_ext = (ui16)(cond0 ? (vlc_val & 0xF) : 0);
  ------------------
  |  Branch (1125:28): [True: 317, False: 224k]
  ------------------
 1126|   224k|            vlc_val = rev_advance64(&vlc, cond0 ? 4 : 0);
  ------------------
  |  Branch (1126:43): [True: 317, False: 224k]
  ------------------
 1127|   224k|            u_q0 = (ui16)(u_q0 + (u_ext << 2));
 1128|   224k|            sp[1] = u_q0;
 1129|   224k|            cond1 = u_q1 > 32;
 1130|   224k|            u_ext = (ui16)(cond1 ? (vlc_val & 0xF) : 0);
  ------------------
  |  Branch (1130:28): [True: 321, False: 224k]
  ------------------
 1131|   224k|            vlc_val = rev_advance64(&vlc, cond1 ? 4 : 0);
  ------------------
  |  Branch (1131:43): [True: 321, False: 224k]
  ------------------
 1132|   224k|            u_q1 = (ui16)(u_q1 + (u_ext << 2));
 1133|   224k|            sp[3] = u_q1;
 1134|   224k|          }
 1135|   136k|          sp[0] = sp[1] = 0;
 1136|   136k|        }
 1137|  18.4k|      }
 1138|       |
 1139|       |      // step2 we decode magsgn
 1140|  18.4k|      {
 1141|       |        // We allocate a scratch row for storing v_n values.
 1142|       |        // We have 512 quads horizontally.
 1143|       |        // We need an extra entry to handle the case of vp[1]
 1144|       |        // when vp is at the last column.
 1145|       |        // Here, we allocate 4 instead of 1 to make the buffer size
 1146|       |        // a multipled of 16 bytes.
 1147|  18.4k|        const int v_n_size = 512 + 4;
 1148|  18.4k|        ui64 v_n_scratch[v_n_size] = {0};  // 4+ kB
 1149|       |
 1150|  18.4k|        frwd_struct64 magsgn;
 1151|  18.4k|        frwd_init8<0xFF>(&magsgn, coded_data, lcup - scup);
 1152|       |
 1153|  18.4k|        const ui16 *sp = scratch;
 1154|  18.4k|        ui64 *vp = v_n_scratch;
 1155|  18.4k|        ui64 *dp = decoded_data;
 1156|       |
 1157|  18.4k|        ui64 prev_v_n = 0;
 1158|   107k|        for (ui32 x = 0; x < width; sp += 2, ++vp)
  ------------------
  |  Branch (1158:26): [True: 100k, False: 7.25k]
  ------------------
 1159|   100k|        {
 1160|   100k|          ui32 inf = sp[0];
 1161|   100k|          ui32 U_q = sp[1];
 1162|   100k|          if (U_q > mmsbp2)
  ------------------
  |  Branch (1162:15): [True: 2.15k, False: 98.0k]
  ------------------
 1163|  2.15k|            return false;
 1164|       |
 1165|  98.0k|          ui64 v_n;
 1166|  98.0k|          ui64 val = 0;
 1167|  98.0k|          ui32 bit = 0;
 1168|  98.0k|          if (inf & (1 << (4 + bit)))
  ------------------
  |  Branch (1168:15): [True: 29.3k, False: 68.7k]
  ------------------
 1169|  29.3k|          {
 1170|       |            //get 32 bits of magsgn data
 1171|  29.3k|            ui64 ms_val = frwd_fetch64<0xFF>(&magsgn); 
 1172|  29.3k|            ui32 m_n = U_q - ((inf >> (12 + bit)) & 1); // remove e_k
 1173|  29.3k|            frwd_advance(&magsgn, m_n);                 //consume m_n
 1174|       |
 1175|  29.3k|            val = ms_val << 63;                           // get sign bit
 1176|  29.3k|            v_n = ms_val & ((1ULL << m_n) - 1);           // keep only m_n bits
 1177|  29.3k|            v_n |= (ui64)((inf >> (8 + bit)) & 1) << m_n; // add EMB e_1 as MSB
 1178|  29.3k|            v_n |= 1;                                     // add center of bin    
 1179|       |            //v_n now has 2 * (\mu - 1) + 0.5 with correct sign bit
 1180|       |            //add 2 to make it 2*\mu+0.5, shift it up to missing MSBs
 1181|  29.3k|            val |= (v_n + 2) << (p - 1);
 1182|  29.3k|          }
 1183|  98.0k|          dp[0] = val;
 1184|       |
 1185|  98.0k|          v_n = 0;
 1186|  98.0k|          val = 0;
 1187|  98.0k|          bit = 1;
 1188|  98.0k|          if (inf & (1 << (4 + bit)))
  ------------------
  |  Branch (1188:15): [True: 45.0k, False: 52.9k]
  ------------------
 1189|  45.0k|          {
 1190|       |            //get 32 bits of magsgn data
 1191|  45.0k|            ui64 ms_val = frwd_fetch64<0xFF>(&magsgn); 
 1192|  45.0k|            ui32 m_n = U_q - ((inf >> (12 + bit)) & 1); // remove e_k
 1193|  45.0k|            frwd_advance(&magsgn, m_n);                 //consume m_n
 1194|       |
 1195|  45.0k|            val = ms_val << 63;                           // get sign bit
 1196|  45.0k|            v_n = ms_val & ((1ULL << m_n) - 1);           // keep only m_n bits
 1197|  45.0k|            v_n |= (ui64)((inf >> (8 + bit)) & 1) << m_n; // add EMB e_1 as MSB
 1198|  45.0k|            v_n |= 1;                                     // add center of bin    
 1199|       |            //v_n now has 2 * (\mu - 1) + 0.5 with correct sign bit
 1200|       |            //add 2 to make it 2*\mu+0.5, shift it up to missing MSBs
 1201|  45.0k|            val |= (v_n + 2) << (p - 1);
 1202|  45.0k|          }
 1203|  98.0k|          dp[stride] = val;
 1204|  98.0k|          vp[0] = prev_v_n | v_n;
 1205|  98.0k|          prev_v_n = 0;
 1206|  98.0k|          ++dp;
 1207|  98.0k|          if (++x >= width)
  ------------------
  |  Branch (1207:15): [True: 9.07k, False: 88.9k]
  ------------------
 1208|  9.07k|          { ++vp; break; }
 1209|       |
 1210|  88.9k|          val = 0;
 1211|  88.9k|          bit = 2;
 1212|  88.9k|          if (inf & (1 << (4 + bit)))
  ------------------
  |  Branch (1212:15): [True: 28.8k, False: 60.0k]
  ------------------
 1213|  28.8k|          {
 1214|       |            //get 32 bits of magsgn data
 1215|  28.8k|            ui64 ms_val = frwd_fetch64<0xFF>(&magsgn); 
 1216|  28.8k|            ui32 m_n = U_q - ((inf >> (12 + bit)) & 1); // remove e_k
 1217|  28.8k|            frwd_advance(&magsgn, m_n);                 //consume m_n
 1218|       |
 1219|  28.8k|            val = ms_val << 63;                           // get sign bit
 1220|  28.8k|            v_n = ms_val & ((1ULL << m_n) - 1);           // keep only m_n bits
 1221|  28.8k|            v_n |= (ui64)((inf >> (8 + bit)) & 1) << m_n; // add EMB e_1 as MSB
 1222|  28.8k|            v_n |= 1;                                     // add center of bin    
 1223|       |            //v_n now has 2 * (\mu - 1) + 0.5 with correct sign bit
 1224|       |            //add 2 to make it 2*\mu+0.5, shift it up to missing MSBs
 1225|  28.8k|            val |= (v_n + 2) << (p - 1);
 1226|  28.8k|          }
 1227|  88.9k|          dp[0] = val;
 1228|       |
 1229|  88.9k|          v_n = 0;
 1230|  88.9k|          val = 0;
 1231|  88.9k|          bit = 3;
 1232|  88.9k|          if (inf & (1 << (4 + bit)))
  ------------------
  |  Branch (1232:15): [True: 28.9k, False: 59.9k]
  ------------------
 1233|  28.9k|          {
 1234|       |            //get 32 bits of magsgn data
 1235|  28.9k|            ui64 ms_val = frwd_fetch64<0xFF>(&magsgn); 
 1236|  28.9k|            ui32 m_n = U_q - ((inf >> (12 + bit)) & 1); // remove e_k
 1237|  28.9k|            frwd_advance(&magsgn, m_n);                 //consume m_n
 1238|       |
 1239|  28.9k|            val = ms_val << 63;                           // get sign bit
 1240|  28.9k|            v_n = ms_val & ((1ULL << m_n) - 1);           // keep only m_n bits
 1241|  28.9k|            v_n |= (ui64)((inf >> (8 + bit)) & 1) << m_n; // add EMB e_1 as MSB
 1242|  28.9k|            v_n |= 1;                                     // add center of bin    
 1243|       |            //v_n now has 2 * (\mu - 1) + 0.5 with correct sign bit
 1244|       |            //add 2 to make it 2*\mu+0.5, shift it up to missing MSBs
 1245|  28.9k|            val |= (v_n + 2) << (p - 1);
 1246|  28.9k|          }
 1247|  88.9k|          dp[stride] = val;
 1248|  88.9k|          prev_v_n = v_n;
 1249|  88.9k|          ++dp;
 1250|  88.9k|          ++x;
 1251|  88.9k|        }
 1252|  16.3k|        vp[0] = prev_v_n;
 1253|       |
 1254|   123k|        for (ui32 y = 2; y < height; y += 2)
  ------------------
  |  Branch (1254:26): [True: 108k, False: 14.9k]
  ------------------
 1255|   108k|        {
 1256|   108k|          const ui16 *sp = scratch + (y >> 1) * sstr;
 1257|   108k|          ui64 *vp = v_n_scratch;
 1258|   108k|          ui64 *dp = decoded_data + y * stride;
 1259|       |
 1260|   108k|          prev_v_n = 0;
 1261|   320k|          for (ui32 x = 0; x < width; sp += 2, ++vp)
  ------------------
  |  Branch (1261:28): [True: 283k, False: 36.6k]
  ------------------
 1262|   283k|          {
 1263|   283k|            ui32 inf = sp[0];
 1264|   283k|            ui32 u_q = sp[1];
 1265|       |
 1266|   283k|            ui32 gamma = inf & 0xF0; gamma &= gamma - 0x10; //is gamma_q 1?
 1267|   283k|            ui32 emax = 63 - count_leading_zeros(2 | vp[0] | vp[1]); // emax-1
 1268|   283k|            ui32 kappa = gamma ? emax : 1;
  ------------------
  |  Branch (1268:26): [True: 18.6k, False: 265k]
  ------------------
 1269|       |
 1270|   283k|            ui32 U_q = u_q + kappa;
 1271|   283k|            if (U_q > mmsbp2)
  ------------------
  |  Branch (1271:17): [True: 1.43k, False: 282k]
  ------------------
 1272|  1.43k|              return false;
 1273|       |
 1274|   282k|            ui64 v_n;
 1275|   282k|            ui64 val = 0;
 1276|   282k|            ui32 bit = 0;
 1277|   282k|            if (inf & (1 << (4 + bit)))
  ------------------
  |  Branch (1277:17): [True: 71.7k, False: 210k]
  ------------------
 1278|  71.7k|            {
 1279|       |              //get 32 bits of magsgn data
 1280|  71.7k|              ui64 ms_val = frwd_fetch64<0xFF>(&magsgn); 
 1281|  71.7k|              ui32 m_n = U_q - ((inf >> (12 + bit)) & 1); // remove e_k
 1282|  71.7k|              frwd_advance(&magsgn, m_n);                 //consume m_n
 1283|       |
 1284|  71.7k|              val = ms_val << 63;                         // get sign bit
 1285|  71.7k|              v_n = ms_val & ((1ULL << m_n) - 1);         // keep only m_n bits
 1286|  71.7k|              v_n |= (ui64)((inf >> (8+bit)) & 1) << m_n; // add EMB e_1 as MSB
 1287|  71.7k|              v_n |= 1;                                   // add center of bin    
 1288|       |              //v_n now has 2 * (\mu - 1) + 0.5 with correct sign bit
 1289|       |              //add 2 to make it 2*\mu+0.5, shift it up to missing MSBs
 1290|  71.7k|              val |= (v_n + 2) << (p - 1);
 1291|  71.7k|            }
 1292|   282k|            dp[0] = val;
 1293|       |
 1294|   282k|            v_n = 0;
 1295|   282k|            val = 0;
 1296|   282k|            bit = 1;
 1297|   282k|            if (inf & (1 << (4 + bit)))
  ------------------
  |  Branch (1297:17): [True: 15.3k, False: 267k]
  ------------------
 1298|  15.3k|            {
 1299|       |              //get 32 bits of magsgn data
 1300|  15.3k|              ui64 ms_val = frwd_fetch64<0xFF>(&magsgn); 
 1301|  15.3k|              ui32 m_n = U_q - ((inf >> (12 + bit)) & 1); // remove e_k
 1302|  15.3k|              frwd_advance(&magsgn, m_n);                 //consume m_n
 1303|       |
 1304|  15.3k|              val = ms_val << 63;                         // get sign bit
 1305|  15.3k|              v_n = ms_val & ((1ULL << m_n) - 1);         // keep only m_n bits
 1306|  15.3k|              v_n |= (ui64)((inf >> (8+bit)) & 1) << m_n; // add EMB e_1 as MSB
 1307|  15.3k|              v_n |= 1;                                   // add center of bin    
 1308|       |              //v_n now has 2 * (\mu - 1) + 0.5 with correct sign bit
 1309|       |              //add 2 to make it 2*\mu+0.5, shift it up to missing MSBs
 1310|  15.3k|              val |= (v_n + 2) << (p - 1);
 1311|  15.3k|            }
 1312|   282k|            dp[stride] = val;
 1313|   282k|            vp[0] = prev_v_n | v_n;
 1314|   282k|            prev_v_n = 0;
 1315|   282k|            ++dp;
 1316|   282k|            if (++x >= width)
  ------------------
  |  Branch (1316:17): [True: 70.6k, False: 211k]
  ------------------
 1317|  70.6k|            { ++vp; break; }
 1318|       |
 1319|   211k|            val = 0;
 1320|   211k|            bit = 2;
 1321|   211k|            if (inf & (1 << (4 + bit)))
  ------------------
  |  Branch (1321:17): [True: 13.1k, False: 198k]
  ------------------
 1322|  13.1k|            {
 1323|       |              //get 32 bits of magsgn data
 1324|  13.1k|              ui64 ms_val = frwd_fetch64<0xFF>(&magsgn); 
 1325|  13.1k|              ui32 m_n = U_q - ((inf >> (12 + bit)) & 1); // remove e_k
 1326|  13.1k|              frwd_advance(&magsgn, m_n);                 //consume m_n
 1327|       |
 1328|  13.1k|              val = ms_val << 63;                         // get sign bit
 1329|  13.1k|              v_n = ms_val & ((1ULL << m_n) - 1);         // keep only m_n bits
 1330|  13.1k|              v_n |= (ui64)((inf >> (8+bit)) & 1) << m_n; // add EMB e_1 as MSB
 1331|  13.1k|              v_n |= 1;                                   // add center of bin    
 1332|       |              //v_n now has 2 * (\mu - 1) + 0.5 with correct sign bit
 1333|       |              //add 2 to make it 2*\mu+0.5, shift it up to missing MSBs
 1334|  13.1k|              val |= (v_n + 2) << (p - 1);
 1335|  13.1k|            }
 1336|   211k|            dp[0] = val;
 1337|       |
 1338|   211k|            v_n = 0;
 1339|   211k|            val = 0;
 1340|   211k|            bit = 3;
 1341|   211k|            if (inf & (1 << (4 + bit)))
  ------------------
  |  Branch (1341:17): [True: 13.1k, False: 198k]
  ------------------
 1342|  13.1k|            {
 1343|       |              //get 32 bits of magsgn data
 1344|  13.1k|              ui64 ms_val = frwd_fetch64<0xFF>(&magsgn); 
 1345|  13.1k|              ui32 m_n = U_q - ((inf >> (12 + bit)) & 1); // remove e_k
 1346|  13.1k|              frwd_advance(&magsgn, m_n);                 //consume m_n
 1347|       |
 1348|  13.1k|              val = ms_val << 63;                         // get sign bit
 1349|  13.1k|              v_n = ms_val & ((1ULL << m_n) - 1);         // keep only m_n bits
 1350|  13.1k|              v_n |= (ui64)((inf >> (8+bit)) & 1) << m_n; // add EMB e_1 as MSB
 1351|  13.1k|              v_n |= 1;                                   // add center of bin    
 1352|       |              //v_n now has 2 * (\mu - 1) + 0.5 with correct sign bit
 1353|       |              //add 2 to make it 2*\mu+0.5, shift it up to missing MSBs
 1354|  13.1k|              val |= (v_n + 2) << (p - 1);
 1355|  13.1k|            }
 1356|   211k|            dp[stride] = val;
 1357|   211k|            prev_v_n = v_n;
 1358|   211k|            ++dp;
 1359|   211k|            ++x;
 1360|   211k|          }
 1361|   107k|          vp[0] = prev_v_n;
 1362|   107k|        }
 1363|  16.3k|      }
 1364|       |
 1365|  14.9k|      if (num_passes > 1)
  ------------------
  |  Branch (1365:11): [True: 12.7k, False: 2.14k]
  ------------------
 1366|  12.7k|      {
 1367|       |        // We use scratch again, we can divide it into multiple regions
 1368|       |        // sigma holds all the significant samples, and it cannot
 1369|       |        // be modified after it is set.  it will be used during the
 1370|       |        // Magnitude Refinement Pass
 1371|  12.7k|        ui16* const sigma = scratch;
 1372|       |
 1373|  12.7k|        ui32 mstr = (width + 3u) >> 2;   // divide by 4, since each
 1374|       |                                         // ui16 contains 4 columns
 1375|  12.7k|        mstr = ((mstr + 2u) + 7u) & ~7u; // multiples of 8
 1376|       |
 1377|       |        // We re-arrange quad significance, where each 4 consecutive
 1378|       |        // bits represent one quad, into column significance, where,
 1379|       |        // each 4 consequtive bits represent one column of 4 rows
 1380|  12.7k|        {
 1381|  12.7k|          ui32 y;
 1382|  69.9k|          for (y = 0; y < height; y += 4)
  ------------------
  |  Branch (1382:23): [True: 57.1k, False: 12.7k]
  ------------------
 1383|  57.1k|          {
 1384|  57.1k|            ui16* sp = scratch + (y >> 1) * sstr;
 1385|  57.1k|            ui16* dp = sigma + (y >> 2) * mstr;
 1386|   170k|            for (ui32 x = 0; x < width; x += 4, sp += 4, ++dp) {
  ------------------
  |  Branch (1386:30): [True: 113k, False: 57.1k]
  ------------------
 1387|   113k|              ui32 t0 = 0, t1 = 0;
 1388|   113k|              t0  = ((sp[0     ] & 0x30u) >> 4)  | ((sp[0     ] & 0xC0u) >> 2);
 1389|   113k|              t0 |= ((sp[2     ] & 0x30u) << 4)  | ((sp[2     ] & 0xC0u) << 6);
 1390|   113k|              t1  = ((sp[0+sstr] & 0x30u) >> 2)  | ((sp[0+sstr] & 0xC0u)     );
 1391|   113k|              t1 |= ((sp[2+sstr] & 0x30u) << 6)  | ((sp[2+sstr] & 0xC0u) << 8);
 1392|   113k|              dp[0] = (ui16)(t0 | t1);
 1393|   113k|            }
 1394|  57.1k|            dp[0] = 0; // set an extra entry on the right with 0
 1395|  57.1k|          }
 1396|  12.7k|          {
 1397|       |            // reset one row after the codeblock
 1398|  12.7k|            ui16* dp = sigma + (y >> 2) * mstr;
 1399|  55.9k|            for (ui32 x = 0; x < width; x += 4, ++dp)
  ------------------
  |  Branch (1399:30): [True: 43.1k, False: 12.7k]
  ------------------
 1400|  43.1k|              dp[0] = 0;
 1401|  12.7k|            dp[0] = 0; // set an extra entry on the right with 0
 1402|  12.7k|          }
 1403|  12.7k|        }
 1404|       |
 1405|       |        // We perform Significance Propagation Pass here
 1406|  12.7k|        {
 1407|       |          // This stores significance information of the previous
 1408|       |          // 4 rows.  Significance information in this array includes
 1409|       |          // all signicant samples in bitplane p - 1; that is,
 1410|       |          // significant samples for bitplane p (discovered during the
 1411|       |          // cleanup pass and stored in sigma) and samples that have recently
 1412|       |          // became significant (during the SPP) in bitplane p-1.
 1413|       |          // We store enough for the widest row, containing 1024 columns,
 1414|       |          // which is equivalent to 256 of ui16, since each stores 4 columns.
 1415|       |          // We add an extra 8 entries, just in case we need more
 1416|  12.7k|          ui16 prev_row_sig[256 + 8] = {0}; // 528 Bytes
 1417|       |
 1418|  12.7k|          frwd_struct64 sigprop;
 1419|  12.7k|          frwd_init<0>(&sigprop, coded_data + lengths1, (int)lengths2);
 1420|       |
 1421|  69.9k|          for (ui32 y = 0; y < height; y += 4)
  ------------------
  |  Branch (1421:28): [True: 57.1k, False: 12.7k]
  ------------------
 1422|  57.1k|          {
 1423|  57.1k|            ui32 pattern = 0xFFFFu; // a pattern needed samples
 1424|  57.1k|            if (height - y < 4) {
  ------------------
  |  Branch (1424:17): [True: 6.83k, False: 50.3k]
  ------------------
 1425|  6.83k|              pattern = 0x7777u;
 1426|  6.83k|              if (height - y < 3) {
  ------------------
  |  Branch (1426:19): [True: 4.65k, False: 2.18k]
  ------------------
 1427|  4.65k|                pattern = 0x3333u;
 1428|  4.65k|                if (height - y < 2)
  ------------------
  |  Branch (1428:21): [True: 1.85k, False: 2.80k]
  ------------------
 1429|  1.85k|                  pattern = 0x1111u;
 1430|  4.65k|              }
 1431|  6.83k|            }
 1432|       |
 1433|       |            // prev holds sign. info. for the previous quad, together
 1434|       |            // with the rows on top of it and below it.
 1435|  57.1k|            ui32 prev = 0;
 1436|  57.1k|            ui16 *prev_sig = prev_row_sig;
 1437|  57.1k|            ui16 *cur_sig = sigma + (y >> 2) * mstr;
 1438|  57.1k|            ui64 *dpp = decoded_data + y * stride;
 1439|   170k|            for (ui32 x = 0; x < width; x += 4, ++cur_sig, ++prev_sig)
  ------------------
  |  Branch (1439:30): [True: 113k, False: 57.1k]
  ------------------
 1440|   113k|            {
 1441|       |              // only rows and columns inside the stripe are included
 1442|   113k|              si32 s = (si32)x + 4 - (si32)width;
 1443|   113k|              s = ojph_max(s, 0);
  ------------------
  |  |   73|   113k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 39.9k, False: 73.3k]
  |  |  ------------------
  ------------------
 1444|   113k|              pattern = pattern >> (s * 4);
 1445|       |
 1446|       |              // We first find locations that need to be tested (potential
 1447|       |              // SPP members); these location will end up in mbr
 1448|       |              // In each iteration, we produce 16 bits because cwd can have
 1449|       |              // up to 16 bits of significance information, followed by the
 1450|       |              // corresponding 16 bits of sign information; therefore, it is
 1451|       |              // sufficient to fetch 32 bit data per loop.
 1452|       |
 1453|       |              // Althougth we are interested in 16 bits only, we load 32 bits.
 1454|       |              // For the 16 bits we are producing, we need the next 4 bits --
 1455|       |              // We need data for at least 5 columns out of 8.
 1456|       |              // Therefore loading 32 bits is easier than loading 16 bits
 1457|       |              // twice.
 1458|   113k|              ui32 ps = load_le_ui16x2(prev_sig);
 1459|   113k|              ui32 ns = load_le_ui16x2(cur_sig + mstr);
 1460|   113k|              ui32 u = (ps & 0x88888888) >> 3; // the row on top
 1461|   113k|              if (!stripe_causal)
  ------------------
  |  Branch (1461:19): [True: 111k, False: 1.93k]
  ------------------
 1462|   111k|                u |= (ns & 0x11111111) << 3;   // the row below
 1463|       |
 1464|   113k|              ui32 cs = load_le_ui16x2(cur_sig);
 1465|       |              // vertical integration
 1466|   113k|              ui32 mbr =  cs;                // this sig. info.
 1467|   113k|              mbr |= (cs & 0x77777777) << 1; //above neighbors
 1468|   113k|              mbr |= (cs & 0xEEEEEEEE) >> 1; //below neighbors
 1469|   113k|              mbr |= u;
 1470|       |              // horizontal integration
 1471|   113k|              ui32 t = mbr;
 1472|   113k|              mbr |= t << 4;      // neighbors on the left
 1473|   113k|              mbr |= t >> 4;      // neighbors on the right
 1474|   113k|              mbr |= prev >> 12;  // significance of previous group
 1475|       |
 1476|       |              // remove outside samples, and already significant samples
 1477|   113k|              mbr &= pattern;
 1478|   113k|              mbr &= ~cs;
 1479|       |
 1480|       |              // find samples that become significant during the SPP
 1481|   113k|              ui32 new_sig = mbr;
 1482|   113k|              if (new_sig)
  ------------------
  |  Branch (1482:19): [True: 76.4k, False: 36.8k]
  ------------------
 1483|  76.4k|              {
 1484|  76.4k|                ui64 cwd = frwd_fetch<0>(&sigprop);
 1485|       |
 1486|  76.4k|                ui32 cnt = 0;
 1487|  76.4k|                ui32 col_mask = 0xFu;
 1488|  76.4k|                ui32 inv_sig = ~cs & pattern;
 1489|   382k|                for (int i = 0; i < 16; i += 4, col_mask <<= 4)
  ------------------
  |  Branch (1489:33): [True: 305k, False: 76.4k]
  ------------------
 1490|   305k|                {
 1491|   305k|                  if ((col_mask & new_sig) == 0)
  ------------------
  |  Branch (1491:23): [True: 107k, False: 198k]
  ------------------
 1492|   107k|                    continue;
 1493|       |
 1494|       |                  //scan one column
 1495|   198k|                  ui32 sample_mask = 0x1111u & col_mask;
 1496|   198k|                  if (new_sig & sample_mask)
  ------------------
  |  Branch (1496:23): [True: 129k, False: 69.1k]
  ------------------
 1497|   129k|                  {
 1498|   129k|                    new_sig &= ~sample_mask;
 1499|   129k|                    if (cwd & 1)
  ------------------
  |  Branch (1499:25): [True: 41.7k, False: 87.5k]
  ------------------
 1500|  41.7k|                    {
 1501|  41.7k|                      ui32 t = 0x33u << i;
 1502|  41.7k|                      new_sig |= t & inv_sig;
 1503|  41.7k|                    }
 1504|   129k|                    cwd >>= 1; ++cnt;
 1505|   129k|                  }
 1506|       |
 1507|   198k|                  sample_mask <<= 1;
 1508|   198k|                  if (new_sig & sample_mask)
  ------------------
  |  Branch (1508:23): [True: 116k, False: 81.6k]
  ------------------
 1509|   116k|                  {
 1510|   116k|                    new_sig &= ~sample_mask;
 1511|   116k|                    if (cwd & 1)
  ------------------
  |  Branch (1511:25): [True: 34.9k, False: 81.8k]
  ------------------
 1512|  34.9k|                    {
 1513|  34.9k|                      ui32 t = 0x76u << i;
 1514|  34.9k|                      new_sig |= t & inv_sig;
 1515|  34.9k|                    }
 1516|   116k|                    cwd >>= 1; ++cnt;
 1517|   116k|                  }
 1518|       |
 1519|   198k|                  sample_mask <<= 1;
 1520|   198k|                  if (new_sig & sample_mask)
  ------------------
  |  Branch (1520:23): [True: 99.3k, False: 99.0k]
  ------------------
 1521|  99.3k|                  {
 1522|  99.3k|                    new_sig &= ~sample_mask;
 1523|  99.3k|                    if (cwd & 1)
  ------------------
  |  Branch (1523:25): [True: 36.7k, False: 62.6k]
  ------------------
 1524|  36.7k|                    {
 1525|  36.7k|                      ui32 t = 0xECu << i;
 1526|  36.7k|                      new_sig |= t & inv_sig;
 1527|  36.7k|                    }
 1528|  99.3k|                    cwd >>= 1; ++cnt;
 1529|  99.3k|                  }
 1530|       |
 1531|   198k|                  sample_mask <<= 1;
 1532|   198k|                  if (new_sig & sample_mask)
  ------------------
  |  Branch (1532:23): [True: 110k, False: 88.1k]
  ------------------
 1533|   110k|                  {
 1534|   110k|                    new_sig &= ~sample_mask;
 1535|   110k|                    if (cwd & 1)
  ------------------
  |  Branch (1535:25): [True: 40.4k, False: 69.8k]
  ------------------
 1536|  40.4k|                    {
 1537|  40.4k|                      ui32 t = 0xC8u << i;
 1538|  40.4k|                      new_sig |= t & inv_sig;
 1539|  40.4k|                    }
 1540|   110k|                    cwd >>= 1; ++cnt;
 1541|   110k|                  }
 1542|   198k|                }
 1543|       |
 1544|  76.4k|                if (new_sig)
  ------------------
  |  Branch (1544:21): [True: 36.1k, False: 40.3k]
  ------------------
 1545|  36.1k|                {
 1546|       |                  // new_sig has newly-discovered sig. samples during SPP
 1547|       |                  // find the signs and update decoded_data
 1548|  36.1k|                  ui64 *dp = dpp + x;
 1549|  36.1k|                  ui64 val = 3u << (p - 2);
 1550|  36.1k|                  col_mask = 0xFu;
 1551|   180k|                  for (int i = 0; i < 4; ++i, ++dp, col_mask <<= 4)
  ------------------
  |  Branch (1551:35): [True: 144k, False: 36.1k]
  ------------------
 1552|   144k|                  {
 1553|   144k|                    if ((col_mask & new_sig) == 0)
  ------------------
  |  Branch (1553:25): [True: 69.3k, False: 75.1k]
  ------------------
 1554|  69.3k|                      continue;
 1555|       |
 1556|       |                    //scan 4 signs
 1557|  75.1k|                    ui32 sample_mask = 0x1111u & col_mask;
 1558|  75.1k|                    if (new_sig & sample_mask)
  ------------------
  |  Branch (1558:25): [True: 41.7k, False: 33.3k]
  ------------------
 1559|  41.7k|                    {
 1560|  41.7k|                      assert(dp[0] == 0);
 1561|  41.7k|                      dp[0] = (cwd << 63) | val;
 1562|  41.7k|                      cwd >>= 1; ++cnt;
 1563|  41.7k|                    }
 1564|       |
 1565|  75.1k|                    sample_mask += sample_mask;
 1566|  75.1k|                    if (new_sig & sample_mask)
  ------------------
  |  Branch (1566:25): [True: 34.9k, False: 40.1k]
  ------------------
 1567|  34.9k|                    {
 1568|  34.9k|                      assert(dp[stride] == 0);
 1569|  34.9k|                      dp[stride] = (cwd << 63) | val;
 1570|  34.9k|                      cwd >>= 1; ++cnt;
 1571|  34.9k|                    }
 1572|       |
 1573|  75.1k|                    sample_mask += sample_mask;
 1574|  75.1k|                    if (new_sig & sample_mask)
  ------------------
  |  Branch (1574:25): [True: 36.7k, False: 38.4k]
  ------------------
 1575|  36.7k|                    {
 1576|  36.7k|                      assert(dp[2 * stride] == 0);
 1577|  36.7k|                      dp[2 * stride] = (cwd << 63) | val;
 1578|  36.7k|                      cwd >>= 1; ++cnt;
 1579|  36.7k|                    }
 1580|       |
 1581|  75.1k|                    sample_mask += sample_mask;
 1582|  75.1k|                    if (new_sig & sample_mask)
  ------------------
  |  Branch (1582:25): [True: 40.4k, False: 34.7k]
  ------------------
 1583|  40.4k|                    {
 1584|  40.4k|                      assert(dp[3 * stride] == 0);
 1585|  40.4k|                      dp[3 * stride] = (cwd << 63) | val;
 1586|  40.4k|                      cwd >>= 1; ++cnt;
 1587|  40.4k|                    }
 1588|  75.1k|                  }
 1589|  36.1k|                }
 1590|  76.4k|                frwd_advance(&sigprop, cnt);
 1591|  76.4k|              }
 1592|       |
 1593|   113k|              new_sig |= cs;
 1594|   113k|              *prev_sig = (ui16)(new_sig);
 1595|       |
 1596|       |              // vertical integration for the new sig. info.
 1597|   113k|              t = new_sig;
 1598|   113k|              new_sig |= (t & 0x7777) << 1; //above neighbors
 1599|   113k|              new_sig |= (t & 0xEEEE) >> 1; //below neighbors
 1600|       |              // add sig. info. from the row on top and below
 1601|   113k|              prev = new_sig | u;
 1602|       |              // we need only the bits in 0xF000
 1603|   113k|              prev &= 0xF000;
 1604|   113k|            }
 1605|  57.1k|          }
 1606|  12.7k|        }
 1607|       |
 1608|       |        // We perform Magnitude Refinement Pass here
 1609|  12.7k|        if (num_passes > 2)
  ------------------
  |  Branch (1609:13): [True: 7.62k, False: 5.13k]
  ------------------
 1610|  7.62k|        {
 1611|  7.62k|          rev_struct magref;
 1612|  7.62k|          rev_init_mrp(&magref, coded_data, (int)lengths1, (int)lengths2);
 1613|       |
 1614|  37.4k|          for (ui32 y = 0; y < height; y += 4)
  ------------------
  |  Branch (1614:28): [True: 29.8k, False: 7.62k]
  ------------------
 1615|  29.8k|          {
 1616|  29.8k|            ui16 *cur_sig = sigma + (y >> 2) * mstr;
 1617|  29.8k|            ui64 *dpp = decoded_data + y * stride;
 1618|  29.8k|            ui64 half = 1ULL << (p - 2);
 1619|  72.0k|            for (ui32 i = 0; i < width; i += 8, cur_sig += 2)
  ------------------
  |  Branch (1619:30): [True: 42.2k, False: 29.8k]
  ------------------
 1620|  42.2k|            {
 1621|       |              //Process one entry from sigma array at a time
 1622|       |              // Each nibble (4 bits) in the sigma array represents 4 rows,
 1623|       |              // and the 32 bits contain 8 columns
 1624|  42.2k|              ui32 cwd = rev_fetch_mrp(&magref); // get 32 bit data
 1625|  42.2k|              ui32 sig = load_le_ui16x2(cur_sig); // 32 bits processed now
 1626|  42.2k|              ui32 col_mask = 0xFu;  // a mask for a column in sig
 1627|  42.2k|              if (sig) // if any of the 32 bits are set
  ------------------
  |  Branch (1627:19): [True: 29.4k, False: 12.7k]
  ------------------
 1628|  29.4k|              {
 1629|   265k|                for (int j = 0; j < 8; ++j) //one column at a time
  ------------------
  |  Branch (1629:33): [True: 235k, False: 29.4k]
  ------------------
 1630|   235k|                {
 1631|   235k|                  if (sig & col_mask) // lowest nibble
  ------------------
  |  Branch (1631:23): [True: 98.7k, False: 136k]
  ------------------
 1632|  98.7k|                  {
 1633|  98.7k|                    ui64 *dp = dpp + i + j; // next column in decoded samples
 1634|  98.7k|                    ui32 sample_mask = 0x11111111u & col_mask; //LSB
 1635|       |
 1636|   493k|                    for (int k = 0; k < 4; ++k) {
  ------------------
  |  Branch (1636:37): [True: 394k, False: 98.7k]
  ------------------
 1637|   394k|                      if (sig & sample_mask) //if LSB is set
  ------------------
  |  Branch (1637:27): [True: 174k, False: 220k]
  ------------------
 1638|   174k|                      {
 1639|   174k|                        assert(dp[0] != 0); // decoded value cannot be zero
 1640|   174k|                        assert((dp[0] & half) == 0); // no half
 1641|   174k|                        ui64 sym = cwd & 1;          // get it value
 1642|   174k|                        sym = (1 - sym) << (p - 1); // previous center of bin
 1643|   174k|                        sym |= half;            // put half the center of bin
 1644|   174k|                        dp[0] ^= sym;    // remove old bin center and put new
 1645|   174k|                        cwd >>= 1;       // consume word
 1646|   174k|                      }
 1647|   394k|                      sample_mask += sample_mask; //next row
 1648|   394k|                      dp += stride; // next samples row
 1649|   394k|                    }
 1650|  98.7k|                  }
 1651|   235k|                  col_mask <<= 4; //next column
 1652|   235k|                }
 1653|  29.4k|              }
 1654|       |              // consume data according to the number of bits set
 1655|  42.2k|              rev_advance_mrp(&magref, population_count(sig));
 1656|  42.2k|            }
 1657|  29.8k|          }
 1658|  7.62k|        }
 1659|  12.7k|      }
 1660|  14.9k|      return true;
 1661|  16.3k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL8mel_initEPNS0_10dec_mel_stEPhii:
  222|  18.4k|    {
  223|  18.4k|      melp->data = bbuf + lcup - scup; // move the pointer to the start of MEL
  224|  18.4k|      melp->bits = 0;                  // 0 bits in tmp
  225|  18.4k|      melp->tmp = 0;                   //
  226|  18.4k|      melp->unstuff = false;           // no unstuffing
  227|  18.4k|      melp->size = scup - 1;           // size is the length of MEL+VLC-1
  228|  18.4k|      melp->k = 0;                     // 0 for state 
  229|  18.4k|      melp->num_runs = 0;              // num_runs is 0
  230|  18.4k|      melp->runs = 0;                  //
  231|       |
  232|       |      //This code is borrowed; original is for a different architecture
  233|       |      //These few lines take care of the case where data is not at a multiple
  234|       |      // of 4 boundary.  It reads 1,2,3 up to 4 bytes from the MEL segment
  235|  18.4k|      int num = 4 - (int)(intptr_t(melp->data) & 0x3);
  236|  67.2k|      for (int i = 0; i < num; ++i) { // this code is similar to mel_read
  ------------------
  |  Branch (236:23): [True: 48.7k, False: 18.4k]
  ------------------
  237|  48.7k|        assert(melp->unstuff == false || melp->data[0] <= 0x8F);
  238|  48.7k|        ui64 d = (melp->size > 0) ? *melp->data : 0xFF;//if buffer is consumed
  ------------------
  |  Branch (238:18): [True: 43.7k, False: 5.01k]
  ------------------
  239|       |                                                       //set data to 0xFF
  240|  48.7k|        if (melp->size == 1) d |= 0xF; //if this is MEL+VLC-1, set LSBs to 0xF
  ------------------
  |  Branch (240:13): [True: 5.43k, False: 43.3k]
  ------------------
  241|       |                                       // see the standard
  242|  48.7k|        melp->data += melp->size-- > 0; //increment if the end is not reached
  243|  48.7k|        int d_bits = 8 - melp->unstuff; //if unstuffing is needed, reduce by 1
  244|  48.7k|        melp->tmp = (melp->tmp << d_bits) | d; //store bits in tmp
  245|  48.7k|        melp->bits += d_bits;  //increment tmp by number of bits
  246|  48.7k|        melp->unstuff = ((d & 0xFF) == 0xFF); //true of next byte needs 
  247|       |                                              //unstuffing
  248|  48.7k|      }
  249|  18.4k|      melp->tmp <<= (64 - melp->bits); //push all the way up so the first bit
  250|       |                                       // is the MSB
  251|  18.4k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL9rev_init8EPNS0_10rev_structEPhii:
  344|  18.4k|    {
  345|       |      //first byte has only the upper 4 bits
  346|  18.4k|      vlcp->data = data + lcup - 2;
  347|       |
  348|       |      //size can not be larger than this, in fact it should be smaller
  349|  18.4k|      vlcp->size = scup - 2;
  350|       |
  351|  18.4k|      ui8 val = *vlcp->data--; // read one byte (this is a half byte)
  352|       |
  353|       |      // the first byte is treated different to other bytes, because only
  354|       |      // the MSB nibble is part of the VLC code.
  355|  18.4k|      val = (ui8)(val >> 4);
  356|  18.4k|      ui8 t = ((val & 0x7) == 0x7) ? 1 : 0; // unstuffing is needed
  ------------------
  |  Branch (356:15): [True: 3.72k, False: 14.7k]
  ------------------
  357|  18.4k|      val = (ui8)(val & (0xFU >> t)); // protect against erroneous 1 in MSB
  358|  18.4k|      vlcp->tmp = val;
  359|  18.4k|      vlcp->bits = 4 - t;
  360|  18.4k|      vlcp->unstuff = val > 0x8; //this is useful for the next byte
  361|  18.4k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL11mel_get_runEPNS0_10dec_mel_stE:
  261|   233k|    {
  262|   233k|      if (melp->num_runs == 0)  //if no runs, decode more bit from MEL segment
  ------------------
  |  Branch (262:11): [True: 43.3k, False: 189k]
  ------------------
  263|  43.3k|        mel_decode(melp);
  264|       |
  265|   233k|      int t = melp->runs & 0x7F; //retrieve one run
  266|   233k|      melp->runs >>= 7;  // remove the retrieved run
  267|   233k|      melp->num_runs--;
  268|   233k|      return t; // return run
  269|   233k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL10mel_decodeEPNS0_10dec_mel_stE:
  171|  43.3k|    {
  172|  43.3k|      static const int mel_exp[13] = { //MEL exponents
  173|  43.3k|        0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 4, 5
  174|  43.3k|      };
  175|       |
  176|  43.3k|      if (melp->bits < 6) // if there are less than 6 bits in tmp
  ------------------
  |  Branch (176:11): [True: 7.10k, False: 36.2k]
  ------------------
  177|  7.10k|        mel_read(melp);   // then read from the MEL bitstream
  178|       |                          // 6 bits is the largest decodable MEL cwd
  179|       |
  180|       |      //repeat so long that there is enough decodable bits in tmp,
  181|       |      // and the runs store is not full (num_runs < 8)
  182|   344k|      while (melp->bits >= 6 && melp->num_runs < 8)
  ------------------
  |  Branch (182:14): [True: 333k, False: 10.9k]
  |  Branch (182:33): [True: 300k, False: 32.4k]
  ------------------
  183|   300k|      {
  184|   300k|        int eval = mel_exp[melp->k]; // number of bits associated with state
  185|   300k|        int run = 0;
  186|   300k|        if (melp->tmp & (1ull<<63)) //The next bit to decode (stored in MSB)
  ------------------
  |  Branch (186:13): [True: 127k, False: 173k]
  ------------------
  187|   127k|        { //one is found
  188|   127k|          run = 1 << eval;  
  189|   127k|          run--; // consecutive runs of 0 events - 1
  190|   127k|          melp->k = melp->k + 1 < 12 ? melp->k + 1 : 12;//increment, max is 12
  ------------------
  |  Branch (190:21): [True: 119k, False: 7.83k]
  ------------------
  191|   127k|          melp->tmp <<= 1; // consume one bit from tmp
  192|   127k|          melp->bits -= 1;
  193|   127k|          run = run << 1; // a stretch of zeros not terminating in one
  194|   127k|        }
  195|   173k|        else
  196|   173k|        { //0 is found
  197|   173k|          run = (int)(melp->tmp >> (63 - eval)) & ((1 << eval) - 1);
  198|   173k|          melp->k = melp->k - 1 > 0 ? melp->k - 1 : 0; //decrement, min is 0
  ------------------
  |  Branch (198:21): [True: 28.2k, False: 145k]
  ------------------
  199|   173k|          melp->tmp <<= eval + 1; //consume eval + 1 bits (max is 6)
  200|   173k|          melp->bits -= eval + 1;
  201|   173k|          run = (run << 1) + 1; // a stretch of zeros terminating with one
  202|   173k|        }
  203|   300k|        eval = melp->num_runs * 7;           // 7 bits per run
  204|   300k|        melp->runs &= ~((ui64)0x3F << eval); // 6 bits are sufficient
  205|   300k|        melp->runs |= ((ui64)run) << eval;   // store the value in runs
  206|   300k|        melp->num_runs++;                    // increment count  
  207|   300k|      }
  208|  43.3k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL8mel_readEPNS0_10dec_mel_stE:
   94|  7.10k|    {
   95|  7.10k|      if (melp->bits > 32)  //there are enough bits in the tmp variable
  ------------------
  |  Branch (95:11): [True: 0, False: 7.10k]
  ------------------
   96|      0|        return;             // return without reading new data
   97|       |
   98|  7.10k|      ui32 val = 0xFFFFFFFF;       // feed in 0xFF if buffer is exhausted
   99|  7.10k|      if (melp->size > 4) {        // if there is data in the MEL segment
  ------------------
  |  Branch (99:11): [True: 2.12k, False: 4.98k]
  ------------------
  100|  2.12k|        val = load_le_ui32(melp->data); // read 32 bits from MEL data
  101|  2.12k|        melp->data += 4;           // advance pointer
  102|  2.12k|        melp->size -= 4;           // reduce counter
  103|  2.12k|      }
  104|  4.98k|      else if (melp->size > 0)
  ------------------
  |  Branch (104:16): [True: 3.54k, False: 1.44k]
  ------------------
  105|  3.54k|      { // 4 or less
  106|  3.54k|        int i = 0;
  107|  6.63k|        while (melp->size > 1) {   
  ------------------
  |  Branch (107:16): [True: 3.08k, False: 3.54k]
  ------------------
  108|  3.08k|          ui32 v = *melp->data++;    // read one byte at a time
  109|  3.08k|          ui32 m = ~(0xFFu << i);    // mask of location
  110|  3.08k|          val = (val & m) | (v << i);// put one byte in its correct location
  111|  3.08k|          --melp->size;
  112|  3.08k|          i += 8;
  113|  3.08k|        }
  114|       |        // size equal to 1
  115|  3.54k|        ui32 v = *melp->data++;    // the one before the last is different 
  116|  3.54k|        v |= 0xF;                  // MEL and VLC segments can overlap
  117|  3.54k|        ui32 m = ~(0xFFu << i);
  118|  3.54k|        val = (val & m) | (v << i);
  119|  3.54k|        --melp->size;
  120|  3.54k|      }
  121|       |      
  122|       |      // next we unstuff them before adding them to the buffer
  123|  7.10k|      int bits = 32 - melp->unstuff; // number of bits in val, subtract 1 if
  124|       |                                     // the previously read byte requires 
  125|       |                                     // unstuffing
  126|       |
  127|       |      // data is unstuffed and accumulated in t
  128|       |      // bits has the number of bits in t
  129|  7.10k|      ui32 t = val & 0xFF; 
  130|  7.10k|      bool unstuff = ((val & 0xFF) == 0xFF); // true if we need unstuffing
  131|  7.10k|      bits -= unstuff; // there is one less bit in t if unstuffing is needed
  132|  7.10k|      t = t << (8 - unstuff); // move up to make room for the next byte
  133|       |
  134|       |      //this is a repeat of the above
  135|  7.10k|      t |= (val>>8) & 0xFF;
  136|  7.10k|      unstuff = (((val >> 8) & 0xFF) == 0xFF);
  137|  7.10k|      bits -= unstuff;
  138|  7.10k|      t = t << (8 - unstuff);
  139|       |
  140|  7.10k|      t |= (val>>16) & 0xFF;
  141|  7.10k|      unstuff = (((val >> 16) & 0xFF) == 0xFF);
  142|  7.10k|      bits -= unstuff;
  143|  7.10k|      t = t << (8 - unstuff);
  144|       |
  145|  7.10k|      t |= (val>>24) & 0xFF;
  146|  7.10k|      melp->unstuff = (((val >> 24) & 0xFF) == 0xFF);
  147|       |
  148|       |      // move t to tmp, and push the result all the way up, so we read from
  149|       |      // the MSB
  150|  7.10k|      melp->tmp |= ((ui64)t) << (64 - bits - melp->bits);
  151|  7.10k|      melp->bits += bits; //increment the number of bits in tmp
  152|  7.10k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL11rev_fetch64EPNS0_10rev_structE:
  372|   290k|    {
  373|   552k|      while (vlcp->bits <= 56)
  ------------------
  |  Branch (373:14): [True: 262k, False: 290k]
  ------------------
  374|   262k|        rev_read8(vlcp); // read 8 bits, but unstuffing might reduce this
  375|   290k|      return vlcp->tmp;  // return unstuff decoded bits
  376|   290k|    }    
ojph_block_decoder64.cpp:_ZN4ojph5localL9rev_read8EPNS0_10rev_structE:
  306|   262k|    {
  307|       |      // process 1 bytes
  308|   262k|      ui8 val = 0; // insert 0s at the end -- the standard says that the
  309|       |                   // bitstream must contain all needed bits. Therefore
  310|       |                   // if the whole bitstream is consumed and bits are still
  311|       |                   // needed, then this is an error condition, but we are
  312|       |                   // lenient -- it is also possible that we are decoding
  313|       |                   // more bits than what we are actually need.
  314|   262k|      if (vlcp->size > 0)  // if there are more than 3 bytes left in VLC
  ------------------
  |  Branch (314:11): [True: 95.7k, False: 166k]
  ------------------
  315|  95.7k|      {
  316|  95.7k|        val = *vlcp->data; // then read 8 bits
  317|  95.7k|        --vlcp->data;      // increment data pointer
  318|  95.7k|        --vlcp->size;      // decrement number of bytes in the buffer
  319|  95.7k|      }
  320|       |
  321|       |      // accumulate in tmp, and increment bits, check if unstuffing is needed
  322|   262k|      ui8 t = (vlcp->unstuff && ((val & 0x7F) == 0x7F)) ? 1 : 0;
  ------------------
  |  Branch (322:16): [True: 27.6k, False: 234k]
  |  Branch (322:33): [True: 5.21k, False: 22.3k]
  ------------------
  323|   262k|      val = (ui8)(val & (0xFFU >> t)); // protect against erroneous 1 in MSB
  324|   262k|      vlcp->tmp |= (ui64)val << vlcp->bits;
  325|   262k|      vlcp->bits += 8 - t;
  326|   262k|      vlcp->unstuff = val > 0x8F;
  327|   262k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL13rev_advance64EPNS0_10rev_structEj:
  386|  1.74M|    {
  387|       |      assert(num_bits <= vlcp->bits); // vlcp->tmp must have more than num_bits
  388|  1.74M|      vlcp->tmp >>= num_bits;         // remove bits
  389|  1.74M|      vlcp->bits -= num_bits;         // decrement the number of bits
  390|  1.74M|      return vlcp->tmp;
  391|  1.74M|    }    
ojph_block_decoder64.cpp:_ZN4ojph5localL12frwd_advanceEPNS0_13frwd_struct64Ej:
  707|   322k|    {
  708|       |      assert(num_bits <= msp->bits);
  709|   322k|      msp->tmp >>= num_bits;  // consume num_bits
  710|   322k|      msp->bits -= num_bits;
  711|   322k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL12rev_init_mrpEPNS0_10rev_structEPhii:
  470|  7.62k|    {
  471|  7.62k|      mrp->data = data + lcup + len2 - 1;
  472|  7.62k|      mrp->size = len2;
  473|  7.62k|      mrp->unstuff = true;
  474|  7.62k|      mrp->bits = 0;
  475|  7.62k|      mrp->tmp = 0;
  476|       |
  477|       |      //This code is designed for an architecture that read address should
  478|       |      // align to the read size (address multiple of 4 if read size is 4)
  479|       |      //These few lines take care of the case where data is not at a multiple
  480|       |      // of 4 boundary.  It reads 1,2,3 up to 4 bytes from the MRP stream
  481|  7.62k|      int num = 1 + (int)(intptr_t(mrp->data) & 0x3);
  482|  26.1k|      for (int i = 0; i < num; ++i) {
  ------------------
  |  Branch (482:23): [True: 18.5k, False: 7.62k]
  ------------------
  483|  18.5k|        ui64 d;
  484|       |        //read a byte, 0 if no more data
  485|  18.5k|        d = (mrp->size-- > 0) ? *mrp->data-- : 0; 
  ------------------
  |  Branch (485:13): [True: 17.2k, False: 1.25k]
  ------------------
  486|       |        //check if unstuffing is needed
  487|  18.5k|        ui32 d_bits = 8 - ((mrp->unstuff && ((d & 0x7F) == 0x7F)) ? 1 : 0);
  ------------------
  |  Branch (487:29): [True: 10.1k, False: 8.35k]
  |  Branch (487:45): [True: 2.17k, False: 7.97k]
  ------------------
  488|  18.5k|        mrp->tmp |= d << mrp->bits; // move data to vlcp->tmp
  489|  18.5k|        mrp->bits += d_bits;
  490|  18.5k|        mrp->unstuff = d > 0x8F; // for next byte
  491|  18.5k|      }
  492|  7.62k|      rev_read_mrp(mrp);
  493|  7.62k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL12rev_read_mrpEPNS0_10rev_structE:
  406|  13.0k|    {
  407|       |      //process 4 bytes at a time
  408|  13.0k|      if (mrp->bits > 32)
  ------------------
  |  Branch (408:11): [True: 0, False: 13.0k]
  ------------------
  409|      0|        return;
  410|  13.0k|      ui32 val = 0;
  411|  13.0k|      if (mrp->size > 3) // If there are 3 byte or more
  ------------------
  |  Branch (411:11): [True: 8.67k, False: 4.32k]
  ------------------
  412|  8.67k|      { // (mrp->data - 3) move pointer back to read 32 bits at once
  413|  8.67k|        val = load_le_ui32(mrp->data - 3); // read 32 bits
  414|  8.67k|        mrp->data -= 4;                // move back pointer
  415|  8.67k|        mrp->size -= 4;                // reduce count
  416|  8.67k|      }
  417|  4.32k|      else if (mrp->size > 0)
  ------------------
  |  Branch (417:16): [True: 1.85k, False: 2.47k]
  ------------------
  418|  1.85k|      {
  419|  1.85k|        int i = 24;
  420|  5.19k|        while (mrp->size > 0) {   
  ------------------
  |  Branch (420:16): [True: 3.34k, False: 1.85k]
  ------------------
  421|  3.34k|          ui32 v = *mrp->data--; // read one byte at a time
  422|  3.34k|          val |= (v << i);       // put byte in its correct location
  423|  3.34k|          --mrp->size;
  424|  3.34k|          i -= 8;
  425|  3.34k|        }
  426|  1.85k|      }
  427|       |
  428|       |      //accumulate in tmp, and keep count in bits
  429|  13.0k|      ui32 bits, tmp = val >> 24;
  430|       |
  431|       |      //test if the last byte > 0x8F (unstuff must be true) and this is 0x7F
  432|  13.0k|      bits = 8 - ((mrp->unstuff && (((val >> 24) & 0x7F) == 0x7F)) ? 1 : 0);
  ------------------
  |  Branch (432:20): [True: 5.32k, False: 7.67k]
  |  Branch (432:36): [True: 3.25k, False: 2.06k]
  ------------------
  433|  13.0k|      bool unstuff = (val >> 24) > 0x8F;
  434|       |
  435|       |      //process the next byte
  436|  13.0k|      tmp |= ((val >> 16) & 0xFF) << bits;
  437|  13.0k|      bits += 8 - ((unstuff && (((val >> 16) & 0x7F) == 0x7F)) ? 1 : 0);
  ------------------
  |  Branch (437:21): [True: 4.73k, False: 8.26k]
  |  Branch (437:32): [True: 2.25k, False: 2.48k]
  ------------------
  438|  13.0k|      unstuff = ((val >> 16) & 0xFF) > 0x8F;
  439|       |
  440|  13.0k|      tmp |= ((val >> 8) & 0xFF) << bits;
  441|  13.0k|      bits += 8 - ((unstuff && (((val >> 8) & 0x7F) == 0x7F)) ? 1 : 0);
  ------------------
  |  Branch (441:21): [True: 4.60k, False: 8.39k]
  |  Branch (441:32): [True: 2.44k, False: 2.16k]
  ------------------
  442|  13.0k|      unstuff = ((val >> 8) & 0xFF) > 0x8F;
  443|       |
  444|  13.0k|      tmp |= (val & 0xFF) << bits;
  445|  13.0k|      bits += 8 - ((unstuff && ((val & 0x7F) == 0x7F)) ? 1 : 0);
  ------------------
  |  Branch (445:21): [True: 3.81k, False: 9.18k]
  |  Branch (445:32): [True: 2.12k, False: 1.68k]
  ------------------
  446|  13.0k|      unstuff = (val & 0xFF) > 0x8F;
  447|       |
  448|  13.0k|      mrp->tmp |= (ui64)tmp << mrp->bits; // move data to mrp pointer
  449|  13.0k|      mrp->bits += bits;
  450|  13.0k|      mrp->unstuff = unstuff;             // next byte
  451|  13.0k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL13rev_fetch_mrpEPNS0_10rev_structE:
  504|  42.2k|    {
  505|  42.2k|      if (mrp->bits < 32) // if there are less than 32 bits in mrp->tmp
  ------------------
  |  Branch (505:11): [True: 5.09k, False: 37.1k]
  ------------------
  506|  5.09k|      {
  507|  5.09k|        rev_read_mrp(mrp);    // read 30-32 bits from mrp
  508|  5.09k|        if (mrp->bits < 32)   // if there is a space of 32 bits
  ------------------
  |  Branch (508:13): [True: 280, False: 4.81k]
  ------------------
  509|    280|          rev_read_mrp(mrp);  // read more
  510|  5.09k|      }
  511|  42.2k|      return (ui32)mrp->tmp;  // return the head of mrp->tmp
  512|  42.2k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL15rev_advance_mrpEPNS0_10rev_structEj:
  522|  42.2k|    {
  523|       |      assert(num_bits <= mrp->bits); // we must not consume more than mrp->bits
  524|  42.2k|      mrp->tmp >>= num_bits;  // discard the lowest num_bits bits
  525|  42.2k|      mrp->bits -= num_bits;
  526|  42.2k|      return (ui32)mrp->tmp;  // return data after consumption
  527|  42.2k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL10frwd_init8ILh255EEEvPNS0_13frwd_struct64EPKhi:
  690|  18.4k|    {
  691|  18.4k|      msp->data = data;
  692|  18.4k|      msp->tmp = 0;
  693|  18.4k|      msp->bits = 0;
  694|  18.4k|      msp->unstuff = 0;
  695|  18.4k|      msp->size = size;
  696|  18.4k|      frwd_read8<X>(msp); // read 8 bits
  697|  18.4k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL10frwd_read8ILh255EEEvPNS0_13frwd_struct64E:
  626|   207k|    {
  627|   207k|      ui8 val = X;
  628|   207k|      if (msp->size > 0) {
  ------------------
  |  Branch (628:11): [True: 102k, False: 105k]
  ------------------
  629|   102k|        val = *msp->data;  // read 8 bits
  630|   102k|        ++msp->data;      // increment pointer
  631|   102k|        --msp->size;      // reduce size
  632|   102k|      }
  633|       |
  634|       |      // unstuff and accumulate
  635|   207k|      ui8 t = msp->unstuff ? 1 : 0;
  ------------------
  |  Branch (635:15): [True: 60.6k, False: 146k]
  ------------------
  636|   207k|      val = (ui8)(val & (0xFFU >> t));
  637|   207k|      msp->unstuff = (val == 0xFF);
  638|   207k|      msp->tmp |= ((ui64)val) << msp->bits;  // move data to msp->tmp
  639|   207k|      msp->bits += 8 - t;
  640|   207k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL12frwd_fetch64ILh255EEEmPNS0_13frwd_struct64E:
  743|   245k|    {
  744|   434k|      while (msp->bits <= 56)
  ------------------
  |  Branch (744:14): [True: 188k, False: 245k]
  ------------------
  745|   188k|        frwd_read8<X>(msp);
  746|   245k|      return msp->tmp;
  747|   245k|    }    
ojph_block_decoder64.cpp:_ZN4ojph5localL9frwd_initILi0EEEvPNS0_13frwd_struct64EPKhi:
  654|  12.7k|    {
  655|  12.7k|      msp->data = data;
  656|  12.7k|      msp->tmp = 0;
  657|  12.7k|      msp->bits = 0;
  658|  12.7k|      msp->unstuff = 0;
  659|  12.7k|      msp->size = size;
  660|       |
  661|       |      //This code is designed for an architecture that read address should
  662|       |      // align to the read size (address multiple of 4 if read size is 4)
  663|       |      //These few lines take care of the case where data is not at a multiple
  664|       |      // of 4 boundary.  It reads 1,2,3 up to 4 bytes from the bitstream
  665|  12.7k|      int num = 4 - (int)(intptr_t(msp->data) & 0x3);
  666|  40.2k|      for (int i = 0; i < num; ++i)
  ------------------
  |  Branch (666:23): [True: 27.4k, False: 12.7k]
  ------------------
  667|  27.4k|      {
  668|  27.4k|        ui64 d;
  669|       |        //read a byte if the buffer is not exhausted, otherwise set it to X
  670|  27.4k|        d = msp->size-- > 0 ? *msp->data++ : X;
  ------------------
  |  Branch (670:13): [True: 25.2k, False: 2.20k]
  ------------------
  671|  27.4k|        msp->tmp |= (d << msp->bits);      // store data in msp->tmp
  672|  27.4k|        msp->bits += 8 - msp->unstuff;     // number of bits added to msp->tmp
  673|  27.4k|        msp->unstuff = ((d & 0xFF) == 0xFF); // unstuffing for next byte
  674|  27.4k|      }
  675|  12.7k|      frwd_read<X>(msp); // read 32 bits more
  676|  12.7k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL9frwd_readILi0EEEvPNS0_13frwd_struct64E:
  562|  30.2k|    {
  563|  30.2k|      assert(msp->bits <= 32); // assert that there is a space for 32 bits
  564|       |
  565|  30.2k|      ui32 val = 0;
  566|  30.2k|      if (msp->size > 3) {
  ------------------
  |  Branch (566:11): [True: 16.7k, False: 13.5k]
  ------------------
  567|  16.7k|        val = load_le_ui32(msp->data); // read 32 bits
  568|  16.7k|        msp->data += 4;           // increment pointer
  569|  16.7k|        msp->size -= 4;           // reduce size
  570|  16.7k|      }
  571|  13.5k|      else if (msp->size > 0)
  ------------------
  |  Branch (571:16): [True: 5.66k, False: 7.88k]
  ------------------
  572|  5.66k|      {
  573|  5.66k|        int i = 0;
  574|  5.66k|        val = X != 0 ? 0xFFFFFFFFu : 0;
  ------------------
  |  Branch (574:15): [Folded, False: 5.66k]
  ------------------
  575|  17.2k|        while (msp->size > 0) {   
  ------------------
  |  Branch (575:16): [True: 11.5k, False: 5.66k]
  ------------------
  576|  11.5k|          ui32 v = *msp->data++;    // read one byte at a time
  577|  11.5k|          ui32 m = ~(0xFFu << i);    // mask of location
  578|  11.5k|          val = (val & m) | (v << i);// put one byte in its correct location
  579|  11.5k|          --msp->size;
  580|  11.5k|          i += 8;          
  581|  11.5k|        }
  582|  5.66k|      }
  583|  7.88k|      else
  584|  7.88k|        val = X != 0 ? 0xFFFFFFFFu : 0;
  ------------------
  |  Branch (584:15): [Folded, False: 7.88k]
  ------------------
  585|       |
  586|       |      // we accumulate in t and keep a count of the number of bits in bits
  587|  30.2k|      ui32 bits = 8 - msp->unstuff;        
  588|  30.2k|      ui32 t = val & 0xFF;
  589|  30.2k|      bool unstuff = ((val & 0xFF) == 0xFF);  // Do we need unstuffing next?
  590|       |
  591|  30.2k|      t |= ((val >> 8) & 0xFF) << bits;
  592|  30.2k|      bits += 8 - unstuff;
  593|  30.2k|      unstuff = (((val >> 8) & 0xFF) == 0xFF);
  594|       |
  595|  30.2k|      t |= ((val >> 16) & 0xFF) << bits;
  596|  30.2k|      bits += 8 - unstuff;
  597|  30.2k|      unstuff = (((val >> 16) & 0xFF) == 0xFF);
  598|       |
  599|  30.2k|      t |= ((val >> 24) & 0xFF) << bits;
  600|  30.2k|      bits += 8 - unstuff;
  601|  30.2k|      msp->unstuff = (((val >> 24) & 0xFF) == 0xFF); // for next byte
  602|       |
  603|  30.2k|      msp->tmp |= ((ui64)t) << msp->bits;  // move data to msp->tmp
  604|  30.2k|      msp->bits += bits;
  605|  30.2k|    }
ojph_block_decoder64.cpp:_ZN4ojph5localL10frwd_fetchILi0EEEjPNS0_13frwd_struct64E:
  723|  76.4k|    {
  724|  76.4k|      if (msp->bits < 32)
  ------------------
  |  Branch (724:11): [True: 16.7k, False: 59.6k]
  ------------------
  725|  16.7k|      {
  726|  16.7k|        frwd_read<X>(msp);
  727|  16.7k|        if (msp->bits < 32) //need to test
  ------------------
  |  Branch (727:13): [True: 738, False: 16.0k]
  ------------------
  728|    738|          frwd_read<X>(msp);
  729|  16.7k|      }
  730|  76.4k|      return (ui32)msp->tmp;
  731|  76.4k|    }

_ZN4ojph5local26ojph_decode_codeblock_avx2EPhPjjjjjjjjb:
 1824|  53.3k|    {
 1825|  53.3k|      static bool insufficient_precision = false;
 1826|  53.3k|      static bool modify_code = false;
 1827|  53.3k|      static bool truncate_spp_mrp = false;
 1828|       |
 1829|  53.3k|      if (num_passes > 1 && lengths2 == 0)
  ------------------
  |  Branch (1829:11): [True: 40.6k, False: 12.6k]
  |  Branch (1829:29): [True: 7.14k, False: 33.5k]
  ------------------
 1830|  7.14k|      {
 1831|  7.14k|        OJPH_WARN(0x00010001, "A malformed codeblock that has more than "
  ------------------
  |  |  287|  7.14k|  { ojph::get_warning()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|  7.14k|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 7.14k, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1832|  7.14k|                              "one coding pass, but zero length for "
 1833|  7.14k|                              "2nd and potential 3rd pass.");
 1834|  7.14k|        num_passes = 1;
 1835|  7.14k|      }
 1836|       |
 1837|  53.3k|      if (num_passes > 3)
  ------------------
  |  Branch (1837:11): [True: 0, False: 53.3k]
  ------------------
 1838|      0|      {
 1839|      0|        OJPH_WARN(0x00010002, "We do not support more than 3 coding passes; "
  ------------------
  |  |  287|      0|  { ojph::get_warning()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1840|      0|                              "This codeblocks has %d passes.",
 1841|      0|                              num_passes);
 1842|      0|        return false;
 1843|      0|      }
 1844|       |
 1845|  53.3k|      if (missing_msbs > 30) // p < 0
  ------------------
  |  Branch (1845:11): [True: 645, False: 52.7k]
  ------------------
 1846|    645|      {
 1847|    645|        if (insufficient_precision == false)
  ------------------
  |  Branch (1847:13): [True: 1, False: 644]
  ------------------
 1848|      1|        {
 1849|      1|          insufficient_precision = true;
 1850|      1|          OJPH_WARN(0x00010003, "32 bits are not enough to decode this "
  ------------------
  |  |  287|      1|  { ojph::get_warning()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1851|      1|                                "codeblock. This message will not be "
 1852|      1|                                "displayed again.");
 1853|      1|        }
 1854|    645|        return false;
 1855|    645|      }
 1856|  52.7k|      else if (missing_msbs == 30) // p == 0
  ------------------
  |  Branch (1856:16): [True: 239, False: 52.4k]
  ------------------
 1857|    239|      { // not enough precision to decode and set the bin center to 1
 1858|    239|        if (modify_code == false) {
  ------------------
  |  Branch (1858:13): [True: 1, False: 238]
  ------------------
 1859|      1|          modify_code = true;
 1860|      1|          OJPH_WARN(0x00010004, "Not enough precision to decode the cleanup "
  ------------------
  |  |  287|      1|  { ojph::get_warning()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1861|      1|                                "pass. The code can be modified to support "
 1862|      1|                                "this case. This message will not be "
 1863|      1|                                "displayed again.");
 1864|      1|        }
 1865|    239|         return false;         // 32 bits are not enough to decode this
 1866|    239|       }
 1867|  52.4k|      else if (missing_msbs == 29) // if p is 1, then num_passes must be 1
  ------------------
  |  Branch (1867:16): [True: 947, False: 51.5k]
  ------------------
 1868|    947|      {
 1869|    947|        if (num_passes > 1) {
  ------------------
  |  Branch (1869:13): [True: 464, False: 483]
  ------------------
 1870|    464|          num_passes = 1;
 1871|    464|          if (truncate_spp_mrp == false) {
  ------------------
  |  Branch (1871:15): [True: 1, False: 463]
  ------------------
 1872|      1|            truncate_spp_mrp = true;
 1873|      1|            OJPH_WARN(0x00010005, "Not enough precision to decode the SgnProp "
  ------------------
  |  |  287|      1|  { ojph::get_warning()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      1|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1874|      1|                                  "nor MagRef passes; both will be skipped. "
 1875|      1|                                  "This message will not be displayed "
 1876|      1|                                  "again.");
 1877|      1|          }
 1878|    464|        }
 1879|    947|      }
 1880|  52.4k|      ui32 p = 30 - missing_msbs; // The least significant bitplane for CUP
 1881|       |      // There is a way to handle the case of p == 0, but a different path
 1882|       |      // is required
 1883|       |
 1884|  52.4k|      if (lengths1 < 2)
  ------------------
  |  Branch (1884:11): [True: 0, False: 52.4k]
  ------------------
 1885|      0|      {
 1886|      0|        OJPH_WARN(0x00010006, "Wrong codeblock length.");
  ------------------
  |  |  287|      0|  { ojph::get_warning()[0](t, __OJPHFILE__, __LINE__, __VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1887|      0|        return false;
 1888|      0|      }
 1889|       |
 1890|       |      // read scup and fix the bytes there
 1891|  52.4k|      int lcup, scup;
 1892|  52.4k|      lcup = (int)lengths1;  // length of CUP
 1893|       |      //scup is the length of MEL + VLC
 1894|  52.4k|      scup = (((int)coded_data[lcup-1]) << 4) + (coded_data[lcup-2] & 0xF);
 1895|  52.4k|      if (scup < 2 || scup > lcup || scup > 4079) //something is wrong
  ------------------
  |  Branch (1895:11): [True: 5.36k, False: 47.1k]
  |  Branch (1895:23): [True: 18.4k, False: 28.6k]
  |  Branch (1895:38): [True: 298, False: 28.3k]
  ------------------
 1896|  24.0k|        return false;
 1897|       |
 1898|       |      // The temporary storage scratch holds two types of data in an
 1899|       |      // interleaved fashion. The interleaving allows us to use one
 1900|       |      // memory pointer.
 1901|       |      // We have one entry for a decoded VLC code, and one entry for UVLC.
 1902|       |      // Entries are 16 bits each, corresponding to one quad,
 1903|       |      // but since we want to use XMM registers of the SSE family
 1904|       |      // of SIMD; we allocated 16 bytes or more per quad row; that is,
 1905|       |      // the width is no smaller than 16 bytes (or 8 entries), and the
 1906|       |      // height is 512 quads
 1907|       |      // Each VLC entry contains, in the following order, starting
 1908|       |      // from MSB
 1909|       |      // e_k (4bits), e_1 (4bits), rho (4bits), useless for step 2 (4bits)
 1910|       |      // Each entry in UVLC contains u_q
 1911|       |      // One extra row to handle the case of SPP propagating downwards
 1912|       |      // when codeblock width is 4
 1913|       |      // We need an extra two entries (one inf and one u_q) beyond
 1914|       |      // the last column.
 1915|       |      // If the block width is 4 (2 quads), then we use sstr of 8
 1916|       |      // (enough for 4 quads). If width is 8 (4 quads) we use
 1917|       |      // sstr is 16 (enough for 8 quads). For a width of 16 (8
 1918|       |      // quads), we use 24 (enough for 12 quads).
 1919|  28.3k|      ui32 sstr = ((width + 2u) + 7u) & ~7u; // multiples of 8
 1920|       |
 1921|       |#ifdef __MINGW64__
 1922|       |      ui16 scratch[8 * 513] = {0};
 1923|       |#else
 1924|  28.3k|      ui16 scratch[8 * 513];
 1925|  28.3k|      ui32 quad_rows = (height + 1u) >> 1;
 1926|  28.3k|      size_t scratch_zero = (size_t)(quad_rows + 1) * sstr;
 1927|  28.3k|      if (scratch_zero > 8 * 513) scratch_zero = 8 * 513;
  ------------------
  |  Branch (1927:11): [True: 0, False: 28.3k]
  ------------------
 1928|  28.3k|      memset(scratch, 0, scratch_zero * sizeof(ui16));
 1929|  28.3k|#endif
 1930|       |
 1931|  28.3k|      assert((stride & 0x3) == 0);
 1932|       |
 1933|  28.3k|      ui32 mmsbp2 = missing_msbs + 2;
 1934|       |
 1935|       |      // The cleanup pass is decoded in two steps; in step one,
 1936|       |      // the VLC and MEL segments are decoded, generating a record that
 1937|       |      // has 2 bytes per quad. The 2 bytes contain, u, rho, e^1 & e^k.
 1938|       |      // This information should be sufficient for the next step.
 1939|       |      // In step 2, we decode the MagSgn segment.
 1940|       |
 1941|       |      // step 1: decode VLC and MEL segments into scratch
 1942|  28.3k|      decode_cb_step1_vlc(scratch, coded_data, lcup, scup, width, height, sstr);
 1943|       |
 1944|       |      // step2 we decode magsgn
 1945|       |      // mmsbp2 equals K_max + 1 (we decode up to K_max bits + 1 sign bit)
 1946|       |      // The 32 bit path decode 16 bits data, for which one would think
 1947|       |      // 16 bits are enough, because we want to put in the center of the
 1948|       |      // bin.
 1949|       |      // If you have mmsbp2 equals 16 bit, and reversible coding, and
 1950|       |      // no bitplanes are missing, then we can decoding using the 16 bit
 1951|       |      // path, but we are not doing this here.
 1952|  28.3k|      if (mmsbp2 >= 16)
  ------------------
  |  Branch (1952:11): [True: 3.68k, False: 24.7k]
  ------------------
 1953|  3.68k|      {
 1954|  3.68k|        if (!decode_cb_step2_32bit(scratch, decoded_data, coded_data,
  ------------------
  |  Branch (1954:13): [True: 724, False: 2.96k]
  ------------------
 1955|  3.68k|                                   width, height, stride, sstr, p, mmsbp2,
 1956|  3.68k|                                   lcup, scup))
 1957|    724|          return false;
 1958|  3.68k|      }
 1959|  24.7k|      else {
 1960|  24.7k|        if (!decode_cb_step2_16bit(scratch, decoded_data, coded_data,
  ------------------
  |  Branch (1960:13): [True: 7.21k, False: 17.4k]
  ------------------
 1961|  24.7k|                                   width, height, stride, sstr, p, mmsbp2,
 1962|  24.7k|                                   lcup, scup))
 1963|  7.21k|          return false;
 1964|  24.7k|      }
 1965|       |
 1966|  20.4k|      if (num_passes > 1)
  ------------------
  |  Branch (1966:11): [True: 16.7k, False: 3.71k]
  ------------------
 1967|  16.7k|        decode_cb_spp_mrp(scratch, decoded_data, coded_data, width, height,
 1968|  16.7k|                          stride, sstr, p, num_passes, lengths1, lengths2,
 1969|  16.7k|                          stripe_causal);
 1970|       |
 1971|  20.4k|      return true;
 1972|  28.3k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL19decode_cb_step1_vlcEPtPhiijjj:
 1571|  28.3k|    {
 1572|       |        // init structures
 1573|  28.3k|        dec_mel_st mel;
 1574|  28.3k|        mel_init(&mel, coded_data, lcup, scup);
 1575|       |
 1576|       |        // de-stuff the VLC segment; its size is at most scup - 1 < 4095
 1577|       |        // bytes (scup is a 12-bit value), and consumption per quad pair is
 1578|       |        // at most 7 + 7 + 30 bits, so 4096 bytes always suffice
 1579|  28.3k|        const ui32 vlc_cap = 4096;
 1580|  28.3k|        ui8 vlc_buf[vlc_cap + 72];
 1581|  28.3k|        ui32 vlc_limit = destuff_vlc(coded_data, lcup, scup,
 1582|  28.3k|                                     vlc_buf, vlc_cap);
 1583|  28.3k|        ui32 vlc_off = 0;
 1584|  28.3k|        ui32 vlc_bits = 0;
 1585|       |
 1586|  28.3k|        int run = mel_get_run(&mel); // decode runs of events from MEL bitstrm
 1587|       |                                     // data represented as runs of 0 events
 1588|       |                                     // See mel_decode description
 1589|       |
 1590|  28.3k|        ui64 vlc_val = 0;
 1591|  28.3k|        ui32 c_q = 0;
 1592|  28.3k|        ui16 *sp = scratch;
 1593|       |        //initial quad row
 1594|   123k|        for (ui32 x = 0; x < width; sp += 4)
  ------------------
  |  Branch (1594:26): [True: 94.6k, False: 28.3k]
  ------------------
 1595|  94.6k|        {
 1596|       |          // decode VLC
 1597|       |          /////////////
 1598|       |
 1599|       |          // first quad
 1600|  94.6k|          drefill(vlc_val, vlc_bits, vlc_off, vlc_buf, vlc_limit);
 1601|       |
 1602|       |          //decode VLC using the context c_q and the head of VLC bitstream
 1603|  94.6k|          ui16 t0 = vlc_tbl0[ c_q + (vlc_val & 0x7F) ];
 1604|       |
 1605|       |          // if context is zero, use one MEL event
 1606|  94.6k|          if (c_q == 0) //zero context
  ------------------
  |  Branch (1606:15): [True: 60.5k, False: 34.1k]
  ------------------
 1607|  60.5k|          {
 1608|  60.5k|            run -= 2; //subtract 2, since events number if multiplied by 2
 1609|       |
 1610|       |            // Is the run terminated in 1? if so, use decoded VLC code,
 1611|       |            // otherwise, discard decoded data, since we will decoded again
 1612|       |            // using a different context
 1613|  60.5k|            t0 = (run == -1) ? t0 : 0;
  ------------------
  |  Branch (1613:18): [True: 36.9k, False: 23.5k]
  ------------------
 1614|       |
 1615|       |            // is run -1 or -2? this means a run has been consumed
 1616|  60.5k|            if (run < 0)
  ------------------
  |  Branch (1616:17): [True: 54.6k, False: 5.87k]
  ------------------
 1617|  54.6k|              run = mel_get_run(&mel);  // get another run
 1618|  60.5k|          }
 1619|       |          //run -= (c_q == 0) ? 2 : 0;
 1620|       |          //t0 = (c_q != 0 || run == -1) ? t0 : 0;
 1621|       |          //if (run < 0)
 1622|       |          //  run = mel_get_run(&mel);  // get another run
 1623|  94.6k|          sp[0] = t0;
 1624|  94.6k|          x += 2;
 1625|       |
 1626|       |          // prepare context for the next quad; eqn. 1 in ITU T.814
 1627|  94.6k|          c_q = ((t0 & 0x10U) << 3) | ((t0 & 0xE0U) << 2);
 1628|       |
 1629|       |          //remove data from vlc stream (0 bits are removed if vlc is not used)
 1630|  94.6k|          dconsume(vlc_val, vlc_bits, t0 & 0x7u);
 1631|       |
 1632|       |          //second quad
 1633|  94.6k|          ui16 t1 = 0;
 1634|       |
 1635|       |          //decode VLC using the context c_q and the head of VLC bitstream
 1636|  94.6k|          t1 = vlc_tbl0[c_q + (vlc_val & 0x7F)];
 1637|       |
 1638|       |          // if context is zero, use one MEL event
 1639|  94.6k|          if (c_q == 0 && x < width) //zero context
  ------------------
  |  Branch (1639:15): [True: 33.4k, False: 61.2k]
  |  Branch (1639:27): [True: 29.8k, False: 3.64k]
  ------------------
 1640|  29.8k|          {
 1641|  29.8k|            run -= 2; //subtract 2, since events number if multiplied by 2
 1642|       |
 1643|       |            // if event is 0, discard decoded t1
 1644|  29.8k|            t1 = (run == -1) ? t1 : 0;
  ------------------
  |  Branch (1644:18): [True: 10.7k, False: 19.0k]
  ------------------
 1645|       |
 1646|  29.8k|            if (run < 0) // have we consumed all events in a run
  ------------------
  |  Branch (1646:17): [True: 18.4k, False: 11.3k]
  ------------------
 1647|  18.4k|              run = mel_get_run(&mel); // if yes, then get another run
 1648|  29.8k|          }
 1649|  94.6k|          t1 = x < width ? t1 : 0;
  ------------------
  |  Branch (1649:16): [True: 78.2k, False: 16.4k]
  ------------------
 1650|       |          //run -= (c_q == 0 && x < width) ? 2 : 0;
 1651|       |          //t1 = (c_q != 0 || run == -1) ? t1 : 0;
 1652|       |          //if (run < 0)
 1653|       |          //  run = mel_get_run(&mel);  // get another run
 1654|  94.6k|          sp[2] = t1;
 1655|  94.6k|          x += 2;
 1656|       |
 1657|       |          //prepare context for the next quad, eqn. 1 in ITU T.814
 1658|  94.6k|          c_q = ((t1 & 0x10U) << 3) | ((t1 & 0xE0U) << 2);
 1659|       |
 1660|       |          //remove data from vlc stream, if qinf is not used, cwdlen is 0
 1661|  94.6k|          dconsume(vlc_val, vlc_bits, t1 & 0x7u);
 1662|       |
 1663|       |          // decode u
 1664|       |          /////////////
 1665|       |          // uvlc_mode is made up of u_offset bits from the quad pair
 1666|  94.6k|          ui32 uvlc_mode = ((t0 & 0x8U) << 3) | ((t1 & 0x8U) << 4);
 1667|  94.6k|          if (uvlc_mode == 0xc0)// if both u_offset are set, get an event from
  ------------------
  |  Branch (1667:15): [True: 19.9k, False: 74.7k]
  ------------------
 1668|  19.9k|          {                     // the MEL run of events
 1669|  19.9k|            run -= 2; //subtract 2, since events number if multiplied by 2
 1670|       |
 1671|  19.9k|            uvlc_mode += (run == -1) ? 0x40 : 0; // increment uvlc_mode by
  ------------------
  |  Branch (1671:26): [True: 10.2k, False: 9.67k]
  ------------------
 1672|       |                                                 // is 0x40
 1673|       |
 1674|  19.9k|            if (run < 0)//if run is consumed (run is -1 or -2), get another run
  ------------------
  |  Branch (1674:17): [True: 17.1k, False: 2.75k]
  ------------------
 1675|  17.1k|              run = mel_get_run(&mel);
 1676|  19.9k|          }
 1677|       |          //run -= (uvlc_mode == 0xc0) ? 2 : 0;
 1678|       |          //uvlc_mode += (uvlc_mode == 0xc0 && run == -1) ? 0x40 : 0;
 1679|       |          //if (run < 0)
 1680|       |          //  run = mel_get_run(&mel);  // get another run
 1681|       |
 1682|       |          //decode uvlc_mode to get u for both quads
 1683|  94.6k|          ui32 uvlc_entry = uvlc_tbl0[uvlc_mode + (vlc_val & 0x3F)];
 1684|       |          //remove total prefix length
 1685|  94.6k|          dconsume(vlc_val, vlc_bits, uvlc_entry & 0x7u);
 1686|  94.6k|          uvlc_entry >>= 3;
 1687|       |          //extract suffixes for quad 0 and 1
 1688|  94.6k|          ui32 len = uvlc_entry & 0xF;           //suffix length for 2 quads
 1689|  94.6k|          ui32 tmp = (ui32)vlc_val & ((1u << len) - 1); //suffix value, 2 quads
 1690|  94.6k|          dconsume(vlc_val, vlc_bits, len);
 1691|  94.6k|          uvlc_entry >>= 4;
 1692|       |          // quad 0 length
 1693|  94.6k|          len = uvlc_entry & 0x7; // quad 0 suffix length
 1694|  94.6k|          uvlc_entry >>= 3;
 1695|  94.6k|          ui16 u_q = (ui16)(1 + (uvlc_entry&7) + (tmp&~(0xFFU<<len))); //kap. 1
 1696|  94.6k|          sp[1] = u_q;
 1697|  94.6k|          u_q = (ui16)(1 + (uvlc_entry >> 3) + (tmp >> len));  //kappa == 1
 1698|  94.6k|          sp[3] = u_q;
 1699|  94.6k|        }
 1700|  28.3k|        sp[0] = sp[1] = 0;
 1701|       |
 1702|       |        //non initial quad rows
 1703|   255k|        for (ui32 y = 2; y < height; y += 2)
  ------------------
  |  Branch (1703:26): [True: 227k, False: 28.3k]
  ------------------
 1704|   227k|        {
 1705|   227k|          c_q = 0;                                // context
 1706|   227k|          ui16 *sp = scratch + (y >> 1) * sstr;   // this row of quads
 1707|       |
 1708|   643k|          for (ui32 x = 0; x < width; sp += 4)
  ------------------
  |  Branch (1708:28): [True: 415k, False: 227k]
  ------------------
 1709|   415k|          {
 1710|       |            // decode VLC
 1711|       |            /////////////
 1712|       |
 1713|       |            // sigma_q (n, ne, nf)
 1714|   415k|            c_q |= ((sp[0 - (si32)sstr] & 0xA0U) << 2);
 1715|   415k|            c_q |= ((sp[2 - (si32)sstr] & 0x20U) << 4);
 1716|       |
 1717|       |            // first quad
 1718|   415k|            drefill(vlc_val, vlc_bits, vlc_off, vlc_buf, vlc_limit);
 1719|       |
 1720|       |            //decode VLC using the context c_q and the head of VLC bitstream
 1721|   415k|            ui16 t0 = vlc_tbl1[ c_q + (vlc_val & 0x7F) ];
 1722|       |
 1723|       |            // if context is zero, use one MEL event
 1724|   415k|            if (c_q == 0) //zero context
  ------------------
  |  Branch (1724:17): [True: 353k, False: 62.4k]
  ------------------
 1725|   353k|            {
 1726|   353k|              run -= 2; //subtract 2, since events number is multiplied by 2
 1727|       |
 1728|       |              // Is the run terminated in 1? if so, use decoded VLC code,
 1729|       |              // otherwise, discard decoded data, since we will decoded again
 1730|       |              // using a different context
 1731|   353k|              t0 = (run == -1) ? t0 : 0;
  ------------------
  |  Branch (1731:20): [True: 117k, False: 235k]
  ------------------
 1732|       |
 1733|       |              // is run -1 or -2? this means a run has been consumed
 1734|   353k|              if (run < 0)
  ------------------
  |  Branch (1734:19): [True: 206k, False: 146k]
  ------------------
 1735|   206k|                run = mel_get_run(&mel);  // get another run
 1736|   353k|            }
 1737|       |            //run -= (c_q == 0) ? 2 : 0;
 1738|       |            //t0 = (c_q != 0 || run == -1) ? t0 : 0;
 1739|       |            //if (run < 0)
 1740|       |            //  run = mel_get_run(&mel);  // get another run
 1741|   415k|            sp[0] = t0;
 1742|   415k|            x += 2;
 1743|       |
 1744|       |            // prepare context for the next quad; eqn. 2 in ITU T.814
 1745|       |            // sigma_q (w, sw)
 1746|   415k|            c_q = ((t0 & 0x40U) << 2) | ((t0 & 0x80U) << 1);
 1747|       |            // sigma_q (nw)
 1748|   415k|            c_q |= sp[0 - (si32)sstr] & 0x80;
 1749|       |            // sigma_q (n, ne, nf)
 1750|   415k|            c_q |= ((sp[2 - (si32)sstr] & 0xA0U) << 2);
 1751|   415k|            c_q |= ((sp[4 - (si32)sstr] & 0x20U) << 4);
 1752|       |
 1753|       |            //remove data from vlc stream (0 bits are removed if vlc is unused)
 1754|   415k|            dconsume(vlc_val, vlc_bits, t0 & 0x7u);
 1755|       |
 1756|       |            //second quad
 1757|   415k|            ui16 t1 = 0;
 1758|       |
 1759|       |            //decode VLC using the context c_q and the head of VLC bitstream
 1760|   415k|            t1 = vlc_tbl1[ c_q + (vlc_val & 0x7F)];
 1761|       |
 1762|       |            // if context is zero, use one MEL event
 1763|   415k|            if (c_q == 0 && x < width) //zero context
  ------------------
  |  Branch (1763:17): [True: 348k, False: 66.8k]
  |  Branch (1763:29): [True: 239k, False: 109k]
  ------------------
 1764|   239k|            {
 1765|   239k|              run -= 2; //subtract 2, since events number if multiplied by 2
 1766|       |
 1767|       |              // if event is 0, discard decoded t1
 1768|   239k|              t1 = (run == -1) ? t1 : 0;
  ------------------
  |  Branch (1768:20): [True: 69.1k, False: 169k]
  ------------------
 1769|       |
 1770|   239k|              if (run < 0) // have we consumed all events in a run
  ------------------
  |  Branch (1770:19): [True: 116k, False: 122k]
  ------------------
 1771|   116k|                run = mel_get_run(&mel); // if yes, then get another run
 1772|   239k|            }
 1773|   415k|            t1 = x < width ? t1 : 0;
  ------------------
  |  Branch (1773:18): [True: 288k, False: 127k]
  ------------------
 1774|       |            //run -= (c_q == 0 && x < width) ? 2 : 0;
 1775|       |            //t1 = (c_q != 0 || run == -1) ? t1 : 0;
 1776|       |            //if (run < 0)
 1777|       |            //  run = mel_get_run(&mel);  // get another run
 1778|   415k|            sp[2] = t1;
 1779|   415k|            x += 2;
 1780|       |
 1781|       |            // partial c_q, will be completed when we process the next quad
 1782|       |            // sigma_q (w, sw)
 1783|   415k|            c_q = ((t1 & 0x40U) << 2) | ((t1 & 0x80U) << 1);
 1784|       |            // sigma_q (nw)
 1785|   415k|            c_q |= sp[2 - (si32)sstr] & 0x80;
 1786|       |
 1787|       |            //remove data from vlc stream, if qinf is not used, cwdlen is 0
 1788|   415k|            dconsume(vlc_val, vlc_bits, t1 & 0x7u);
 1789|       |
 1790|       |            // decode u using wide UVLC table
 1791|       |            /////////////
 1792|   415k|            ui32 uvlc_mode = (((t0 >> 3) & 1u) | (((t1 >> 3) & 1u) << 1));
 1793|   415k|            ui32 uvlc_entry =
 1794|   415k|              uvlc_tbl1_wide[(uvlc_mode << 10) | (vlc_val & 0x3FF)];
 1795|   415k|            ui32 total_bits = uvlc_entry & 0x1F;
 1796|   415k|            if (total_bits < 0x1F) {
  ------------------
  |  Branch (1796:17): [True: 414k, False: 780]
  ------------------
 1797|   414k|              sp[1] = (ui16)((uvlc_entry >> 5) & 0xFF);
 1798|   414k|              sp[3] = (ui16)((uvlc_entry >> 13) & 0xFF);
 1799|   414k|              dconsume(vlc_val, vlc_bits, total_bits);
 1800|   414k|            } else {
 1801|    780|              uvlc_mode = ((t0 & 0x8U) << 3) | ((t1 & 0x8U) << 4);
 1802|    780|              uvlc_entry = uvlc_tbl1[uvlc_mode + (vlc_val & 0x3F)];
 1803|    780|              dconsume(vlc_val, vlc_bits, uvlc_entry & 0x7u);
 1804|    780|              uvlc_entry >>= 3;
 1805|    780|              ui32 len = uvlc_entry & 0xF;
 1806|    780|              ui32 tmp = (ui32)vlc_val & ((1u << len) - 1);
 1807|    780|              dconsume(vlc_val, vlc_bits, len);
 1808|    780|              uvlc_entry >>= 4;
 1809|    780|              len = uvlc_entry & 0x7;
 1810|    780|              uvlc_entry >>= 3;
 1811|    780|              sp[1] = (ui16)((uvlc_entry & 7) + (tmp & ~(0xFFU << len)));
 1812|    780|              sp[3] = (ui16)((uvlc_entry >> 3) + (tmp >> len));
 1813|    780|            }
 1814|   415k|          }
 1815|   227k|          sp[0] = sp[1] = 0;
 1816|   227k|        }
 1817|  28.3k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL8mel_initEPNS0_10dec_mel_stEPhii:
  226|  28.3k|    {
  227|  28.3k|      melp->data = bbuf + lcup - scup; // move the pointer to the start of MEL
  228|  28.3k|      melp->bits = 0;                  // 0 bits in tmp
  229|  28.3k|      melp->tmp = 0;                   //
  230|  28.3k|      melp->unstuff = false;           // no unstuffing
  231|  28.3k|      melp->size = scup - 1;           // size is the length of MEL+VLC-1
  232|  28.3k|      melp->k = 0;                     // 0 for state
  233|  28.3k|      melp->num_runs = 0;              // num_runs is 0
  234|  28.3k|      melp->runs = 0;                  //
  235|       |
  236|       |      //This code is borrowed; original is for a different architecture
  237|       |      //These few lines take care of the case where data is not at a multiple
  238|       |      // of 4 boundary.  It reads 1,2,3 up to 4 bytes from the MEL segment
  239|  28.3k|      int num = 4 - (int)(intptr_t(melp->data) & 0x3);
  240|   101k|      for (int i = 0; i < num; ++i) { // this code is similar to mel_read
  ------------------
  |  Branch (240:23): [True: 72.7k, False: 28.3k]
  ------------------
  241|  72.7k|        assert(melp->unstuff == false || melp->data[0] <= 0x8F);
  242|  72.7k|        ui64 d = (melp->size > 0) ? *melp->data : 0xFF;//if buffer is consumed
  ------------------
  |  Branch (242:18): [True: 63.8k, False: 8.93k]
  ------------------
  243|       |                                                       //set data to 0xFF
  244|  72.7k|        if (melp->size == 1) d |= 0xF; //if this is MEL+VLC-1, set LSBs to 0xF
  ------------------
  |  Branch (244:13): [True: 10.0k, False: 62.6k]
  ------------------
  245|       |                                       // see the standard
  246|  72.7k|        melp->data += melp->size-- > 0; //increment if the end is not reached
  247|  72.7k|        int d_bits = 8 - melp->unstuff; //if unstuffing is needed, reduce by 1
  248|  72.7k|        melp->tmp = (melp->tmp << d_bits) | d; //store bits in tmp
  249|  72.7k|        melp->bits += d_bits;  //increment tmp by number of bits
  250|  72.7k|        melp->unstuff = ((d & 0xFF) == 0xFF); //true of next byte needs
  251|       |                                              //unstuffing
  252|  72.7k|      }
  253|  28.3k|      melp->tmp <<= (64 - melp->bits); //push all the way up so the first bit
  254|       |                                       // is the MSB
  255|  28.3k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL11destuff_vlcEPKhiiPhj:
  588|  28.3k|    {
  589|  28.3k|      const ui8* p = data + lcup - 2;
  590|  28.3k|      ui32 d = *p; // first byte, only the upper 4 bits are used
  591|  28.3k|      ui64 acc = d >> 4;
  592|  28.3k|      ui32 nb = 4 - ((acc & 7) == 7); // check standard
  593|  28.3k|      bool unstuff = (d | 0xF) > 0x8F;
  594|  28.3k|      return destuff_rev(p - 1, scup - 2, unstuff, acc, nb, dst, cap);
  595|  28.3k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL11destuff_revEPKhibmjPhj:
  488|  38.8k|    {
  489|  38.8k|      ui8* o = dst;
  490|  38.8k|      ui8* o_end = dst + cap;
  491|       |
  492|       |      // process the first byte with the caller-provided unstuff state;
  493|       |      // afterwards the state is implied by the byte at p[1], which the
  494|       |      // fast path checks vectorially (and which stays inside the segment)
  495|  38.8k|      if (size > 0 && o < o_end)
  ------------------
  |  Branch (495:11): [True: 34.0k, False: 4.80k]
  |  Branch (495:23): [True: 34.0k, False: 0]
  ------------------
  496|  34.0k|      {
  497|  34.0k|        ui32 d = *p--;
  498|  34.0k|        --size;
  499|  34.0k|        acc |= (ui64)d << nb;
  500|  34.0k|        nb += 8 - ((unstuff && ((d & 0x7F) == 0x7F)) ? 1u : 0u);
  ------------------
  |  Branch (500:21): [True: 21.3k, False: 12.7k]
  |  Branch (500:32): [True: 2.35k, False: 18.9k]
  ------------------
  501|  34.0k|        unstuff = d > 0x8F;
  502|  34.0k|        if (nb >= 8) { *o++ = (ui8)acc; acc >>= 8; nb -= 8; }
  ------------------
  |  Branch (502:13): [True: 32.5k, False: 1.50k]
  ------------------
  503|  34.0k|      }
  504|       |
  505|       |      // fast path; 16 source bytes at a time when none needs unstuffing
  506|   131k|      while (size >= 16 && o + 24 <= o_end)
  ------------------
  |  Branch (506:14): [True: 92.6k, False: 38.6k]
  |  Branch (506:28): [True: 92.4k, False: 219]
  ------------------
  507|  92.4k|      {
  508|  92.4k|        __m128i v = _mm_loadu_si128((const __m128i*)(p - 15));
  509|  92.4k|        __m128i nx = _mm_loadu_si128((const __m128i*)(p - 14));
  510|  92.4k|        __m128i is7f = _mm_cmpeq_epi8(
  511|  92.4k|            _mm_and_si128(v, _mm_set1_epi8(0x7F)), _mm_set1_epi8(0x7F));
  512|       |        // le8f is 0xFF where the byte after (in memory) is <= 0x8F
  513|  92.4k|        __m128i le8f = _mm_cmpeq_epi8(
  514|  92.4k|            _mm_subs_epu8(nx, _mm_set1_epi8((char)0x8F)),
  515|  92.4k|            _mm_setzero_si128());
  516|  92.4k|        __m128i stuff = _mm_andnot_si128(le8f, is7f);
  517|  92.4k|        if (!_mm_testz_si128(stuff, stuff))
  ------------------
  |  Branch (517:13): [True: 48.0k, False: 44.3k]
  ------------------
  518|  48.0k|        { // process these 16 bytes one at a time
  519|   817k|          for (int i = 0; i < 16; ++i) {
  ------------------
  |  Branch (519:27): [True: 769k, False: 48.0k]
  ------------------
  520|   769k|            ui32 d = *p--;
  521|   769k|            acc |= (ui64)d << nb;
  522|   769k|            nb += 8 - ((unstuff && ((d & 0x7F) == 0x7F)) ? 1u : 0u);
  ------------------
  |  Branch (522:25): [True: 345k, False: 423k]
  |  Branch (522:36): [True: 244k, False: 101k]
  ------------------
  523|   769k|            unstuff = d > 0x8F;
  524|   769k|            if (nb >= 8) { *o++ = (ui8)acc; acc >>= 8; nb -= 8; }
  ------------------
  |  Branch (524:17): [True: 735k, False: 33.3k]
  ------------------
  525|   769k|          }
  526|  48.0k|          size -= 16;
  527|  48.0k|          continue;
  528|  48.0k|        }
  529|  44.3k|        __m128i r = _mm_shuffle_epi8(v,
  530|  44.3k|            _mm_set_epi8(0, 1, 2, 3, 4, 5, 6, 7,
  531|  44.3k|                         8, 9, 10, 11, 12, 13, 14, 15)); // reverse bytes
  532|  44.3k|#ifdef OJPH_ARCH_X86_64
  533|  44.3k|        ui64 v0 = (ui64)_mm_cvtsi128_si64(r);
  534|  44.3k|        ui64 v1 = (ui64)_mm_extract_epi64(r, 1);
  535|       |#else // 32-bit x86 lacks the 64-bit extract intrinsics
  536|       |        ui64 v0 = (ui32)_mm_cvtsi128_si32(r)
  537|       |                | ((ui64)(ui32)_mm_extract_epi32(r, 1) << 32);
  538|       |        ui64 v1 = (ui32)_mm_extract_epi32(r, 2)
  539|       |                | ((ui64)(ui32)_mm_extract_epi32(r, 3) << 32);
  540|       |#endif
  541|  44.3k|        ui64 w0 = acc | (v0 << nb);
  542|  44.3k|        ui64 w1 = (v1 << nb) | (nb ? (v0 >> (64 - nb)) : 0);
  ------------------
  |  Branch (542:33): [True: 38.6k, False: 5.68k]
  ------------------
  543|  44.3k|        memcpy(o, &w0, 8);
  544|  44.3k|        memcpy(o + 8, &w1, 8);
  545|  44.3k|        acc = nb ? (v1 >> (64 - nb)) : 0;
  ------------------
  |  Branch (545:15): [True: 38.6k, False: 5.68k]
  ------------------
  546|  44.3k|        o += 16;
  547|  44.3k|        p -= 16;
  548|  44.3k|        size -= 16;
  549|  44.3k|        unstuff = p[1] > 0x8F;
  550|  44.3k|      }
  551|       |      // tail; one byte at a time
  552|   230k|      while (size > 0 && o < o_end)
  ------------------
  |  Branch (552:14): [True: 191k, False: 38.6k]
  |  Branch (552:26): [True: 191k, False: 219]
  ------------------
  553|   191k|      {
  554|   191k|        ui32 d = *p--;
  555|   191k|        --size;
  556|   191k|        acc |= (ui64)d << nb;
  557|   191k|        nb += 8 - ((unstuff && ((d & 0x7F) == 0x7F)) ? 1u : 0u);
  ------------------
  |  Branch (557:21): [True: 55.8k, False: 135k]
  |  Branch (557:32): [True: 16.7k, False: 39.1k]
  ------------------
  558|   191k|        unstuff = d > 0x8F;
  559|   191k|        if (nb >= 8) { *o++ = (ui8)acc; acc >>= 8; nb -= 8; }
  ------------------
  |  Branch (559:13): [True: 189k, False: 2.06k]
  ------------------
  560|   191k|      }
  561|       |      // the bits above nb are already 0 = fill; pad with zero bytes
  562|  38.8k|      *o = (ui8)acc;
  563|  38.8k|      __m256i z = _mm256_setzero_si256();
  564|  38.8k|      _mm256_storeu_si256((__m256i*)(o + 1), z);
  565|  38.8k|      _mm256_storeu_si256((__m256i*)(o + 33), z);
  566|  38.8k|      return (ui32)(o - dst) + 1;
  567|  38.8k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL11mel_get_runEPNS0_10dec_mel_stE:
  265|   441k|    {
  266|   441k|      if (melp->num_runs == 0)  //if no runs, decode more bit from MEL segment
  ------------------
  |  Branch (266:11): [True: 80.0k, False: 361k]
  ------------------
  267|  80.0k|        mel_decode(melp);
  268|       |
  269|   441k|      int t = melp->runs & 0x7F; //retrieve one run
  270|   441k|      melp->runs >>= 7;  // remove the retrieved run
  271|   441k|      melp->num_runs--;
  272|   441k|      return t; // return run
  273|   441k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL10mel_decodeEPNS0_10dec_mel_stE:
  175|  80.0k|    {
  176|  80.0k|      static const int mel_exp[13] = { //MEL exponents
  177|  80.0k|        0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 4, 5
  178|  80.0k|      };
  179|       |
  180|  80.0k|      if (melp->bits < 6) // if there are less than 6 bits in tmp
  ------------------
  |  Branch (180:11): [True: 15.6k, False: 64.3k]
  ------------------
  181|  15.6k|        mel_read(melp);   // then read from the MEL bitstream
  182|       |                          // 6 bits is the largest decodable MEL cwd
  183|       |
  184|       |      //repeat so long that there is enough decodable bits in tmp,
  185|       |      // and the runs store is not full (num_runs < 8)
  186|   638k|      while (melp->bits >= 6 && melp->num_runs < 8)
  ------------------
  |  Branch (186:14): [True: 619k, False: 19.7k]
  |  Branch (186:33): [True: 558k, False: 60.3k]
  ------------------
  187|   558k|      {
  188|   558k|        int eval = mel_exp[melp->k]; // number of bits associated with state
  189|   558k|        int run = 0;
  190|   558k|        if (melp->tmp & (1ull<<63)) //The next bit to decode (stored in MSB)
  ------------------
  |  Branch (190:13): [True: 255k, False: 303k]
  ------------------
  191|   255k|        { //one is found
  192|   255k|          run = 1 << eval;
  193|   255k|          run--; // consecutive runs of 0 events - 1
  194|   255k|          melp->k = melp->k + 1 < 12 ? melp->k + 1 : 12;//increment, max is 12
  ------------------
  |  Branch (194:21): [True: 233k, False: 22.0k]
  ------------------
  195|   255k|          melp->tmp <<= 1; // consume one bit from tmp
  196|   255k|          melp->bits -= 1;
  197|   255k|          run = run << 1; // a stretch of zeros not terminating in one
  198|   255k|        }
  199|   303k|        else
  200|   303k|        { //0 is found
  201|   303k|          run = (int)(melp->tmp >> (63 - eval)) & ((1 << eval) - 1);
  202|   303k|          melp->k = melp->k - 1 > 0 ? melp->k - 1 : 0; //decrement, min is 0
  ------------------
  |  Branch (202:21): [True: 59.0k, False: 244k]
  ------------------
  203|   303k|          melp->tmp <<= eval + 1; //consume eval + 1 bits (max is 6)
  204|   303k|          melp->bits -= eval + 1;
  205|   303k|          run = (run << 1) + 1; // a stretch of zeros terminating with one
  206|   303k|        }
  207|   558k|        eval = melp->num_runs * 7;           // 7 bits per run
  208|   558k|        melp->runs &= ~((ui64)0x3F << eval); // 6 bits are sufficient
  209|   558k|        melp->runs |= ((ui64)run) << eval;   // store the value in runs
  210|   558k|        melp->num_runs++;                    // increment count
  211|   558k|      }
  212|  80.0k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL8mel_readEPNS0_10dec_mel_stE:
   98|  15.6k|    {
   99|  15.6k|      if (melp->bits > 32)  //there are enough bits in the tmp variable
  ------------------
  |  Branch (99:11): [True: 0, False: 15.6k]
  ------------------
  100|      0|        return;             // return without reading new data
  101|       |
  102|  15.6k|      ui32 val = 0xFFFFFFFF;       // feed in 0xFF if buffer is exhausted
  103|  15.6k|      if (melp->size > 4) {        // if there is data in the MEL segment
  ------------------
  |  Branch (103:11): [True: 5.39k, False: 10.2k]
  ------------------
  104|  5.39k|        memcpy(&val, melp->data, 4);  // read 32 bits from MEL data
  105|  5.39k|        melp->data += 4;           // advance pointer
  106|  5.39k|        melp->size -= 4;           // reduce counter
  107|  5.39k|      }
  108|  10.2k|      else if (melp->size > 0)
  ------------------
  |  Branch (108:16): [True: 7.34k, False: 2.90k]
  ------------------
  109|  7.34k|      { // 4 or less
  110|  7.34k|        int i = 0;
  111|  14.2k|        while (melp->size > 1) {
  ------------------
  |  Branch (111:16): [True: 6.90k, False: 7.34k]
  ------------------
  112|  6.90k|          ui32 v = *melp->data++;    // read one byte at a time
  113|  6.90k|          ui32 m = ~(0xFFu << i);    // mask of location
  114|  6.90k|          val = (val & m) | (v << i);// put one byte in its correct location
  115|  6.90k|          --melp->size;
  116|  6.90k|          i += 8;
  117|  6.90k|        }
  118|       |        // size equal to 1
  119|  7.34k|        ui32 v = *melp->data++;    // the one before the last is different
  120|  7.34k|        v |= 0xF;                  // MEL and VLC segments can overlap
  121|  7.34k|        ui32 m = ~(0xFFu << i);
  122|  7.34k|        val = (val & m) | (v << i);
  123|  7.34k|        --melp->size;
  124|  7.34k|      }
  125|       |
  126|       |      // next we unstuff them before adding them to the buffer
  127|  15.6k|      int bits = 32 - melp->unstuff; // number of bits in val, subtract 1 if
  128|       |                                     // the previously read byte requires
  129|       |                                     // unstuffing
  130|       |
  131|       |      // data is unstuffed and accumulated in t
  132|       |      // bits has the number of bits in t
  133|  15.6k|      ui32 t = val & 0xFF;
  134|  15.6k|      bool unstuff = ((val & 0xFF) == 0xFF); // true if we need unstuffing
  135|  15.6k|      bits -= unstuff; // there is one less bit in t if unstuffing is needed
  136|  15.6k|      t = t << (8 - unstuff); // move up to make room for the next byte
  137|       |
  138|       |      //this is a repeat of the above
  139|  15.6k|      t |= (val>>8) & 0xFF;
  140|  15.6k|      unstuff = (((val >> 8) & 0xFF) == 0xFF);
  141|  15.6k|      bits -= unstuff;
  142|  15.6k|      t = t << (8 - unstuff);
  143|       |
  144|  15.6k|      t |= (val>>16) & 0xFF;
  145|  15.6k|      unstuff = (((val >> 16) & 0xFF) == 0xFF);
  146|  15.6k|      bits -= unstuff;
  147|  15.6k|      t = t << (8 - unstuff);
  148|       |
  149|  15.6k|      t |= (val>>24) & 0xFF;
  150|  15.6k|      melp->unstuff = (((val >> 24) & 0xFF) == 0xFF);
  151|       |
  152|       |      // move t to tmp, and push the result all the way up, so we read from
  153|       |      // the MSB
  154|  15.6k|      melp->tmp |= ((ui64)t) << (64 - bits - melp->bits);
  155|  15.6k|      melp->bits += bits; //increment the number of bits in tmp
  156|  15.6k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL7drefillERmRjS2_PKhj:
  432|   510k|    {
  433|   510k|      ui64 v;
  434|   510k|      ui32 o = off < limit ? off : limit;
  ------------------
  |  Branch (434:16): [True: 101k, False: 408k]
  ------------------
  435|   510k|      memcpy(&v, dbuf + o, 8);
  436|   510k|      val |= v << bits;
  437|   510k|      off += (63 - bits) >> 3;
  438|   510k|      bits |= 56;
  439|   510k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL8dconsumeERmRjj:
  450|  1.62M|    {
  451|  1.62M|      val >>= num_bits;
  452|  1.62M|      bits -= num_bits;
  453|  1.62M|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL21decode_cb_step2_32bitEPtPjPhjjjjjjii:
 1045|  3.68k|    {
 1046|  3.68k|        const int v_n_size = 512 + 16;
 1047|       |#ifdef __MINGW64__
 1048|       |        ui32 v_n_scratch[2 * v_n_size] = {0};
 1049|       |#else
 1050|  3.68k|        ui32 v_n_scratch[2 * v_n_size];
 1051|  3.68k|        memset(v_n_scratch + (width >> 1) + 2, 0, 14 * sizeof(ui32));
 1052|  3.68k|#endif
 1053|       |
 1054|       |        // maximum consumable MagSgn bits: 4096 samples x (mmsbp2 <= 32) bits
 1055|  3.68k|        const ui32 dbuf_cap = 4096 * 32 / 8;
 1056|  3.68k|        ui8 dbuf[dbuf_cap + 72];
 1057|  3.68k|        ui32 limit = destuff_frwd<0xFF>(coded_data, lcup - scup, dbuf, dbuf_cap);
 1058|  3.68k|        ui32 pos = 0;
 1059|       |
 1060|  3.68k|        const __m256i avx_mmsbp2 = _mm256_set1_epi32((int)mmsbp2);
 1061|       |
 1062|  3.68k|        {
 1063|  3.68k|          ui16 *sp = scratch;
 1064|  3.68k|          ui32 *vp = v_n_scratch;
 1065|  3.68k|          ui32 *dp = decoded_data;
 1066|  3.68k|          vp[0] = 2; // for easy calculation of emax
 1067|       |
 1068|  19.2k|          for (ui32 x = 0; x < width; x += 4, sp += 4, vp += 2, dp += 4)
  ------------------
  |  Branch (1068:28): [True: 15.9k, False: 3.28k]
  ------------------
 1069|  15.9k|          {
 1070|  15.9k|            __m128i vn = _mm_set1_epi32(2);
 1071|       |
 1072|  15.9k|            __m256i inf_u_q = _mm256_castsi128_si256(_mm_loadl_epi64((__m128i*)sp));
 1073|  15.9k|            inf_u_q = _mm256_permutevar8x32_epi32(inf_u_q, _mm256_setr_epi32(0, 0, 0, 0, 1, 1, 1, 1));
 1074|       |
 1075|  15.9k|            __m256i U_q = _mm256_srli_epi32(inf_u_q, 16);
 1076|  15.9k|            __m256i w = _mm256_cmpgt_epi32(U_q, avx_mmsbp2);
 1077|  15.9k|            if (!_mm256_testz_si256(w, w)) {
  ------------------
  |  Branch (1077:17): [True: 402, False: 15.5k]
  ------------------
 1078|    402|                return false;
 1079|    402|            }
 1080|       |
 1081|  15.5k|            __m256i row = decode_two_quad32_avx2(inf_u_q, U_q, dbuf, limit, pos, p, vn);
 1082|  15.5k|            row = _mm256_permutevar8x32_epi32(row, _mm256_setr_epi32(0, 2, 4, 6, 1, 3, 5, 7));
 1083|  15.5k|            _mm_store_si128((__m128i*)dp, _mm256_castsi256_si128(row));
 1084|  15.5k|            _mm_store_si128((__m128i*)(dp + stride), _mm256_extracti128_si256(row, 0x1));
 1085|       |
 1086|  15.5k|            __m128i w0 = _mm_cvtsi32_si128(*(int const*)vp);
 1087|  15.5k|            w0 = _mm_or_si128(w0, vn);
 1088|  15.5k|            _mm_storeu_si128((__m128i*)vp, w0);
 1089|  15.5k|          }
 1090|  3.68k|        }
 1091|       |
 1092|  23.6k|        for (ui32 y = 2; y < height; y += 2)
  ------------------
  |  Branch (1092:26): [True: 20.6k, False: 2.96k]
  ------------------
 1093|  20.6k|        {
 1094|  20.6k|          {
 1095|       |            // perform 31 - count_leading_zeros(*vp) here
 1096|  20.6k|            ui32 *vp = v_n_scratch;
 1097|  20.6k|            ui16* sp = scratch + (y >> 1) * sstr;
 1098|       |
 1099|  20.6k|            const __m256i avx_31 = _mm256_set1_epi32(31);
 1100|  20.6k|            const __m256i avx_f0 = _mm256_set1_epi32(0xF0);
 1101|  20.6k|            const __m256i avx_1 = _mm256_set1_epi32(1);
 1102|  20.6k|            const __m256i avx_0 = _mm256_setzero_si256();
 1103|       |
 1104|  43.4k|            for (ui32 x = 0; x <= width; x += 16, vp += 8, sp += 16) {
  ------------------
  |  Branch (1104:30): [True: 23.1k, False: 20.3k]
  ------------------
 1105|  23.1k|              __m256i v = _mm256_loadu_si256((__m256i*)vp);
 1106|  23.1k|              __m256i v_p1 = _mm256_loadu_si256((__m256i*)(vp + 1));
 1107|  23.1k|              v = _mm256_or_si256(v, v_p1);
 1108|  23.1k|              v = avx2_lzcnt_epi32(v);
 1109|  23.1k|              v = _mm256_sub_epi32(avx_31, v);
 1110|       |
 1111|  23.1k|              __m256i inf_u_q = _mm256_loadu_si256((__m256i*)sp);
 1112|  23.1k|              __m256i gamma = _mm256_and_si256(inf_u_q, avx_f0);
 1113|  23.1k|              __m256i w0 = _mm256_sub_epi32(gamma, avx_1);
 1114|  23.1k|              gamma = _mm256_and_si256(gamma, w0);
 1115|  23.1k|              gamma = _mm256_cmpeq_epi32(gamma, avx_0);
 1116|       |
 1117|  23.1k|              v = _mm256_andnot_si256(gamma, v);
 1118|  23.1k|              v = _mm256_max_epi32(v, avx_1);
 1119|       |
 1120|  23.1k|              inf_u_q = _mm256_srli_epi32(inf_u_q, 16);
 1121|  23.1k|              v = _mm256_add_epi32(inf_u_q, v);
 1122|       |
 1123|  23.1k|              w0 = _mm256_cmpgt_epi32(v, avx_mmsbp2);
 1124|  23.1k|              if (!_mm256_testz_si256(w0, w0)) {
  ------------------
  |  Branch (1124:19): [True: 322, False: 22.8k]
  ------------------
 1125|    322|                  return false;
 1126|    322|              }
 1127|       |
 1128|  22.8k|              _mm256_storeu_si256((__m256i*)(vp + v_n_size), v);
 1129|  22.8k|            }
 1130|  20.6k|          }
 1131|       |
 1132|  20.3k|          ui32 *vp = v_n_scratch;
 1133|  20.3k|          ui16 *sp = scratch + (y >> 1) * sstr;
 1134|  20.3k|          ui32 *dp = decoded_data + y * stride;
 1135|  20.3k|          vp[0] = 2; // for easy calculation of emax
 1136|       |
 1137|  68.5k|          for (ui32 x = 0; x < width; x += 4, sp += 4, vp += 2, dp += 4) {
  ------------------
  |  Branch (1137:28): [True: 48.1k, False: 20.3k]
  ------------------
 1138|       |            //process two quads
 1139|  48.1k|            __m128i vn = _mm_set1_epi32(2);
 1140|       |
 1141|  48.1k|            __m256i inf_u_q = _mm256_castsi128_si256(_mm_loadl_epi64((__m128i*)sp));
 1142|  48.1k|            inf_u_q = _mm256_permutevar8x32_epi32(inf_u_q, _mm256_setr_epi32(0, 0, 0, 0, 1, 1, 1, 1));
 1143|       |
 1144|  48.1k|            __m256i U_q = _mm256_castsi128_si256(_mm_loadl_epi64((__m128i*)(vp + v_n_size)));
 1145|  48.1k|            U_q = _mm256_permutevar8x32_epi32(U_q, _mm256_setr_epi32(0, 0, 0, 0, 1, 1, 1, 1));
 1146|       |
 1147|  48.1k|            __m256i row = decode_two_quad32_avx2(inf_u_q, U_q, dbuf, limit, pos, p, vn);
 1148|  48.1k|            row = _mm256_permutevar8x32_epi32(row, _mm256_setr_epi32(0, 2, 4, 6, 1, 3, 5, 7));
 1149|  48.1k|            _mm_store_si128((__m128i*)dp, _mm256_castsi256_si128(row));
 1150|  48.1k|            _mm_store_si128((__m128i*)(dp + stride), _mm256_extracti128_si256(row, 0x1));
 1151|       |
 1152|  48.1k|            __m128i w0 = _mm_cvtsi32_si128(*(int const*)vp);
 1153|  48.1k|            w0 = _mm_or_si128(w0, vn);
 1154|  48.1k|            _mm_storeu_si128((__m128i*)vp, w0);
 1155|  48.1k|          }
 1156|  20.3k|        }
 1157|  2.96k|        return true;
 1158|  3.28k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL12destuff_frwdILi255EEEjPKhiPhj:
  305|  28.3k|    {
  306|  28.3k|      if (size < 0)
  ------------------
  |  Branch (306:11): [True: 0, False: 28.3k]
  ------------------
  307|      0|        size = 0;
  308|  28.3k|      ui8* o = dst;
  309|  28.3k|      ui8* o_end = dst + cap;
  310|  28.3k|      const ui8* s = src;
  311|  28.3k|      const ui8* s_end = src + size;
  312|  28.3k|      ui64 acc = 0;       // partial output byte, low nb bits are valid
  313|  28.3k|      ui32 nb = 0;        // number of valid bits in acc; always < 8
  314|  28.3k|      bool prev_ff = false;
  315|       |
  316|       |      // fast path; 16 source bytes at a time when they contain no 0xFF
  317|   298k|      while (s + 16 <= s_end && o + 24 <= o_end)
  ------------------
  |  Branch (317:14): [True: 270k, False: 28.1k]
  |  Branch (317:33): [True: 269k, False: 273]
  ------------------
  318|   269k|      {
  319|   269k|        __m128i v = _mm_loadu_si128((const __m128i*)s);
  320|   269k|        int ff = _mm_movemask_epi8(_mm_cmpeq_epi8(v, _mm_set1_epi8(-1)));
  321|   269k|        if (ff != 0 || prev_ff)
  ------------------
  |  Branch (321:13): [True: 185k, False: 84.1k]
  |  Branch (321:24): [True: 4.96k, False: 79.1k]
  ------------------
  322|   190k|        { // process these 16 bytes one at a time
  323|  3.24M|          for (int i = 0; i < 16; ++i) {
  ------------------
  |  Branch (323:27): [True: 3.05M, False: 190k]
  ------------------
  324|  3.05M|            ui8 b = *s++;
  325|  3.05M|            acc |= (ui64)b << nb;
  326|  3.05M|            nb += prev_ff ? 7u : 8u;
  ------------------
  |  Branch (326:19): [True: 564k, False: 2.48M]
  ------------------
  327|  3.05M|            prev_ff = (b == 0xFFu);
  328|  3.05M|            if (nb >= 8) { *o++ = (ui8)acc; acc >>= 8; nb -= 8; }
  ------------------
  |  Branch (328:17): [True: 2.97M, False: 74.8k]
  ------------------
  329|  3.05M|          }
  330|   190k|          continue;
  331|   190k|        }
  332|  79.1k|        ui64 v0, v1;
  333|  79.1k|        memcpy(&v0, s, 8);
  334|  79.1k|        memcpy(&v1, s + 8, 8);
  335|  79.1k|        ui64 w0 = acc | (v0 << nb);
  336|  79.1k|        ui64 w1 = (v1 << nb) | (nb ? (v0 >> (64 - nb)) : 0);
  ------------------
  |  Branch (336:33): [True: 69.1k, False: 10.0k]
  ------------------
  337|  79.1k|        memcpy(o, &w0, 8);
  338|  79.1k|        memcpy(o + 8, &w1, 8);
  339|  79.1k|        acc = nb ? (v1 >> (64 - nb)) : 0;
  ------------------
  |  Branch (339:15): [True: 69.1k, False: 10.0k]
  ------------------
  340|  79.1k|        o += 16;
  341|  79.1k|        s += 16;
  342|  79.1k|      }
  343|       |      // tail; one byte at a time
  344|   149k|      while (s < s_end && o < o_end)
  ------------------
  |  Branch (344:14): [True: 121k, False: 28.1k]
  |  Branch (344:27): [True: 121k, False: 273]
  ------------------
  345|   121k|      {
  346|   121k|        ui8 b = *s++;
  347|   121k|        acc |= (ui64)b << nb;
  348|   121k|        nb += prev_ff ? 7u : 8u;
  ------------------
  |  Branch (348:15): [True: 13.8k, False: 107k]
  ------------------
  349|   121k|        prev_ff = (b == 0xFFu);
  350|   121k|        if (nb >= 8) { *o++ = (ui8)acc; acc >>= 8; nb -= 8; }
  ------------------
  |  Branch (350:13): [True: 118k, False: 2.95k]
  ------------------
  351|   121k|      }
  352|       |      // fill the bits above nb with X, and pad with X bytes
  353|  28.3k|      ui32 fill = (X == 0xFF) ? (0xFFu << nb) : 0;
  ------------------
  |  Branch (353:19): [True: 28.3k, Folded]
  ------------------
  354|  28.3k|      *o = (ui8)((ui32)acc | fill);
  355|  28.3k|      __m256i pad = _mm256_set1_epi8((char)X);
  356|  28.3k|      _mm256_storeu_si256((__m256i*)(o + 1), pad);
  357|  28.3k|      _mm256_storeu_si256((__m256i*)(o + 33), pad);
  358|  28.3k|      return (ui32)(o - dst) + 1;
  359|  28.3k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL22decode_two_quad32_avx2EDv4_xS1_PKhjRjjRDv2_x:
  633|  63.7k|                                   ui32 p, __m128i& vn) {
  634|  63.7k|        __m256i row = _mm256_setzero_si256();
  635|       |
  636|       |        // we keeps e_k, e_1, and rho in w2
  637|  63.7k|        __m256i flags = _mm256_and_si256(inf_u_q, _mm256_set_epi32(0x8880, 0x4440, 0x2220, 0x1110, 0x8880, 0x4440, 0x2220, 0x1110));
  638|  63.7k|        __m256i insig = _mm256_cmpeq_epi32(flags, _mm256_setzero_si256());
  639|       |
  640|  63.7k|        if ((uint32_t)_mm256_movemask_epi8(insig) != (uint32_t)0xFFFFFFFF) //are all insignificant?
  ------------------
  |  Branch (640:13): [True: 33.4k, False: 30.3k]
  ------------------
  641|  33.4k|        {
  642|  33.4k|            flags = _mm256_mullo_epi16(flags, _mm256_set_epi16(1, 1, 2, 2, 4, 4, 8, 8, 1, 1, 2, 2, 4, 4, 8, 8));
  643|       |
  644|       |            // U_q holds U_q for this quad
  645|       |            // flags has e_k, e_1, and rho such that e_k is sitting in the
  646|       |            // 0x8000, e_1 in 0x800, and rho in 0x80
  647|       |
  648|       |            // next e_k and m_n
  649|  33.4k|            __m256i m_n;
  650|  33.4k|            __m256i w0 = _mm256_srli_epi32(flags, 15); // e_k
  651|  33.4k|            m_n = _mm256_sub_epi32(U_q, w0);
  652|  33.4k|            m_n = _mm256_andnot_si256(insig, m_n);
  653|       |
  654|       |            // find cumulative sums
  655|       |            // to find at which bit in ms_vec the sample starts
  656|  33.4k|            __m256i inc_sum = m_n; // inclusive scan
  657|  33.4k|            inc_sum = _mm256_add_epi32(inc_sum, _mm256_bslli_epi128(inc_sum, 4));
  658|  33.4k|            inc_sum = _mm256_add_epi32(inc_sum, _mm256_bslli_epi128(inc_sum, 8));
  659|  33.4k|            ui32 total_mn1 = (ui32)_mm256_extract_epi16(inc_sum, 6);
  660|  33.4k|            ui32 total_mn2 = (ui32)_mm256_extract_epi16(inc_sum, 14);
  661|       |
  662|  33.4k|            __m128i ms_vec0 = dfetch(dbuf, limit, pos);
  663|  33.4k|            __m128i ms_vec1 = dfetch(dbuf, limit, pos + total_mn1);
  664|  33.4k|            pos += total_mn1 + total_mn2;
  665|       |
  666|  33.4k|            __m256i ms_vec = _mm256_inserti128_si256(_mm256_castsi128_si256(ms_vec0), ms_vec1, 0x1);
  667|       |
  668|  33.4k|            __m256i ex_sum = _mm256_bslli_epi128(inc_sum, 4); // exclusive scan
  669|       |
  670|       |            // find the starting byte and starting bit
  671|  33.4k|            __m256i byte_idx = _mm256_srli_epi32(ex_sum, 3);
  672|  33.4k|            __m256i bit_idx = _mm256_and_si256(ex_sum, _mm256_set1_epi32(7));
  673|  33.4k|            byte_idx = _mm256_shuffle_epi8(byte_idx,
  674|  33.4k|                _mm256_set_epi32(0x0C0C0C0C, 0x08080808, 0x04040404, 0x00000000, 0x0C0C0C0C, 0x08080808, 0x04040404, 0x00000000));
  675|  33.4k|            byte_idx = _mm256_add_epi32(byte_idx, _mm256_set1_epi32(0x03020100));
  676|  33.4k|            __m256i d0 = _mm256_shuffle_epi8(ms_vec, byte_idx);
  677|  33.4k|            byte_idx = _mm256_add_epi32(byte_idx, _mm256_set1_epi32(0x01010101));
  678|  33.4k|            __m256i d1 = _mm256_shuffle_epi8(ms_vec, byte_idx);
  679|       |
  680|       |            // shift samples values to correct location
  681|  33.4k|            bit_idx = _mm256_or_si256(bit_idx, _mm256_slli_epi32(bit_idx, 16));
  682|       |
  683|  33.4k|            __m128i a = _mm_set_epi8(1, 3, 7, 15, 31, 63, 127, -1, 1, 3, 7, 15, 31, 63, 127, -1);
  684|  33.4k|            __m256i aa = _mm256_inserti128_si256(_mm256_castsi128_si256(a), a, 0x1);
  685|       |
  686|  33.4k|            __m256i bit_shift = _mm256_shuffle_epi8(aa, bit_idx);
  687|  33.4k|            bit_shift = _mm256_add_epi16(bit_shift, _mm256_set1_epi16(0x0101));
  688|  33.4k|            d0 = _mm256_mullo_epi16(d0, bit_shift);
  689|  33.4k|            d0 = _mm256_srli_epi16(d0, 8); // we should have 8 bits in the LSB
  690|  33.4k|            d1 = _mm256_mullo_epi16(d1, bit_shift);
  691|  33.4k|            d1 = _mm256_and_si256(d1, _mm256_set1_epi32((si32)0xFF00FF00)); // 8 in MSB
  692|  33.4k|            d0 = _mm256_or_si256(d0, d1);
  693|       |
  694|       |            // find location of e_k and mask
  695|  33.4k|            __m256i shift;
  696|  33.4k|            __m256i ones = _mm256_set1_epi32(1);
  697|  33.4k|            __m256i twos = _mm256_set1_epi32(2);
  698|  33.4k|            __m256i U_q_m1 = _mm256_sub_epi32(U_q, ones);
  699|  33.4k|            U_q_m1 = _mm256_and_si256(U_q_m1, _mm256_set_epi32(0, 0, 0, 0x1F, 0, 0, 0, 0x1F));
  700|  33.4k|            U_q_m1 = _mm256_shuffle_epi32(U_q_m1, 0);
  701|  33.4k|            w0 = _mm256_sub_epi32(twos, w0);
  702|  33.4k|            shift = _mm256_sllv_epi32(w0, U_q_m1); // U_q_m1 must be no more than 31
  703|  33.4k|            ms_vec = _mm256_and_si256(d0, _mm256_sub_epi32(shift, ones));
  704|       |
  705|       |            // next e_1
  706|  33.4k|            w0 = _mm256_and_si256(flags, _mm256_set1_epi32(0x800));
  707|  33.4k|            w0 = _mm256_cmpeq_epi32(w0, _mm256_setzero_si256());
  708|  33.4k|            w0 = _mm256_andnot_si256(w0, shift);  // e_1 in correct position
  709|  33.4k|            ms_vec = _mm256_or_si256(ms_vec, w0); // e_1
  710|  33.4k|            w0 = _mm256_slli_epi32(ms_vec, 31);   // sign
  711|  33.4k|            ms_vec = _mm256_or_si256(ms_vec, ones); // bin center
  712|  33.4k|            __m256i tvn = ms_vec;
  713|  33.4k|            ms_vec = _mm256_add_epi32(ms_vec, twos);// + 2
  714|  33.4k|            ms_vec = _mm256_slli_epi32(ms_vec, (si32)p - 1);
  715|  33.4k|            ms_vec = _mm256_or_si256(ms_vec, w0); // sign
  716|  33.4k|            row = _mm256_andnot_si256(insig, ms_vec); // significant only
  717|       |
  718|  33.4k|            ms_vec = _mm256_andnot_si256(insig, tvn); // significant only
  719|       |
  720|  33.4k|            tvn = _mm256_shuffle_epi8(ms_vec, _mm256_set_epi32(-1, 0x0F0E0D0C, 0x07060504, -1, -1, -1, 0x0F0E0D0C, 0x07060504));
  721|       |
  722|  33.4k|            vn = _mm_or_si128(vn, _mm256_castsi256_si128(tvn));
  723|       |            vn = _mm_or_si128(vn, _mm256_extracti128_si256(tvn, 0x1));
  724|  33.4k|        }
  725|  63.7k|        return row;
  726|  63.7k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL6dfetchEPKhjj:
  377|   244k|    {
  378|   244k|      ui32 off = pos >> 3;
  379|   244k|      off = off < limit ? off : limit;
  ------------------
  |  Branch (379:13): [True: 203k, False: 40.3k]
  ------------------
  380|   244k|      const ui8* p = dbuf + off;
  381|   244k|      __m128i v = _mm_loadu_si128((const __m128i*)p);
  382|   244k|      __m128i w = _mm_loadu_si128((const __m128i*)(p + 8));
  383|   244k|      int k = (int)(pos & 7);
  384|   244k|      __m128i r = _mm_srl_epi64(v, _mm_cvtsi32_si128(k));
  385|   244k|      __m128i c = _mm_sll_epi64(w, _mm_cvtsi32_si128(64 - k));
  386|   244k|      return _mm_or_si128(r, c);
  387|   244k|    }
_ZN4ojph5local16avx2_lzcnt_epi32EDv4_x:
  870|   162k|    inline __m256i avx2_lzcnt_epi32(__m256i v) {
  871|       |        // prevent value from being rounded up to the next power of two
  872|   162k|        v = _mm256_andnot_si256(_mm256_srli_epi32(v, 8), v);  // keep 8 MSB
  873|       |
  874|   162k|        v = _mm256_castps_si256(_mm256_cvtepi32_ps(v));    // convert an integer to float
  875|   162k|        v = _mm256_srli_epi32(v, 23);                   // shift down the exponent
  876|   162k|        v = _mm256_subs_epu16(_mm256_set1_epi32(158), v);  // undo bias
  877|   162k|        v = _mm256_min_epi16(v, _mm256_set1_epi32(32));    // clamp at 32
  878|       |
  879|   162k|        return v;
  880|   162k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL21decode_cb_step2_16bitEPtPjPhjjjjjjii:
  913|  24.7k|    {
  914|       |        // reduce bitplane by 16 because we now have 16 bits instead of 32
  915|  24.7k|        p -= 16;
  916|       |
  917|  24.7k|        const int v_n_size = 512 + 16;
  918|       |#ifdef __MINGW64__
  919|       |        ui16 v_n_scratch[v_n_size] = {0};
  920|       |        ui32 v_n_scratch_32[v_n_size] = {0};
  921|       |#else
  922|  24.7k|        ui16 v_n_scratch[v_n_size];
  923|  24.7k|        memset(v_n_scratch + (width >> 1) + 4, 0, 8 * sizeof(ui16));
  924|  24.7k|        ui32 v_n_scratch_32[v_n_size];
  925|  24.7k|#endif
  926|       |
  927|       |        // maximum consumable MagSgn bits: 4096 samples x (mmsbp2 < 16) bits
  928|  24.7k|        const ui32 dbuf_cap = 4096 * 15 / 8;
  929|  24.7k|        ui8 dbuf[dbuf_cap + 72];
  930|  24.7k|        ui32 limit = destuff_frwd<0xFF>(coded_data, lcup - scup, dbuf, dbuf_cap);
  931|  24.7k|        ui32 pos = 0;
  932|       |
  933|  24.7k|        {
  934|  24.7k|          ui16 *sp = scratch;
  935|  24.7k|          ui16 *vp = v_n_scratch;
  936|  24.7k|          ui32 *dp = decoded_data;
  937|  24.7k|          vp[0] = 2; // for easy calculation of emax
  938|       |
  939|  55.6k|          for (ui32 x = 0; x < width; x += 8, sp += 8, vp += 4, dp += 8) {
  ------------------
  |  Branch (939:28): [True: 35.5k, False: 20.0k]
  ------------------
  940|       |              ////process four quads
  941|  35.5k|              __m128i inf_u_q = _mm_loadu_si128((__m128i*)sp);
  942|  35.5k|              __m128i U_q = _mm_srli_epi32(inf_u_q, 16);
  943|  35.5k|              __m128i w = _mm_cmpgt_epi32(U_q, _mm_set1_epi32((int)mmsbp2));
  944|  35.5k|              if (!_mm_testz_si128(w, w)) {
  ------------------
  |  Branch (944:19): [True: 4.66k, False: 30.9k]
  ------------------
  945|  4.66k|                  return false;
  946|  4.66k|              }
  947|       |
  948|  30.9k|              __m128i vn = _mm_set1_epi16(2);
  949|  30.9k|              __m256i row = decode_four_quad16(inf_u_q, U_q, dbuf, limit, pos, p, vn);
  950|       |
  951|  30.9k|              w = _mm_cvtsi32_si128(*(unsigned short const*)(vp));
  952|  30.9k|              _mm_storeu_si128((__m128i*)vp, _mm_or_si128(w, vn));
  953|       |
  954|  30.9k|              __m256i  w0 = _mm256_shuffle_epi8(row, _mm256_set_epi16(0x0D0C, -1, 0x0908, -1, 0x0504, -1, 0x0100, -1, 0x0D0C, -1, 0x0908, -1, 0x0504, -1, 0x0100, -1));
  955|  30.9k|              __m256i  w1 = _mm256_shuffle_epi8(row, _mm256_set_epi16(0x0F0E, -1, 0x0B0A, -1, 0x0706, -1, 0x0302, -1, 0x0F0E, -1, 0x0B0A, -1, 0x0706, -1, 0x0302, -1));
  956|       |
  957|  30.9k|              _mm256_storeu_si256((__m256i*)dp, w0);
  958|  30.9k|              _mm256_storeu_si256((__m256i*)(dp + stride), w1);
  959|  30.9k|          }
  960|  24.7k|        }
  961|       |
  962|   142k|        for (ui32 y = 2; y < height; y += 2) {
  ------------------
  |  Branch (962:26): [True: 124k, False: 17.4k]
  ------------------
  963|   124k|          {
  964|       |            // perform 15 - count_leading_zeros(*vp) here
  965|   124k|            ui16 *vp = v_n_scratch;
  966|   124k|            ui32 *vp_32 = v_n_scratch_32;
  967|       |
  968|   124k|            ui16* sp = scratch + (y >> 1) * sstr;
  969|   124k|            const __m256i avx_mmsbp2 = _mm256_set1_epi32((int)mmsbp2);
  970|   124k|            const __m256i avx_31 = _mm256_set1_epi32(31);
  971|   124k|            const __m256i avx_f0 = _mm256_set1_epi32(0xF0);
  972|   124k|            const __m256i avx_1 = _mm256_set1_epi32(1);
  973|   124k|            const __m256i avx_0 = _mm256_setzero_si256();
  974|       |
  975|   261k|            for (ui32 x = 0; x <= width; x += 16, vp += 8, sp += 16, vp_32 += 8) {
  ------------------
  |  Branch (975:30): [True: 138k, False: 122k]
  ------------------
  976|   138k|              __m128i v = _mm_loadu_si128((__m128i*)vp);
  977|   138k|              __m128i v_p1 = _mm_loadu_si128((__m128i*)(vp + 1));
  978|   138k|              v = _mm_or_si128(v, v_p1);
  979|       |
  980|   138k|              __m256i v_avx = _mm256_cvtepu16_epi32(v);
  981|   138k|              v_avx = avx2_lzcnt_epi32(v_avx);
  982|   138k|              v_avx = _mm256_sub_epi32(avx_31, v_avx);
  983|       |
  984|   138k|              __m256i inf_u_q = _mm256_loadu_si256((__m256i*)sp);
  985|   138k|              __m256i gamma = _mm256_and_si256(inf_u_q, avx_f0);
  986|   138k|              __m256i w0 = _mm256_sub_epi32(gamma, avx_1);
  987|   138k|              gamma = _mm256_and_si256(gamma, w0);
  988|   138k|              gamma = _mm256_cmpeq_epi32(gamma, avx_0);
  989|       |
  990|   138k|              v_avx = _mm256_andnot_si256(gamma, v_avx);
  991|   138k|              v_avx = _mm256_max_epi32(v_avx, avx_1);
  992|       |
  993|   138k|              inf_u_q = _mm256_srli_epi32(inf_u_q, 16);
  994|   138k|              v_avx = _mm256_add_epi32(inf_u_q, v_avx);
  995|       |
  996|   138k|              w0 = _mm256_cmpgt_epi32(v_avx, avx_mmsbp2);
  997|   138k|              if (!_mm256_testz_si256(w0, w0)) {
  ------------------
  |  Branch (997:19): [True: 2.54k, False: 136k]
  ------------------
  998|  2.54k|                  return false;
  999|  2.54k|              }
 1000|       |
 1001|   136k|              _mm256_storeu_si256((__m256i*)vp_32, v_avx);
 1002|   136k|            }
 1003|   124k|          }
 1004|       |
 1005|   122k|          ui16 *vp = v_n_scratch;
 1006|   122k|          ui32* vp_32 = v_n_scratch_32;
 1007|   122k|          ui16 *sp = scratch + (y >> 1) * sstr;
 1008|   122k|          ui32 *dp = decoded_data + y * stride;
 1009|   122k|          vp[0] = 2; // for easy calculation of emax
 1010|       |
 1011|   268k|          for (ui32 x = 0; x < width; x += 8, sp += 8, vp += 4, dp += 8, vp_32 += 4) {
  ------------------
  |  Branch (1011:28): [True: 146k, False: 122k]
  ------------------
 1012|       |            ////process four quads
 1013|   146k|              __m128i inf_u_q = _mm_loadu_si128((__m128i*)sp);
 1014|   146k|              __m128i U_q = _mm_loadu_si128((__m128i*)vp_32);
 1015|       |
 1016|   146k|            __m128i vn = _mm_set1_epi16(2);
 1017|   146k|            __m256i row = decode_four_quad16(inf_u_q, U_q, dbuf, limit, pos, p, vn);
 1018|       |
 1019|   146k|            __m128i w = _mm_cvtsi32_si128(*(unsigned short const*)(vp));
 1020|   146k|            _mm_storeu_si128((__m128i*)vp, _mm_or_si128(w, vn));
 1021|       |
 1022|   146k|            __m256i  w0 = _mm256_shuffle_epi8(row, _mm256_set_epi16(0x0D0C, -1, 0x0908, -1, 0x0504, -1, 0x0100, -1, 0x0D0C, -1, 0x0908, -1, 0x0504, -1, 0x0100, -1));
 1023|   146k|            __m256i  w1 = _mm256_shuffle_epi8(row, _mm256_set_epi16(0x0F0E, -1, 0x0B0A, -1, 0x0706, -1, 0x0302, -1, 0x0F0E, -1, 0x0B0A, -1, 0x0706, -1, 0x0302, -1));
 1024|       |
 1025|   146k|            _mm256_storeu_si256((__m256i*)dp, w0);
 1026|   146k|            _mm256_storeu_si256((__m256i*)(dp + stride), w1);
 1027|   146k|          }
 1028|   122k|        }
 1029|  17.4k|        return true;
 1030|  20.0k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL18decode_four_quad16EDv2_xS1_PKhjRjjRS1_:
  743|   177k|                               ui32 p, __m128i& vn) {
  744|       |
  745|   177k|        __m256i w0;     // workers
  746|   177k|        __m256i insig;  // lanes hold FF's if samples are insignificant
  747|   177k|        __m256i flags;  // lanes hold e_k, e_1, and rho
  748|       |
  749|   177k|        __m256i row = _mm256_setzero_si256();
  750|   177k|        __m128i ddd = _mm_shuffle_epi8(inf_u_q,
  751|   177k|            _mm_set_epi16(0x0d0c, 0x0d0c, 0x0908, 0x908, 0x0504, 0x0504, 0x0100, 0x0100));
  752|   177k|        w0 = _mm256_permutevar8x32_epi32(_mm256_castsi128_si256(ddd),
  753|   177k|            _mm256_setr_epi32(0, 0, 1, 1, 2, 2, 3, 3));
  754|       |        // we keeps e_k, e_1, and rho in w2
  755|   177k|        flags = _mm256_and_si256(w0,
  756|   177k|            _mm256_set_epi16((si16)0x8880, 0x4440, 0x2220, 0x1110,
  757|   177k|                             (si16)0x8880, 0x4440, 0x2220, 0x1110,
  758|   177k|                             (si16)0x8880, 0x4440, 0x2220, 0x1110,
  759|   177k|                             (si16)0x8880, 0x4440, 0x2220, 0x1110));
  760|   177k|        insig = _mm256_cmpeq_epi16(flags, _mm256_setzero_si256());
  761|   177k|        if ((uint32_t)_mm256_movemask_epi8(insig) != (uint32_t)0xFFFFFFFF) //are all insignificant?
  ------------------
  |  Branch (761:13): [True: 88.7k, False: 88.8k]
  ------------------
  762|  88.7k|        {
  763|  88.7k|            ddd = _mm_or_si128(_mm_bslli_si128(U_q, 2), U_q);
  764|  88.7k|            __m256i U_q_avx = _mm256_permutevar8x32_epi32(_mm256_castsi128_si256(ddd),
  765|  88.7k|                _mm256_setr_epi32(0, 0, 1, 1, 2, 2, 3, 3));
  766|  88.7k|            flags = _mm256_mullo_epi16(flags, _mm256_set_epi16(1, 2, 4, 8, 1, 2, 4, 8, 1, 2, 4, 8, 1, 2, 4, 8));
  767|       |
  768|       |            // U_q holds U_q for this quad
  769|       |            // flags has e_k, e_1, and rho such that e_k is sitting in the
  770|       |            // 0x8000, e_1 in 0x800, and rho in 0x80
  771|       |
  772|       |            // next e_k and m_n
  773|  88.7k|            __m256i m_n;
  774|  88.7k|            w0 = _mm256_srli_epi16(flags, 15); // e_k
  775|  88.7k|            m_n = _mm256_sub_epi16(U_q_avx, w0);
  776|  88.7k|            m_n = _mm256_andnot_si256(insig, m_n);
  777|       |
  778|       |            // find cumulative sums
  779|       |            // to find at which bit in ms_vec the sample starts
  780|  88.7k|            __m256i inc_sum = m_n; // inclusive scan
  781|  88.7k|            inc_sum = _mm256_add_epi16(inc_sum, _mm256_bslli_epi128(inc_sum, 2));
  782|  88.7k|            inc_sum = _mm256_add_epi16(inc_sum, _mm256_bslli_epi128(inc_sum, 4));
  783|  88.7k|            inc_sum = _mm256_add_epi16(inc_sum, _mm256_bslli_epi128(inc_sum, 8));
  784|  88.7k|            ui32 total_mn1 = (ui32)_mm256_extract_epi16(inc_sum, 7);
  785|  88.7k|            ui32 total_mn2 = (ui32)_mm256_extract_epi16(inc_sum, 15);
  786|  88.7k|            __m256i ex_sum = _mm256_bslli_epi128(inc_sum, 2); // exclusive scan
  787|       |
  788|  88.7k|            __m128i ms_vec0 = dfetch(dbuf, limit, pos);
  789|  88.7k|            __m128i ms_vec1 = dfetch(dbuf, limit, pos + total_mn1);
  790|  88.7k|            pos += total_mn1 + total_mn2;
  791|       |
  792|  88.7k|            __m256i ms_vec = _mm256_inserti128_si256(_mm256_castsi128_si256(ms_vec0), ms_vec1, 0x1);
  793|       |
  794|       |            // find the starting byte and starting bit
  795|  88.7k|            __m256i byte_idx = _mm256_srli_epi16(ex_sum, 3);
  796|  88.7k|            __m256i bit_idx = _mm256_and_si256(ex_sum, _mm256_set1_epi16(7));
  797|  88.7k|            byte_idx = _mm256_shuffle_epi8(byte_idx,
  798|  88.7k|                _mm256_set_epi16(0x0E0E, 0x0C0C, 0x0A0A, 0x0808,
  799|  88.7k|                    0x0606, 0x0404, 0x0202, 0x0000, 0x0E0E, 0x0C0C, 0x0A0A, 0x0808,
  800|  88.7k|                    0x0606, 0x0404, 0x0202, 0x0000));
  801|  88.7k|            byte_idx = _mm256_add_epi16(byte_idx, _mm256_set1_epi16(0x0100));
  802|  88.7k|            __m256i d0 = _mm256_shuffle_epi8(ms_vec, byte_idx);
  803|  88.7k|            byte_idx = _mm256_add_epi16(byte_idx, _mm256_set1_epi16(0x0101));
  804|  88.7k|            __m256i d1 = _mm256_shuffle_epi8(ms_vec, byte_idx);
  805|       |
  806|       |            // shift samples values to correct location
  807|  88.7k|            __m256i bit_shift = _mm256_shuffle_epi8(
  808|  88.7k|                _mm256_set_epi8(1, 3, 7, 15, 31, 63, 127, -1,
  809|  88.7k|                    1, 3, 7, 15, 31, 63, 127, -1, 1, 3, 7, 15, 31, 63, 127, -1,
  810|  88.7k|                    1, 3, 7, 15, 31, 63, 127, -1), bit_idx);
  811|  88.7k|            bit_shift = _mm256_add_epi16(bit_shift, _mm256_set1_epi16(0x0101));
  812|  88.7k|            d0 = _mm256_mullo_epi16(d0, bit_shift);
  813|  88.7k|            d0 = _mm256_srli_epi16(d0, 8); // we should have 8 bits in the LSB
  814|  88.7k|            d1 = _mm256_mullo_epi16(d1, bit_shift);
  815|  88.7k|            d1 = _mm256_and_si256(d1, _mm256_set1_epi16((si16)0xFF00)); // 8 in MSB
  816|  88.7k|            d0 = _mm256_or_si256(d0, d1);
  817|       |
  818|       |            // find location of e_k and mask
  819|  88.7k|            __m256i shift;
  820|  88.7k|            __m256i ones = _mm256_set1_epi16(1);
  821|  88.7k|            __m256i twos = _mm256_set1_epi16(2);
  822|       |            // shift = (2 - e_k) << (U_q - 1); AVX2 has no _mm256_sllv_epi16,
  823|       |            // so the variable shift is emulated with a pshufb power-of-two
  824|       |            // lookup and a 16-bit multiply.  U_q - 1 <= 14 in this path;
  825|       |            // for U_q == 0 the lookup indices have their MSB set, so pshufb
  826|       |            // returns 0, the same shift value the former uniform 16-bit
  827|       |            // shift emulation produced (it shifted by 31)
  828|  88.7k|            __m256i kq = _mm256_sub_epi16(U_q_avx, ones);
  829|  88.7k|            __m256i idx = _mm256_or_si256(kq,
  830|  88.7k|                _mm256_slli_epi16(_mm256_sub_epi16(kq,
  831|  88.7k|                                            _mm256_set1_epi16(8)), 8));
  832|  88.7k|            const __m256i pow2_tbl = _mm256_setr_epi8(
  833|  88.7k|                1, 2, 4, 8, 16, 32, 64, (char)128, 0, 0, 0, 0, 0, 0, 0, 0,
  834|  88.7k|                1, 2, 4, 8, 16, 32, 64, (char)128, 0, 0, 0, 0, 0, 0, 0, 0);
  835|  88.7k|            __m256i pow2 = _mm256_shuffle_epi8(pow2_tbl, idx);
  836|  88.7k|            w0 = _mm256_sub_epi16(twos, w0);
  837|  88.7k|            shift = _mm256_mullo_epi16(w0, pow2);
  838|  88.7k|            ms_vec = _mm256_and_si256(d0, _mm256_sub_epi16(shift, ones));
  839|       |
  840|       |            // next e_1
  841|  88.7k|            w0 = _mm256_and_si256(flags, _mm256_set1_epi16(0x800));
  842|  88.7k|            w0 = _mm256_cmpeq_epi16(w0, _mm256_setzero_si256());
  843|  88.7k|            w0 = _mm256_andnot_si256(w0, shift);  // e_1 in correct position
  844|  88.7k|            ms_vec = _mm256_or_si256(ms_vec, w0); // e_1
  845|  88.7k|            w0 = _mm256_slli_epi16(ms_vec, 15);   // sign
  846|  88.7k|            ms_vec = _mm256_or_si256(ms_vec, ones); // bin center
  847|  88.7k|            __m256i tvn = ms_vec;
  848|  88.7k|            ms_vec = _mm256_add_epi16(ms_vec, twos);// + 2
  849|  88.7k|            ms_vec = _mm256_slli_epi16(ms_vec, (si32)p - 1);
  850|  88.7k|            ms_vec = _mm256_or_si256(ms_vec, w0); // sign
  851|  88.7k|            row = _mm256_andnot_si256(insig, ms_vec); // significant only
  852|       |
  853|  88.7k|            ms_vec = _mm256_andnot_si256(insig, tvn); // significant only
  854|       |
  855|  88.7k|            __m256i ms_vec_shuffle1 = _mm256_shuffle_epi8(ms_vec,
  856|  88.7k|                _mm256_set_epi16(-1, -1, -1, -1, 0x0706, 0x0302, -1, -1,
  857|  88.7k|                                 -1, -1, -1, -1, -1, -1, 0x0706, 0x0302));
  858|  88.7k|            __m256i ms_vec_shuffle2 = _mm256_shuffle_epi8(ms_vec,
  859|  88.7k|                _mm256_set_epi16(-1, -1, -1, 0x0F0E, 0x0B0A, -1, -1, -1,
  860|  88.7k|                                 -1, -1, -1, -1, -1, 0x0F0E, 0x0B0A, -1));
  861|  88.7k|            ms_vec = _mm256_or_si256(ms_vec_shuffle1, ms_vec_shuffle2);
  862|       |
  863|  88.7k|            vn = _mm_or_si128(vn, _mm256_castsi256_si128(ms_vec));
  864|       |            vn = _mm_or_si128(vn, _mm256_extracti128_si256(ms_vec, 0x1));
  865|  88.7k|        }
  866|   177k|        return row;
  867|   177k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL17decode_cb_spp_mrpEPtPjPhjjjjjjjjb:
 1172|  16.7k|    {
 1173|       |        // We use scratch again, we can divide it into multiple regions
 1174|       |        // sigma holds all the significant samples, and it cannot
 1175|       |        // be modified after it is set.  it will be used during the
 1176|       |        // Magnitude Refinement Pass
 1177|  16.7k|        ui16* const sigma = scratch;
 1178|       |
 1179|  16.7k|        ui32 mstr = (width + 3u) >> 2;   // divide by 4, since each
 1180|       |                                         // ui16 contains 4 columns
 1181|  16.7k|        mstr = ((mstr + 2u) + 7u) & ~7u; // multiples of 8
 1182|       |
 1183|       |        // We re-arrange quad significance, where each 4 consecutive
 1184|       |        // bits represent one quad, into column significance, where,
 1185|       |        // each 4 consequtive bits represent one column of 4 rows
 1186|  16.7k|        {
 1187|  16.7k|          ui32 y;
 1188|       |
 1189|  16.7k|          const __m128i mask_3 = _mm_set1_epi32(0x30);
 1190|  16.7k|          const __m128i mask_C = _mm_set1_epi32(0xC0);
 1191|  16.7k|          const __m128i shuffle_mask = _mm_set_epi32(-1, -1, -1, 0x0C080400);
 1192|  91.4k|          for (y = 0; y < height; y += 4)
  ------------------
  |  Branch (1192:23): [True: 74.7k, False: 16.7k]
  ------------------
 1193|  74.7k|          {
 1194|  74.7k|            ui16* sp = scratch + (y >> 1) * sstr;
 1195|  74.7k|            ui16* dp = sigma + (y >> 2) * mstr;
 1196|   168k|            for (ui32 x = 0; x < width; x += 8, sp += 8, dp += 2)
  ------------------
  |  Branch (1196:30): [True: 93.7k, False: 74.7k]
  ------------------
 1197|  93.7k|            {
 1198|  93.7k|              __m128i s0, s1, u3, uC, t0, t1;
 1199|       |
 1200|  93.7k|              s0 = _mm_loadu_si128((__m128i*)(sp));
 1201|  93.7k|              u3 = _mm_and_si128(s0, mask_3);
 1202|  93.7k|              u3 = _mm_srli_epi32(u3, 4);
 1203|  93.7k|              uC = _mm_and_si128(s0, mask_C);
 1204|  93.7k|              uC = _mm_srli_epi32(uC, 2);
 1205|  93.7k|              t0 = _mm_or_si128(u3, uC);
 1206|       |
 1207|  93.7k|              s1 = _mm_loadu_si128((__m128i*)(sp + sstr));
 1208|  93.7k|              u3 = _mm_and_si128(s1, mask_3);
 1209|  93.7k|              u3 = _mm_srli_epi32(u3, 2);
 1210|  93.7k|              uC = _mm_and_si128(s1, mask_C);
 1211|  93.7k|              t1 = _mm_or_si128(u3, uC);
 1212|       |
 1213|  93.7k|              __m128i r = _mm_or_si128(t0, t1);
 1214|  93.7k|              r = _mm_shuffle_epi8(r, shuffle_mask);
 1215|       |
 1216|  93.7k|              ui32 t = (ui32)_mm_extract_epi32(r, 0);
 1217|  93.7k|              memcpy(dp, &t, 4);
 1218|  93.7k|            }
 1219|  74.7k|            dp[0] = 0; // set an extra entry on the right with 0
 1220|  74.7k|          }
 1221|  16.7k|          {
 1222|       |            // reset one row after the codeblock
 1223|  16.7k|            ui16* dp = sigma + (y >> 2) * mstr;
 1224|  16.7k|            __m128i zero = _mm_setzero_si128();
 1225|  34.6k|            for (ui32 x = 0; x < width; x += 32, dp += 8)
  ------------------
  |  Branch (1225:30): [True: 17.9k, False: 16.7k]
  ------------------
 1226|  17.9k|              _mm_storeu_si128((__m128i*)dp, zero);
 1227|  16.7k|            dp[0] = 0; // set an extra entry on the right with 0
 1228|  16.7k|          }
 1229|  16.7k|        }
 1230|       |
 1231|       |        // We perform Significance Propagation Pass here
 1232|  16.7k|        {
 1233|       |          // This stores significance information of the previous
 1234|       |          // 4 rows.  Significance information in this array includes
 1235|       |          // all signicant samples in bitplane p - 1; that is,
 1236|       |          // significant samples for bitplane p (discovered during the
 1237|       |          // cleanup pass and stored in sigma) and samples that have recently
 1238|       |          // became significant (during the SPP) in bitplane p-1.
 1239|       |          // We store enough for the widest row, containing 1024 columns,
 1240|       |          // which is equivalent to 256 of ui16, since each stores 4 columns.
 1241|       |          // We add an extra 8 entries, just in case we need more
 1242|  16.7k|          ui16 prev_row_sig[256 + 8] = {0}; // 528 Bytes
 1243|       |
 1244|       |          // maximum consumable SPP bits: 4096 samples x 2 bits (one
 1245|       |          // significance bit and one sign bit per sample)
 1246|  16.7k|          const ui32 spp_cap = 4096 * 2 / 8;
 1247|  16.7k|          ui8 spp_buf[spp_cap + 72];
 1248|  16.7k|          ui32 spp_limit = destuff_frwd<0>(coded_data + lengths1,
 1249|  16.7k|                                           (int)lengths2, spp_buf, spp_cap);
 1250|  16.7k|          ui32 spp_pos = 0;
 1251|       |
 1252|  91.4k|          for (ui32 y = 0; y < height; y += 4)
  ------------------
  |  Branch (1252:28): [True: 74.7k, False: 16.7k]
  ------------------
 1253|  74.7k|          {
 1254|  74.7k|            ui32 pattern = 0xFFFFu; // a pattern needed samples
 1255|  74.7k|            if (height - y < 4) {
  ------------------
  |  Branch (1255:17): [True: 9.07k, False: 65.6k]
  ------------------
 1256|  9.07k|              pattern = 0x7777u;
 1257|  9.07k|              if (height - y < 3) {
  ------------------
  |  Branch (1257:19): [True: 7.25k, False: 1.81k]
  ------------------
 1258|  7.25k|                pattern = 0x3333u;
 1259|  7.25k|                if (height - y < 2)
  ------------------
  |  Branch (1259:21): [True: 2.85k, False: 4.40k]
  ------------------
 1260|  2.85k|                  pattern = 0x1111u;
 1261|  7.25k|              }
 1262|  9.07k|            }
 1263|       |
 1264|       |            // prev holds sign. info. for the previous quad, together
 1265|       |            // with the rows on top of it and below it.
 1266|  74.7k|            ui32 prev = 0;
 1267|  74.7k|            ui16 *prev_sig = prev_row_sig;
 1268|  74.7k|            ui16 *cur_sig = sigma + (y >> 2) * mstr;
 1269|  74.7k|            ui32 *dpp = decoded_data + y * stride;
 1270|   219k|            for (ui32 x = 0; x < width; x += 4, dpp += 4, ++cur_sig, ++prev_sig)
  ------------------
  |  Branch (1270:30): [True: 145k, False: 74.7k]
  ------------------
 1271|   145k|            {
 1272|       |              // only rows and columns inside the stripe are included
 1273|   145k|              si32 s = (si32)x + 4 - (si32)width;
 1274|   145k|              s = ojph_max(s, 0);
  ------------------
  |  |   73|   145k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 42.3k, False: 102k]
  |  |  ------------------
  ------------------
 1275|   145k|              pattern = pattern >> (s * 4);
 1276|       |
 1277|       |              // We first find locations that need to be tested (potential
 1278|       |              // SPP members); these location will end up in mbr
 1279|       |              // In each iteration, we produce 16 bits because cwd can have
 1280|       |              // up to 16 bits of significance information, followed by the
 1281|       |              // corresponding 16 bits of sign information; therefore, it is
 1282|       |              // sufficient to fetch 32 bit data per loop.
 1283|       |
 1284|       |              // Althougth we are interested in 16 bits only, we load 32 bits.
 1285|       |              // For the 16 bits we are producing, we need the next 4 bits --
 1286|       |              // We need data for at least 5 columns out of 8.
 1287|       |              // Therefore loading 32 bits is easier than loading 16 bits
 1288|       |              // twice.
 1289|   145k|              ui32 ps, ns, cs;
 1290|   145k|              memcpy(&ps, prev_sig, 4);
 1291|   145k|              memcpy(&ns, cur_sig + mstr, 4);
 1292|   145k|              ui32 u = (ps & 0x88888888) >> 3; // the row on top
 1293|   145k|              if (!stripe_causal)
  ------------------
  |  Branch (1293:19): [True: 141k, False: 3.73k]
  ------------------
 1294|   141k|                u |= (ns & 0x11111111) << 3;   // the row below
 1295|       |
 1296|   145k|              memcpy(&cs, cur_sig, 4);
 1297|       |              // vertical integration
 1298|   145k|              ui32 mbr =  cs;                // this sig. info.
 1299|   145k|              mbr |= (cs & 0x77777777) << 1; //above neighbors
 1300|   145k|              mbr |= (cs & 0xEEEEEEEE) >> 1; //below neighbors
 1301|   145k|              mbr |= u;
 1302|       |              // horizontal integration
 1303|   145k|              ui32 t = mbr;
 1304|   145k|              mbr |= t << 4;      // neighbors on the left
 1305|   145k|              mbr |= t >> 4;      // neighbors on the right
 1306|   145k|              mbr |= prev >> 12;  // significance of previous group
 1307|       |
 1308|       |              // remove outside samples, and already significant samples
 1309|   145k|              mbr &= pattern;
 1310|   145k|              mbr &= ~cs;
 1311|       |
 1312|       |              // find samples that become significant during the SPP
 1313|   145k|              ui32 new_sig = mbr;
 1314|   145k|              if (new_sig)
  ------------------
  |  Branch (1314:19): [True: 97.3k, False: 47.9k]
  ------------------
 1315|  97.3k|              {
 1316|  97.3k|                ui64 cwd = dfetch64(spp_buf, spp_limit, spp_pos);
 1317|       |
 1318|  97.3k|                ui32 cnt = 0;
 1319|  97.3k|                ui32 col_mask = 0xFu;
 1320|  97.3k|                ui32 inv_sig = ~cs & pattern;
 1321|   486k|                for (int i = 0; i < 16; i += 4, col_mask <<= 4)
  ------------------
  |  Branch (1321:33): [True: 389k, False: 97.3k]
  ------------------
 1322|   389k|                {
 1323|   389k|                  if ((col_mask & new_sig) == 0)
  ------------------
  |  Branch (1323:23): [True: 122k, False: 266k]
  ------------------
 1324|   122k|                    continue;
 1325|       |
 1326|       |                  //scan one column
 1327|   266k|                  ui32 sample_mask = 0x1111u & col_mask;
 1328|   266k|                  if (new_sig & sample_mask)
  ------------------
  |  Branch (1328:23): [True: 169k, False: 97.5k]
  ------------------
 1329|   169k|                  {
 1330|   169k|                    new_sig &= ~sample_mask;
 1331|   169k|                    if (cwd & 1)
  ------------------
  |  Branch (1331:25): [True: 38.1k, False: 130k]
  ------------------
 1332|  38.1k|                    {
 1333|  38.1k|                      ui32 t = 0x33u << i;
 1334|  38.1k|                      new_sig |= t & inv_sig;
 1335|  38.1k|                    }
 1336|   169k|                    cwd >>= 1; ++cnt;
 1337|   169k|                  }
 1338|       |
 1339|   266k|                  sample_mask <<= 1;
 1340|   266k|                  if (new_sig & sample_mask)
  ------------------
  |  Branch (1340:23): [True: 177k, False: 89.0k]
  ------------------
 1341|   177k|                  {
 1342|   177k|                    new_sig &= ~sample_mask;
 1343|   177k|                    if (cwd & 1)
  ------------------
  |  Branch (1343:25): [True: 35.7k, False: 141k]
  ------------------
 1344|  35.7k|                    {
 1345|  35.7k|                      ui32 t = 0x76u << i;
 1346|  35.7k|                      new_sig |= t & inv_sig;
 1347|  35.7k|                    }
 1348|   177k|                    cwd >>= 1; ++cnt;
 1349|   177k|                  }
 1350|       |
 1351|   266k|                  sample_mask <<= 1;
 1352|   266k|                  if (new_sig & sample_mask)
  ------------------
  |  Branch (1352:23): [True: 125k, False: 141k]
  ------------------
 1353|   125k|                  {
 1354|   125k|                    new_sig &= ~sample_mask;
 1355|   125k|                    if (cwd & 1)
  ------------------
  |  Branch (1355:25): [True: 32.2k, False: 92.8k]
  ------------------
 1356|  32.2k|                    {
 1357|  32.2k|                      ui32 t = 0xECu << i;
 1358|  32.2k|                      new_sig |= t & inv_sig;
 1359|  32.2k|                    }
 1360|   125k|                    cwd >>= 1; ++cnt;
 1361|   125k|                  }
 1362|       |
 1363|   266k|                  sample_mask <<= 1;
 1364|   266k|                  if (new_sig & sample_mask)
  ------------------
  |  Branch (1364:23): [True: 165k, False: 101k]
  ------------------
 1365|   165k|                  {
 1366|   165k|                    new_sig &= ~sample_mask;
 1367|   165k|                    if (cwd & 1)
  ------------------
  |  Branch (1367:25): [True: 38.7k, False: 126k]
  ------------------
 1368|  38.7k|                    {
 1369|  38.7k|                      ui32 t = 0xC8u << i;
 1370|  38.7k|                      new_sig |= t & inv_sig;
 1371|  38.7k|                    }
 1372|   165k|                    cwd >>= 1; ++cnt;
 1373|   165k|                  }
 1374|   266k|                }
 1375|       |
 1376|  97.3k|                if (new_sig)
  ------------------
  |  Branch (1376:21): [True: 41.4k, False: 55.9k]
  ------------------
 1377|  41.4k|                {
 1378|       |                  // the sign bits sit right after the cnt consumed bits
 1379|       |                  // of cwd; no reassembly is needed
 1380|       |
 1381|       |                  // Spread new_sig, such that each bit is in one byte with a
 1382|       |                  // value of 0 if new_sig bit is 0, and 0xFF if new_sig is 1
 1383|  41.4k|                  __m128i new_sig_vec = _mm_set1_epi16((si16)new_sig);
 1384|  41.4k|                  new_sig_vec = _mm_shuffle_epi8(new_sig_vec,
 1385|  41.4k|                    _mm_set_epi8(1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0));
 1386|  41.4k|                  new_sig_vec = _mm_and_si128(new_sig_vec,
 1387|  41.4k|                    _mm_set1_epi64x((si64)0x8040201008040201));
 1388|  41.4k|                  new_sig_vec = _mm_cmpeq_epi8(new_sig_vec,
 1389|  41.4k|                    _mm_set1_epi64x((si64)0x8040201008040201));
 1390|       |
 1391|       |                  // find cumulative sums
 1392|       |                  // to find which bit in cwd we should extract
 1393|  41.4k|                  __m128i inc_sum = new_sig_vec; // inclusive scan
 1394|  41.4k|                  inc_sum = _mm_abs_epi8(inc_sum); // cvrt to 0 or 1
 1395|  41.4k|                  inc_sum = _mm_add_epi8(inc_sum, _mm_bslli_si128(inc_sum, 1));
 1396|  41.4k|                  inc_sum = _mm_add_epi8(inc_sum, _mm_bslli_si128(inc_sum, 2));
 1397|  41.4k|                  inc_sum = _mm_add_epi8(inc_sum, _mm_bslli_si128(inc_sum, 4));
 1398|  41.4k|                  inc_sum = _mm_add_epi8(inc_sum, _mm_bslli_si128(inc_sum, 8));
 1399|  41.4k|                  cnt += (ui32)_mm_extract_epi16(inc_sum, 7) >> 8;
 1400|       |                  // exclusive scan
 1401|  41.4k|                  __m128i ex_sum = _mm_bslli_si128(inc_sum, 1);
 1402|       |
 1403|       |                  // Spread cwd, such that each bit is in one byte
 1404|       |                  // with a value of 0 or 1.
 1405|  41.4k|                  __m128i cwd_vec = _mm_set1_epi16((si16)cwd);
 1406|  41.4k|                  cwd_vec = _mm_shuffle_epi8(cwd_vec,
 1407|  41.4k|                    _mm_set_epi8(1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0));
 1408|  41.4k|                  cwd_vec = _mm_and_si128(cwd_vec,
 1409|  41.4k|                    _mm_set1_epi64x((si64)0x8040201008040201));
 1410|  41.4k|                  cwd_vec = _mm_cmpeq_epi8(cwd_vec,
 1411|  41.4k|                    _mm_set1_epi64x((si64)0x8040201008040201));
 1412|  41.4k|                  cwd_vec = _mm_abs_epi8(cwd_vec);
 1413|       |
 1414|       |                  // Obtain bit from cwd_vec correspondig to ex_sum
 1415|       |                  // Basically, collect needed bits from cwd_vec
 1416|  41.4k|                  __m128i v = _mm_shuffle_epi8(cwd_vec, ex_sum);
 1417|       |
 1418|       |                  // load data and set spp coefficients
 1419|  41.4k|                  __m128i m =
 1420|  41.4k|                    _mm_set_epi8(-1,-1,-1,12,-1,-1,-1,8,-1,-1,-1,4,-1,-1,-1,0);
 1421|  41.4k|                  __m128i val = _mm_set1_epi32(3 << (p - 2));
 1422|  41.4k|                  ui32 *dp = dpp;
 1423|   207k|                  for (int c = 0; c < 4; ++ c) {
  ------------------
  |  Branch (1423:35): [True: 165k, False: 41.4k]
  ------------------
 1424|   165k|                    __m128i s0, s0_ns, s0_val;
 1425|       |                    // load coefficients
 1426|   165k|                    s0 = _mm_load_si128((__m128i*)dp);
 1427|       |
 1428|       |                    // epi32 is -1 only for coefficient that
 1429|       |                    // are changed during the SPP
 1430|   165k|                    s0_ns = _mm_shuffle_epi8(new_sig_vec, m);
 1431|   165k|                    s0_ns = _mm_cmpeq_epi32(s0_ns, _mm_set1_epi32(0xFF));
 1432|       |
 1433|       |                    // obtain sign for coefficients in SPP
 1434|   165k|                    s0_val = _mm_shuffle_epi8(v, m);
 1435|   165k|                    s0_val = _mm_slli_epi32(s0_val, 31);
 1436|   165k|                    s0_val = _mm_or_si128(s0_val, val);
 1437|   165k|                    s0_val = _mm_and_si128(s0_val, s0_ns);
 1438|       |
 1439|       |                    // update vector
 1440|   165k|                    s0 = _mm_or_si128(s0, s0_val);
 1441|       |                    // store coefficients
 1442|   165k|                    _mm_store_si128((__m128i*)dp, s0);
 1443|       |                    // prepare for next row
 1444|   165k|                    dp += stride;
 1445|   165k|                    m = _mm_add_epi32(m, _mm_set1_epi32(1));
 1446|   165k|                  }
 1447|  41.4k|                }
 1448|  97.3k|                spp_pos += cnt;
 1449|  97.3k|              }
 1450|       |
 1451|   145k|              new_sig |= cs;
 1452|   145k|              *prev_sig = (ui16)(new_sig);
 1453|       |
 1454|       |              // vertical integration for the new sig. info.
 1455|   145k|              t = new_sig;
 1456|   145k|              new_sig |= (t & 0x7777) << 1; //above neighbors
 1457|   145k|              new_sig |= (t & 0xEEEE) >> 1; //below neighbors
 1458|       |              // add sig. info. from the row on top and below
 1459|   145k|              prev = new_sig | u;
 1460|       |              // we need only the bits in 0xF000
 1461|   145k|              prev &= 0xF000;
 1462|   145k|            }
 1463|  74.7k|          }
 1464|  16.7k|        }
 1465|       |
 1466|       |        // We perform Magnitude Refinement Pass here
 1467|  16.7k|        if (num_passes > 2)
  ------------------
  |  Branch (1467:13): [True: 10.4k, False: 6.27k]
  ------------------
 1468|  10.4k|        {
 1469|       |          // de-stuff the MRP segment; consumption is at most 1 bit per
 1470|       |          // sample = 512 bytes, so 1024 bytes always suffice
 1471|  10.4k|          const ui32 mrp_cap = 1024;
 1472|  10.4k|          ui8 mrp_buf[mrp_cap + 72];
 1473|  10.4k|          ui32 mrp_limit = destuff_mrp(coded_data, (int)lengths1,
 1474|  10.4k|                                       (int)lengths2, mrp_buf, mrp_cap);
 1475|  10.4k|          ui32 mrp_pos = 0;
 1476|       |
 1477|  48.0k|          for (ui32 y = 0; y < height; y += 4)
  ------------------
  |  Branch (1477:28): [True: 37.5k, False: 10.4k]
  ------------------
 1478|  37.5k|          {
 1479|  37.5k|            ui16 *cur_sig = sigma + (y >> 2) * mstr;
 1480|  37.5k|            ui32 *dpp = decoded_data + y * stride;
 1481|   112k|            for (ui32 i = 0; i < width; i += 4, dpp += 4)
  ------------------
  |  Branch (1481:30): [True: 74.6k, False: 37.5k]
  ------------------
 1482|  74.6k|            {
 1483|       |              //Process one entry from sigma array at a time
 1484|       |              // Each nibble (4 bits) in the sigma array represents 4 rows,
 1485|  74.6k|              ui64 cwd = dfetch64(mrp_buf, mrp_limit, mrp_pos);
 1486|  74.6k|              ui16 sig = *cur_sig++; // 16 bit that will be processed now
 1487|  74.6k|              int total_bits = 0;
 1488|  74.6k|              if (sig) // if any of the 32 bits are set
  ------------------
  |  Branch (1488:19): [True: 46.2k, False: 28.4k]
  ------------------
 1489|  46.2k|              {
 1490|       |                // We work on 4 rows, with 4 samples each, since
 1491|       |                // data is 32 bit (4 bytes)
 1492|       |
 1493|       |                // spread the 16 bits in sig to 0 or 1 bytes in sig_vec
 1494|  46.2k|                __m128i sig_vec = _mm_set1_epi16((si16)sig);
 1495|  46.2k|                sig_vec = _mm_shuffle_epi8(sig_vec,
 1496|  46.2k|                  _mm_set_epi8(1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0));
 1497|  46.2k|                sig_vec = _mm_and_si128(sig_vec,
 1498|  46.2k|                  _mm_set1_epi64x((si64)0x8040201008040201));
 1499|  46.2k|                sig_vec = _mm_cmpeq_epi8(sig_vec,
 1500|  46.2k|                  _mm_set1_epi64x((si64)0x8040201008040201));
 1501|  46.2k|                sig_vec = _mm_abs_epi8(sig_vec);
 1502|       |
 1503|       |                // find cumulative sums
 1504|       |                // to find which bit in cwd we should extract
 1505|  46.2k|                __m128i inc_sum = sig_vec; // inclusive scan
 1506|  46.2k|                inc_sum = _mm_add_epi8(inc_sum, _mm_bslli_si128(inc_sum, 1));
 1507|  46.2k|                inc_sum = _mm_add_epi8(inc_sum, _mm_bslli_si128(inc_sum, 2));
 1508|  46.2k|                inc_sum = _mm_add_epi8(inc_sum, _mm_bslli_si128(inc_sum, 4));
 1509|  46.2k|                inc_sum = _mm_add_epi8(inc_sum, _mm_bslli_si128(inc_sum, 8));
 1510|  46.2k|                total_bits = _mm_extract_epi16(inc_sum, 7) >> 8;
 1511|  46.2k|                __m128i ex_sum = _mm_bslli_si128(inc_sum, 1); // exclusive scan
 1512|       |
 1513|       |                // Spread the 16 bits in cwd to inverted 0 or 1 bytes in
 1514|       |                // cwd_vec. Then, convert these to a form suitable
 1515|       |                // for coefficient modifications; in particular, a value
 1516|       |                // of 0 is presented as binary 11, and a value of 1 is
 1517|       |                // represented as binary 01
 1518|  46.2k|                __m128i cwd_vec = _mm_set1_epi16((si16)cwd);
 1519|  46.2k|                cwd_vec = _mm_shuffle_epi8(cwd_vec,
 1520|  46.2k|                  _mm_set_epi8(1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0));
 1521|  46.2k|                cwd_vec = _mm_and_si128(cwd_vec,
 1522|  46.2k|                  _mm_set1_epi64x((si64)0x8040201008040201));
 1523|  46.2k|                cwd_vec = _mm_cmpeq_epi8(cwd_vec,
 1524|  46.2k|                  _mm_set1_epi64x((si64)0x8040201008040201));
 1525|  46.2k|                cwd_vec = _mm_add_epi8(cwd_vec, _mm_set1_epi8(1));
 1526|  46.2k|                cwd_vec = _mm_add_epi8(cwd_vec, cwd_vec);
 1527|  46.2k|                cwd_vec = _mm_or_si128(cwd_vec, _mm_set1_epi8(1));
 1528|       |
 1529|       |                // load data and insert the mrp bit
 1530|  46.2k|                __m128i m =
 1531|  46.2k|                  _mm_set_epi8(-1,-1,-1,12,-1,-1,-1,8,-1,-1,-1,4,-1,-1,-1,0);
 1532|  46.2k|                ui32 *dp = dpp;
 1533|   231k|                for (int c = 0; c < 4; ++c) {
  ------------------
  |  Branch (1533:33): [True: 184k, False: 46.2k]
  ------------------
 1534|   184k|                  __m128i s0, s0_sig, s0_idx, s0_val;
 1535|       |                  // load coefficients
 1536|   184k|                  s0 = _mm_load_si128((__m128i*)dp);
 1537|       |                  // find significant samples in this row
 1538|   184k|                  s0_sig = _mm_shuffle_epi8(sig_vec, m);
 1539|   184k|                  s0_sig = _mm_cmpeq_epi8(s0_sig, _mm_setzero_si128());
 1540|       |                  // get MRP bit index, and MRP pattern
 1541|   184k|                  s0_idx = _mm_shuffle_epi8(ex_sum, m);
 1542|   184k|                  s0_val = _mm_shuffle_epi8(cwd_vec, s0_idx);
 1543|       |                  // keep data from significant samples only
 1544|   184k|                  s0_val = _mm_andnot_si128(s0_sig, s0_val);
 1545|       |                  // move mrp bits to correct position, and employ
 1546|   184k|                  s0_val = _mm_slli_epi32(s0_val, (si32)p - 2);
 1547|   184k|                  s0 = _mm_xor_si128(s0, s0_val);
 1548|       |                  // store coefficients
 1549|   184k|                  _mm_store_si128((__m128i*)dp, s0);
 1550|       |                  // prepare for next row
 1551|   184k|                  dp += stride;
 1552|   184k|                  m = _mm_add_epi32(m, _mm_set1_epi32(1));
 1553|   184k|                }
 1554|  46.2k|              }
 1555|       |              // consume data according to the number of bits set
 1556|  74.6k|              mrp_pos += (ui32)total_bits;
 1557|  74.6k|            }
 1558|  37.5k|          }
 1559|  10.4k|        }
 1560|  16.7k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL12destuff_frwdILi0EEEjPKhiPhj:
  305|  16.7k|    {
  306|  16.7k|      if (size < 0)
  ------------------
  |  Branch (306:11): [True: 0, False: 16.7k]
  ------------------
  307|      0|        size = 0;
  308|  16.7k|      ui8* o = dst;
  309|  16.7k|      ui8* o_end = dst + cap;
  310|  16.7k|      const ui8* s = src;
  311|  16.7k|      const ui8* s_end = src + size;
  312|  16.7k|      ui64 acc = 0;       // partial output byte, low nb bits are valid
  313|  16.7k|      ui32 nb = 0;        // number of valid bits in acc; always < 8
  314|  16.7k|      bool prev_ff = false;
  315|       |
  316|       |      // fast path; 16 source bytes at a time when they contain no 0xFF
  317|  75.5k|      while (s + 16 <= s_end && o + 24 <= o_end)
  ------------------
  |  Branch (317:14): [True: 59.0k, False: 16.5k]
  |  Branch (317:33): [True: 58.8k, False: 219]
  ------------------
  318|  58.8k|      {
  319|  58.8k|        __m128i v = _mm_loadu_si128((const __m128i*)s);
  320|  58.8k|        int ff = _mm_movemask_epi8(_mm_cmpeq_epi8(v, _mm_set1_epi8(-1)));
  321|  58.8k|        if (ff != 0 || prev_ff)
  ------------------
  |  Branch (321:13): [True: 45.0k, False: 13.7k]
  |  Branch (321:24): [True: 919, False: 12.8k]
  ------------------
  322|  46.0k|        { // process these 16 bytes one at a time
  323|   782k|          for (int i = 0; i < 16; ++i) {
  ------------------
  |  Branch (323:27): [True: 736k, False: 46.0k]
  ------------------
  324|   736k|            ui8 b = *s++;
  325|   736k|            acc |= (ui64)b << nb;
  326|   736k|            nb += prev_ff ? 7u : 8u;
  ------------------
  |  Branch (326:19): [True: 191k, False: 544k]
  ------------------
  327|   736k|            prev_ff = (b == 0xFFu);
  328|   736k|            if (nb >= 8) { *o++ = (ui8)acc; acc >>= 8; nb -= 8; }
  ------------------
  |  Branch (328:17): [True: 706k, False: 29.2k]
  ------------------
  329|   736k|          }
  330|  46.0k|          continue;
  331|  46.0k|        }
  332|  12.8k|        ui64 v0, v1;
  333|  12.8k|        memcpy(&v0, s, 8);
  334|  12.8k|        memcpy(&v1, s + 8, 8);
  335|  12.8k|        ui64 w0 = acc | (v0 << nb);
  336|  12.8k|        ui64 w1 = (v1 << nb) | (nb ? (v0 >> (64 - nb)) : 0);
  ------------------
  |  Branch (336:33): [True: 7.76k, False: 5.04k]
  ------------------
  337|  12.8k|        memcpy(o, &w0, 8);
  338|  12.8k|        memcpy(o + 8, &w1, 8);
  339|  12.8k|        acc = nb ? (v1 >> (64 - nb)) : 0;
  ------------------
  |  Branch (339:15): [True: 7.76k, False: 5.04k]
  ------------------
  340|  12.8k|        o += 16;
  341|  12.8k|        s += 16;
  342|  12.8k|      }
  343|       |      // tail; one byte at a time
  344|   163k|      while (s < s_end && o < o_end)
  ------------------
  |  Branch (344:14): [True: 147k, False: 16.5k]
  |  Branch (344:27): [True: 147k, False: 219]
  ------------------
  345|   147k|      {
  346|   147k|        ui8 b = *s++;
  347|   147k|        acc |= (ui64)b << nb;
  348|   147k|        nb += prev_ff ? 7u : 8u;
  ------------------
  |  Branch (348:15): [True: 24.9k, False: 122k]
  ------------------
  349|   147k|        prev_ff = (b == 0xFFu);
  350|   147k|        if (nb >= 8) { *o++ = (ui8)acc; acc >>= 8; nb -= 8; }
  ------------------
  |  Branch (350:13): [True: 141k, False: 5.87k]
  ------------------
  351|   147k|      }
  352|       |      // fill the bits above nb with X, and pad with X bytes
  353|  16.7k|      ui32 fill = (X == 0xFF) ? (0xFFu << nb) : 0;
  ------------------
  |  Branch (353:19): [Folded, False: 16.7k]
  ------------------
  354|  16.7k|      *o = (ui8)((ui32)acc | fill);
  355|  16.7k|      __m256i pad = _mm256_set1_epi8((char)X);
  356|  16.7k|      _mm256_storeu_si256((__m256i*)(o + 1), pad);
  357|  16.7k|      _mm256_storeu_si256((__m256i*)(o + 33), pad);
  358|  16.7k|      return (ui32)(o - dst) + 1;
  359|  16.7k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL8dfetch64EPKhjj:
  402|   171k|    {
  403|   171k|      ui32 off = pos >> 3;
  404|   171k|      off = off < limit ? off : limit;
  ------------------
  |  Branch (404:13): [True: 146k, False: 25.8k]
  ------------------
  405|   171k|      ui64 v;
  406|   171k|      memcpy(&v, dbuf + off, 8);
  407|   171k|      return v >> (pos & 7);
  408|   171k|    }
ojph_block_decoder_avx2.cpp:_ZN4ojph5localL11destuff_mrpEPKhiiPhj:
  615|  10.4k|    {
  616|  10.4k|      return destuff_rev(data + lcup + len2 - 1, len2, true, 0, 0,
  617|  10.4k|                         dst, cap);
  618|  10.4k|    }

_ZN4ojph5local31initialize_block_encoder_tablesEv:
  258|  5.13M|    bool initialize_block_encoder_tables() {
  259|  5.13M|      static bool tables_initialized = false;
  260|  5.13M|      static std::once_flag tables_initialized_flag;
  261|  5.13M|      std::call_once(tables_initialized_flag, []() {
  262|  5.13M|        memset(vlc_tbl0, 0, 2048 * sizeof(ui16));
  263|  5.13M|        memset(vlc_tbl1, 0, 2048 * sizeof(ui16));
  264|  5.13M|        tables_initialized = vlc_init_tables();
  265|  5.13M|        tables_initialized = tables_initialized && uvlc_init_tables();
  266|  5.13M|      });
  267|  5.13M|      return tables_initialized;
  268|  5.13M|    }
ojph_block_encoder.cpp:_ZZN4ojph5local31initialize_block_encoder_tablesEvENK3$_0clEv:
  261|      1|      std::call_once(tables_initialized_flag, []() {
  262|      1|        memset(vlc_tbl0, 0, 2048 * sizeof(ui16));
  263|      1|        memset(vlc_tbl1, 0, 2048 * sizeof(ui16));
  264|      1|        tables_initialized = vlc_init_tables();
  265|      1|        tables_initialized = tables_initialized && uvlc_init_tables();
  ------------------
  |  Branch (265:30): [True: 1, False: 0]
  |  Branch (265:52): [True: 1, False: 0]
  ------------------
  266|      1|      });
ojph_block_encoder.cpp:_ZN4ojph5localL15vlc_init_tablesEv:
   77|      1|    {
   78|      1|      struct vlc_src_table { int c_q, rho, u_off, e_k, e_1, cwd, cwd_len; };
   79|      1|      vlc_src_table tbl0[] = {
   80|      1|    #include "table0.h"
  ------------------
  |  |    1|      1|{0, 0x1, 0x0, 0x0, 0x0, 0x06, 4},
  |  |    2|      1|{0, 0x1, 0x1, 0x1, 0x1, 0x3F, 7},
  |  |    3|      1|{0, 0x2, 0x0, 0x0, 0x0, 0x00, 3},
  |  |    4|      1|{0, 0x2, 0x1, 0x2, 0x2, 0x7F, 7},
  |  |    5|      1|{0, 0x3, 0x0, 0x0, 0x0, 0x11, 5},
  |  |    6|      1|{0, 0x3, 0x1, 0x2, 0x2, 0x5F, 7},
  |  |    7|      1|{0, 0x3, 0x1, 0x3, 0x1, 0x1F, 7},
  |  |    8|      1|{0, 0x4, 0x0, 0x0, 0x0, 0x02, 3},
  |  |    9|      1|{0, 0x4, 0x1, 0x4, 0x4, 0x13, 6},
  |  |   10|      1|{0, 0x5, 0x0, 0x0, 0x0, 0x0E, 5},
  |  |   11|      1|{0, 0x5, 0x1, 0x4, 0x4, 0x23, 6},
  |  |   12|      1|{0, 0x5, 0x1, 0x5, 0x1, 0x0F, 7},
  |  |   13|      1|{0, 0x6, 0x0, 0x0, 0x0, 0x03, 6},
  |  |   14|      1|{0, 0x6, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |   15|      1|{0, 0x7, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   16|      1|{0, 0x7, 0x1, 0x2, 0x2, 0x4F, 7},
  |  |   17|      1|{0, 0x7, 0x1, 0x2, 0x0, 0x0D, 6},
  |  |   18|      1|{0, 0x8, 0x0, 0x0, 0x0, 0x04, 3},
  |  |   19|      1|{0, 0x8, 0x1, 0x8, 0x8, 0x3D, 6},
  |  |   20|      1|{0, 0x9, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |   21|      1|{0, 0x9, 0x1, 0x0, 0x0, 0x2D, 6},
  |  |   22|      1|{0, 0xA, 0x0, 0x0, 0x0, 0x01, 5},
  |  |   23|      1|{0, 0xA, 0x1, 0x8, 0x8, 0x35, 6},
  |  |   24|      1|{0, 0xA, 0x1, 0xA, 0x2, 0x77, 7},
  |  |   25|      1|{0, 0xB, 0x0, 0x0, 0x0, 0x37, 7},
  |  |   26|      1|{0, 0xB, 0x1, 0x1, 0x1, 0x57, 7},
  |  |   27|      1|{0, 0xB, 0x1, 0x1, 0x0, 0x09, 6},
  |  |   28|      1|{0, 0xC, 0x0, 0x0, 0x0, 0x1E, 5},
  |  |   29|      1|{0, 0xC, 0x1, 0xC, 0xC, 0x17, 7},
  |  |   30|      1|{0, 0xC, 0x1, 0xC, 0x4, 0x15, 6},
  |  |   31|      1|{0, 0xC, 0x1, 0xC, 0x8, 0x25, 6},
  |  |   32|      1|{0, 0xD, 0x0, 0x0, 0x0, 0x67, 7},
  |  |   33|      1|{0, 0xD, 0x1, 0x1, 0x1, 0x27, 7},
  |  |   34|      1|{0, 0xD, 0x1, 0x5, 0x4, 0x47, 7},
  |  |   35|      1|{0, 0xD, 0x1, 0xD, 0x8, 0x07, 7},
  |  |   36|      1|{0, 0xE, 0x0, 0x0, 0x0, 0x7B, 7},
  |  |   37|      1|{0, 0xE, 0x1, 0x2, 0x2, 0x4B, 7},
  |  |   38|      1|{0, 0xE, 0x1, 0xA, 0x8, 0x05, 6},
  |  |   39|      1|{0, 0xE, 0x1, 0xE, 0x4, 0x3B, 7},
  |  |   40|      1|{0, 0xF, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |   41|      1|{0, 0xF, 0x1, 0x9, 0x9, 0x1B, 7},
  |  |   42|      1|{0, 0xF, 0x1, 0xB, 0xA, 0x6B, 7},
  |  |   43|      1|{0, 0xF, 0x1, 0xF, 0xC, 0x2B, 7},
  |  |   44|      1|{0, 0xF, 0x1, 0xF, 0x8, 0x39, 6},
  |  |   45|      1|{0, 0xF, 0x1, 0xE, 0x6, 0x73, 7},
  |  |   46|      1|{0, 0xF, 0x1, 0xE, 0x2, 0x19, 6},
  |  |   47|      1|{0, 0xF, 0x1, 0xF, 0x5, 0x0B, 7},
  |  |   48|      1|{0, 0xF, 0x1, 0xF, 0x4, 0x29, 6},
  |  |   49|      1|{0, 0xF, 0x1, 0xF, 0x1, 0x33, 7},
  |  |   50|      1|{1, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |   51|      1|{1, 0x1, 0x0, 0x0, 0x0, 0x0E, 4},
  |  |   52|      1|{1, 0x1, 0x1, 0x1, 0x1, 0x1F, 7},
  |  |   53|      1|{1, 0x2, 0x0, 0x0, 0x0, 0x06, 4},
  |  |   54|      1|{1, 0x2, 0x1, 0x2, 0x2, 0x3B, 6},
  |  |   55|      1|{1, 0x3, 0x0, 0x0, 0x0, 0x1B, 6},
  |  |   56|      1|{1, 0x3, 0x1, 0x0, 0x0, 0x3D, 6},
  |  |   57|      1|{1, 0x4, 0x0, 0x0, 0x0, 0x0A, 4},
  |  |   58|      1|{1, 0x4, 0x1, 0x4, 0x4, 0x2B, 6},
  |  |   59|      1|{1, 0x5, 0x0, 0x0, 0x0, 0x0B, 6},
  |  |   60|      1|{1, 0x5, 0x1, 0x4, 0x4, 0x33, 6},
  |  |   61|      1|{1, 0x5, 0x1, 0x5, 0x1, 0x7F, 7},
  |  |   62|      1|{1, 0x6, 0x0, 0x0, 0x0, 0x13, 6},
  |  |   63|      1|{1, 0x6, 0x1, 0x0, 0x0, 0x23, 6},
  |  |   64|      1|{1, 0x7, 0x0, 0x0, 0x0, 0x3F, 7},
  |  |   65|      1|{1, 0x7, 0x1, 0x2, 0x2, 0x5F, 7},
  |  |   66|      1|{1, 0x7, 0x1, 0x2, 0x0, 0x03, 6},
  |  |   67|      1|{1, 0x8, 0x0, 0x0, 0x0, 0x02, 4},
  |  |   68|      1|{1, 0x8, 0x1, 0x8, 0x8, 0x1D, 6},
  |  |   69|      1|{1, 0x9, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |   70|      1|{1, 0x9, 0x1, 0x0, 0x0, 0x0D, 6},
  |  |   71|      1|{1, 0xA, 0x0, 0x0, 0x0, 0x35, 6},
  |  |   72|      1|{1, 0xA, 0x1, 0x8, 0x8, 0x15, 6},
  |  |   73|      1|{1, 0xA, 0x1, 0xA, 0x2, 0x6F, 7},
  |  |   74|      1|{1, 0xB, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   75|      1|{1, 0xB, 0x1, 0x1, 0x1, 0x4F, 7},
  |  |   76|      1|{1, 0xB, 0x1, 0x1, 0x0, 0x11, 6},
  |  |   77|      1|{1, 0xC, 0x0, 0x0, 0x0, 0x01, 5},
  |  |   78|      1|{1, 0xC, 0x1, 0x8, 0x8, 0x25, 6},
  |  |   79|      1|{1, 0xC, 0x1, 0xC, 0x4, 0x05, 6},
  |  |   80|      1|{1, 0xD, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |   81|      1|{1, 0xD, 0x1, 0x1, 0x1, 0x17, 7},
  |  |   82|      1|{1, 0xD, 0x1, 0x5, 0x4, 0x39, 6},
  |  |   83|      1|{1, 0xD, 0x1, 0xD, 0x8, 0x77, 7},
  |  |   84|      1|{1, 0xE, 0x0, 0x0, 0x0, 0x37, 7},
  |  |   85|      1|{1, 0xE, 0x1, 0x2, 0x2, 0x57, 7},
  |  |   86|      1|{1, 0xE, 0x1, 0xA, 0x8, 0x19, 6},
  |  |   87|      1|{1, 0xE, 0x1, 0xE, 0x4, 0x67, 7},
  |  |   88|      1|{1, 0xF, 0x0, 0x0, 0x0, 0x07, 7},
  |  |   89|      1|{1, 0xF, 0x1, 0xB, 0x8, 0x29, 6},
  |  |   90|      1|{1, 0xF, 0x1, 0x8, 0x8, 0x27, 7},
  |  |   91|      1|{1, 0xF, 0x1, 0xA, 0x2, 0x09, 6},
  |  |   92|      1|{1, 0xF, 0x1, 0xE, 0x4, 0x31, 6},
  |  |   93|      1|{1, 0xF, 0x1, 0xF, 0x1, 0x47, 7},
  |  |   94|      1|{2, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |   95|      1|{2, 0x1, 0x0, 0x0, 0x0, 0x0E, 4},
  |  |   96|      1|{2, 0x1, 0x1, 0x1, 0x1, 0x1B, 6},
  |  |   97|      1|{2, 0x2, 0x0, 0x0, 0x0, 0x06, 4},
  |  |   98|      1|{2, 0x2, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |   99|      1|{2, 0x3, 0x0, 0x0, 0x0, 0x2B, 6},
  |  |  100|      1|{2, 0x3, 0x1, 0x1, 0x1, 0x33, 6},
  |  |  101|      1|{2, 0x3, 0x1, 0x3, 0x2, 0x7F, 7},
  |  |  102|      1|{2, 0x4, 0x0, 0x0, 0x0, 0x0A, 4},
  |  |  103|      1|{2, 0x4, 0x1, 0x4, 0x4, 0x0B, 6},
  |  |  104|      1|{2, 0x5, 0x0, 0x0, 0x0, 0x01, 5},
  |  |  105|      1|{2, 0x5, 0x1, 0x5, 0x5, 0x2F, 7},
  |  |  106|      1|{2, 0x5, 0x1, 0x5, 0x1, 0x13, 6},
  |  |  107|      1|{2, 0x5, 0x1, 0x5, 0x4, 0x23, 6},
  |  |  108|      1|{2, 0x6, 0x0, 0x0, 0x0, 0x03, 6},
  |  |  109|      1|{2, 0x6, 0x1, 0x0, 0x0, 0x5F, 7},
  |  |  110|      1|{2, 0x7, 0x0, 0x0, 0x0, 0x1F, 7},
  |  |  111|      1|{2, 0x7, 0x1, 0x2, 0x2, 0x6F, 7},
  |  |  112|      1|{2, 0x7, 0x1, 0x3, 0x1, 0x11, 6},
  |  |  113|      1|{2, 0x7, 0x1, 0x7, 0x4, 0x37, 7},
  |  |  114|      1|{2, 0x8, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  115|      1|{2, 0x8, 0x1, 0x8, 0x8, 0x4F, 7},
  |  |  116|      1|{2, 0x9, 0x0, 0x0, 0x0, 0x3D, 6},
  |  |  117|      1|{2, 0x9, 0x1, 0x0, 0x0, 0x1D, 6},
  |  |  118|      1|{2, 0xA, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |  119|      1|{2, 0xA, 0x1, 0x0, 0x0, 0x0D, 6},
  |  |  120|      1|{2, 0xB, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |  121|      1|{2, 0xB, 0x1, 0x2, 0x2, 0x77, 7},
  |  |  122|      1|{2, 0xB, 0x1, 0x2, 0x0, 0x35, 6},
  |  |  123|      1|{2, 0xC, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  124|      1|{2, 0xC, 0x1, 0x4, 0x4, 0x25, 6},
  |  |  125|      1|{2, 0xC, 0x1, 0xC, 0x8, 0x57, 7},
  |  |  126|      1|{2, 0xD, 0x0, 0x0, 0x0, 0x17, 7},
  |  |  127|      1|{2, 0xD, 0x1, 0x8, 0x8, 0x05, 6},
  |  |  128|      1|{2, 0xD, 0x1, 0xC, 0x4, 0x39, 6},
  |  |  129|      1|{2, 0xD, 0x1, 0xD, 0x1, 0x67, 7},
  |  |  130|      1|{2, 0xE, 0x0, 0x0, 0x0, 0x27, 7},
  |  |  131|      1|{2, 0xE, 0x1, 0x2, 0x2, 0x7B, 7},
  |  |  132|      1|{2, 0xE, 0x1, 0x2, 0x0, 0x19, 6},
  |  |  133|      1|{2, 0xF, 0x0, 0x0, 0x0, 0x47, 7},
  |  |  134|      1|{2, 0xF, 0x1, 0xF, 0x1, 0x29, 6},
  |  |  135|      1|{2, 0xF, 0x1, 0x1, 0x1, 0x09, 6},
  |  |  136|      1|{2, 0xF, 0x1, 0x3, 0x2, 0x07, 7},
  |  |  137|      1|{2, 0xF, 0x1, 0x7, 0x4, 0x31, 6},
  |  |  138|      1|{2, 0xF, 0x1, 0xF, 0x8, 0x3B, 7},
  |  |  139|      1|{3, 0x0, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  140|      1|{3, 0x1, 0x0, 0x0, 0x0, 0x04, 4},
  |  |  141|      1|{3, 0x1, 0x1, 0x1, 0x1, 0x3D, 6},
  |  |  142|      1|{3, 0x2, 0x0, 0x0, 0x0, 0x0C, 5},
  |  |  143|      1|{3, 0x2, 0x1, 0x2, 0x2, 0x4F, 7},
  |  |  144|      1|{3, 0x3, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  145|      1|{3, 0x3, 0x1, 0x1, 0x1, 0x05, 6},
  |  |  146|      1|{3, 0x3, 0x1, 0x3, 0x2, 0x7F, 7},
  |  |  147|      1|{3, 0x4, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  148|      1|{3, 0x4, 0x1, 0x4, 0x4, 0x2D, 6},
  |  |  149|      1|{3, 0x5, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  150|      1|{3, 0x5, 0x1, 0x5, 0x5, 0x1A, 5},
  |  |  151|      1|{3, 0x5, 0x1, 0x5, 0x1, 0x0D, 6},
  |  |  152|      1|{3, 0x5, 0x1, 0x5, 0x4, 0x35, 6},
  |  |  153|      1|{3, 0x6, 0x0, 0x0, 0x0, 0x3F, 7},
  |  |  154|      1|{3, 0x6, 0x1, 0x4, 0x4, 0x5F, 7},
  |  |  155|      1|{3, 0x6, 0x1, 0x6, 0x2, 0x1F, 7},
  |  |  156|      1|{3, 0x7, 0x0, 0x0, 0x0, 0x6F, 7},
  |  |  157|      1|{3, 0x7, 0x1, 0x6, 0x6, 0x2F, 7},
  |  |  158|      1|{3, 0x7, 0x1, 0x6, 0x4, 0x15, 6},
  |  |  159|      1|{3, 0x7, 0x1, 0x7, 0x3, 0x77, 7},
  |  |  160|      1|{3, 0x7, 0x1, 0x7, 0x1, 0x25, 6},
  |  |  161|      1|{3, 0x7, 0x1, 0x7, 0x2, 0x0F, 7},
  |  |  162|      1|{3, 0x8, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  163|      1|{3, 0x8, 0x1, 0x8, 0x8, 0x07, 7},
  |  |  164|      1|{3, 0x9, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  165|      1|{3, 0x9, 0x1, 0x1, 0x1, 0x37, 7},
  |  |  166|      1|{3, 0x9, 0x1, 0x9, 0x8, 0x57, 7},
  |  |  167|      1|{3, 0xA, 0x0, 0x0, 0x0, 0x19, 6},
  |  |  168|      1|{3, 0xA, 0x1, 0x8, 0x8, 0x29, 6},
  |  |  169|      1|{3, 0xA, 0x1, 0xA, 0x2, 0x17, 7},
  |  |  170|      1|{3, 0xB, 0x0, 0x0, 0x0, 0x67, 7},
  |  |  171|      1|{3, 0xB, 0x1, 0xB, 0x1, 0x27, 7},
  |  |  172|      1|{3, 0xB, 0x1, 0x1, 0x1, 0x47, 7},
  |  |  173|      1|{3, 0xB, 0x1, 0x3, 0x2, 0x09, 6},
  |  |  174|      1|{3, 0xB, 0x1, 0xB, 0x8, 0x7B, 7},
  |  |  175|      1|{3, 0xC, 0x0, 0x0, 0x0, 0x31, 6},
  |  |  176|      1|{3, 0xC, 0x1, 0x4, 0x4, 0x11, 6},
  |  |  177|      1|{3, 0xC, 0x1, 0xC, 0x8, 0x3B, 7},
  |  |  178|      1|{3, 0xD, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  179|      1|{3, 0xD, 0x1, 0x9, 0x9, 0x1B, 7},
  |  |  180|      1|{3, 0xD, 0x1, 0xD, 0x5, 0x2B, 7},
  |  |  181|      1|{3, 0xD, 0x1, 0xD, 0x1, 0x21, 6},
  |  |  182|      1|{3, 0xD, 0x1, 0xD, 0xC, 0x6B, 7},
  |  |  183|      1|{3, 0xD, 0x1, 0xD, 0x4, 0x01, 6},
  |  |  184|      1|{3, 0xD, 0x1, 0xD, 0x8, 0x4B, 7},
  |  |  185|      1|{3, 0xE, 0x0, 0x0, 0x0, 0x0B, 7},
  |  |  186|      1|{3, 0xE, 0x1, 0xE, 0x4, 0x73, 7},
  |  |  187|      1|{3, 0xE, 0x1, 0x4, 0x4, 0x13, 7},
  |  |  188|      1|{3, 0xE, 0x1, 0xC, 0x8, 0x3E, 6},
  |  |  189|      1|{3, 0xE, 0x1, 0xE, 0x2, 0x33, 7},
  |  |  190|      1|{3, 0xF, 0x0, 0x0, 0x0, 0x53, 7},
  |  |  191|      1|{3, 0xF, 0x1, 0xA, 0xA, 0x0E, 6},
  |  |  192|      1|{3, 0xF, 0x1, 0xB, 0x9, 0x63, 7},
  |  |  193|      1|{3, 0xF, 0x1, 0xF, 0xC, 0x03, 7},
  |  |  194|      1|{3, 0xF, 0x1, 0xF, 0x8, 0x12, 5},
  |  |  195|      1|{3, 0xF, 0x1, 0xE, 0x6, 0x23, 7},
  |  |  196|      1|{3, 0xF, 0x1, 0xF, 0x5, 0x1E, 6},
  |  |  197|      1|{3, 0xF, 0x1, 0xF, 0x4, 0x02, 5},
  |  |  198|      1|{3, 0xF, 0x1, 0xF, 0x3, 0x43, 7},
  |  |  199|      1|{3, 0xF, 0x1, 0xF, 0x1, 0x1C, 5},
  |  |  200|      1|{3, 0xF, 0x1, 0xF, 0x2, 0x2E, 6},
  |  |  201|      1|{4, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |  202|      1|{4, 0x1, 0x0, 0x0, 0x0, 0x0E, 4},
  |  |  203|      1|{4, 0x1, 0x1, 0x1, 0x1, 0x3F, 7},
  |  |  204|      1|{4, 0x2, 0x0, 0x0, 0x0, 0x06, 4},
  |  |  205|      1|{4, 0x2, 0x1, 0x2, 0x2, 0x1B, 6},
  |  |  206|      1|{4, 0x3, 0x0, 0x0, 0x0, 0x2B, 6},
  |  |  207|      1|{4, 0x3, 0x1, 0x2, 0x2, 0x3D, 6},
  |  |  208|      1|{4, 0x3, 0x1, 0x3, 0x1, 0x7F, 7},
  |  |  209|      1|{4, 0x4, 0x0, 0x0, 0x0, 0x0A, 4},
  |  |  210|      1|{4, 0x4, 0x1, 0x4, 0x4, 0x5F, 7},
  |  |  211|      1|{4, 0x5, 0x0, 0x0, 0x0, 0x0B, 6},
  |  |  212|      1|{4, 0x5, 0x1, 0x0, 0x0, 0x33, 6},
  |  |  213|      1|{4, 0x6, 0x0, 0x0, 0x0, 0x13, 6},
  |  |  214|      1|{4, 0x6, 0x1, 0x0, 0x0, 0x23, 6},
  |  |  215|      1|{4, 0x7, 0x0, 0x0, 0x0, 0x1F, 7},
  |  |  216|      1|{4, 0x7, 0x1, 0x4, 0x4, 0x6F, 7},
  |  |  217|      1|{4, 0x7, 0x1, 0x4, 0x0, 0x03, 6},
  |  |  218|      1|{4, 0x8, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  219|      1|{4, 0x8, 0x1, 0x8, 0x8, 0x1D, 6},
  |  |  220|      1|{4, 0x9, 0x0, 0x0, 0x0, 0x11, 6},
  |  |  221|      1|{4, 0x9, 0x1, 0x0, 0x0, 0x77, 7},
  |  |  222|      1|{4, 0xA, 0x0, 0x0, 0x0, 0x01, 5},
  |  |  223|      1|{4, 0xA, 0x1, 0xA, 0xA, 0x2F, 7},
  |  |  224|      1|{4, 0xA, 0x1, 0xA, 0x2, 0x2D, 6},
  |  |  225|      1|{4, 0xA, 0x1, 0xA, 0x8, 0x0D, 6},
  |  |  226|      1|{4, 0xB, 0x0, 0x0, 0x0, 0x4F, 7},
  |  |  227|      1|{4, 0xB, 0x1, 0xB, 0x2, 0x0F, 7},
  |  |  228|      1|{4, 0xB, 0x1, 0x0, 0x0, 0x35, 6},
  |  |  229|      1|{4, 0xC, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  230|      1|{4, 0xC, 0x1, 0x8, 0x8, 0x25, 6},
  |  |  231|      1|{4, 0xC, 0x1, 0xC, 0x4, 0x37, 7},
  |  |  232|      1|{4, 0xD, 0x0, 0x0, 0x0, 0x57, 7},
  |  |  233|      1|{4, 0xD, 0x1, 0x1, 0x1, 0x07, 7},
  |  |  234|      1|{4, 0xD, 0x1, 0x1, 0x0, 0x05, 6},
  |  |  235|      1|{4, 0xE, 0x0, 0x0, 0x0, 0x17, 7},
  |  |  236|      1|{4, 0xE, 0x1, 0x4, 0x4, 0x39, 6},
  |  |  237|      1|{4, 0xE, 0x1, 0xC, 0x8, 0x19, 6},
  |  |  238|      1|{4, 0xE, 0x1, 0xE, 0x2, 0x67, 7},
  |  |  239|      1|{4, 0xF, 0x0, 0x0, 0x0, 0x27, 7},
  |  |  240|      1|{4, 0xF, 0x1, 0x9, 0x9, 0x47, 7},
  |  |  241|      1|{4, 0xF, 0x1, 0x9, 0x1, 0x29, 6},
  |  |  242|      1|{4, 0xF, 0x1, 0x7, 0x6, 0x7B, 7},
  |  |  243|      1|{4, 0xF, 0x1, 0x7, 0x2, 0x09, 6},
  |  |  244|      1|{4, 0xF, 0x1, 0xB, 0x8, 0x31, 6},
  |  |  245|      1|{4, 0xF, 0x1, 0xF, 0x4, 0x3B, 7},
  |  |  246|      1|{5, 0x0, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  247|      1|{5, 0x1, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  248|      1|{5, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |  249|      1|{5, 0x2, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  250|      1|{5, 0x2, 0x1, 0x2, 0x2, 0x1D, 6},
  |  |  251|      1|{5, 0x3, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |  252|      1|{5, 0x3, 0x1, 0x3, 0x3, 0x5F, 7},
  |  |  253|      1|{5, 0x3, 0x1, 0x3, 0x2, 0x39, 6},
  |  |  254|      1|{5, 0x3, 0x1, 0x3, 0x1, 0x3F, 7},
  |  |  255|      1|{5, 0x4, 0x0, 0x0, 0x0, 0x12, 5},
  |  |  256|      1|{5, 0x4, 0x1, 0x4, 0x4, 0x1F, 7},
  |  |  257|      1|{5, 0x5, 0x0, 0x0, 0x0, 0x0D, 6},
  |  |  258|      1|{5, 0x5, 0x1, 0x4, 0x4, 0x35, 6},
  |  |  259|      1|{5, 0x5, 0x1, 0x5, 0x1, 0x6F, 7},
  |  |  260|      1|{5, 0x6, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  261|      1|{5, 0x6, 0x1, 0x2, 0x2, 0x25, 6},
  |  |  262|      1|{5, 0x6, 0x1, 0x6, 0x4, 0x2F, 7},
  |  |  263|      1|{5, 0x7, 0x0, 0x0, 0x0, 0x4F, 7},
  |  |  264|      1|{5, 0x7, 0x1, 0x6, 0x6, 0x57, 7},
  |  |  265|      1|{5, 0x7, 0x1, 0x6, 0x4, 0x05, 6},
  |  |  266|      1|{5, 0x7, 0x1, 0x7, 0x3, 0x0F, 7},
  |  |  267|      1|{5, 0x7, 0x1, 0x7, 0x2, 0x77, 7},
  |  |  268|      1|{5, 0x7, 0x1, 0x7, 0x1, 0x37, 7},
  |  |  269|      1|{5, 0x8, 0x0, 0x0, 0x0, 0x02, 5},
  |  |  270|      1|{5, 0x8, 0x1, 0x8, 0x8, 0x19, 6},
  |  |  271|      1|{5, 0x9, 0x0, 0x0, 0x0, 0x26, 6},
  |  |  272|      1|{5, 0x9, 0x1, 0x8, 0x8, 0x17, 7},
  |  |  273|      1|{5, 0x9, 0x1, 0x9, 0x1, 0x67, 7},
  |  |  274|      1|{5, 0xA, 0x0, 0x0, 0x0, 0x1C, 5},
  |  |  275|      1|{5, 0xA, 0x1, 0xA, 0xA, 0x29, 6},
  |  |  276|      1|{5, 0xA, 0x1, 0xA, 0x2, 0x09, 6},
  |  |  277|      1|{5, 0xA, 0x1, 0xA, 0x8, 0x31, 6},
  |  |  278|      1|{5, 0xB, 0x0, 0x0, 0x0, 0x27, 7},
  |  |  279|      1|{5, 0xB, 0x1, 0x9, 0x9, 0x07, 7},
  |  |  280|      1|{5, 0xB, 0x1, 0x9, 0x8, 0x11, 6},
  |  |  281|      1|{5, 0xB, 0x1, 0xB, 0x3, 0x47, 7},
  |  |  282|      1|{5, 0xB, 0x1, 0xB, 0x2, 0x21, 6},
  |  |  283|      1|{5, 0xB, 0x1, 0xB, 0x1, 0x7B, 7},
  |  |  284|      1|{5, 0xC, 0x0, 0x0, 0x0, 0x01, 6},
  |  |  285|      1|{5, 0xC, 0x1, 0x8, 0x8, 0x3E, 6},
  |  |  286|      1|{5, 0xC, 0x1, 0xC, 0x4, 0x3B, 7},
  |  |  287|      1|{5, 0xD, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  288|      1|{5, 0xD, 0x1, 0x9, 0x9, 0x6B, 7},
  |  |  289|      1|{5, 0xD, 0x1, 0x9, 0x8, 0x1E, 6},
  |  |  290|      1|{5, 0xD, 0x1, 0xD, 0x5, 0x1B, 7},
  |  |  291|      1|{5, 0xD, 0x1, 0xD, 0x4, 0x2E, 6},
  |  |  292|      1|{5, 0xD, 0x1, 0xD, 0x1, 0x2B, 7},
  |  |  293|      1|{5, 0xE, 0x0, 0x0, 0x0, 0x4B, 7},
  |  |  294|      1|{5, 0xE, 0x1, 0x6, 0x6, 0x0B, 7},
  |  |  295|      1|{5, 0xE, 0x1, 0xE, 0xA, 0x33, 7},
  |  |  296|      1|{5, 0xE, 0x1, 0xE, 0x2, 0x0E, 6},
  |  |  297|      1|{5, 0xE, 0x1, 0xE, 0xC, 0x73, 7},
  |  |  298|      1|{5, 0xE, 0x1, 0xE, 0x8, 0x36, 6},
  |  |  299|      1|{5, 0xE, 0x1, 0xE, 0x4, 0x53, 7},
  |  |  300|      1|{5, 0xF, 0x0, 0x0, 0x0, 0x13, 7},
  |  |  301|      1|{5, 0xF, 0x1, 0x7, 0x7, 0x43, 7},
  |  |  302|      1|{5, 0xF, 0x1, 0x7, 0x6, 0x16, 6},
  |  |  303|      1|{5, 0xF, 0x1, 0x7, 0x5, 0x63, 7},
  |  |  304|      1|{5, 0xF, 0x1, 0xF, 0xC, 0x23, 7},
  |  |  305|      1|{5, 0xF, 0x1, 0xF, 0x4, 0x0C, 5},
  |  |  306|      1|{5, 0xF, 0x1, 0xD, 0x9, 0x03, 7},
  |  |  307|      1|{5, 0xF, 0x1, 0xF, 0xA, 0x3D, 7},
  |  |  308|      1|{5, 0xF, 0x1, 0xF, 0x8, 0x14, 5},
  |  |  309|      1|{5, 0xF, 0x1, 0xF, 0x3, 0x7D, 7},
  |  |  310|      1|{5, 0xF, 0x1, 0xF, 0x2, 0x04, 5},
  |  |  311|      1|{5, 0xF, 0x1, 0xF, 0x1, 0x06, 6},
  |  |  312|      1|{6, 0x0, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  313|      1|{6, 0x1, 0x0, 0x0, 0x0, 0x04, 4},
  |  |  314|      1|{6, 0x1, 0x1, 0x1, 0x1, 0x03, 6},
  |  |  315|      1|{6, 0x2, 0x0, 0x0, 0x0, 0x0C, 5},
  |  |  316|      1|{6, 0x2, 0x1, 0x2, 0x2, 0x0D, 6},
  |  |  317|      1|{6, 0x3, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  318|      1|{6, 0x3, 0x1, 0x3, 0x3, 0x3D, 6},
  |  |  319|      1|{6, 0x3, 0x1, 0x3, 0x1, 0x1D, 6},
  |  |  320|      1|{6, 0x3, 0x1, 0x3, 0x2, 0x2D, 6},
  |  |  321|      1|{6, 0x4, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  322|      1|{6, 0x4, 0x1, 0x4, 0x4, 0x3F, 7},
  |  |  323|      1|{6, 0x5, 0x0, 0x0, 0x0, 0x35, 6},
  |  |  324|      1|{6, 0x5, 0x1, 0x1, 0x1, 0x15, 6},
  |  |  325|      1|{6, 0x5, 0x1, 0x5, 0x4, 0x7F, 7},
  |  |  326|      1|{6, 0x6, 0x0, 0x0, 0x0, 0x25, 6},
  |  |  327|      1|{6, 0x6, 0x1, 0x2, 0x2, 0x5F, 7},
  |  |  328|      1|{6, 0x6, 0x1, 0x6, 0x4, 0x1F, 7},
  |  |  329|      1|{6, 0x7, 0x0, 0x0, 0x0, 0x6F, 7},
  |  |  330|      1|{6, 0x7, 0x1, 0x6, 0x6, 0x4F, 7},
  |  |  331|      1|{6, 0x7, 0x1, 0x6, 0x4, 0x05, 6},
  |  |  332|      1|{6, 0x7, 0x1, 0x7, 0x3, 0x2F, 7},
  |  |  333|      1|{6, 0x7, 0x1, 0x7, 0x1, 0x36, 6},
  |  |  334|      1|{6, 0x7, 0x1, 0x7, 0x2, 0x77, 7},
  |  |  335|      1|{6, 0x8, 0x0, 0x0, 0x0, 0x12, 5},
  |  |  336|      1|{6, 0x8, 0x1, 0x8, 0x8, 0x0F, 7},
  |  |  337|      1|{6, 0x9, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  338|      1|{6, 0x9, 0x1, 0x1, 0x1, 0x37, 7},
  |  |  339|      1|{6, 0x9, 0x1, 0x9, 0x8, 0x57, 7},
  |  |  340|      1|{6, 0xA, 0x0, 0x0, 0x0, 0x19, 6},
  |  |  341|      1|{6, 0xA, 0x1, 0x2, 0x2, 0x29, 6},
  |  |  342|      1|{6, 0xA, 0x1, 0xA, 0x8, 0x17, 7},
  |  |  343|      1|{6, 0xB, 0x0, 0x0, 0x0, 0x67, 7},
  |  |  344|      1|{6, 0xB, 0x1, 0x9, 0x9, 0x47, 7},
  |  |  345|      1|{6, 0xB, 0x1, 0x9, 0x1, 0x09, 6},
  |  |  346|      1|{6, 0xB, 0x1, 0xB, 0xA, 0x27, 7},
  |  |  347|      1|{6, 0xB, 0x1, 0xB, 0x2, 0x31, 6},
  |  |  348|      1|{6, 0xB, 0x1, 0xB, 0x8, 0x7B, 7},
  |  |  349|      1|{6, 0xC, 0x0, 0x0, 0x0, 0x11, 6},
  |  |  350|      1|{6, 0xC, 0x1, 0xC, 0xC, 0x07, 7},
  |  |  351|      1|{6, 0xC, 0x1, 0xC, 0x8, 0x21, 6},
  |  |  352|      1|{6, 0xC, 0x1, 0xC, 0x4, 0x3B, 7},
  |  |  353|      1|{6, 0xD, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  354|      1|{6, 0xD, 0x1, 0x5, 0x5, 0x33, 7},
  |  |  355|      1|{6, 0xD, 0x1, 0x5, 0x4, 0x01, 6},
  |  |  356|      1|{6, 0xD, 0x1, 0xC, 0x8, 0x1B, 7},
  |  |  357|      1|{6, 0xD, 0x1, 0xD, 0x1, 0x6B, 7},
  |  |  358|      1|{6, 0xE, 0x0, 0x0, 0x0, 0x2B, 7},
  |  |  359|      1|{6, 0xE, 0x1, 0xE, 0x2, 0x4B, 7},
  |  |  360|      1|{6, 0xE, 0x1, 0x2, 0x2, 0x0B, 7},
  |  |  361|      1|{6, 0xE, 0x1, 0xE, 0xC, 0x73, 7},
  |  |  362|      1|{6, 0xE, 0x1, 0xE, 0x8, 0x3E, 6},
  |  |  363|      1|{6, 0xE, 0x1, 0xE, 0x4, 0x53, 7},
  |  |  364|      1|{6, 0xF, 0x0, 0x0, 0x0, 0x13, 7},
  |  |  365|      1|{6, 0xF, 0x1, 0x6, 0x6, 0x1E, 6},
  |  |  366|      1|{6, 0xF, 0x1, 0xE, 0xA, 0x2E, 6},
  |  |  367|      1|{6, 0xF, 0x1, 0xF, 0x3, 0x0E, 6},
  |  |  368|      1|{6, 0xF, 0x1, 0xF, 0x2, 0x02, 5},
  |  |  369|      1|{6, 0xF, 0x1, 0xB, 0x9, 0x63, 7},
  |  |  370|      1|{6, 0xF, 0x1, 0xF, 0xC, 0x16, 6},
  |  |  371|      1|{6, 0xF, 0x1, 0xF, 0x8, 0x06, 6},
  |  |  372|      1|{6, 0xF, 0x1, 0xF, 0x5, 0x23, 7},
  |  |  373|      1|{6, 0xF, 0x1, 0xF, 0x1, 0x1C, 5},
  |  |  374|      1|{6, 0xF, 0x1, 0xF, 0x4, 0x26, 6},
  |  |  375|      1|{7, 0x0, 0x0, 0x0, 0x0, 0x12, 5},
  |  |  376|      1|{7, 0x1, 0x0, 0x0, 0x0, 0x05, 6},
  |  |  377|      1|{7, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |  378|      1|{7, 0x2, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  379|      1|{7, 0x2, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |  380|      1|{7, 0x3, 0x0, 0x0, 0x0, 0x5F, 7},
  |  |  381|      1|{7, 0x3, 0x1, 0x3, 0x3, 0x1F, 7},
  |  |  382|      1|{7, 0x3, 0x1, 0x3, 0x2, 0x6F, 7},
  |  |  383|      1|{7, 0x3, 0x1, 0x3, 0x1, 0x2F, 7},
  |  |  384|      1|{7, 0x4, 0x0, 0x0, 0x0, 0x4F, 7},
  |  |  385|      1|{7, 0x4, 0x1, 0x4, 0x4, 0x0F, 7},
  |  |  386|      1|{7, 0x5, 0x0, 0x0, 0x0, 0x57, 7},
  |  |  387|      1|{7, 0x5, 0x1, 0x1, 0x1, 0x19, 6},
  |  |  388|      1|{7, 0x5, 0x1, 0x5, 0x4, 0x77, 7},
  |  |  389|      1|{7, 0x6, 0x0, 0x0, 0x0, 0x37, 7},
  |  |  390|      1|{7, 0x6, 0x1, 0x0, 0x0, 0x29, 6},
  |  |  391|      1|{7, 0x7, 0x0, 0x0, 0x0, 0x17, 7},
  |  |  392|      1|{7, 0x7, 0x1, 0x6, 0x6, 0x67, 7},
  |  |  393|      1|{7, 0x7, 0x1, 0x7, 0x3, 0x27, 7},
  |  |  394|      1|{7, 0x7, 0x1, 0x7, 0x2, 0x47, 7},
  |  |  395|      1|{7, 0x7, 0x1, 0x7, 0x5, 0x1B, 7},
  |  |  396|      1|{7, 0x7, 0x1, 0x7, 0x1, 0x09, 6},
  |  |  397|      1|{7, 0x7, 0x1, 0x7, 0x4, 0x07, 7},
  |  |  398|      1|{7, 0x8, 0x0, 0x0, 0x0, 0x7B, 7},
  |  |  399|      1|{7, 0x8, 0x1, 0x8, 0x8, 0x3B, 7},
  |  |  400|      1|{7, 0x9, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  401|      1|{7, 0x9, 0x1, 0x0, 0x0, 0x31, 6},
  |  |  402|      1|{7, 0xA, 0x0, 0x0, 0x0, 0x53, 7},
  |  |  403|      1|{7, 0xA, 0x1, 0x2, 0x2, 0x11, 6},
  |  |  404|      1|{7, 0xA, 0x1, 0xA, 0x8, 0x6B, 7},
  |  |  405|      1|{7, 0xB, 0x0, 0x0, 0x0, 0x2B, 7},
  |  |  406|      1|{7, 0xB, 0x1, 0x9, 0x9, 0x4B, 7},
  |  |  407|      1|{7, 0xB, 0x1, 0xB, 0x3, 0x0B, 7},
  |  |  408|      1|{7, 0xB, 0x1, 0xB, 0x1, 0x73, 7},
  |  |  409|      1|{7, 0xB, 0x1, 0xB, 0xA, 0x33, 7},
  |  |  410|      1|{7, 0xB, 0x1, 0xB, 0x2, 0x21, 6},
  |  |  411|      1|{7, 0xB, 0x1, 0xB, 0x8, 0x13, 7},
  |  |  412|      1|{7, 0xC, 0x0, 0x0, 0x0, 0x63, 7},
  |  |  413|      1|{7, 0xC, 0x1, 0x8, 0x8, 0x23, 7},
  |  |  414|      1|{7, 0xC, 0x1, 0xC, 0x4, 0x43, 7},
  |  |  415|      1|{7, 0xD, 0x0, 0x0, 0x0, 0x03, 7},
  |  |  416|      1|{7, 0xD, 0x1, 0x9, 0x9, 0x7D, 7},
  |  |  417|      1|{7, 0xD, 0x1, 0xD, 0x5, 0x5D, 7},
  |  |  418|      1|{7, 0xD, 0x1, 0xD, 0x1, 0x01, 6},
  |  |  419|      1|{7, 0xD, 0x1, 0xD, 0xC, 0x3D, 7},
  |  |  420|      1|{7, 0xD, 0x1, 0xD, 0x4, 0x3E, 6},
  |  |  421|      1|{7, 0xD, 0x1, 0xD, 0x8, 0x1D, 7},
  |  |  422|      1|{7, 0xE, 0x0, 0x0, 0x0, 0x6D, 7},
  |  |  423|      1|{7, 0xE, 0x1, 0x6, 0x6, 0x2D, 7},
  |  |  424|      1|{7, 0xE, 0x1, 0xE, 0xA, 0x0D, 7},
  |  |  425|      1|{7, 0xE, 0x1, 0xE, 0x2, 0x1E, 6},
  |  |  426|      1|{7, 0xE, 0x1, 0xE, 0xC, 0x4D, 7},
  |  |  427|      1|{7, 0xE, 0x1, 0xE, 0x8, 0x0E, 6},
  |  |  428|      1|{7, 0xE, 0x1, 0xE, 0x4, 0x75, 7},
  |  |  429|      1|{7, 0xF, 0x0, 0x0, 0x0, 0x15, 7},
  |  |  430|      1|{7, 0xF, 0x1, 0xF, 0xF, 0x06, 5},
  |  |  431|      1|{7, 0xF, 0x1, 0xF, 0xD, 0x35, 7},
  |  |  432|      1|{7, 0xF, 0x1, 0xF, 0x7, 0x55, 7},
  |  |  433|      1|{7, 0xF, 0x1, 0xF, 0x5, 0x1A, 5},
  |  |  434|      1|{7, 0xF, 0x1, 0xF, 0xB, 0x25, 7},
  |  |  435|      1|{7, 0xF, 0x1, 0xF, 0x3, 0x0A, 5},
  |  |  436|      1|{7, 0xF, 0x1, 0xF, 0x9, 0x2E, 6},
  |  |  437|      1|{7, 0xF, 0x1, 0xF, 0x1, 0x00, 4},
  |  |  438|      1|{7, 0xF, 0x1, 0xF, 0xE, 0x65, 7},
  |  |  439|      1|{7, 0xF, 0x1, 0xF, 0x6, 0x36, 6},
  |  |  440|      1|{7, 0xF, 0x1, 0xF, 0xA, 0x02, 5},
  |  |  441|      1|{7, 0xF, 0x1, 0xF, 0x2, 0x0C, 4},
  |  |  442|      1|{7, 0xF, 0x1, 0xF, 0xC, 0x16, 6},
  |  |  443|      1|{7, 0xF, 0x1, 0xF, 0x8, 0x04, 4},
  |  |  444|      1|{7, 0xF, 0x1, 0xF, 0x4, 0x08, 4}
  ------------------
   81|      1|      };
   82|      1|      size_t tbl0_size = sizeof(tbl0) / sizeof(vlc_src_table);
   83|       |
   84|      1|      si32 pattern_popcnt[16];
   85|     17|      for (ui32 i = 0; i < 16; ++i)
  ------------------
  |  Branch (85:24): [True: 16, False: 1]
  ------------------
   86|     16|        pattern_popcnt[i] = (si32)population_count(i);
   87|       |
   88|      1|      vlc_src_table* src_tbl = tbl0;
   89|      1|      ui16 *tgt_tbl = vlc_tbl0;
   90|      1|      size_t tbl_size = tbl0_size;
   91|  2.04k|      for (int i = 0; i < 2048; ++i)
  ------------------
  |  Branch (91:23): [True: 2.04k, False: 1]
  ------------------
   92|  2.04k|      {
   93|  2.04k|        int c_q = i >> 8, rho = (i >> 4) & 0xF, emb = i & 0xF;
   94|  2.04k|        if (((emb & rho) != emb) || (rho == 0 && c_q == 0))
  ------------------
  |  Branch (94:13): [True: 1.40k, False: 648]
  |  Branch (94:38): [True: 8, False: 640]
  |  Branch (94:50): [True: 1, False: 7]
  ------------------
   95|  1.40k|          tgt_tbl[i] = 0;
   96|    647|        else
   97|    647|        {
   98|    647|          vlc_src_table *best_entry = NULL;
   99|    647|          if (emb) // u_off = 1
  ------------------
  |  Branch (99:15): [True: 520, False: 127]
  ------------------
  100|    520|          {
  101|    520|            int best_e_k = -1;
  102|   231k|            for (size_t j = 0; j < tbl_size; ++j)
  ------------------
  |  Branch (102:32): [True: 230k, False: 520]
  ------------------
  103|   230k|            {
  104|   230k|              if (src_tbl[j].c_q == c_q && src_tbl[j].rho == rho)
  ------------------
  |  Branch (104:19): [True: 28.8k, False: 202k]
  |  Branch (104:44): [True: 2.74k, False: 26.1k]
  ------------------
  105|  2.74k|                if (src_tbl[j].u_off == 1)
  ------------------
  |  Branch (105:21): [True: 2.22k, False: 520]
  ------------------
  106|  2.22k|                  if ((emb & src_tbl[j].e_k) == src_tbl[j].e_1)
  ------------------
  |  Branch (106:23): [True: 527, False: 1.70k]
  ------------------
  107|    527|                  {
  108|       |                    //now we need to find the smallest cwd with the highest
  109|       |                    // number of bits set in e_k
  110|    527|                    int ones_count = pattern_popcnt[src_tbl[j].e_k];
  111|    527|                    if (ones_count >= best_e_k)
  ------------------
  |  Branch (111:25): [True: 520, False: 7]
  ------------------
  112|    520|                    {
  113|    520|                      best_entry = src_tbl + j;
  114|    520|                      best_e_k = ones_count;
  115|    520|                    }
  116|    527|                  }
  117|   230k|            }
  118|    520|          }
  119|    127|          else // u_off = 0
  120|    127|          {
  121|  25.1k|            for (size_t j = 0; j < tbl_size; ++j)
  ------------------
  |  Branch (121:32): [True: 25.1k, False: 0]
  ------------------
  122|  25.1k|            {
  123|  25.1k|              if (src_tbl[j].c_q == c_q && src_tbl[j].rho == rho)
  ------------------
  |  Branch (123:19): [True: 2.57k, False: 22.5k]
  |  Branch (123:44): [True: 127, False: 2.44k]
  ------------------
  124|    127|                if (src_tbl[j].u_off == 0)
  ------------------
  |  Branch (124:21): [True: 127, False: 0]
  ------------------
  125|    127|                {
  126|    127|                  best_entry = src_tbl + j;
  127|    127|                  break;
  128|    127|                }
  129|  25.1k|            }
  130|    127|          }
  131|    647|          assert(best_entry);
  132|    647|          tgt_tbl[i] = (ui16)((best_entry->cwd<<8) + (best_entry->cwd_len<<4)
  133|    647|                             + best_entry->e_k);
  134|    647|        }
  135|  2.04k|      }
  136|       |
  137|      1|      vlc_src_table tbl1[] = {
  138|      1|    #include "table1.h"
  ------------------
  |  |    1|      1|{0, 0x1, 0x0, 0x0, 0x0, 0x00, 3},
  |  |    2|      1|{0, 0x1, 0x1, 0x1, 0x1, 0x27, 6},
  |  |    3|      1|{0, 0x2, 0x0, 0x0, 0x0, 0x06, 3},
  |  |    4|      1|{0, 0x2, 0x1, 0x2, 0x2, 0x17, 6},
  |  |    5|      1|{0, 0x3, 0x0, 0x0, 0x0, 0x0D, 5},
  |  |    6|      1|{0, 0x3, 0x1, 0x0, 0x0, 0x3B, 6},
  |  |    7|      1|{0, 0x4, 0x0, 0x0, 0x0, 0x02, 3},
  |  |    8|      1|{0, 0x4, 0x1, 0x4, 0x4, 0x07, 6},
  |  |    9|      1|{0, 0x5, 0x0, 0x0, 0x0, 0x15, 5},
  |  |   10|      1|{0, 0x5, 0x1, 0x0, 0x0, 0x2B, 6},
  |  |   11|      1|{0, 0x6, 0x0, 0x0, 0x0, 0x01, 5},
  |  |   12|      1|{0, 0x6, 0x1, 0x0, 0x0, 0x7F, 7},
  |  |   13|      1|{0, 0x7, 0x0, 0x0, 0x0, 0x1F, 7},
  |  |   14|      1|{0, 0x7, 0x1, 0x0, 0x0, 0x1B, 6},
  |  |   15|      1|{0, 0x8, 0x0, 0x0, 0x0, 0x04, 3},
  |  |   16|      1|{0, 0x8, 0x1, 0x8, 0x8, 0x05, 5},
  |  |   17|      1|{0, 0x9, 0x0, 0x0, 0x0, 0x19, 5},
  |  |   18|      1|{0, 0x9, 0x1, 0x0, 0x0, 0x13, 6},
  |  |   19|      1|{0, 0xA, 0x0, 0x0, 0x0, 0x09, 5},
  |  |   20|      1|{0, 0xA, 0x1, 0x8, 0x8, 0x0B, 6},
  |  |   21|      1|{0, 0xA, 0x1, 0xA, 0x2, 0x3F, 7},
  |  |   22|      1|{0, 0xB, 0x0, 0x0, 0x0, 0x5F, 7},
  |  |   23|      1|{0, 0xB, 0x1, 0x0, 0x0, 0x33, 6},
  |  |   24|      1|{0, 0xC, 0x0, 0x0, 0x0, 0x11, 5},
  |  |   25|      1|{0, 0xC, 0x1, 0x8, 0x8, 0x23, 6},
  |  |   26|      1|{0, 0xC, 0x1, 0xC, 0x4, 0x6F, 7},
  |  |   27|      1|{0, 0xD, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |   28|      1|{0, 0xD, 0x1, 0x0, 0x0, 0x03, 6},
  |  |   29|      1|{0, 0xE, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   30|      1|{0, 0xE, 0x1, 0x4, 0x4, 0x4F, 7},
  |  |   31|      1|{0, 0xE, 0x1, 0x4, 0x0, 0x3D, 6},
  |  |   32|      1|{0, 0xF, 0x0, 0x0, 0x0, 0x77, 7},
  |  |   33|      1|{0, 0xF, 0x1, 0x1, 0x1, 0x37, 7},
  |  |   34|      1|{0, 0xF, 0x1, 0x1, 0x0, 0x1D, 6},
  |  |   35|      1|{1, 0x0, 0x0, 0x0, 0x0, 0x00, 1},
  |  |   36|      1|{1, 0x1, 0x0, 0x0, 0x0, 0x05, 4},
  |  |   37|      1|{1, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |   38|      1|{1, 0x2, 0x0, 0x0, 0x0, 0x09, 4},
  |  |   39|      1|{1, 0x2, 0x1, 0x2, 0x2, 0x1F, 7},
  |  |   40|      1|{1, 0x3, 0x0, 0x0, 0x0, 0x1D, 5},
  |  |   41|      1|{1, 0x3, 0x1, 0x1, 0x1, 0x3F, 7},
  |  |   42|      1|{1, 0x3, 0x1, 0x3, 0x2, 0x5F, 7},
  |  |   43|      1|{1, 0x4, 0x0, 0x0, 0x0, 0x0D, 5},
  |  |   44|      1|{1, 0x4, 0x1, 0x4, 0x4, 0x37, 7},
  |  |   45|      1|{1, 0x5, 0x0, 0x0, 0x0, 0x03, 6},
  |  |   46|      1|{1, 0x5, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |   47|      1|{1, 0x6, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   48|      1|{1, 0x6, 0x1, 0x0, 0x0, 0x4F, 7},
  |  |   49|      1|{1, 0x7, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |   50|      1|{1, 0x7, 0x1, 0x0, 0x0, 0x77, 7},
  |  |   51|      1|{1, 0x8, 0x0, 0x0, 0x0, 0x01, 4},
  |  |   52|      1|{1, 0x8, 0x1, 0x8, 0x8, 0x17, 7},
  |  |   53|      1|{1, 0x9, 0x0, 0x0, 0x0, 0x0B, 6},
  |  |   54|      1|{1, 0x9, 0x1, 0x0, 0x0, 0x57, 7},
  |  |   55|      1|{1, 0xA, 0x0, 0x0, 0x0, 0x33, 6},
  |  |   56|      1|{1, 0xA, 0x1, 0x0, 0x0, 0x67, 7},
  |  |   57|      1|{1, 0xB, 0x0, 0x0, 0x0, 0x27, 7},
  |  |   58|      1|{1, 0xB, 0x1, 0x0, 0x0, 0x2B, 7},
  |  |   59|      1|{1, 0xC, 0x0, 0x0, 0x0, 0x13, 6},
  |  |   60|      1|{1, 0xC, 0x1, 0x0, 0x0, 0x47, 7},
  |  |   61|      1|{1, 0xD, 0x0, 0x0, 0x0, 0x07, 7},
  |  |   62|      1|{1, 0xD, 0x1, 0x0, 0x0, 0x7B, 7},
  |  |   63|      1|{1, 0xE, 0x0, 0x0, 0x0, 0x3B, 7},
  |  |   64|      1|{1, 0xE, 0x1, 0x0, 0x0, 0x5B, 7},
  |  |   65|      1|{1, 0xF, 0x0, 0x0, 0x0, 0x1B, 7},
  |  |   66|      1|{1, 0xF, 0x1, 0x4, 0x4, 0x6B, 7},
  |  |   67|      1|{1, 0xF, 0x1, 0x4, 0x0, 0x23, 6},
  |  |   68|      1|{2, 0x0, 0x0, 0x0, 0x0, 0x00, 1},
  |  |   69|      1|{2, 0x1, 0x0, 0x0, 0x0, 0x09, 4},
  |  |   70|      1|{2, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |   71|      1|{2, 0x2, 0x0, 0x0, 0x0, 0x01, 4},
  |  |   72|      1|{2, 0x2, 0x1, 0x2, 0x2, 0x23, 6},
  |  |   73|      1|{2, 0x3, 0x0, 0x0, 0x0, 0x3D, 6},
  |  |   74|      1|{2, 0x3, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |   75|      1|{2, 0x3, 0x1, 0x3, 0x1, 0x1F, 7},
  |  |   76|      1|{2, 0x4, 0x0, 0x0, 0x0, 0x15, 5},
  |  |   77|      1|{2, 0x4, 0x1, 0x4, 0x4, 0x5F, 7},
  |  |   78|      1|{2, 0x5, 0x0, 0x0, 0x0, 0x03, 6},
  |  |   79|      1|{2, 0x5, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |   80|      1|{2, 0x6, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   81|      1|{2, 0x6, 0x1, 0x0, 0x0, 0x4F, 7},
  |  |   82|      1|{2, 0x7, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |   83|      1|{2, 0x7, 0x1, 0x0, 0x0, 0x17, 7},
  |  |   84|      1|{2, 0x8, 0x0, 0x0, 0x0, 0x05, 5},
  |  |   85|      1|{2, 0x8, 0x1, 0x8, 0x8, 0x77, 7},
  |  |   86|      1|{2, 0x9, 0x0, 0x0, 0x0, 0x37, 7},
  |  |   87|      1|{2, 0x9, 0x1, 0x0, 0x0, 0x57, 7},
  |  |   88|      1|{2, 0xA, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |   89|      1|{2, 0xA, 0x1, 0xA, 0xA, 0x7B, 7},
  |  |   90|      1|{2, 0xA, 0x1, 0xA, 0x2, 0x2D, 6},
  |  |   91|      1|{2, 0xA, 0x1, 0xA, 0x8, 0x67, 7},
  |  |   92|      1|{2, 0xB, 0x0, 0x0, 0x0, 0x27, 7},
  |  |   93|      1|{2, 0xB, 0x1, 0xB, 0x2, 0x47, 7},
  |  |   94|      1|{2, 0xB, 0x1, 0x0, 0x0, 0x07, 7},
  |  |   95|      1|{2, 0xC, 0x0, 0x0, 0x0, 0x0D, 6},
  |  |   96|      1|{2, 0xC, 0x1, 0x0, 0x0, 0x3B, 7},
  |  |   97|      1|{2, 0xD, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |   98|      1|{2, 0xD, 0x1, 0x0, 0x0, 0x1B, 7},
  |  |   99|      1|{2, 0xE, 0x0, 0x0, 0x0, 0x6B, 7},
  |  |  100|      1|{2, 0xE, 0x1, 0x4, 0x4, 0x2B, 7},
  |  |  101|      1|{2, 0xE, 0x1, 0x4, 0x0, 0x4B, 7},
  |  |  102|      1|{2, 0xF, 0x0, 0x0, 0x0, 0x0B, 7},
  |  |  103|      1|{2, 0xF, 0x1, 0x4, 0x4, 0x73, 7},
  |  |  104|      1|{2, 0xF, 0x1, 0x5, 0x1, 0x33, 7},
  |  |  105|      1|{2, 0xF, 0x1, 0x7, 0x2, 0x53, 7},
  |  |  106|      1|{2, 0xF, 0x1, 0xF, 0x8, 0x13, 7},
  |  |  107|      1|{3, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |  108|      1|{3, 0x1, 0x0, 0x0, 0x0, 0x0A, 4},
  |  |  109|      1|{3, 0x1, 0x1, 0x1, 0x1, 0x0B, 6},
  |  |  110|      1|{3, 0x2, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  111|      1|{3, 0x2, 0x1, 0x2, 0x2, 0x23, 6},
  |  |  112|      1|{3, 0x3, 0x0, 0x0, 0x0, 0x0E, 5},
  |  |  113|      1|{3, 0x3, 0x1, 0x3, 0x3, 0x7F, 7},
  |  |  114|      1|{3, 0x3, 0x1, 0x3, 0x2, 0x33, 6},
  |  |  115|      1|{3, 0x3, 0x1, 0x3, 0x1, 0x13, 6},
  |  |  116|      1|{3, 0x4, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  117|      1|{3, 0x4, 0x1, 0x4, 0x4, 0x3F, 7},
  |  |  118|      1|{3, 0x5, 0x0, 0x0, 0x0, 0x03, 6},
  |  |  119|      1|{3, 0x5, 0x1, 0x1, 0x1, 0x3D, 6},
  |  |  120|      1|{3, 0x5, 0x1, 0x5, 0x4, 0x1F, 7},
  |  |  121|      1|{3, 0x6, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  122|      1|{3, 0x6, 0x1, 0x0, 0x0, 0x5F, 7},
  |  |  123|      1|{3, 0x7, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |  124|      1|{3, 0x7, 0x1, 0x4, 0x4, 0x2F, 7},
  |  |  125|      1|{3, 0x7, 0x1, 0x5, 0x1, 0x1E, 6},
  |  |  126|      1|{3, 0x7, 0x1, 0x7, 0x2, 0x6F, 7},
  |  |  127|      1|{3, 0x8, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  128|      1|{3, 0x8, 0x1, 0x8, 0x8, 0x4F, 7},
  |  |  129|      1|{3, 0x9, 0x0, 0x0, 0x0, 0x0D, 6},
  |  |  130|      1|{3, 0x9, 0x1, 0x0, 0x0, 0x35, 6},
  |  |  131|      1|{3, 0xA, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  132|      1|{3, 0xA, 0x1, 0x2, 0x2, 0x25, 6},
  |  |  133|      1|{3, 0xA, 0x1, 0xA, 0x8, 0x0F, 7},
  |  |  134|      1|{3, 0xB, 0x0, 0x0, 0x0, 0x05, 6},
  |  |  135|      1|{3, 0xB, 0x1, 0x8, 0x8, 0x39, 6},
  |  |  136|      1|{3, 0xB, 0x1, 0xB, 0x3, 0x17, 7},
  |  |  137|      1|{3, 0xB, 0x1, 0xB, 0x2, 0x19, 6},
  |  |  138|      1|{3, 0xB, 0x1, 0xB, 0x1, 0x77, 7},
  |  |  139|      1|{3, 0xC, 0x0, 0x0, 0x0, 0x29, 6},
  |  |  140|      1|{3, 0xC, 0x1, 0x0, 0x0, 0x09, 6},
  |  |  141|      1|{3, 0xD, 0x0, 0x0, 0x0, 0x37, 7},
  |  |  142|      1|{3, 0xD, 0x1, 0x4, 0x4, 0x57, 7},
  |  |  143|      1|{3, 0xD, 0x1, 0x4, 0x0, 0x31, 6},
  |  |  144|      1|{3, 0xE, 0x0, 0x0, 0x0, 0x67, 7},
  |  |  145|      1|{3, 0xE, 0x1, 0x4, 0x4, 0x27, 7},
  |  |  146|      1|{3, 0xE, 0x1, 0xC, 0x8, 0x47, 7},
  |  |  147|      1|{3, 0xE, 0x1, 0xE, 0x2, 0x6B, 7},
  |  |  148|      1|{3, 0xF, 0x0, 0x0, 0x0, 0x11, 6},
  |  |  149|      1|{3, 0xF, 0x1, 0x6, 0x6, 0x07, 7},
  |  |  150|      1|{3, 0xF, 0x1, 0x7, 0x3, 0x7B, 7},
  |  |  151|      1|{3, 0xF, 0x1, 0xF, 0xA, 0x3B, 7},
  |  |  152|      1|{3, 0xF, 0x1, 0xF, 0x2, 0x21, 6},
  |  |  153|      1|{3, 0xF, 0x1, 0xF, 0x8, 0x01, 6},
  |  |  154|      1|{3, 0xF, 0x1, 0xA, 0x8, 0x5B, 7},
  |  |  155|      1|{3, 0xF, 0x1, 0xF, 0x5, 0x1B, 7},
  |  |  156|      1|{3, 0xF, 0x1, 0xF, 0x1, 0x3E, 6},
  |  |  157|      1|{3, 0xF, 0x1, 0xF, 0x4, 0x2B, 7},
  |  |  158|      1|{4, 0x0, 0x0, 0x0, 0x0, 0x00, 1},
  |  |  159|      1|{4, 0x1, 0x0, 0x0, 0x0, 0x0D, 5},
  |  |  160|      1|{4, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |  161|      1|{4, 0x2, 0x0, 0x0, 0x0, 0x15, 5},
  |  |  162|      1|{4, 0x2, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |  163|      1|{4, 0x3, 0x0, 0x0, 0x0, 0x5F, 7},
  |  |  164|      1|{4, 0x3, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |  165|      1|{4, 0x4, 0x0, 0x0, 0x0, 0x09, 4},
  |  |  166|      1|{4, 0x4, 0x1, 0x4, 0x4, 0x23, 6},
  |  |  167|      1|{4, 0x5, 0x0, 0x0, 0x0, 0x33, 6},
  |  |  168|      1|{4, 0x5, 0x1, 0x0, 0x0, 0x1F, 7},
  |  |  169|      1|{4, 0x6, 0x0, 0x0, 0x0, 0x13, 6},
  |  |  170|      1|{4, 0x6, 0x1, 0x0, 0x0, 0x2F, 7},
  |  |  171|      1|{4, 0x7, 0x0, 0x0, 0x0, 0x4F, 7},
  |  |  172|      1|{4, 0x7, 0x1, 0x0, 0x0, 0x57, 7},
  |  |  173|      1|{4, 0x8, 0x0, 0x0, 0x0, 0x01, 4},
  |  |  174|      1|{4, 0x8, 0x1, 0x8, 0x8, 0x0F, 7},
  |  |  175|      1|{4, 0x9, 0x0, 0x0, 0x0, 0x77, 7},
  |  |  176|      1|{4, 0x9, 0x1, 0x0, 0x0, 0x37, 7},
  |  |  177|      1|{4, 0xA, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  178|      1|{4, 0xA, 0x1, 0x0, 0x0, 0x17, 7},
  |  |  179|      1|{4, 0xB, 0x0, 0x0, 0x0, 0x67, 7},
  |  |  180|      1|{4, 0xB, 0x1, 0x0, 0x0, 0x6B, 7},
  |  |  181|      1|{4, 0xC, 0x0, 0x0, 0x0, 0x05, 5},
  |  |  182|      1|{4, 0xC, 0x1, 0xC, 0xC, 0x27, 7},
  |  |  183|      1|{4, 0xC, 0x1, 0xC, 0x8, 0x47, 7},
  |  |  184|      1|{4, 0xC, 0x1, 0xC, 0x4, 0x07, 7},
  |  |  185|      1|{4, 0xD, 0x0, 0x0, 0x0, 0x7B, 7},
  |  |  186|      1|{4, 0xD, 0x1, 0x0, 0x0, 0x3B, 7},
  |  |  187|      1|{4, 0xE, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  188|      1|{4, 0xE, 0x1, 0x2, 0x2, 0x1B, 7},
  |  |  189|      1|{4, 0xE, 0x1, 0x2, 0x0, 0x03, 6},
  |  |  190|      1|{4, 0xF, 0x0, 0x0, 0x0, 0x2B, 7},
  |  |  191|      1|{4, 0xF, 0x1, 0x1, 0x1, 0x4B, 7},
  |  |  192|      1|{4, 0xF, 0x1, 0x3, 0x2, 0x0B, 7},
  |  |  193|      1|{4, 0xF, 0x1, 0x3, 0x0, 0x3D, 6},
  |  |  194|      1|{5, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |  195|      1|{5, 0x1, 0x0, 0x0, 0x0, 0x1E, 5},
  |  |  196|      1|{5, 0x1, 0x1, 0x1, 0x1, 0x3B, 6},
  |  |  197|      1|{5, 0x2, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  198|      1|{5, 0x2, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |  199|      1|{5, 0x3, 0x0, 0x0, 0x0, 0x1B, 6},
  |  |  200|      1|{5, 0x3, 0x1, 0x0, 0x0, 0x0B, 6},
  |  |  201|      1|{5, 0x4, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  202|      1|{5, 0x4, 0x1, 0x4, 0x4, 0x2B, 6},
  |  |  203|      1|{5, 0x5, 0x0, 0x0, 0x0, 0x0E, 5},
  |  |  204|      1|{5, 0x5, 0x1, 0x4, 0x4, 0x33, 6},
  |  |  205|      1|{5, 0x5, 0x1, 0x5, 0x1, 0x7F, 7},
  |  |  206|      1|{5, 0x6, 0x0, 0x0, 0x0, 0x13, 6},
  |  |  207|      1|{5, 0x6, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |  208|      1|{5, 0x7, 0x0, 0x0, 0x0, 0x23, 6},
  |  |  209|      1|{5, 0x7, 0x1, 0x2, 0x2, 0x5F, 7},
  |  |  210|      1|{5, 0x7, 0x1, 0x2, 0x0, 0x15, 6},
  |  |  211|      1|{5, 0x8, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  212|      1|{5, 0x8, 0x1, 0x8, 0x8, 0x03, 6},
  |  |  213|      1|{5, 0x9, 0x0, 0x0, 0x0, 0x3D, 6},
  |  |  214|      1|{5, 0x9, 0x1, 0x0, 0x0, 0x1F, 7},
  |  |  215|      1|{5, 0xA, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  216|      1|{5, 0xA, 0x1, 0x0, 0x0, 0x2D, 6},
  |  |  217|      1|{5, 0xB, 0x0, 0x0, 0x0, 0x0D, 6},
  |  |  218|      1|{5, 0xB, 0x1, 0x1, 0x1, 0x4F, 7},
  |  |  219|      1|{5, 0xB, 0x1, 0x1, 0x0, 0x35, 6},
  |  |  220|      1|{5, 0xC, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  221|      1|{5, 0xC, 0x1, 0x4, 0x4, 0x25, 6},
  |  |  222|      1|{5, 0xC, 0x1, 0xC, 0x8, 0x2F, 7},
  |  |  223|      1|{5, 0xD, 0x0, 0x0, 0x0, 0x05, 6},
  |  |  224|      1|{5, 0xD, 0x1, 0x1, 0x1, 0x77, 7},
  |  |  225|      1|{5, 0xD, 0x1, 0x5, 0x4, 0x39, 6},
  |  |  226|      1|{5, 0xD, 0x1, 0xD, 0x8, 0x0F, 7},
  |  |  227|      1|{5, 0xE, 0x0, 0x0, 0x0, 0x19, 6},
  |  |  228|      1|{5, 0xE, 0x1, 0x2, 0x2, 0x57, 7},
  |  |  229|      1|{5, 0xE, 0x1, 0xA, 0x8, 0x01, 6},
  |  |  230|      1|{5, 0xE, 0x1, 0xE, 0x4, 0x37, 7},
  |  |  231|      1|{5, 0xF, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  232|      1|{5, 0xF, 0x1, 0x9, 0x9, 0x17, 7},
  |  |  233|      1|{5, 0xF, 0x1, 0xD, 0x5, 0x67, 7},
  |  |  234|      1|{5, 0xF, 0x1, 0xF, 0x3, 0x07, 7},
  |  |  235|      1|{5, 0xF, 0x1, 0xF, 0x1, 0x29, 6},
  |  |  236|      1|{5, 0xF, 0x1, 0x7, 0x6, 0x27, 7},
  |  |  237|      1|{5, 0xF, 0x1, 0xF, 0xC, 0x09, 6},
  |  |  238|      1|{5, 0xF, 0x1, 0xF, 0x4, 0x31, 6},
  |  |  239|      1|{5, 0xF, 0x1, 0xF, 0xA, 0x47, 7},
  |  |  240|      1|{5, 0xF, 0x1, 0xF, 0x8, 0x11, 6},
  |  |  241|      1|{5, 0xF, 0x1, 0xF, 0x2, 0x21, 6},
  |  |  242|      1|{6, 0x0, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  243|      1|{6, 0x1, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  244|      1|{6, 0x1, 0x1, 0x1, 0x1, 0x03, 6},
  |  |  245|      1|{6, 0x2, 0x0, 0x0, 0x0, 0x0C, 4},
  |  |  246|      1|{6, 0x2, 0x1, 0x2, 0x2, 0x3D, 6},
  |  |  247|      1|{6, 0x3, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  248|      1|{6, 0x3, 0x1, 0x2, 0x2, 0x0D, 6},
  |  |  249|      1|{6, 0x3, 0x1, 0x3, 0x1, 0x7F, 7},
  |  |  250|      1|{6, 0x4, 0x0, 0x0, 0x0, 0x04, 4},
  |  |  251|      1|{6, 0x4, 0x1, 0x4, 0x4, 0x2D, 6},
  |  |  252|      1|{6, 0x5, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  253|      1|{6, 0x5, 0x1, 0x4, 0x4, 0x35, 6},
  |  |  254|      1|{6, 0x5, 0x1, 0x5, 0x1, 0x2F, 7},
  |  |  255|      1|{6, 0x6, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  256|      1|{6, 0x6, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |  257|      1|{6, 0x6, 0x1, 0x6, 0x4, 0x5F, 7},
  |  |  258|      1|{6, 0x7, 0x0, 0x0, 0x0, 0x25, 6},
  |  |  259|      1|{6, 0x7, 0x1, 0x2, 0x2, 0x29, 6},
  |  |  260|      1|{6, 0x7, 0x1, 0x3, 0x1, 0x1F, 7},
  |  |  261|      1|{6, 0x7, 0x1, 0x7, 0x4, 0x6F, 7},
  |  |  262|      1|{6, 0x8, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  263|      1|{6, 0x8, 0x1, 0x8, 0x8, 0x05, 6},
  |  |  264|      1|{6, 0x9, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  265|      1|{6, 0x9, 0x1, 0x0, 0x0, 0x19, 6},
  |  |  266|      1|{6, 0xA, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  267|      1|{6, 0xA, 0x1, 0xA, 0xA, 0x0F, 7},
  |  |  268|      1|{6, 0xA, 0x1, 0xA, 0x2, 0x09, 6},
  |  |  269|      1|{6, 0xA, 0x1, 0xA, 0x8, 0x4F, 7},
  |  |  270|      1|{6, 0xB, 0x0, 0x0, 0x0, 0x0E, 6},
  |  |  271|      1|{6, 0xB, 0x1, 0xB, 0x2, 0x77, 7},
  |  |  272|      1|{6, 0xB, 0x1, 0x2, 0x2, 0x37, 7},
  |  |  273|      1|{6, 0xB, 0x1, 0xA, 0x8, 0x57, 7},
  |  |  274|      1|{6, 0xB, 0x1, 0xB, 0x1, 0x47, 7},
  |  |  275|      1|{6, 0xC, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  276|      1|{6, 0xC, 0x1, 0xC, 0xC, 0x17, 7},
  |  |  277|      1|{6, 0xC, 0x1, 0xC, 0x8, 0x67, 7},
  |  |  278|      1|{6, 0xC, 0x1, 0xC, 0x4, 0x27, 7},
  |  |  279|      1|{6, 0xD, 0x0, 0x0, 0x0, 0x31, 6},
  |  |  280|      1|{6, 0xD, 0x1, 0xD, 0x4, 0x07, 7},
  |  |  281|      1|{6, 0xD, 0x1, 0x4, 0x4, 0x7B, 7},
  |  |  282|      1|{6, 0xD, 0x1, 0xC, 0x8, 0x3B, 7},
  |  |  283|      1|{6, 0xD, 0x1, 0xD, 0x1, 0x2B, 7},
  |  |  284|      1|{6, 0xE, 0x0, 0x0, 0x0, 0x11, 6},
  |  |  285|      1|{6, 0xE, 0x1, 0xE, 0x4, 0x5B, 7},
  |  |  286|      1|{6, 0xE, 0x1, 0x4, 0x4, 0x1B, 7},
  |  |  287|      1|{6, 0xE, 0x1, 0xE, 0xA, 0x6B, 7},
  |  |  288|      1|{6, 0xE, 0x1, 0xE, 0x8, 0x21, 6},
  |  |  289|      1|{6, 0xE, 0x1, 0xE, 0x2, 0x33, 7},
  |  |  290|      1|{6, 0xF, 0x0, 0x0, 0x0, 0x01, 6},
  |  |  291|      1|{6, 0xF, 0x1, 0x3, 0x3, 0x4B, 7},
  |  |  292|      1|{6, 0xF, 0x1, 0x7, 0x6, 0x0B, 7},
  |  |  293|      1|{6, 0xF, 0x1, 0xF, 0xA, 0x73, 7},
  |  |  294|      1|{6, 0xF, 0x1, 0xF, 0x2, 0x3E, 6},
  |  |  295|      1|{6, 0xF, 0x1, 0xB, 0x9, 0x53, 7},
  |  |  296|      1|{6, 0xF, 0x1, 0xF, 0xC, 0x63, 7},
  |  |  297|      1|{6, 0xF, 0x1, 0xF, 0x8, 0x1E, 6},
  |  |  298|      1|{6, 0xF, 0x1, 0xF, 0x5, 0x13, 7},
  |  |  299|      1|{6, 0xF, 0x1, 0xF, 0x4, 0x2E, 6},
  |  |  300|      1|{6, 0xF, 0x1, 0xF, 0x1, 0x23, 7},
  |  |  301|      1|{7, 0x0, 0x0, 0x0, 0x0, 0x04, 4},
  |  |  302|      1|{7, 0x1, 0x0, 0x0, 0x0, 0x33, 6},
  |  |  303|      1|{7, 0x1, 0x1, 0x1, 0x1, 0x13, 6},
  |  |  304|      1|{7, 0x2, 0x0, 0x0, 0x0, 0x23, 6},
  |  |  305|      1|{7, 0x2, 0x1, 0x2, 0x2, 0x7F, 7},
  |  |  306|      1|{7, 0x3, 0x0, 0x0, 0x0, 0x03, 6},
  |  |  307|      1|{7, 0x3, 0x1, 0x1, 0x1, 0x3F, 7},
  |  |  308|      1|{7, 0x3, 0x1, 0x3, 0x2, 0x6F, 7},
  |  |  309|      1|{7, 0x4, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |  310|      1|{7, 0x4, 0x1, 0x4, 0x4, 0x5F, 7},
  |  |  311|      1|{7, 0x5, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  312|      1|{7, 0x5, 0x1, 0x1, 0x1, 0x3D, 6},
  |  |  313|      1|{7, 0x5, 0x1, 0x5, 0x4, 0x1F, 7},
  |  |  314|      1|{7, 0x6, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  315|      1|{7, 0x6, 0x1, 0x0, 0x0, 0x77, 7},
  |  |  316|      1|{7, 0x7, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  317|      1|{7, 0x7, 0x1, 0x7, 0x4, 0x2F, 7},
  |  |  318|      1|{7, 0x7, 0x1, 0x4, 0x4, 0x4F, 7},
  |  |  319|      1|{7, 0x7, 0x1, 0x7, 0x3, 0x0F, 7},
  |  |  320|      1|{7, 0x7, 0x1, 0x7, 0x1, 0x0D, 6},
  |  |  321|      1|{7, 0x7, 0x1, 0x7, 0x2, 0x57, 7},
  |  |  322|      1|{7, 0x8, 0x0, 0x0, 0x0, 0x35, 6},
  |  |  323|      1|{7, 0x8, 0x1, 0x8, 0x8, 0x37, 7},
  |  |  324|      1|{7, 0x9, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  325|      1|{7, 0x9, 0x1, 0x0, 0x0, 0x27, 7},
  |  |  326|      1|{7, 0xA, 0x0, 0x0, 0x0, 0x25, 6},
  |  |  327|      1|{7, 0xA, 0x1, 0x0, 0x0, 0x29, 6},
  |  |  328|      1|{7, 0xB, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  329|      1|{7, 0xB, 0x1, 0xB, 0x1, 0x17, 7},
  |  |  330|      1|{7, 0xB, 0x1, 0x1, 0x1, 0x67, 7},
  |  |  331|      1|{7, 0xB, 0x1, 0x3, 0x2, 0x05, 6},
  |  |  332|      1|{7, 0xB, 0x1, 0xB, 0x8, 0x7B, 7},
  |  |  333|      1|{7, 0xC, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  334|      1|{7, 0xC, 0x1, 0x0, 0x0, 0x19, 6},
  |  |  335|      1|{7, 0xD, 0x0, 0x0, 0x0, 0x0C, 5},
  |  |  336|      1|{7, 0xD, 0x1, 0xD, 0x1, 0x47, 7},
  |  |  337|      1|{7, 0xD, 0x1, 0x1, 0x1, 0x07, 7},
  |  |  338|      1|{7, 0xD, 0x1, 0x5, 0x4, 0x09, 6},
  |  |  339|      1|{7, 0xD, 0x1, 0xD, 0x8, 0x1B, 7},
  |  |  340|      1|{7, 0xE, 0x0, 0x0, 0x0, 0x31, 6},
  |  |  341|      1|{7, 0xE, 0x1, 0xE, 0x2, 0x3B, 7},
  |  |  342|      1|{7, 0xE, 0x1, 0x2, 0x2, 0x5B, 7},
  |  |  343|      1|{7, 0xE, 0x1, 0xA, 0x8, 0x3E, 6},
  |  |  344|      1|{7, 0xE, 0x1, 0xE, 0x4, 0x0B, 7},
  |  |  345|      1|{7, 0xF, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  346|      1|{7, 0xF, 0x1, 0xF, 0xF, 0x6B, 7},
  |  |  347|      1|{7, 0xF, 0x1, 0xF, 0x7, 0x2B, 7},
  |  |  348|      1|{7, 0xF, 0x1, 0xF, 0xB, 0x4B, 7},
  |  |  349|      1|{7, 0xF, 0x1, 0xF, 0x3, 0x11, 6},
  |  |  350|      1|{7, 0xF, 0x1, 0x7, 0x6, 0x21, 6},
  |  |  351|      1|{7, 0xF, 0x1, 0xF, 0xA, 0x01, 6},
  |  |  352|      1|{7, 0xF, 0x1, 0xF, 0x2, 0x0A, 5},
  |  |  353|      1|{7, 0xF, 0x1, 0xB, 0x9, 0x1E, 6},
  |  |  354|      1|{7, 0xF, 0x1, 0xF, 0xC, 0x0E, 6},
  |  |  355|      1|{7, 0xF, 0x1, 0xF, 0x8, 0x12, 5},
  |  |  356|      1|{7, 0xF, 0x1, 0xF, 0x5, 0x2E, 6},
  |  |  357|      1|{7, 0xF, 0x1, 0xF, 0x1, 0x02, 5},
  |  |  358|      1|{7, 0xF, 0x1, 0xF, 0x4, 0x1C, 5}
  ------------------
  139|      1|      };
  140|      1|      size_t tbl1_size = sizeof(tbl1) / sizeof(vlc_src_table);
  141|       |
  142|      1|      src_tbl = tbl1;
  143|      1|      tgt_tbl = vlc_tbl1;
  144|      1|      tbl_size = tbl1_size;
  145|  2.04k|      for (int i = 0; i < 2048; ++i)
  ------------------
  |  Branch (145:23): [True: 2.04k, False: 1]
  ------------------
  146|  2.04k|      {
  147|  2.04k|        int c_q = i >> 8, rho = (i >> 4) & 0xF, emb = i & 0xF;
  148|  2.04k|        if (((emb & rho) != emb) || (rho == 0 && c_q == 0))
  ------------------
  |  Branch (148:13): [True: 1.40k, False: 648]
  |  Branch (148:38): [True: 8, False: 640]
  |  Branch (148:50): [True: 1, False: 7]
  ------------------
  149|  1.40k|          tgt_tbl[i] = 0;
  150|    647|        else
  151|    647|        {
  152|    647|          vlc_src_table *best_entry = NULL;
  153|    647|          if (emb) // u_off = 1
  ------------------
  |  Branch (153:15): [True: 520, False: 127]
  ------------------
  154|    520|          {
  155|    520|            int best_e_k = -1;
  156|   186k|            for (size_t j = 0; j < tbl_size; ++j)
  ------------------
  |  Branch (156:32): [True: 186k, False: 520]
  ------------------
  157|   186k|            {
  158|   186k|              if (src_tbl[j].c_q == c_q && src_tbl[j].rho == rho)
  ------------------
  |  Branch (158:19): [True: 23.2k, False: 162k]
  |  Branch (158:44): [True: 2.08k, False: 21.1k]
  ------------------
  159|  2.08k|                if (src_tbl[j].u_off == 1)
  ------------------
  |  Branch (159:21): [True: 1.56k, False: 520]
  ------------------
  160|  1.56k|                  if ((emb & src_tbl[j].e_k) == src_tbl[j].e_1)
  ------------------
  |  Branch (160:23): [True: 529, False: 1.03k]
  ------------------
  161|    529|                  {
  162|       |                    //now we need to find the smallest cwd with the highest
  163|       |                    // number of bits set in e_k
  164|    529|                    int ones_count = pattern_popcnt[src_tbl[j].e_k];
  165|    529|                    if (ones_count >= best_e_k)
  ------------------
  |  Branch (165:25): [True: 520, False: 9]
  ------------------
  166|    520|                    {
  167|    520|                      best_entry = src_tbl + j;
  168|    520|                      best_e_k = ones_count;
  169|    520|                    }
  170|    529|                  }
  171|   186k|            }
  172|    520|          }
  173|    127|          else // u_off = 0
  174|    127|          {
  175|  19.7k|            for (size_t j = 0; j < tbl_size; ++j)
  ------------------
  |  Branch (175:32): [True: 19.7k, False: 0]
  ------------------
  176|  19.7k|            {
  177|  19.7k|              if (src_tbl[j].c_q == c_q && src_tbl[j].rho == rho)
  ------------------
  |  Branch (177:19): [True: 2.22k, False: 17.5k]
  |  Branch (177:44): [True: 127, False: 2.10k]
  ------------------
  178|    127|                if (src_tbl[j].u_off == 0)
  ------------------
  |  Branch (178:21): [True: 127, False: 0]
  ------------------
  179|    127|                {
  180|    127|                  best_entry = src_tbl + j;
  181|    127|                  break;
  182|    127|                }
  183|  19.7k|            }
  184|    127|          }
  185|    647|          assert(best_entry);
  186|    647|          tgt_tbl[i] = (ui16)((best_entry->cwd<<8) + (best_entry->cwd_len<<4)
  187|    647|                             + best_entry->e_k);
  188|    647|        }
  189|  2.04k|      }
  190|       |
  191|       |
  192|      1|      return true;
  193|      1|    }
ojph_block_encoder.cpp:_ZN4ojph5localL16uvlc_init_tablesEv:
  197|      1|    {
  198|       |      //code goes from 0 to 31, extension and 32 are not supported here
  199|      1|      uvlc_tbl[0].pre = 0;
  200|      1|      uvlc_tbl[0].pre_len = 0;
  201|      1|      uvlc_tbl[0].suf = 0;
  202|      1|      uvlc_tbl[0].suf_len = 0;
  203|      1|      uvlc_tbl[0].ext = 0;
  204|      1|      uvlc_tbl[0].ext_len = 0;
  205|       |
  206|      1|      uvlc_tbl[1].pre = 1;
  207|      1|      uvlc_tbl[1].pre_len = 1;
  208|      1|      uvlc_tbl[1].suf = 0;
  209|      1|      uvlc_tbl[1].suf_len = 0;
  210|      1|      uvlc_tbl[1].ext = 0;
  211|      1|      uvlc_tbl[1].ext_len = 0;
  212|       |
  213|      1|      uvlc_tbl[2].pre = 2;
  214|      1|      uvlc_tbl[2].pre_len = 2;
  215|      1|      uvlc_tbl[2].suf = 0;
  216|      1|      uvlc_tbl[2].suf_len = 0;
  217|      1|      uvlc_tbl[2].ext = 0;
  218|      1|      uvlc_tbl[2].ext_len = 0;
  219|       |
  220|      1|      uvlc_tbl[3].pre = 4;
  221|      1|      uvlc_tbl[3].pre_len = 3;
  222|      1|      uvlc_tbl[3].suf = 0;
  223|      1|      uvlc_tbl[3].suf_len = 1;
  224|      1|      uvlc_tbl[3].ext = 0;
  225|      1|      uvlc_tbl[3].ext_len = 0;
  226|       |
  227|      1|      uvlc_tbl[4].pre = 4;
  228|      1|      uvlc_tbl[4].pre_len = 3;
  229|      1|      uvlc_tbl[4].suf = 1;
  230|      1|      uvlc_tbl[4].suf_len = 1;
  231|      1|      uvlc_tbl[4].ext = 0;
  232|      1|      uvlc_tbl[4].ext_len = 0;
  233|       |
  234|     29|      for (int i = 5; i < 33; ++i)
  ------------------
  |  Branch (234:23): [True: 28, False: 1]
  ------------------
  235|     28|      {
  236|     28|        uvlc_tbl[i].pre = 0;
  237|     28|        uvlc_tbl[i].pre_len = 3;
  238|     28|        uvlc_tbl[i].suf = (ui8)(i - 5);
  239|     28|        uvlc_tbl[i].suf_len = 5;
  240|     28|        uvlc_tbl[i].ext = 0;
  241|     28|        uvlc_tbl[i].ext_len = 0;
  242|     28|      }
  243|       |
  244|     43|      for (int i = 33; i < num_uvlc_entries; ++i)
  ------------------
  |  Branch (244:24): [True: 42, False: 1]
  ------------------
  245|     42|      {
  246|     42|        uvlc_tbl[i].pre = 0;
  247|     42|        uvlc_tbl[i].pre_len = 3;
  248|     42|        uvlc_tbl[i].suf = (ui8)(28 + (i - 33) % 4);
  249|     42|        uvlc_tbl[i].suf_len = 5;
  250|     42|        uvlc_tbl[i].ext = (ui8)((i - 33) / 4);
  251|     42|        uvlc_tbl[i].ext_len = 4;
  252|     42|      }
  253|       |
  254|      1|      return true;
  255|      1|    }

_ZN4ojph5local36initialize_block_encoder_tables_avx2Ev:
  286|  5.13M|    bool initialize_block_encoder_tables_avx2() {
  287|  5.13M|      static bool tables_initialized = false;
  288|  5.13M|      static std::once_flag tables_initialized_flag;
  289|  5.13M|      std::call_once(tables_initialized_flag, []() {
  290|  5.13M|        memset(vlc_tbl0, 0, 2048 * sizeof(ui32));
  291|  5.13M|        memset(vlc_tbl1, 0, 2048 * sizeof(ui32));
  292|  5.13M|        tables_initialized = vlc_init_tables();
  293|  5.13M|        tables_initialized = tables_initialized && uvlc_init_tables();
  294|  5.13M|        uvlc_init_pair_tables();
  295|  5.13M|      });
  296|  5.13M|      return tables_initialized;
  297|  5.13M|    }
ojph_block_encoder_avx2.cpp:_ZZN4ojph5local36initialize_block_encoder_tables_avx2EvENK3$_0clEv:
  289|      1|      std::call_once(tables_initialized_flag, []() {
  290|      1|        memset(vlc_tbl0, 0, 2048 * sizeof(ui32));
  291|      1|        memset(vlc_tbl1, 0, 2048 * sizeof(ui32));
  292|      1|        tables_initialized = vlc_init_tables();
  293|      1|        tables_initialized = tables_initialized && uvlc_init_tables();
  ------------------
  |  Branch (293:30): [True: 1, False: 0]
  |  Branch (293:52): [True: 1, False: 0]
  ------------------
  294|      1|        uvlc_init_pair_tables();
  295|      1|      });
ojph_block_encoder_avx2.cpp:_ZN4ojph5localL15vlc_init_tablesEv:
   93|      1|    {
   94|      1|      struct vlc_src_table { int c_q, rho, u_off, e_k, e_1, cwd, cwd_len; };
   95|      1|      vlc_src_table tbl0[] = {
   96|      1|    #include "table0.h"
  ------------------
  |  |    1|      1|{0, 0x1, 0x0, 0x0, 0x0, 0x06, 4},
  |  |    2|      1|{0, 0x1, 0x1, 0x1, 0x1, 0x3F, 7},
  |  |    3|      1|{0, 0x2, 0x0, 0x0, 0x0, 0x00, 3},
  |  |    4|      1|{0, 0x2, 0x1, 0x2, 0x2, 0x7F, 7},
  |  |    5|      1|{0, 0x3, 0x0, 0x0, 0x0, 0x11, 5},
  |  |    6|      1|{0, 0x3, 0x1, 0x2, 0x2, 0x5F, 7},
  |  |    7|      1|{0, 0x3, 0x1, 0x3, 0x1, 0x1F, 7},
  |  |    8|      1|{0, 0x4, 0x0, 0x0, 0x0, 0x02, 3},
  |  |    9|      1|{0, 0x4, 0x1, 0x4, 0x4, 0x13, 6},
  |  |   10|      1|{0, 0x5, 0x0, 0x0, 0x0, 0x0E, 5},
  |  |   11|      1|{0, 0x5, 0x1, 0x4, 0x4, 0x23, 6},
  |  |   12|      1|{0, 0x5, 0x1, 0x5, 0x1, 0x0F, 7},
  |  |   13|      1|{0, 0x6, 0x0, 0x0, 0x0, 0x03, 6},
  |  |   14|      1|{0, 0x6, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |   15|      1|{0, 0x7, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   16|      1|{0, 0x7, 0x1, 0x2, 0x2, 0x4F, 7},
  |  |   17|      1|{0, 0x7, 0x1, 0x2, 0x0, 0x0D, 6},
  |  |   18|      1|{0, 0x8, 0x0, 0x0, 0x0, 0x04, 3},
  |  |   19|      1|{0, 0x8, 0x1, 0x8, 0x8, 0x3D, 6},
  |  |   20|      1|{0, 0x9, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |   21|      1|{0, 0x9, 0x1, 0x0, 0x0, 0x2D, 6},
  |  |   22|      1|{0, 0xA, 0x0, 0x0, 0x0, 0x01, 5},
  |  |   23|      1|{0, 0xA, 0x1, 0x8, 0x8, 0x35, 6},
  |  |   24|      1|{0, 0xA, 0x1, 0xA, 0x2, 0x77, 7},
  |  |   25|      1|{0, 0xB, 0x0, 0x0, 0x0, 0x37, 7},
  |  |   26|      1|{0, 0xB, 0x1, 0x1, 0x1, 0x57, 7},
  |  |   27|      1|{0, 0xB, 0x1, 0x1, 0x0, 0x09, 6},
  |  |   28|      1|{0, 0xC, 0x0, 0x0, 0x0, 0x1E, 5},
  |  |   29|      1|{0, 0xC, 0x1, 0xC, 0xC, 0x17, 7},
  |  |   30|      1|{0, 0xC, 0x1, 0xC, 0x4, 0x15, 6},
  |  |   31|      1|{0, 0xC, 0x1, 0xC, 0x8, 0x25, 6},
  |  |   32|      1|{0, 0xD, 0x0, 0x0, 0x0, 0x67, 7},
  |  |   33|      1|{0, 0xD, 0x1, 0x1, 0x1, 0x27, 7},
  |  |   34|      1|{0, 0xD, 0x1, 0x5, 0x4, 0x47, 7},
  |  |   35|      1|{0, 0xD, 0x1, 0xD, 0x8, 0x07, 7},
  |  |   36|      1|{0, 0xE, 0x0, 0x0, 0x0, 0x7B, 7},
  |  |   37|      1|{0, 0xE, 0x1, 0x2, 0x2, 0x4B, 7},
  |  |   38|      1|{0, 0xE, 0x1, 0xA, 0x8, 0x05, 6},
  |  |   39|      1|{0, 0xE, 0x1, 0xE, 0x4, 0x3B, 7},
  |  |   40|      1|{0, 0xF, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |   41|      1|{0, 0xF, 0x1, 0x9, 0x9, 0x1B, 7},
  |  |   42|      1|{0, 0xF, 0x1, 0xB, 0xA, 0x6B, 7},
  |  |   43|      1|{0, 0xF, 0x1, 0xF, 0xC, 0x2B, 7},
  |  |   44|      1|{0, 0xF, 0x1, 0xF, 0x8, 0x39, 6},
  |  |   45|      1|{0, 0xF, 0x1, 0xE, 0x6, 0x73, 7},
  |  |   46|      1|{0, 0xF, 0x1, 0xE, 0x2, 0x19, 6},
  |  |   47|      1|{0, 0xF, 0x1, 0xF, 0x5, 0x0B, 7},
  |  |   48|      1|{0, 0xF, 0x1, 0xF, 0x4, 0x29, 6},
  |  |   49|      1|{0, 0xF, 0x1, 0xF, 0x1, 0x33, 7},
  |  |   50|      1|{1, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |   51|      1|{1, 0x1, 0x0, 0x0, 0x0, 0x0E, 4},
  |  |   52|      1|{1, 0x1, 0x1, 0x1, 0x1, 0x1F, 7},
  |  |   53|      1|{1, 0x2, 0x0, 0x0, 0x0, 0x06, 4},
  |  |   54|      1|{1, 0x2, 0x1, 0x2, 0x2, 0x3B, 6},
  |  |   55|      1|{1, 0x3, 0x0, 0x0, 0x0, 0x1B, 6},
  |  |   56|      1|{1, 0x3, 0x1, 0x0, 0x0, 0x3D, 6},
  |  |   57|      1|{1, 0x4, 0x0, 0x0, 0x0, 0x0A, 4},
  |  |   58|      1|{1, 0x4, 0x1, 0x4, 0x4, 0x2B, 6},
  |  |   59|      1|{1, 0x5, 0x0, 0x0, 0x0, 0x0B, 6},
  |  |   60|      1|{1, 0x5, 0x1, 0x4, 0x4, 0x33, 6},
  |  |   61|      1|{1, 0x5, 0x1, 0x5, 0x1, 0x7F, 7},
  |  |   62|      1|{1, 0x6, 0x0, 0x0, 0x0, 0x13, 6},
  |  |   63|      1|{1, 0x6, 0x1, 0x0, 0x0, 0x23, 6},
  |  |   64|      1|{1, 0x7, 0x0, 0x0, 0x0, 0x3F, 7},
  |  |   65|      1|{1, 0x7, 0x1, 0x2, 0x2, 0x5F, 7},
  |  |   66|      1|{1, 0x7, 0x1, 0x2, 0x0, 0x03, 6},
  |  |   67|      1|{1, 0x8, 0x0, 0x0, 0x0, 0x02, 4},
  |  |   68|      1|{1, 0x8, 0x1, 0x8, 0x8, 0x1D, 6},
  |  |   69|      1|{1, 0x9, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |   70|      1|{1, 0x9, 0x1, 0x0, 0x0, 0x0D, 6},
  |  |   71|      1|{1, 0xA, 0x0, 0x0, 0x0, 0x35, 6},
  |  |   72|      1|{1, 0xA, 0x1, 0x8, 0x8, 0x15, 6},
  |  |   73|      1|{1, 0xA, 0x1, 0xA, 0x2, 0x6F, 7},
  |  |   74|      1|{1, 0xB, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   75|      1|{1, 0xB, 0x1, 0x1, 0x1, 0x4F, 7},
  |  |   76|      1|{1, 0xB, 0x1, 0x1, 0x0, 0x11, 6},
  |  |   77|      1|{1, 0xC, 0x0, 0x0, 0x0, 0x01, 5},
  |  |   78|      1|{1, 0xC, 0x1, 0x8, 0x8, 0x25, 6},
  |  |   79|      1|{1, 0xC, 0x1, 0xC, 0x4, 0x05, 6},
  |  |   80|      1|{1, 0xD, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |   81|      1|{1, 0xD, 0x1, 0x1, 0x1, 0x17, 7},
  |  |   82|      1|{1, 0xD, 0x1, 0x5, 0x4, 0x39, 6},
  |  |   83|      1|{1, 0xD, 0x1, 0xD, 0x8, 0x77, 7},
  |  |   84|      1|{1, 0xE, 0x0, 0x0, 0x0, 0x37, 7},
  |  |   85|      1|{1, 0xE, 0x1, 0x2, 0x2, 0x57, 7},
  |  |   86|      1|{1, 0xE, 0x1, 0xA, 0x8, 0x19, 6},
  |  |   87|      1|{1, 0xE, 0x1, 0xE, 0x4, 0x67, 7},
  |  |   88|      1|{1, 0xF, 0x0, 0x0, 0x0, 0x07, 7},
  |  |   89|      1|{1, 0xF, 0x1, 0xB, 0x8, 0x29, 6},
  |  |   90|      1|{1, 0xF, 0x1, 0x8, 0x8, 0x27, 7},
  |  |   91|      1|{1, 0xF, 0x1, 0xA, 0x2, 0x09, 6},
  |  |   92|      1|{1, 0xF, 0x1, 0xE, 0x4, 0x31, 6},
  |  |   93|      1|{1, 0xF, 0x1, 0xF, 0x1, 0x47, 7},
  |  |   94|      1|{2, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |   95|      1|{2, 0x1, 0x0, 0x0, 0x0, 0x0E, 4},
  |  |   96|      1|{2, 0x1, 0x1, 0x1, 0x1, 0x1B, 6},
  |  |   97|      1|{2, 0x2, 0x0, 0x0, 0x0, 0x06, 4},
  |  |   98|      1|{2, 0x2, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |   99|      1|{2, 0x3, 0x0, 0x0, 0x0, 0x2B, 6},
  |  |  100|      1|{2, 0x3, 0x1, 0x1, 0x1, 0x33, 6},
  |  |  101|      1|{2, 0x3, 0x1, 0x3, 0x2, 0x7F, 7},
  |  |  102|      1|{2, 0x4, 0x0, 0x0, 0x0, 0x0A, 4},
  |  |  103|      1|{2, 0x4, 0x1, 0x4, 0x4, 0x0B, 6},
  |  |  104|      1|{2, 0x5, 0x0, 0x0, 0x0, 0x01, 5},
  |  |  105|      1|{2, 0x5, 0x1, 0x5, 0x5, 0x2F, 7},
  |  |  106|      1|{2, 0x5, 0x1, 0x5, 0x1, 0x13, 6},
  |  |  107|      1|{2, 0x5, 0x1, 0x5, 0x4, 0x23, 6},
  |  |  108|      1|{2, 0x6, 0x0, 0x0, 0x0, 0x03, 6},
  |  |  109|      1|{2, 0x6, 0x1, 0x0, 0x0, 0x5F, 7},
  |  |  110|      1|{2, 0x7, 0x0, 0x0, 0x0, 0x1F, 7},
  |  |  111|      1|{2, 0x7, 0x1, 0x2, 0x2, 0x6F, 7},
  |  |  112|      1|{2, 0x7, 0x1, 0x3, 0x1, 0x11, 6},
  |  |  113|      1|{2, 0x7, 0x1, 0x7, 0x4, 0x37, 7},
  |  |  114|      1|{2, 0x8, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  115|      1|{2, 0x8, 0x1, 0x8, 0x8, 0x4F, 7},
  |  |  116|      1|{2, 0x9, 0x0, 0x0, 0x0, 0x3D, 6},
  |  |  117|      1|{2, 0x9, 0x1, 0x0, 0x0, 0x1D, 6},
  |  |  118|      1|{2, 0xA, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |  119|      1|{2, 0xA, 0x1, 0x0, 0x0, 0x0D, 6},
  |  |  120|      1|{2, 0xB, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |  121|      1|{2, 0xB, 0x1, 0x2, 0x2, 0x77, 7},
  |  |  122|      1|{2, 0xB, 0x1, 0x2, 0x0, 0x35, 6},
  |  |  123|      1|{2, 0xC, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  124|      1|{2, 0xC, 0x1, 0x4, 0x4, 0x25, 6},
  |  |  125|      1|{2, 0xC, 0x1, 0xC, 0x8, 0x57, 7},
  |  |  126|      1|{2, 0xD, 0x0, 0x0, 0x0, 0x17, 7},
  |  |  127|      1|{2, 0xD, 0x1, 0x8, 0x8, 0x05, 6},
  |  |  128|      1|{2, 0xD, 0x1, 0xC, 0x4, 0x39, 6},
  |  |  129|      1|{2, 0xD, 0x1, 0xD, 0x1, 0x67, 7},
  |  |  130|      1|{2, 0xE, 0x0, 0x0, 0x0, 0x27, 7},
  |  |  131|      1|{2, 0xE, 0x1, 0x2, 0x2, 0x7B, 7},
  |  |  132|      1|{2, 0xE, 0x1, 0x2, 0x0, 0x19, 6},
  |  |  133|      1|{2, 0xF, 0x0, 0x0, 0x0, 0x47, 7},
  |  |  134|      1|{2, 0xF, 0x1, 0xF, 0x1, 0x29, 6},
  |  |  135|      1|{2, 0xF, 0x1, 0x1, 0x1, 0x09, 6},
  |  |  136|      1|{2, 0xF, 0x1, 0x3, 0x2, 0x07, 7},
  |  |  137|      1|{2, 0xF, 0x1, 0x7, 0x4, 0x31, 6},
  |  |  138|      1|{2, 0xF, 0x1, 0xF, 0x8, 0x3B, 7},
  |  |  139|      1|{3, 0x0, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  140|      1|{3, 0x1, 0x0, 0x0, 0x0, 0x04, 4},
  |  |  141|      1|{3, 0x1, 0x1, 0x1, 0x1, 0x3D, 6},
  |  |  142|      1|{3, 0x2, 0x0, 0x0, 0x0, 0x0C, 5},
  |  |  143|      1|{3, 0x2, 0x1, 0x2, 0x2, 0x4F, 7},
  |  |  144|      1|{3, 0x3, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  145|      1|{3, 0x3, 0x1, 0x1, 0x1, 0x05, 6},
  |  |  146|      1|{3, 0x3, 0x1, 0x3, 0x2, 0x7F, 7},
  |  |  147|      1|{3, 0x4, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  148|      1|{3, 0x4, 0x1, 0x4, 0x4, 0x2D, 6},
  |  |  149|      1|{3, 0x5, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  150|      1|{3, 0x5, 0x1, 0x5, 0x5, 0x1A, 5},
  |  |  151|      1|{3, 0x5, 0x1, 0x5, 0x1, 0x0D, 6},
  |  |  152|      1|{3, 0x5, 0x1, 0x5, 0x4, 0x35, 6},
  |  |  153|      1|{3, 0x6, 0x0, 0x0, 0x0, 0x3F, 7},
  |  |  154|      1|{3, 0x6, 0x1, 0x4, 0x4, 0x5F, 7},
  |  |  155|      1|{3, 0x6, 0x1, 0x6, 0x2, 0x1F, 7},
  |  |  156|      1|{3, 0x7, 0x0, 0x0, 0x0, 0x6F, 7},
  |  |  157|      1|{3, 0x7, 0x1, 0x6, 0x6, 0x2F, 7},
  |  |  158|      1|{3, 0x7, 0x1, 0x6, 0x4, 0x15, 6},
  |  |  159|      1|{3, 0x7, 0x1, 0x7, 0x3, 0x77, 7},
  |  |  160|      1|{3, 0x7, 0x1, 0x7, 0x1, 0x25, 6},
  |  |  161|      1|{3, 0x7, 0x1, 0x7, 0x2, 0x0F, 7},
  |  |  162|      1|{3, 0x8, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  163|      1|{3, 0x8, 0x1, 0x8, 0x8, 0x07, 7},
  |  |  164|      1|{3, 0x9, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  165|      1|{3, 0x9, 0x1, 0x1, 0x1, 0x37, 7},
  |  |  166|      1|{3, 0x9, 0x1, 0x9, 0x8, 0x57, 7},
  |  |  167|      1|{3, 0xA, 0x0, 0x0, 0x0, 0x19, 6},
  |  |  168|      1|{3, 0xA, 0x1, 0x8, 0x8, 0x29, 6},
  |  |  169|      1|{3, 0xA, 0x1, 0xA, 0x2, 0x17, 7},
  |  |  170|      1|{3, 0xB, 0x0, 0x0, 0x0, 0x67, 7},
  |  |  171|      1|{3, 0xB, 0x1, 0xB, 0x1, 0x27, 7},
  |  |  172|      1|{3, 0xB, 0x1, 0x1, 0x1, 0x47, 7},
  |  |  173|      1|{3, 0xB, 0x1, 0x3, 0x2, 0x09, 6},
  |  |  174|      1|{3, 0xB, 0x1, 0xB, 0x8, 0x7B, 7},
  |  |  175|      1|{3, 0xC, 0x0, 0x0, 0x0, 0x31, 6},
  |  |  176|      1|{3, 0xC, 0x1, 0x4, 0x4, 0x11, 6},
  |  |  177|      1|{3, 0xC, 0x1, 0xC, 0x8, 0x3B, 7},
  |  |  178|      1|{3, 0xD, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  179|      1|{3, 0xD, 0x1, 0x9, 0x9, 0x1B, 7},
  |  |  180|      1|{3, 0xD, 0x1, 0xD, 0x5, 0x2B, 7},
  |  |  181|      1|{3, 0xD, 0x1, 0xD, 0x1, 0x21, 6},
  |  |  182|      1|{3, 0xD, 0x1, 0xD, 0xC, 0x6B, 7},
  |  |  183|      1|{3, 0xD, 0x1, 0xD, 0x4, 0x01, 6},
  |  |  184|      1|{3, 0xD, 0x1, 0xD, 0x8, 0x4B, 7},
  |  |  185|      1|{3, 0xE, 0x0, 0x0, 0x0, 0x0B, 7},
  |  |  186|      1|{3, 0xE, 0x1, 0xE, 0x4, 0x73, 7},
  |  |  187|      1|{3, 0xE, 0x1, 0x4, 0x4, 0x13, 7},
  |  |  188|      1|{3, 0xE, 0x1, 0xC, 0x8, 0x3E, 6},
  |  |  189|      1|{3, 0xE, 0x1, 0xE, 0x2, 0x33, 7},
  |  |  190|      1|{3, 0xF, 0x0, 0x0, 0x0, 0x53, 7},
  |  |  191|      1|{3, 0xF, 0x1, 0xA, 0xA, 0x0E, 6},
  |  |  192|      1|{3, 0xF, 0x1, 0xB, 0x9, 0x63, 7},
  |  |  193|      1|{3, 0xF, 0x1, 0xF, 0xC, 0x03, 7},
  |  |  194|      1|{3, 0xF, 0x1, 0xF, 0x8, 0x12, 5},
  |  |  195|      1|{3, 0xF, 0x1, 0xE, 0x6, 0x23, 7},
  |  |  196|      1|{3, 0xF, 0x1, 0xF, 0x5, 0x1E, 6},
  |  |  197|      1|{3, 0xF, 0x1, 0xF, 0x4, 0x02, 5},
  |  |  198|      1|{3, 0xF, 0x1, 0xF, 0x3, 0x43, 7},
  |  |  199|      1|{3, 0xF, 0x1, 0xF, 0x1, 0x1C, 5},
  |  |  200|      1|{3, 0xF, 0x1, 0xF, 0x2, 0x2E, 6},
  |  |  201|      1|{4, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |  202|      1|{4, 0x1, 0x0, 0x0, 0x0, 0x0E, 4},
  |  |  203|      1|{4, 0x1, 0x1, 0x1, 0x1, 0x3F, 7},
  |  |  204|      1|{4, 0x2, 0x0, 0x0, 0x0, 0x06, 4},
  |  |  205|      1|{4, 0x2, 0x1, 0x2, 0x2, 0x1B, 6},
  |  |  206|      1|{4, 0x3, 0x0, 0x0, 0x0, 0x2B, 6},
  |  |  207|      1|{4, 0x3, 0x1, 0x2, 0x2, 0x3D, 6},
  |  |  208|      1|{4, 0x3, 0x1, 0x3, 0x1, 0x7F, 7},
  |  |  209|      1|{4, 0x4, 0x0, 0x0, 0x0, 0x0A, 4},
  |  |  210|      1|{4, 0x4, 0x1, 0x4, 0x4, 0x5F, 7},
  |  |  211|      1|{4, 0x5, 0x0, 0x0, 0x0, 0x0B, 6},
  |  |  212|      1|{4, 0x5, 0x1, 0x0, 0x0, 0x33, 6},
  |  |  213|      1|{4, 0x6, 0x0, 0x0, 0x0, 0x13, 6},
  |  |  214|      1|{4, 0x6, 0x1, 0x0, 0x0, 0x23, 6},
  |  |  215|      1|{4, 0x7, 0x0, 0x0, 0x0, 0x1F, 7},
  |  |  216|      1|{4, 0x7, 0x1, 0x4, 0x4, 0x6F, 7},
  |  |  217|      1|{4, 0x7, 0x1, 0x4, 0x0, 0x03, 6},
  |  |  218|      1|{4, 0x8, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  219|      1|{4, 0x8, 0x1, 0x8, 0x8, 0x1D, 6},
  |  |  220|      1|{4, 0x9, 0x0, 0x0, 0x0, 0x11, 6},
  |  |  221|      1|{4, 0x9, 0x1, 0x0, 0x0, 0x77, 7},
  |  |  222|      1|{4, 0xA, 0x0, 0x0, 0x0, 0x01, 5},
  |  |  223|      1|{4, 0xA, 0x1, 0xA, 0xA, 0x2F, 7},
  |  |  224|      1|{4, 0xA, 0x1, 0xA, 0x2, 0x2D, 6},
  |  |  225|      1|{4, 0xA, 0x1, 0xA, 0x8, 0x0D, 6},
  |  |  226|      1|{4, 0xB, 0x0, 0x0, 0x0, 0x4F, 7},
  |  |  227|      1|{4, 0xB, 0x1, 0xB, 0x2, 0x0F, 7},
  |  |  228|      1|{4, 0xB, 0x1, 0x0, 0x0, 0x35, 6},
  |  |  229|      1|{4, 0xC, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  230|      1|{4, 0xC, 0x1, 0x8, 0x8, 0x25, 6},
  |  |  231|      1|{4, 0xC, 0x1, 0xC, 0x4, 0x37, 7},
  |  |  232|      1|{4, 0xD, 0x0, 0x0, 0x0, 0x57, 7},
  |  |  233|      1|{4, 0xD, 0x1, 0x1, 0x1, 0x07, 7},
  |  |  234|      1|{4, 0xD, 0x1, 0x1, 0x0, 0x05, 6},
  |  |  235|      1|{4, 0xE, 0x0, 0x0, 0x0, 0x17, 7},
  |  |  236|      1|{4, 0xE, 0x1, 0x4, 0x4, 0x39, 6},
  |  |  237|      1|{4, 0xE, 0x1, 0xC, 0x8, 0x19, 6},
  |  |  238|      1|{4, 0xE, 0x1, 0xE, 0x2, 0x67, 7},
  |  |  239|      1|{4, 0xF, 0x0, 0x0, 0x0, 0x27, 7},
  |  |  240|      1|{4, 0xF, 0x1, 0x9, 0x9, 0x47, 7},
  |  |  241|      1|{4, 0xF, 0x1, 0x9, 0x1, 0x29, 6},
  |  |  242|      1|{4, 0xF, 0x1, 0x7, 0x6, 0x7B, 7},
  |  |  243|      1|{4, 0xF, 0x1, 0x7, 0x2, 0x09, 6},
  |  |  244|      1|{4, 0xF, 0x1, 0xB, 0x8, 0x31, 6},
  |  |  245|      1|{4, 0xF, 0x1, 0xF, 0x4, 0x3B, 7},
  |  |  246|      1|{5, 0x0, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  247|      1|{5, 0x1, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  248|      1|{5, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |  249|      1|{5, 0x2, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  250|      1|{5, 0x2, 0x1, 0x2, 0x2, 0x1D, 6},
  |  |  251|      1|{5, 0x3, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |  252|      1|{5, 0x3, 0x1, 0x3, 0x3, 0x5F, 7},
  |  |  253|      1|{5, 0x3, 0x1, 0x3, 0x2, 0x39, 6},
  |  |  254|      1|{5, 0x3, 0x1, 0x3, 0x1, 0x3F, 7},
  |  |  255|      1|{5, 0x4, 0x0, 0x0, 0x0, 0x12, 5},
  |  |  256|      1|{5, 0x4, 0x1, 0x4, 0x4, 0x1F, 7},
  |  |  257|      1|{5, 0x5, 0x0, 0x0, 0x0, 0x0D, 6},
  |  |  258|      1|{5, 0x5, 0x1, 0x4, 0x4, 0x35, 6},
  |  |  259|      1|{5, 0x5, 0x1, 0x5, 0x1, 0x6F, 7},
  |  |  260|      1|{5, 0x6, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  261|      1|{5, 0x6, 0x1, 0x2, 0x2, 0x25, 6},
  |  |  262|      1|{5, 0x6, 0x1, 0x6, 0x4, 0x2F, 7},
  |  |  263|      1|{5, 0x7, 0x0, 0x0, 0x0, 0x4F, 7},
  |  |  264|      1|{5, 0x7, 0x1, 0x6, 0x6, 0x57, 7},
  |  |  265|      1|{5, 0x7, 0x1, 0x6, 0x4, 0x05, 6},
  |  |  266|      1|{5, 0x7, 0x1, 0x7, 0x3, 0x0F, 7},
  |  |  267|      1|{5, 0x7, 0x1, 0x7, 0x2, 0x77, 7},
  |  |  268|      1|{5, 0x7, 0x1, 0x7, 0x1, 0x37, 7},
  |  |  269|      1|{5, 0x8, 0x0, 0x0, 0x0, 0x02, 5},
  |  |  270|      1|{5, 0x8, 0x1, 0x8, 0x8, 0x19, 6},
  |  |  271|      1|{5, 0x9, 0x0, 0x0, 0x0, 0x26, 6},
  |  |  272|      1|{5, 0x9, 0x1, 0x8, 0x8, 0x17, 7},
  |  |  273|      1|{5, 0x9, 0x1, 0x9, 0x1, 0x67, 7},
  |  |  274|      1|{5, 0xA, 0x0, 0x0, 0x0, 0x1C, 5},
  |  |  275|      1|{5, 0xA, 0x1, 0xA, 0xA, 0x29, 6},
  |  |  276|      1|{5, 0xA, 0x1, 0xA, 0x2, 0x09, 6},
  |  |  277|      1|{5, 0xA, 0x1, 0xA, 0x8, 0x31, 6},
  |  |  278|      1|{5, 0xB, 0x0, 0x0, 0x0, 0x27, 7},
  |  |  279|      1|{5, 0xB, 0x1, 0x9, 0x9, 0x07, 7},
  |  |  280|      1|{5, 0xB, 0x1, 0x9, 0x8, 0x11, 6},
  |  |  281|      1|{5, 0xB, 0x1, 0xB, 0x3, 0x47, 7},
  |  |  282|      1|{5, 0xB, 0x1, 0xB, 0x2, 0x21, 6},
  |  |  283|      1|{5, 0xB, 0x1, 0xB, 0x1, 0x7B, 7},
  |  |  284|      1|{5, 0xC, 0x0, 0x0, 0x0, 0x01, 6},
  |  |  285|      1|{5, 0xC, 0x1, 0x8, 0x8, 0x3E, 6},
  |  |  286|      1|{5, 0xC, 0x1, 0xC, 0x4, 0x3B, 7},
  |  |  287|      1|{5, 0xD, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  288|      1|{5, 0xD, 0x1, 0x9, 0x9, 0x6B, 7},
  |  |  289|      1|{5, 0xD, 0x1, 0x9, 0x8, 0x1E, 6},
  |  |  290|      1|{5, 0xD, 0x1, 0xD, 0x5, 0x1B, 7},
  |  |  291|      1|{5, 0xD, 0x1, 0xD, 0x4, 0x2E, 6},
  |  |  292|      1|{5, 0xD, 0x1, 0xD, 0x1, 0x2B, 7},
  |  |  293|      1|{5, 0xE, 0x0, 0x0, 0x0, 0x4B, 7},
  |  |  294|      1|{5, 0xE, 0x1, 0x6, 0x6, 0x0B, 7},
  |  |  295|      1|{5, 0xE, 0x1, 0xE, 0xA, 0x33, 7},
  |  |  296|      1|{5, 0xE, 0x1, 0xE, 0x2, 0x0E, 6},
  |  |  297|      1|{5, 0xE, 0x1, 0xE, 0xC, 0x73, 7},
  |  |  298|      1|{5, 0xE, 0x1, 0xE, 0x8, 0x36, 6},
  |  |  299|      1|{5, 0xE, 0x1, 0xE, 0x4, 0x53, 7},
  |  |  300|      1|{5, 0xF, 0x0, 0x0, 0x0, 0x13, 7},
  |  |  301|      1|{5, 0xF, 0x1, 0x7, 0x7, 0x43, 7},
  |  |  302|      1|{5, 0xF, 0x1, 0x7, 0x6, 0x16, 6},
  |  |  303|      1|{5, 0xF, 0x1, 0x7, 0x5, 0x63, 7},
  |  |  304|      1|{5, 0xF, 0x1, 0xF, 0xC, 0x23, 7},
  |  |  305|      1|{5, 0xF, 0x1, 0xF, 0x4, 0x0C, 5},
  |  |  306|      1|{5, 0xF, 0x1, 0xD, 0x9, 0x03, 7},
  |  |  307|      1|{5, 0xF, 0x1, 0xF, 0xA, 0x3D, 7},
  |  |  308|      1|{5, 0xF, 0x1, 0xF, 0x8, 0x14, 5},
  |  |  309|      1|{5, 0xF, 0x1, 0xF, 0x3, 0x7D, 7},
  |  |  310|      1|{5, 0xF, 0x1, 0xF, 0x2, 0x04, 5},
  |  |  311|      1|{5, 0xF, 0x1, 0xF, 0x1, 0x06, 6},
  |  |  312|      1|{6, 0x0, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  313|      1|{6, 0x1, 0x0, 0x0, 0x0, 0x04, 4},
  |  |  314|      1|{6, 0x1, 0x1, 0x1, 0x1, 0x03, 6},
  |  |  315|      1|{6, 0x2, 0x0, 0x0, 0x0, 0x0C, 5},
  |  |  316|      1|{6, 0x2, 0x1, 0x2, 0x2, 0x0D, 6},
  |  |  317|      1|{6, 0x3, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  318|      1|{6, 0x3, 0x1, 0x3, 0x3, 0x3D, 6},
  |  |  319|      1|{6, 0x3, 0x1, 0x3, 0x1, 0x1D, 6},
  |  |  320|      1|{6, 0x3, 0x1, 0x3, 0x2, 0x2D, 6},
  |  |  321|      1|{6, 0x4, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  322|      1|{6, 0x4, 0x1, 0x4, 0x4, 0x3F, 7},
  |  |  323|      1|{6, 0x5, 0x0, 0x0, 0x0, 0x35, 6},
  |  |  324|      1|{6, 0x5, 0x1, 0x1, 0x1, 0x15, 6},
  |  |  325|      1|{6, 0x5, 0x1, 0x5, 0x4, 0x7F, 7},
  |  |  326|      1|{6, 0x6, 0x0, 0x0, 0x0, 0x25, 6},
  |  |  327|      1|{6, 0x6, 0x1, 0x2, 0x2, 0x5F, 7},
  |  |  328|      1|{6, 0x6, 0x1, 0x6, 0x4, 0x1F, 7},
  |  |  329|      1|{6, 0x7, 0x0, 0x0, 0x0, 0x6F, 7},
  |  |  330|      1|{6, 0x7, 0x1, 0x6, 0x6, 0x4F, 7},
  |  |  331|      1|{6, 0x7, 0x1, 0x6, 0x4, 0x05, 6},
  |  |  332|      1|{6, 0x7, 0x1, 0x7, 0x3, 0x2F, 7},
  |  |  333|      1|{6, 0x7, 0x1, 0x7, 0x1, 0x36, 6},
  |  |  334|      1|{6, 0x7, 0x1, 0x7, 0x2, 0x77, 7},
  |  |  335|      1|{6, 0x8, 0x0, 0x0, 0x0, 0x12, 5},
  |  |  336|      1|{6, 0x8, 0x1, 0x8, 0x8, 0x0F, 7},
  |  |  337|      1|{6, 0x9, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  338|      1|{6, 0x9, 0x1, 0x1, 0x1, 0x37, 7},
  |  |  339|      1|{6, 0x9, 0x1, 0x9, 0x8, 0x57, 7},
  |  |  340|      1|{6, 0xA, 0x0, 0x0, 0x0, 0x19, 6},
  |  |  341|      1|{6, 0xA, 0x1, 0x2, 0x2, 0x29, 6},
  |  |  342|      1|{6, 0xA, 0x1, 0xA, 0x8, 0x17, 7},
  |  |  343|      1|{6, 0xB, 0x0, 0x0, 0x0, 0x67, 7},
  |  |  344|      1|{6, 0xB, 0x1, 0x9, 0x9, 0x47, 7},
  |  |  345|      1|{6, 0xB, 0x1, 0x9, 0x1, 0x09, 6},
  |  |  346|      1|{6, 0xB, 0x1, 0xB, 0xA, 0x27, 7},
  |  |  347|      1|{6, 0xB, 0x1, 0xB, 0x2, 0x31, 6},
  |  |  348|      1|{6, 0xB, 0x1, 0xB, 0x8, 0x7B, 7},
  |  |  349|      1|{6, 0xC, 0x0, 0x0, 0x0, 0x11, 6},
  |  |  350|      1|{6, 0xC, 0x1, 0xC, 0xC, 0x07, 7},
  |  |  351|      1|{6, 0xC, 0x1, 0xC, 0x8, 0x21, 6},
  |  |  352|      1|{6, 0xC, 0x1, 0xC, 0x4, 0x3B, 7},
  |  |  353|      1|{6, 0xD, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  354|      1|{6, 0xD, 0x1, 0x5, 0x5, 0x33, 7},
  |  |  355|      1|{6, 0xD, 0x1, 0x5, 0x4, 0x01, 6},
  |  |  356|      1|{6, 0xD, 0x1, 0xC, 0x8, 0x1B, 7},
  |  |  357|      1|{6, 0xD, 0x1, 0xD, 0x1, 0x6B, 7},
  |  |  358|      1|{6, 0xE, 0x0, 0x0, 0x0, 0x2B, 7},
  |  |  359|      1|{6, 0xE, 0x1, 0xE, 0x2, 0x4B, 7},
  |  |  360|      1|{6, 0xE, 0x1, 0x2, 0x2, 0x0B, 7},
  |  |  361|      1|{6, 0xE, 0x1, 0xE, 0xC, 0x73, 7},
  |  |  362|      1|{6, 0xE, 0x1, 0xE, 0x8, 0x3E, 6},
  |  |  363|      1|{6, 0xE, 0x1, 0xE, 0x4, 0x53, 7},
  |  |  364|      1|{6, 0xF, 0x0, 0x0, 0x0, 0x13, 7},
  |  |  365|      1|{6, 0xF, 0x1, 0x6, 0x6, 0x1E, 6},
  |  |  366|      1|{6, 0xF, 0x1, 0xE, 0xA, 0x2E, 6},
  |  |  367|      1|{6, 0xF, 0x1, 0xF, 0x3, 0x0E, 6},
  |  |  368|      1|{6, 0xF, 0x1, 0xF, 0x2, 0x02, 5},
  |  |  369|      1|{6, 0xF, 0x1, 0xB, 0x9, 0x63, 7},
  |  |  370|      1|{6, 0xF, 0x1, 0xF, 0xC, 0x16, 6},
  |  |  371|      1|{6, 0xF, 0x1, 0xF, 0x8, 0x06, 6},
  |  |  372|      1|{6, 0xF, 0x1, 0xF, 0x5, 0x23, 7},
  |  |  373|      1|{6, 0xF, 0x1, 0xF, 0x1, 0x1C, 5},
  |  |  374|      1|{6, 0xF, 0x1, 0xF, 0x4, 0x26, 6},
  |  |  375|      1|{7, 0x0, 0x0, 0x0, 0x0, 0x12, 5},
  |  |  376|      1|{7, 0x1, 0x0, 0x0, 0x0, 0x05, 6},
  |  |  377|      1|{7, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |  378|      1|{7, 0x2, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  379|      1|{7, 0x2, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |  380|      1|{7, 0x3, 0x0, 0x0, 0x0, 0x5F, 7},
  |  |  381|      1|{7, 0x3, 0x1, 0x3, 0x3, 0x1F, 7},
  |  |  382|      1|{7, 0x3, 0x1, 0x3, 0x2, 0x6F, 7},
  |  |  383|      1|{7, 0x3, 0x1, 0x3, 0x1, 0x2F, 7},
  |  |  384|      1|{7, 0x4, 0x0, 0x0, 0x0, 0x4F, 7},
  |  |  385|      1|{7, 0x4, 0x1, 0x4, 0x4, 0x0F, 7},
  |  |  386|      1|{7, 0x5, 0x0, 0x0, 0x0, 0x57, 7},
  |  |  387|      1|{7, 0x5, 0x1, 0x1, 0x1, 0x19, 6},
  |  |  388|      1|{7, 0x5, 0x1, 0x5, 0x4, 0x77, 7},
  |  |  389|      1|{7, 0x6, 0x0, 0x0, 0x0, 0x37, 7},
  |  |  390|      1|{7, 0x6, 0x1, 0x0, 0x0, 0x29, 6},
  |  |  391|      1|{7, 0x7, 0x0, 0x0, 0x0, 0x17, 7},
  |  |  392|      1|{7, 0x7, 0x1, 0x6, 0x6, 0x67, 7},
  |  |  393|      1|{7, 0x7, 0x1, 0x7, 0x3, 0x27, 7},
  |  |  394|      1|{7, 0x7, 0x1, 0x7, 0x2, 0x47, 7},
  |  |  395|      1|{7, 0x7, 0x1, 0x7, 0x5, 0x1B, 7},
  |  |  396|      1|{7, 0x7, 0x1, 0x7, 0x1, 0x09, 6},
  |  |  397|      1|{7, 0x7, 0x1, 0x7, 0x4, 0x07, 7},
  |  |  398|      1|{7, 0x8, 0x0, 0x0, 0x0, 0x7B, 7},
  |  |  399|      1|{7, 0x8, 0x1, 0x8, 0x8, 0x3B, 7},
  |  |  400|      1|{7, 0x9, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  401|      1|{7, 0x9, 0x1, 0x0, 0x0, 0x31, 6},
  |  |  402|      1|{7, 0xA, 0x0, 0x0, 0x0, 0x53, 7},
  |  |  403|      1|{7, 0xA, 0x1, 0x2, 0x2, 0x11, 6},
  |  |  404|      1|{7, 0xA, 0x1, 0xA, 0x8, 0x6B, 7},
  |  |  405|      1|{7, 0xB, 0x0, 0x0, 0x0, 0x2B, 7},
  |  |  406|      1|{7, 0xB, 0x1, 0x9, 0x9, 0x4B, 7},
  |  |  407|      1|{7, 0xB, 0x1, 0xB, 0x3, 0x0B, 7},
  |  |  408|      1|{7, 0xB, 0x1, 0xB, 0x1, 0x73, 7},
  |  |  409|      1|{7, 0xB, 0x1, 0xB, 0xA, 0x33, 7},
  |  |  410|      1|{7, 0xB, 0x1, 0xB, 0x2, 0x21, 6},
  |  |  411|      1|{7, 0xB, 0x1, 0xB, 0x8, 0x13, 7},
  |  |  412|      1|{7, 0xC, 0x0, 0x0, 0x0, 0x63, 7},
  |  |  413|      1|{7, 0xC, 0x1, 0x8, 0x8, 0x23, 7},
  |  |  414|      1|{7, 0xC, 0x1, 0xC, 0x4, 0x43, 7},
  |  |  415|      1|{7, 0xD, 0x0, 0x0, 0x0, 0x03, 7},
  |  |  416|      1|{7, 0xD, 0x1, 0x9, 0x9, 0x7D, 7},
  |  |  417|      1|{7, 0xD, 0x1, 0xD, 0x5, 0x5D, 7},
  |  |  418|      1|{7, 0xD, 0x1, 0xD, 0x1, 0x01, 6},
  |  |  419|      1|{7, 0xD, 0x1, 0xD, 0xC, 0x3D, 7},
  |  |  420|      1|{7, 0xD, 0x1, 0xD, 0x4, 0x3E, 6},
  |  |  421|      1|{7, 0xD, 0x1, 0xD, 0x8, 0x1D, 7},
  |  |  422|      1|{7, 0xE, 0x0, 0x0, 0x0, 0x6D, 7},
  |  |  423|      1|{7, 0xE, 0x1, 0x6, 0x6, 0x2D, 7},
  |  |  424|      1|{7, 0xE, 0x1, 0xE, 0xA, 0x0D, 7},
  |  |  425|      1|{7, 0xE, 0x1, 0xE, 0x2, 0x1E, 6},
  |  |  426|      1|{7, 0xE, 0x1, 0xE, 0xC, 0x4D, 7},
  |  |  427|      1|{7, 0xE, 0x1, 0xE, 0x8, 0x0E, 6},
  |  |  428|      1|{7, 0xE, 0x1, 0xE, 0x4, 0x75, 7},
  |  |  429|      1|{7, 0xF, 0x0, 0x0, 0x0, 0x15, 7},
  |  |  430|      1|{7, 0xF, 0x1, 0xF, 0xF, 0x06, 5},
  |  |  431|      1|{7, 0xF, 0x1, 0xF, 0xD, 0x35, 7},
  |  |  432|      1|{7, 0xF, 0x1, 0xF, 0x7, 0x55, 7},
  |  |  433|      1|{7, 0xF, 0x1, 0xF, 0x5, 0x1A, 5},
  |  |  434|      1|{7, 0xF, 0x1, 0xF, 0xB, 0x25, 7},
  |  |  435|      1|{7, 0xF, 0x1, 0xF, 0x3, 0x0A, 5},
  |  |  436|      1|{7, 0xF, 0x1, 0xF, 0x9, 0x2E, 6},
  |  |  437|      1|{7, 0xF, 0x1, 0xF, 0x1, 0x00, 4},
  |  |  438|      1|{7, 0xF, 0x1, 0xF, 0xE, 0x65, 7},
  |  |  439|      1|{7, 0xF, 0x1, 0xF, 0x6, 0x36, 6},
  |  |  440|      1|{7, 0xF, 0x1, 0xF, 0xA, 0x02, 5},
  |  |  441|      1|{7, 0xF, 0x1, 0xF, 0x2, 0x0C, 4},
  |  |  442|      1|{7, 0xF, 0x1, 0xF, 0xC, 0x16, 6},
  |  |  443|      1|{7, 0xF, 0x1, 0xF, 0x8, 0x04, 4},
  |  |  444|      1|{7, 0xF, 0x1, 0xF, 0x4, 0x08, 4}
  ------------------
   97|      1|      };
   98|      1|      size_t tbl0_size = sizeof(tbl0) / sizeof(vlc_src_table);
   99|       |
  100|      1|      si32 pattern_popcnt[16];
  101|     17|      for (ui32 i = 0; i < 16; ++i)
  ------------------
  |  Branch (101:24): [True: 16, False: 1]
  ------------------
  102|     16|        pattern_popcnt[i] = (si32)population_count(i);
  103|       |
  104|      1|      vlc_src_table* src_tbl = tbl0;
  105|      1|      ui32 *tgt_tbl = vlc_tbl0;
  106|      1|      size_t tbl_size = tbl0_size;
  107|  2.04k|      for (int i = 0; i < 2048; ++i)
  ------------------
  |  Branch (107:23): [True: 2.04k, False: 1]
  ------------------
  108|  2.04k|      {
  109|  2.04k|        int c_q = i >> 8, rho = (i >> 4) & 0xF, emb = i & 0xF;
  110|  2.04k|        if (((emb & rho) != emb) || (rho == 0 && c_q == 0))
  ------------------
  |  Branch (110:13): [True: 1.40k, False: 648]
  |  Branch (110:38): [True: 8, False: 640]
  |  Branch (110:50): [True: 1, False: 7]
  ------------------
  111|  1.40k|          tgt_tbl[i] = 0;
  112|    647|        else
  113|    647|        {
  114|    647|          vlc_src_table *best_entry = NULL;
  115|    647|          if (emb) // u_off = 1
  ------------------
  |  Branch (115:15): [True: 520, False: 127]
  ------------------
  116|    520|          {
  117|    520|            int best_e_k = -1;
  118|   231k|            for (size_t j = 0; j < tbl_size; ++j)
  ------------------
  |  Branch (118:32): [True: 230k, False: 520]
  ------------------
  119|   230k|            {
  120|   230k|              if (src_tbl[j].c_q == c_q && src_tbl[j].rho == rho)
  ------------------
  |  Branch (120:19): [True: 28.8k, False: 202k]
  |  Branch (120:44): [True: 2.74k, False: 26.1k]
  ------------------
  121|  2.74k|                if (src_tbl[j].u_off == 1)
  ------------------
  |  Branch (121:21): [True: 2.22k, False: 520]
  ------------------
  122|  2.22k|                  if ((emb & src_tbl[j].e_k) == src_tbl[j].e_1)
  ------------------
  |  Branch (122:23): [True: 527, False: 1.70k]
  ------------------
  123|    527|                  {
  124|       |                    //now we need to find the smallest cwd with the highest
  125|       |                    // number of bits set in e_k
  126|    527|                    int ones_count = pattern_popcnt[src_tbl[j].e_k];
  127|    527|                    if (ones_count >= best_e_k)
  ------------------
  |  Branch (127:25): [True: 520, False: 7]
  ------------------
  128|    520|                    {
  129|    520|                      best_entry = src_tbl + j;
  130|    520|                      best_e_k = ones_count;
  131|    520|                    }
  132|    527|                  }
  133|   230k|            }
  134|    520|          }
  135|    127|          else // u_off = 0
  136|    127|          {
  137|  25.1k|            for (size_t j = 0; j < tbl_size; ++j)
  ------------------
  |  Branch (137:32): [True: 25.1k, False: 0]
  ------------------
  138|  25.1k|            {
  139|  25.1k|              if (src_tbl[j].c_q == c_q && src_tbl[j].rho == rho)
  ------------------
  |  Branch (139:19): [True: 2.57k, False: 22.5k]
  |  Branch (139:44): [True: 127, False: 2.44k]
  ------------------
  140|    127|                if (src_tbl[j].u_off == 0)
  ------------------
  |  Branch (140:21): [True: 127, False: 0]
  ------------------
  141|    127|                {
  142|    127|                  best_entry = src_tbl + j;
  143|    127|                  break;
  144|    127|                }
  145|  25.1k|            }
  146|    127|          }
  147|    647|          assert(best_entry);
  148|    647|          tgt_tbl[i] = (ui16)((best_entry->cwd<<8) + (best_entry->cwd_len<<4)
  149|    647|                             + best_entry->e_k);
  150|    647|        }
  151|  2.04k|      }
  152|       |
  153|      1|      vlc_src_table tbl1[] = {
  154|      1|    #include "table1.h"
  ------------------
  |  |    1|      1|{0, 0x1, 0x0, 0x0, 0x0, 0x00, 3},
  |  |    2|      1|{0, 0x1, 0x1, 0x1, 0x1, 0x27, 6},
  |  |    3|      1|{0, 0x2, 0x0, 0x0, 0x0, 0x06, 3},
  |  |    4|      1|{0, 0x2, 0x1, 0x2, 0x2, 0x17, 6},
  |  |    5|      1|{0, 0x3, 0x0, 0x0, 0x0, 0x0D, 5},
  |  |    6|      1|{0, 0x3, 0x1, 0x0, 0x0, 0x3B, 6},
  |  |    7|      1|{0, 0x4, 0x0, 0x0, 0x0, 0x02, 3},
  |  |    8|      1|{0, 0x4, 0x1, 0x4, 0x4, 0x07, 6},
  |  |    9|      1|{0, 0x5, 0x0, 0x0, 0x0, 0x15, 5},
  |  |   10|      1|{0, 0x5, 0x1, 0x0, 0x0, 0x2B, 6},
  |  |   11|      1|{0, 0x6, 0x0, 0x0, 0x0, 0x01, 5},
  |  |   12|      1|{0, 0x6, 0x1, 0x0, 0x0, 0x7F, 7},
  |  |   13|      1|{0, 0x7, 0x0, 0x0, 0x0, 0x1F, 7},
  |  |   14|      1|{0, 0x7, 0x1, 0x0, 0x0, 0x1B, 6},
  |  |   15|      1|{0, 0x8, 0x0, 0x0, 0x0, 0x04, 3},
  |  |   16|      1|{0, 0x8, 0x1, 0x8, 0x8, 0x05, 5},
  |  |   17|      1|{0, 0x9, 0x0, 0x0, 0x0, 0x19, 5},
  |  |   18|      1|{0, 0x9, 0x1, 0x0, 0x0, 0x13, 6},
  |  |   19|      1|{0, 0xA, 0x0, 0x0, 0x0, 0x09, 5},
  |  |   20|      1|{0, 0xA, 0x1, 0x8, 0x8, 0x0B, 6},
  |  |   21|      1|{0, 0xA, 0x1, 0xA, 0x2, 0x3F, 7},
  |  |   22|      1|{0, 0xB, 0x0, 0x0, 0x0, 0x5F, 7},
  |  |   23|      1|{0, 0xB, 0x1, 0x0, 0x0, 0x33, 6},
  |  |   24|      1|{0, 0xC, 0x0, 0x0, 0x0, 0x11, 5},
  |  |   25|      1|{0, 0xC, 0x1, 0x8, 0x8, 0x23, 6},
  |  |   26|      1|{0, 0xC, 0x1, 0xC, 0x4, 0x6F, 7},
  |  |   27|      1|{0, 0xD, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |   28|      1|{0, 0xD, 0x1, 0x0, 0x0, 0x03, 6},
  |  |   29|      1|{0, 0xE, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   30|      1|{0, 0xE, 0x1, 0x4, 0x4, 0x4F, 7},
  |  |   31|      1|{0, 0xE, 0x1, 0x4, 0x0, 0x3D, 6},
  |  |   32|      1|{0, 0xF, 0x0, 0x0, 0x0, 0x77, 7},
  |  |   33|      1|{0, 0xF, 0x1, 0x1, 0x1, 0x37, 7},
  |  |   34|      1|{0, 0xF, 0x1, 0x1, 0x0, 0x1D, 6},
  |  |   35|      1|{1, 0x0, 0x0, 0x0, 0x0, 0x00, 1},
  |  |   36|      1|{1, 0x1, 0x0, 0x0, 0x0, 0x05, 4},
  |  |   37|      1|{1, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |   38|      1|{1, 0x2, 0x0, 0x0, 0x0, 0x09, 4},
  |  |   39|      1|{1, 0x2, 0x1, 0x2, 0x2, 0x1F, 7},
  |  |   40|      1|{1, 0x3, 0x0, 0x0, 0x0, 0x1D, 5},
  |  |   41|      1|{1, 0x3, 0x1, 0x1, 0x1, 0x3F, 7},
  |  |   42|      1|{1, 0x3, 0x1, 0x3, 0x2, 0x5F, 7},
  |  |   43|      1|{1, 0x4, 0x0, 0x0, 0x0, 0x0D, 5},
  |  |   44|      1|{1, 0x4, 0x1, 0x4, 0x4, 0x37, 7},
  |  |   45|      1|{1, 0x5, 0x0, 0x0, 0x0, 0x03, 6},
  |  |   46|      1|{1, 0x5, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |   47|      1|{1, 0x6, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   48|      1|{1, 0x6, 0x1, 0x0, 0x0, 0x4F, 7},
  |  |   49|      1|{1, 0x7, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |   50|      1|{1, 0x7, 0x1, 0x0, 0x0, 0x77, 7},
  |  |   51|      1|{1, 0x8, 0x0, 0x0, 0x0, 0x01, 4},
  |  |   52|      1|{1, 0x8, 0x1, 0x8, 0x8, 0x17, 7},
  |  |   53|      1|{1, 0x9, 0x0, 0x0, 0x0, 0x0B, 6},
  |  |   54|      1|{1, 0x9, 0x1, 0x0, 0x0, 0x57, 7},
  |  |   55|      1|{1, 0xA, 0x0, 0x0, 0x0, 0x33, 6},
  |  |   56|      1|{1, 0xA, 0x1, 0x0, 0x0, 0x67, 7},
  |  |   57|      1|{1, 0xB, 0x0, 0x0, 0x0, 0x27, 7},
  |  |   58|      1|{1, 0xB, 0x1, 0x0, 0x0, 0x2B, 7},
  |  |   59|      1|{1, 0xC, 0x0, 0x0, 0x0, 0x13, 6},
  |  |   60|      1|{1, 0xC, 0x1, 0x0, 0x0, 0x47, 7},
  |  |   61|      1|{1, 0xD, 0x0, 0x0, 0x0, 0x07, 7},
  |  |   62|      1|{1, 0xD, 0x1, 0x0, 0x0, 0x7B, 7},
  |  |   63|      1|{1, 0xE, 0x0, 0x0, 0x0, 0x3B, 7},
  |  |   64|      1|{1, 0xE, 0x1, 0x0, 0x0, 0x5B, 7},
  |  |   65|      1|{1, 0xF, 0x0, 0x0, 0x0, 0x1B, 7},
  |  |   66|      1|{1, 0xF, 0x1, 0x4, 0x4, 0x6B, 7},
  |  |   67|      1|{1, 0xF, 0x1, 0x4, 0x0, 0x23, 6},
  |  |   68|      1|{2, 0x0, 0x0, 0x0, 0x0, 0x00, 1},
  |  |   69|      1|{2, 0x1, 0x0, 0x0, 0x0, 0x09, 4},
  |  |   70|      1|{2, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |   71|      1|{2, 0x2, 0x0, 0x0, 0x0, 0x01, 4},
  |  |   72|      1|{2, 0x2, 0x1, 0x2, 0x2, 0x23, 6},
  |  |   73|      1|{2, 0x3, 0x0, 0x0, 0x0, 0x3D, 6},
  |  |   74|      1|{2, 0x3, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |   75|      1|{2, 0x3, 0x1, 0x3, 0x1, 0x1F, 7},
  |  |   76|      1|{2, 0x4, 0x0, 0x0, 0x0, 0x15, 5},
  |  |   77|      1|{2, 0x4, 0x1, 0x4, 0x4, 0x5F, 7},
  |  |   78|      1|{2, 0x5, 0x0, 0x0, 0x0, 0x03, 6},
  |  |   79|      1|{2, 0x5, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |   80|      1|{2, 0x6, 0x0, 0x0, 0x0, 0x2F, 7},
  |  |   81|      1|{2, 0x6, 0x1, 0x0, 0x0, 0x4F, 7},
  |  |   82|      1|{2, 0x7, 0x0, 0x0, 0x0, 0x0F, 7},
  |  |   83|      1|{2, 0x7, 0x1, 0x0, 0x0, 0x17, 7},
  |  |   84|      1|{2, 0x8, 0x0, 0x0, 0x0, 0x05, 5},
  |  |   85|      1|{2, 0x8, 0x1, 0x8, 0x8, 0x77, 7},
  |  |   86|      1|{2, 0x9, 0x0, 0x0, 0x0, 0x37, 7},
  |  |   87|      1|{2, 0x9, 0x1, 0x0, 0x0, 0x57, 7},
  |  |   88|      1|{2, 0xA, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |   89|      1|{2, 0xA, 0x1, 0xA, 0xA, 0x7B, 7},
  |  |   90|      1|{2, 0xA, 0x1, 0xA, 0x2, 0x2D, 6},
  |  |   91|      1|{2, 0xA, 0x1, 0xA, 0x8, 0x67, 7},
  |  |   92|      1|{2, 0xB, 0x0, 0x0, 0x0, 0x27, 7},
  |  |   93|      1|{2, 0xB, 0x1, 0xB, 0x2, 0x47, 7},
  |  |   94|      1|{2, 0xB, 0x1, 0x0, 0x0, 0x07, 7},
  |  |   95|      1|{2, 0xC, 0x0, 0x0, 0x0, 0x0D, 6},
  |  |   96|      1|{2, 0xC, 0x1, 0x0, 0x0, 0x3B, 7},
  |  |   97|      1|{2, 0xD, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |   98|      1|{2, 0xD, 0x1, 0x0, 0x0, 0x1B, 7},
  |  |   99|      1|{2, 0xE, 0x0, 0x0, 0x0, 0x6B, 7},
  |  |  100|      1|{2, 0xE, 0x1, 0x4, 0x4, 0x2B, 7},
  |  |  101|      1|{2, 0xE, 0x1, 0x4, 0x0, 0x4B, 7},
  |  |  102|      1|{2, 0xF, 0x0, 0x0, 0x0, 0x0B, 7},
  |  |  103|      1|{2, 0xF, 0x1, 0x4, 0x4, 0x73, 7},
  |  |  104|      1|{2, 0xF, 0x1, 0x5, 0x1, 0x33, 7},
  |  |  105|      1|{2, 0xF, 0x1, 0x7, 0x2, 0x53, 7},
  |  |  106|      1|{2, 0xF, 0x1, 0xF, 0x8, 0x13, 7},
  |  |  107|      1|{3, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |  108|      1|{3, 0x1, 0x0, 0x0, 0x0, 0x0A, 4},
  |  |  109|      1|{3, 0x1, 0x1, 0x1, 0x1, 0x0B, 6},
  |  |  110|      1|{3, 0x2, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  111|      1|{3, 0x2, 0x1, 0x2, 0x2, 0x23, 6},
  |  |  112|      1|{3, 0x3, 0x0, 0x0, 0x0, 0x0E, 5},
  |  |  113|      1|{3, 0x3, 0x1, 0x3, 0x3, 0x7F, 7},
  |  |  114|      1|{3, 0x3, 0x1, 0x3, 0x2, 0x33, 6},
  |  |  115|      1|{3, 0x3, 0x1, 0x3, 0x1, 0x13, 6},
  |  |  116|      1|{3, 0x4, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  117|      1|{3, 0x4, 0x1, 0x4, 0x4, 0x3F, 7},
  |  |  118|      1|{3, 0x5, 0x0, 0x0, 0x0, 0x03, 6},
  |  |  119|      1|{3, 0x5, 0x1, 0x1, 0x1, 0x3D, 6},
  |  |  120|      1|{3, 0x5, 0x1, 0x5, 0x4, 0x1F, 7},
  |  |  121|      1|{3, 0x6, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  122|      1|{3, 0x6, 0x1, 0x0, 0x0, 0x5F, 7},
  |  |  123|      1|{3, 0x7, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |  124|      1|{3, 0x7, 0x1, 0x4, 0x4, 0x2F, 7},
  |  |  125|      1|{3, 0x7, 0x1, 0x5, 0x1, 0x1E, 6},
  |  |  126|      1|{3, 0x7, 0x1, 0x7, 0x2, 0x6F, 7},
  |  |  127|      1|{3, 0x8, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  128|      1|{3, 0x8, 0x1, 0x8, 0x8, 0x4F, 7},
  |  |  129|      1|{3, 0x9, 0x0, 0x0, 0x0, 0x0D, 6},
  |  |  130|      1|{3, 0x9, 0x1, 0x0, 0x0, 0x35, 6},
  |  |  131|      1|{3, 0xA, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  132|      1|{3, 0xA, 0x1, 0x2, 0x2, 0x25, 6},
  |  |  133|      1|{3, 0xA, 0x1, 0xA, 0x8, 0x0F, 7},
  |  |  134|      1|{3, 0xB, 0x0, 0x0, 0x0, 0x05, 6},
  |  |  135|      1|{3, 0xB, 0x1, 0x8, 0x8, 0x39, 6},
  |  |  136|      1|{3, 0xB, 0x1, 0xB, 0x3, 0x17, 7},
  |  |  137|      1|{3, 0xB, 0x1, 0xB, 0x2, 0x19, 6},
  |  |  138|      1|{3, 0xB, 0x1, 0xB, 0x1, 0x77, 7},
  |  |  139|      1|{3, 0xC, 0x0, 0x0, 0x0, 0x29, 6},
  |  |  140|      1|{3, 0xC, 0x1, 0x0, 0x0, 0x09, 6},
  |  |  141|      1|{3, 0xD, 0x0, 0x0, 0x0, 0x37, 7},
  |  |  142|      1|{3, 0xD, 0x1, 0x4, 0x4, 0x57, 7},
  |  |  143|      1|{3, 0xD, 0x1, 0x4, 0x0, 0x31, 6},
  |  |  144|      1|{3, 0xE, 0x0, 0x0, 0x0, 0x67, 7},
  |  |  145|      1|{3, 0xE, 0x1, 0x4, 0x4, 0x27, 7},
  |  |  146|      1|{3, 0xE, 0x1, 0xC, 0x8, 0x47, 7},
  |  |  147|      1|{3, 0xE, 0x1, 0xE, 0x2, 0x6B, 7},
  |  |  148|      1|{3, 0xF, 0x0, 0x0, 0x0, 0x11, 6},
  |  |  149|      1|{3, 0xF, 0x1, 0x6, 0x6, 0x07, 7},
  |  |  150|      1|{3, 0xF, 0x1, 0x7, 0x3, 0x7B, 7},
  |  |  151|      1|{3, 0xF, 0x1, 0xF, 0xA, 0x3B, 7},
  |  |  152|      1|{3, 0xF, 0x1, 0xF, 0x2, 0x21, 6},
  |  |  153|      1|{3, 0xF, 0x1, 0xF, 0x8, 0x01, 6},
  |  |  154|      1|{3, 0xF, 0x1, 0xA, 0x8, 0x5B, 7},
  |  |  155|      1|{3, 0xF, 0x1, 0xF, 0x5, 0x1B, 7},
  |  |  156|      1|{3, 0xF, 0x1, 0xF, 0x1, 0x3E, 6},
  |  |  157|      1|{3, 0xF, 0x1, 0xF, 0x4, 0x2B, 7},
  |  |  158|      1|{4, 0x0, 0x0, 0x0, 0x0, 0x00, 1},
  |  |  159|      1|{4, 0x1, 0x0, 0x0, 0x0, 0x0D, 5},
  |  |  160|      1|{4, 0x1, 0x1, 0x1, 0x1, 0x7F, 7},
  |  |  161|      1|{4, 0x2, 0x0, 0x0, 0x0, 0x15, 5},
  |  |  162|      1|{4, 0x2, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |  163|      1|{4, 0x3, 0x0, 0x0, 0x0, 0x5F, 7},
  |  |  164|      1|{4, 0x3, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |  165|      1|{4, 0x4, 0x0, 0x0, 0x0, 0x09, 4},
  |  |  166|      1|{4, 0x4, 0x1, 0x4, 0x4, 0x23, 6},
  |  |  167|      1|{4, 0x5, 0x0, 0x0, 0x0, 0x33, 6},
  |  |  168|      1|{4, 0x5, 0x1, 0x0, 0x0, 0x1F, 7},
  |  |  169|      1|{4, 0x6, 0x0, 0x0, 0x0, 0x13, 6},
  |  |  170|      1|{4, 0x6, 0x1, 0x0, 0x0, 0x2F, 7},
  |  |  171|      1|{4, 0x7, 0x0, 0x0, 0x0, 0x4F, 7},
  |  |  172|      1|{4, 0x7, 0x1, 0x0, 0x0, 0x57, 7},
  |  |  173|      1|{4, 0x8, 0x0, 0x0, 0x0, 0x01, 4},
  |  |  174|      1|{4, 0x8, 0x1, 0x8, 0x8, 0x0F, 7},
  |  |  175|      1|{4, 0x9, 0x0, 0x0, 0x0, 0x77, 7},
  |  |  176|      1|{4, 0x9, 0x1, 0x0, 0x0, 0x37, 7},
  |  |  177|      1|{4, 0xA, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  178|      1|{4, 0xA, 0x1, 0x0, 0x0, 0x17, 7},
  |  |  179|      1|{4, 0xB, 0x0, 0x0, 0x0, 0x67, 7},
  |  |  180|      1|{4, 0xB, 0x1, 0x0, 0x0, 0x6B, 7},
  |  |  181|      1|{4, 0xC, 0x0, 0x0, 0x0, 0x05, 5},
  |  |  182|      1|{4, 0xC, 0x1, 0xC, 0xC, 0x27, 7},
  |  |  183|      1|{4, 0xC, 0x1, 0xC, 0x8, 0x47, 7},
  |  |  184|      1|{4, 0xC, 0x1, 0xC, 0x4, 0x07, 7},
  |  |  185|      1|{4, 0xD, 0x0, 0x0, 0x0, 0x7B, 7},
  |  |  186|      1|{4, 0xD, 0x1, 0x0, 0x0, 0x3B, 7},
  |  |  187|      1|{4, 0xE, 0x0, 0x0, 0x0, 0x5B, 7},
  |  |  188|      1|{4, 0xE, 0x1, 0x2, 0x2, 0x1B, 7},
  |  |  189|      1|{4, 0xE, 0x1, 0x2, 0x0, 0x03, 6},
  |  |  190|      1|{4, 0xF, 0x0, 0x0, 0x0, 0x2B, 7},
  |  |  191|      1|{4, 0xF, 0x1, 0x1, 0x1, 0x4B, 7},
  |  |  192|      1|{4, 0xF, 0x1, 0x3, 0x2, 0x0B, 7},
  |  |  193|      1|{4, 0xF, 0x1, 0x3, 0x0, 0x3D, 6},
  |  |  194|      1|{5, 0x0, 0x0, 0x0, 0x0, 0x00, 2},
  |  |  195|      1|{5, 0x1, 0x0, 0x0, 0x0, 0x1E, 5},
  |  |  196|      1|{5, 0x1, 0x1, 0x1, 0x1, 0x3B, 6},
  |  |  197|      1|{5, 0x2, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  198|      1|{5, 0x2, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |  199|      1|{5, 0x3, 0x0, 0x0, 0x0, 0x1B, 6},
  |  |  200|      1|{5, 0x3, 0x1, 0x0, 0x0, 0x0B, 6},
  |  |  201|      1|{5, 0x4, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  202|      1|{5, 0x4, 0x1, 0x4, 0x4, 0x2B, 6},
  |  |  203|      1|{5, 0x5, 0x0, 0x0, 0x0, 0x0E, 5},
  |  |  204|      1|{5, 0x5, 0x1, 0x4, 0x4, 0x33, 6},
  |  |  205|      1|{5, 0x5, 0x1, 0x5, 0x1, 0x7F, 7},
  |  |  206|      1|{5, 0x6, 0x0, 0x0, 0x0, 0x13, 6},
  |  |  207|      1|{5, 0x6, 0x1, 0x0, 0x0, 0x6F, 7},
  |  |  208|      1|{5, 0x7, 0x0, 0x0, 0x0, 0x23, 6},
  |  |  209|      1|{5, 0x7, 0x1, 0x2, 0x2, 0x5F, 7},
  |  |  210|      1|{5, 0x7, 0x1, 0x2, 0x0, 0x15, 6},
  |  |  211|      1|{5, 0x8, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  212|      1|{5, 0x8, 0x1, 0x8, 0x8, 0x03, 6},
  |  |  213|      1|{5, 0x9, 0x0, 0x0, 0x0, 0x3D, 6},
  |  |  214|      1|{5, 0x9, 0x1, 0x0, 0x0, 0x1F, 7},
  |  |  215|      1|{5, 0xA, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  216|      1|{5, 0xA, 0x1, 0x0, 0x0, 0x2D, 6},
  |  |  217|      1|{5, 0xB, 0x0, 0x0, 0x0, 0x0D, 6},
  |  |  218|      1|{5, 0xB, 0x1, 0x1, 0x1, 0x4F, 7},
  |  |  219|      1|{5, 0xB, 0x1, 0x1, 0x0, 0x35, 6},
  |  |  220|      1|{5, 0xC, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  221|      1|{5, 0xC, 0x1, 0x4, 0x4, 0x25, 6},
  |  |  222|      1|{5, 0xC, 0x1, 0xC, 0x8, 0x2F, 7},
  |  |  223|      1|{5, 0xD, 0x0, 0x0, 0x0, 0x05, 6},
  |  |  224|      1|{5, 0xD, 0x1, 0x1, 0x1, 0x77, 7},
  |  |  225|      1|{5, 0xD, 0x1, 0x5, 0x4, 0x39, 6},
  |  |  226|      1|{5, 0xD, 0x1, 0xD, 0x8, 0x0F, 7},
  |  |  227|      1|{5, 0xE, 0x0, 0x0, 0x0, 0x19, 6},
  |  |  228|      1|{5, 0xE, 0x1, 0x2, 0x2, 0x57, 7},
  |  |  229|      1|{5, 0xE, 0x1, 0xA, 0x8, 0x01, 6},
  |  |  230|      1|{5, 0xE, 0x1, 0xE, 0x4, 0x37, 7},
  |  |  231|      1|{5, 0xF, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  232|      1|{5, 0xF, 0x1, 0x9, 0x9, 0x17, 7},
  |  |  233|      1|{5, 0xF, 0x1, 0xD, 0x5, 0x67, 7},
  |  |  234|      1|{5, 0xF, 0x1, 0xF, 0x3, 0x07, 7},
  |  |  235|      1|{5, 0xF, 0x1, 0xF, 0x1, 0x29, 6},
  |  |  236|      1|{5, 0xF, 0x1, 0x7, 0x6, 0x27, 7},
  |  |  237|      1|{5, 0xF, 0x1, 0xF, 0xC, 0x09, 6},
  |  |  238|      1|{5, 0xF, 0x1, 0xF, 0x4, 0x31, 6},
  |  |  239|      1|{5, 0xF, 0x1, 0xF, 0xA, 0x47, 7},
  |  |  240|      1|{5, 0xF, 0x1, 0xF, 0x8, 0x11, 6},
  |  |  241|      1|{5, 0xF, 0x1, 0xF, 0x2, 0x21, 6},
  |  |  242|      1|{6, 0x0, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  243|      1|{6, 0x1, 0x0, 0x0, 0x0, 0x02, 4},
  |  |  244|      1|{6, 0x1, 0x1, 0x1, 0x1, 0x03, 6},
  |  |  245|      1|{6, 0x2, 0x0, 0x0, 0x0, 0x0C, 4},
  |  |  246|      1|{6, 0x2, 0x1, 0x2, 0x2, 0x3D, 6},
  |  |  247|      1|{6, 0x3, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  248|      1|{6, 0x3, 0x1, 0x2, 0x2, 0x0D, 6},
  |  |  249|      1|{6, 0x3, 0x1, 0x3, 0x1, 0x7F, 7},
  |  |  250|      1|{6, 0x4, 0x0, 0x0, 0x0, 0x04, 4},
  |  |  251|      1|{6, 0x4, 0x1, 0x4, 0x4, 0x2D, 6},
  |  |  252|      1|{6, 0x5, 0x0, 0x0, 0x0, 0x0A, 5},
  |  |  253|      1|{6, 0x5, 0x1, 0x4, 0x4, 0x35, 6},
  |  |  254|      1|{6, 0x5, 0x1, 0x5, 0x1, 0x2F, 7},
  |  |  255|      1|{6, 0x6, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  256|      1|{6, 0x6, 0x1, 0x2, 0x2, 0x3F, 7},
  |  |  257|      1|{6, 0x6, 0x1, 0x6, 0x4, 0x5F, 7},
  |  |  258|      1|{6, 0x7, 0x0, 0x0, 0x0, 0x25, 6},
  |  |  259|      1|{6, 0x7, 0x1, 0x2, 0x2, 0x29, 6},
  |  |  260|      1|{6, 0x7, 0x1, 0x3, 0x1, 0x1F, 7},
  |  |  261|      1|{6, 0x7, 0x1, 0x7, 0x4, 0x6F, 7},
  |  |  262|      1|{6, 0x8, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  263|      1|{6, 0x8, 0x1, 0x8, 0x8, 0x05, 6},
  |  |  264|      1|{6, 0x9, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  265|      1|{6, 0x9, 0x1, 0x0, 0x0, 0x19, 6},
  |  |  266|      1|{6, 0xA, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  267|      1|{6, 0xA, 0x1, 0xA, 0xA, 0x0F, 7},
  |  |  268|      1|{6, 0xA, 0x1, 0xA, 0x2, 0x09, 6},
  |  |  269|      1|{6, 0xA, 0x1, 0xA, 0x8, 0x4F, 7},
  |  |  270|      1|{6, 0xB, 0x0, 0x0, 0x0, 0x0E, 6},
  |  |  271|      1|{6, 0xB, 0x1, 0xB, 0x2, 0x77, 7},
  |  |  272|      1|{6, 0xB, 0x1, 0x2, 0x2, 0x37, 7},
  |  |  273|      1|{6, 0xB, 0x1, 0xA, 0x8, 0x57, 7},
  |  |  274|      1|{6, 0xB, 0x1, 0xB, 0x1, 0x47, 7},
  |  |  275|      1|{6, 0xC, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  276|      1|{6, 0xC, 0x1, 0xC, 0xC, 0x17, 7},
  |  |  277|      1|{6, 0xC, 0x1, 0xC, 0x8, 0x67, 7},
  |  |  278|      1|{6, 0xC, 0x1, 0xC, 0x4, 0x27, 7},
  |  |  279|      1|{6, 0xD, 0x0, 0x0, 0x0, 0x31, 6},
  |  |  280|      1|{6, 0xD, 0x1, 0xD, 0x4, 0x07, 7},
  |  |  281|      1|{6, 0xD, 0x1, 0x4, 0x4, 0x7B, 7},
  |  |  282|      1|{6, 0xD, 0x1, 0xC, 0x8, 0x3B, 7},
  |  |  283|      1|{6, 0xD, 0x1, 0xD, 0x1, 0x2B, 7},
  |  |  284|      1|{6, 0xE, 0x0, 0x0, 0x0, 0x11, 6},
  |  |  285|      1|{6, 0xE, 0x1, 0xE, 0x4, 0x5B, 7},
  |  |  286|      1|{6, 0xE, 0x1, 0x4, 0x4, 0x1B, 7},
  |  |  287|      1|{6, 0xE, 0x1, 0xE, 0xA, 0x6B, 7},
  |  |  288|      1|{6, 0xE, 0x1, 0xE, 0x8, 0x21, 6},
  |  |  289|      1|{6, 0xE, 0x1, 0xE, 0x2, 0x33, 7},
  |  |  290|      1|{6, 0xF, 0x0, 0x0, 0x0, 0x01, 6},
  |  |  291|      1|{6, 0xF, 0x1, 0x3, 0x3, 0x4B, 7},
  |  |  292|      1|{6, 0xF, 0x1, 0x7, 0x6, 0x0B, 7},
  |  |  293|      1|{6, 0xF, 0x1, 0xF, 0xA, 0x73, 7},
  |  |  294|      1|{6, 0xF, 0x1, 0xF, 0x2, 0x3E, 6},
  |  |  295|      1|{6, 0xF, 0x1, 0xB, 0x9, 0x53, 7},
  |  |  296|      1|{6, 0xF, 0x1, 0xF, 0xC, 0x63, 7},
  |  |  297|      1|{6, 0xF, 0x1, 0xF, 0x8, 0x1E, 6},
  |  |  298|      1|{6, 0xF, 0x1, 0xF, 0x5, 0x13, 7},
  |  |  299|      1|{6, 0xF, 0x1, 0xF, 0x4, 0x2E, 6},
  |  |  300|      1|{6, 0xF, 0x1, 0xF, 0x1, 0x23, 7},
  |  |  301|      1|{7, 0x0, 0x0, 0x0, 0x0, 0x04, 4},
  |  |  302|      1|{7, 0x1, 0x0, 0x0, 0x0, 0x33, 6},
  |  |  303|      1|{7, 0x1, 0x1, 0x1, 0x1, 0x13, 6},
  |  |  304|      1|{7, 0x2, 0x0, 0x0, 0x0, 0x23, 6},
  |  |  305|      1|{7, 0x2, 0x1, 0x2, 0x2, 0x7F, 7},
  |  |  306|      1|{7, 0x3, 0x0, 0x0, 0x0, 0x03, 6},
  |  |  307|      1|{7, 0x3, 0x1, 0x1, 0x1, 0x3F, 7},
  |  |  308|      1|{7, 0x3, 0x1, 0x3, 0x2, 0x6F, 7},
  |  |  309|      1|{7, 0x4, 0x0, 0x0, 0x0, 0x2D, 6},
  |  |  310|      1|{7, 0x4, 0x1, 0x4, 0x4, 0x5F, 7},
  |  |  311|      1|{7, 0x5, 0x0, 0x0, 0x0, 0x16, 5},
  |  |  312|      1|{7, 0x5, 0x1, 0x1, 0x1, 0x3D, 6},
  |  |  313|      1|{7, 0x5, 0x1, 0x5, 0x4, 0x1F, 7},
  |  |  314|      1|{7, 0x6, 0x0, 0x0, 0x0, 0x1D, 6},
  |  |  315|      1|{7, 0x6, 0x1, 0x0, 0x0, 0x77, 7},
  |  |  316|      1|{7, 0x7, 0x0, 0x0, 0x0, 0x06, 5},
  |  |  317|      1|{7, 0x7, 0x1, 0x7, 0x4, 0x2F, 7},
  |  |  318|      1|{7, 0x7, 0x1, 0x4, 0x4, 0x4F, 7},
  |  |  319|      1|{7, 0x7, 0x1, 0x7, 0x3, 0x0F, 7},
  |  |  320|      1|{7, 0x7, 0x1, 0x7, 0x1, 0x0D, 6},
  |  |  321|      1|{7, 0x7, 0x1, 0x7, 0x2, 0x57, 7},
  |  |  322|      1|{7, 0x8, 0x0, 0x0, 0x0, 0x35, 6},
  |  |  323|      1|{7, 0x8, 0x1, 0x8, 0x8, 0x37, 7},
  |  |  324|      1|{7, 0x9, 0x0, 0x0, 0x0, 0x15, 6},
  |  |  325|      1|{7, 0x9, 0x1, 0x0, 0x0, 0x27, 7},
  |  |  326|      1|{7, 0xA, 0x0, 0x0, 0x0, 0x25, 6},
  |  |  327|      1|{7, 0xA, 0x1, 0x0, 0x0, 0x29, 6},
  |  |  328|      1|{7, 0xB, 0x0, 0x0, 0x0, 0x1A, 5},
  |  |  329|      1|{7, 0xB, 0x1, 0xB, 0x1, 0x17, 7},
  |  |  330|      1|{7, 0xB, 0x1, 0x1, 0x1, 0x67, 7},
  |  |  331|      1|{7, 0xB, 0x1, 0x3, 0x2, 0x05, 6},
  |  |  332|      1|{7, 0xB, 0x1, 0xB, 0x8, 0x7B, 7},
  |  |  333|      1|{7, 0xC, 0x0, 0x0, 0x0, 0x39, 6},
  |  |  334|      1|{7, 0xC, 0x1, 0x0, 0x0, 0x19, 6},
  |  |  335|      1|{7, 0xD, 0x0, 0x0, 0x0, 0x0C, 5},
  |  |  336|      1|{7, 0xD, 0x1, 0xD, 0x1, 0x47, 7},
  |  |  337|      1|{7, 0xD, 0x1, 0x1, 0x1, 0x07, 7},
  |  |  338|      1|{7, 0xD, 0x1, 0x5, 0x4, 0x09, 6},
  |  |  339|      1|{7, 0xD, 0x1, 0xD, 0x8, 0x1B, 7},
  |  |  340|      1|{7, 0xE, 0x0, 0x0, 0x0, 0x31, 6},
  |  |  341|      1|{7, 0xE, 0x1, 0xE, 0x2, 0x3B, 7},
  |  |  342|      1|{7, 0xE, 0x1, 0x2, 0x2, 0x5B, 7},
  |  |  343|      1|{7, 0xE, 0x1, 0xA, 0x8, 0x3E, 6},
  |  |  344|      1|{7, 0xE, 0x1, 0xE, 0x4, 0x0B, 7},
  |  |  345|      1|{7, 0xF, 0x0, 0x0, 0x0, 0x00, 3},
  |  |  346|      1|{7, 0xF, 0x1, 0xF, 0xF, 0x6B, 7},
  |  |  347|      1|{7, 0xF, 0x1, 0xF, 0x7, 0x2B, 7},
  |  |  348|      1|{7, 0xF, 0x1, 0xF, 0xB, 0x4B, 7},
  |  |  349|      1|{7, 0xF, 0x1, 0xF, 0x3, 0x11, 6},
  |  |  350|      1|{7, 0xF, 0x1, 0x7, 0x6, 0x21, 6},
  |  |  351|      1|{7, 0xF, 0x1, 0xF, 0xA, 0x01, 6},
  |  |  352|      1|{7, 0xF, 0x1, 0xF, 0x2, 0x0A, 5},
  |  |  353|      1|{7, 0xF, 0x1, 0xB, 0x9, 0x1E, 6},
  |  |  354|      1|{7, 0xF, 0x1, 0xF, 0xC, 0x0E, 6},
  |  |  355|      1|{7, 0xF, 0x1, 0xF, 0x8, 0x12, 5},
  |  |  356|      1|{7, 0xF, 0x1, 0xF, 0x5, 0x2E, 6},
  |  |  357|      1|{7, 0xF, 0x1, 0xF, 0x1, 0x02, 5},
  |  |  358|      1|{7, 0xF, 0x1, 0xF, 0x4, 0x1C, 5}
  ------------------
  155|      1|      };
  156|      1|      size_t tbl1_size = sizeof(tbl1) / sizeof(vlc_src_table);
  157|       |
  158|      1|      src_tbl = tbl1;
  159|      1|      tgt_tbl = vlc_tbl1;
  160|      1|      tbl_size = tbl1_size;
  161|  2.04k|      for (int i = 0; i < 2048; ++i)
  ------------------
  |  Branch (161:23): [True: 2.04k, False: 1]
  ------------------
  162|  2.04k|      {
  163|  2.04k|        int c_q = i >> 8, rho = (i >> 4) & 0xF, emb = i & 0xF;
  164|  2.04k|        if (((emb & rho) != emb) || (rho == 0 && c_q == 0))
  ------------------
  |  Branch (164:13): [True: 1.40k, False: 648]
  |  Branch (164:38): [True: 8, False: 640]
  |  Branch (164:50): [True: 1, False: 7]
  ------------------
  165|  1.40k|          tgt_tbl[i] = 0;
  166|    647|        else
  167|    647|        {
  168|    647|          vlc_src_table *best_entry = NULL;
  169|    647|          if (emb) // u_off = 1
  ------------------
  |  Branch (169:15): [True: 520, False: 127]
  ------------------
  170|    520|          {
  171|    520|            int best_e_k = -1;
  172|   186k|            for (size_t j = 0; j < tbl_size; ++j)
  ------------------
  |  Branch (172:32): [True: 186k, False: 520]
  ------------------
  173|   186k|            {
  174|   186k|              if (src_tbl[j].c_q == c_q && src_tbl[j].rho == rho)
  ------------------
  |  Branch (174:19): [True: 23.2k, False: 162k]
  |  Branch (174:44): [True: 2.08k, False: 21.1k]
  ------------------
  175|  2.08k|                if (src_tbl[j].u_off == 1)
  ------------------
  |  Branch (175:21): [True: 1.56k, False: 520]
  ------------------
  176|  1.56k|                  if ((emb & src_tbl[j].e_k) == src_tbl[j].e_1)
  ------------------
  |  Branch (176:23): [True: 529, False: 1.03k]
  ------------------
  177|    529|                  {
  178|       |                    //now we need to find the smallest cwd with the highest
  179|       |                    // number of bits set in e_k
  180|    529|                    int ones_count = pattern_popcnt[src_tbl[j].e_k];
  181|    529|                    if (ones_count >= best_e_k)
  ------------------
  |  Branch (181:25): [True: 520, False: 9]
  ------------------
  182|    520|                    {
  183|    520|                      best_entry = src_tbl + j;
  184|    520|                      best_e_k = ones_count;
  185|    520|                    }
  186|    529|                  }
  187|   186k|            }
  188|    520|          }
  189|    127|          else // u_off = 0
  190|    127|          {
  191|  19.7k|            for (size_t j = 0; j < tbl_size; ++j)
  ------------------
  |  Branch (191:32): [True: 19.7k, False: 0]
  ------------------
  192|  19.7k|            {
  193|  19.7k|              if (src_tbl[j].c_q == c_q && src_tbl[j].rho == rho)
  ------------------
  |  Branch (193:19): [True: 2.22k, False: 17.5k]
  |  Branch (193:44): [True: 127, False: 2.10k]
  ------------------
  194|    127|                if (src_tbl[j].u_off == 0)
  ------------------
  |  Branch (194:21): [True: 127, False: 0]
  ------------------
  195|    127|                {
  196|    127|                  best_entry = src_tbl + j;
  197|    127|                  break;
  198|    127|                }
  199|  19.7k|            }
  200|    127|          }
  201|    647|          assert(best_entry);
  202|    647|          tgt_tbl[i] = (ui16)((best_entry->cwd<<8) + (best_entry->cwd_len<<4)
  203|    647|                             + best_entry->e_k);
  204|    647|        }
  205|  2.04k|      }
  206|       |
  207|       |
  208|      1|      return true;
  209|      1|    }
ojph_block_encoder_avx2.cpp:_ZN4ojph5localL16uvlc_init_tablesEv:
  213|      1|    {
  214|       |      //code goes from 0 to 31, extension and 32 are not supported here
  215|      1|      ulvc_cwd_pre[0] = 0; ulvc_cwd_pre[1] = 1; ulvc_cwd_pre[2] = 2;
  216|      1|      ulvc_cwd_pre[3] = 4; ulvc_cwd_pre[4] = 4;
  217|      1|      ulvc_cwd_pre_len[0] = 0; ulvc_cwd_pre_len[1] = 1;
  218|      1|      ulvc_cwd_pre_len[2] = 2;
  219|      1|      ulvc_cwd_pre_len[3] = 3; ulvc_cwd_pre_len[4] = 3;
  220|      1|      ulvc_cwd_suf[0] = 0; ulvc_cwd_suf[1] = 0; ulvc_cwd_suf[2] = 0;
  221|      1|      ulvc_cwd_suf[3] = 0; ulvc_cwd_suf[4] = 1;
  222|      1|      ulvc_cwd_suf_len[0] = 0; ulvc_cwd_suf_len[1] = 0;
  223|      1|      ulvc_cwd_suf_len[2] = 0;
  224|      1|      ulvc_cwd_suf_len[3] = 1; ulvc_cwd_suf_len[4] = 1;
  225|     29|      for (int i = 5; i < 33; ++i)
  ------------------
  |  Branch (225:23): [True: 28, False: 1]
  ------------------
  226|     28|      {
  227|     28|        ulvc_cwd_pre[i] = 0;
  228|     28|        ulvc_cwd_pre_len[i] = 3;
  229|     28|        ulvc_cwd_suf[i] = (ui32)(i-5);
  230|     28|        ulvc_cwd_suf_len[i] = 5;
  231|     28|      }
  232|      1|      return true;
  233|      1|    }
ojph_block_encoder_avx2.cpp:_ZN4ojph5localL21uvlc_init_pair_tablesEv:
  237|      1|    {
  238|     34|      for (int uq0 = 0; uq0 < 33; ++uq0) {
  ------------------
  |  Branch (238:25): [True: 33, False: 1]
  ------------------
  239|  1.12k|        for (int uq1 = 0; uq1 < 33; ++uq1) {
  ------------------
  |  Branch (239:27): [True: 1.08k, False: 33]
  ------------------
  240|  1.08k|          ui32 cwd; int len;
  241|       |
  242|  1.08k|          cwd = 0; len = 0;
  243|  1.08k|          if (uq0 > 2 && uq1 > 2) {
  ------------------
  |  Branch (243:15): [True: 990, False: 99]
  |  Branch (243:26): [True: 900, False: 90]
  ------------------
  244|    900|            cwd |= ulvc_cwd_pre[uq0 - 2];
  245|    900|            len += ulvc_cwd_pre_len[uq0 - 2];
  246|    900|            cwd |= ulvc_cwd_pre[uq1 - 2] << len;
  247|    900|            len += ulvc_cwd_pre_len[uq1 - 2];
  248|    900|            cwd |= ulvc_cwd_suf[uq0 - 2] << len;
  249|    900|            len += ulvc_cwd_suf_len[uq0 - 2];
  250|    900|            cwd |= ulvc_cwd_suf[uq1 - 2] << len;
  251|    900|            len += ulvc_cwd_suf_len[uq1 - 2];
  252|    900|          } else if (uq0 > 2 && uq1 > 0) {
  ------------------
  |  Branch (252:22): [True: 90, False: 99]
  |  Branch (252:33): [True: 60, False: 30]
  ------------------
  253|     60|            cwd |= ulvc_cwd_pre[uq0];
  254|     60|            len += ulvc_cwd_pre_len[uq0];
  255|     60|            cwd |= (ui32)(uq1 - 1) << len;
  256|     60|            len += 1;
  257|     60|            cwd |= ulvc_cwd_suf[uq0] << len;
  258|     60|            len += ulvc_cwd_suf_len[uq0];
  259|    129|          } else {
  260|    129|            cwd |= ulvc_cwd_pre[uq0];
  261|    129|            len += ulvc_cwd_pre_len[uq0];
  262|    129|            cwd |= ulvc_cwd_pre[uq1] << len;
  263|    129|            len += ulvc_cwd_pre_len[uq1];
  264|    129|            cwd |= ulvc_cwd_suf[uq0] << len;
  265|    129|            len += ulvc_cwd_suf_len[uq0];
  266|    129|            cwd |= ulvc_cwd_suf[uq1] << len;
  267|    129|            len += ulvc_cwd_suf_len[uq1];
  268|    129|          }
  269|  1.08k|          uvlc_tbl_pair1[uq0 * 33 + uq1] = (cwd << 5) | (ui32)len;
  270|       |
  271|  1.08k|          cwd = 0; len = 0;
  272|  1.08k|          cwd |= ulvc_cwd_pre[uq0];
  273|  1.08k|          len += ulvc_cwd_pre_len[uq0];
  274|  1.08k|          cwd |= ulvc_cwd_pre[uq1] << len;
  275|  1.08k|          len += ulvc_cwd_pre_len[uq1];
  276|  1.08k|          cwd |= ulvc_cwd_suf[uq0] << len;
  277|  1.08k|          len += ulvc_cwd_suf_len[uq0];
  278|  1.08k|          cwd |= ulvc_cwd_suf[uq1] << len;
  279|  1.08k|          len += ulvc_cwd_suf_len[uq1];
  280|  1.08k|          uvlc_tbl_pair2[uq0 * 33 + uq1] = (cwd << 5) | (ui32)len;
  281|  1.08k|        }
  282|     33|      }
  283|      1|    }

ojph_expand_fuzz_target.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_codestream.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_codestream_local.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|  94.3k|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|  94.3k|  }
ojph_codestream_local.cpp:_ZN4ojphL16swap_bytes_if_leEt:
  415|   100k|  {
  416|   100k|    if (is_machine_little_endian)
  ------------------
  |  Branch (416:9): [True: 100k, Folded]
  ------------------
  417|   100k|      return (ui16)((t << 8) | (t >> 8));
  418|      0|    else
  419|      0|      return t;
  420|   100k|  }
_ZN4ojph17calc_aligned_sizeINS_5local4tileELj8EEEmm:
  360|  10.3k|  size_t calc_aligned_size(size_t size) {
  361|  10.3k|    size = size * sizeof(T) + N - 1;
  362|  10.3k|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|  10.3k|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|  10.3k|    return size;
  365|  10.3k|  }
ojph_codestream_local.cpp:_ZN4ojphL19count_leading_zerosEm:
  235|  63.0k|  {
  236|       |  #ifdef OJPH_COMPILER_MSVC
  237|       |    unsigned long result = 0;
  238|       |    #if (defined OJPH_ARCH_X86_64) || (defined OJPH_ARCH_ARM)
  239|       |      _BitScanReverse64(&result, val);
  240|       |    #elif (defined OJPH_ARCH_I386)
  241|       |      ui32 msb = (ui32)(val >> 32), lsb = (ui32)val;
  242|       |      if (msb == 0)
  243|       |        _BitScanReverse(&result, lsb);
  244|       |      else {
  245|       |        _BitScanReverse(&result, msb);
  246|       |        result += 32;
  247|       |      }
  248|       |    #else
  249|       |      #error Error unsupport MSVC version
  250|       |    #endif
  251|       |    return 63 ^ (ui32)result;
  252|       |  #elif (defined OJPH_COMPILER_GNUC)
  253|       |    return (ui32)__builtin_clzll(val);
  254|       |  #else
  255|       |    val |= (val >> 1);
  256|       |    val |= (val >> 2);
  257|       |    val |= (val >> 4);
  258|       |    val |= (val >> 8);
  259|       |    val |= (val >> 16);
  260|       |    val |= (val >> 32);
  261|       |    return 64 - population_count64(val);
  262|       |  #endif
  263|  63.0k|  }
_ZN4ojph17calc_aligned_sizeINS_8line_bufELj8EEEmm:
  360|  3.10M|  size_t calc_aligned_size(size_t size) {
  361|  3.10M|    size = size * sizeof(T) + N - 1;
  362|  3.10M|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|  3.10M|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|  3.10M|    return size;
  365|  3.10M|  }
_ZN4ojph17calc_aligned_sizeINS_4sizeELj8EEEmm:
  360|  20.0k|  size_t calc_aligned_size(size_t size) {
  361|  20.0k|    size = size * sizeof(T) + N - 1;
  362|  20.0k|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|  20.0k|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|  20.0k|    return size;
  365|  20.0k|  }
_ZN4ojph17calc_aligned_sizeIiLj64EEEmm:
  360|  5.54M|  size_t calc_aligned_size(size_t size) {
  361|  5.54M|    size = size * sizeof(T) + N - 1;
  362|  5.54M|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|  5.54M|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|  5.54M|    return size;
  365|  5.54M|  }
_ZN4ojph17calc_aligned_sizeIhLj8EEEmm:
  360|   508k|  size_t calc_aligned_size(size_t size) {
  361|   508k|    size = size * sizeof(T) + N - 1;
  362|   508k|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|   508k|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|   508k|    return size;
  365|   508k|  }
_ZN4ojph9align_ptrIhLj8EEEPT_S2_:
  370|   253k|  inline T *align_ptr(T *ptr) {
  371|   253k|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|   253k|    p += N - 1;
  373|   253k|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|   253k|    return reinterpret_cast<T *>(p);
  375|   253k|  }
_ZN4ojph9align_ptrINS_5local4tileELj8EEEPT_S4_:
  370|  5.04k|  inline T *align_ptr(T *ptr) {
  371|  5.04k|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|  5.04k|    p += N - 1;
  373|  5.04k|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|  5.04k|    return reinterpret_cast<T *>(p);
  375|  5.04k|  }
_ZN4ojph9align_ptrINS_8line_bufELj8EEEPT_S3_:
  370|  1.54M|  inline T *align_ptr(T *ptr) {
  371|  1.54M|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|  1.54M|    p += N - 1;
  373|  1.54M|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|  1.54M|    return reinterpret_cast<T *>(p);
  375|  1.54M|  }
_ZN4ojph9align_ptrINS_4sizeELj8EEEPT_S3_:
  370|  9.95k|  inline T *align_ptr(T *ptr) {
  371|  9.95k|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|  9.95k|    p += N - 1;
  373|  9.95k|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|  9.95k|    return reinterpret_cast<T *>(p);
  375|  9.95k|  }
_ZN4ojph9align_ptrIiLj64EEEPT_S2_:
  370|  2.77M|  inline T *align_ptr(T *ptr) {
  371|  2.77M|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|  2.77M|    p += N - 1;
  373|  2.77M|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|  2.77M|    return reinterpret_cast<T *>(p);
  375|  2.77M|  }
ojph_params.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_params.cpp:_ZN4ojphL16swap_bytes_if_leEt:
  415|  2.34M|  {
  416|  2.34M|    if (is_machine_little_endian)
  ------------------
  |  Branch (416:9): [True: 2.34M, Folded]
  ------------------
  417|  2.34M|      return (ui16)((t << 8) | (t >> 8));
  418|      0|    else
  419|      0|      return t;
  420|  2.34M|  }
ojph_params.cpp:_ZN4ojphL16swap_bytes_if_leEj:
  438|   245k|  {
  439|   245k|    if (is_machine_little_endian)
  ------------------
  |  Branch (439:9): [True: 245k, Folded]
  ------------------
  440|   245k|    {
  441|   245k|      ui32 u = swap_bytes_if_le((ui16)(t & 0xFFFFu));
  442|   245k|      u <<= 16;
  443|   245k|      u |= swap_bytes_if_le((ui16)(t >> 16));
  444|   245k|      return u;
  445|   245k|    }
  446|      0|    else
  447|      0|      return t;
  448|   245k|  }
ojph_params.cpp:_ZN4ojphL16population_countEj:
  186|    442|  {
  187|       |  #if defined(OJPH_COMPILER_MSVC)  \
  188|       |    && (defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  189|       |    return (ui32)__popcnt(val);
  190|       |  #elif (defined OJPH_COMPILER_GNUC)
  191|       |    return (ui32)__builtin_popcount(val);
  192|       |  #else
  193|       |    val -= ((val >> 1) & 0x55555555);
  194|       |    val = (((val >> 2) & 0x33333333) + (val & 0x33333333));
  195|       |    val = (((val >> 4) + val) & 0x0f0f0f0f);
  196|       |    val += (val >> 8);
  197|       |    val += (val >> 16);
  198|       |    return (int)(val & 0x0000003f);
  199|       |  #endif
  200|    442|  }
ojph_params.cpp:_ZN4ojphL16swap_bytes_if_leEm:
  452|    502|  {
  453|    502|    if (is_machine_little_endian)
  ------------------
  |  Branch (453:9): [True: 502, Folded]
  ------------------
  454|    502|    {
  455|    502|      ui64 u =
  456|    502|        swap_bytes_if_le((ui32)(t & 0xFFFFFFFFu));
  457|    502|      u <<= 32;
  458|    502|      u |= swap_bytes_if_le((ui32)(t >> 32));
  459|    502|      return u;
  460|    502|    }
  461|      0|    else
  462|      0|      return t;
  463|    502|  }
ojph_tile.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|  6.75M|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|  6.75M|  }
_ZN4ojph17calc_aligned_sizeINS_5local9tile_compELj8EEEmm:
  360|   498k|  size_t calc_aligned_size(size_t size) {
  361|   498k|    size = size * sizeof(T) + N - 1;
  362|   498k|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|   498k|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|   498k|    return size;
  365|   498k|  }
ojph_tile.cpp:_ZN4ojphL19count_leading_zerosEm:
  235|  4.50M|  {
  236|       |  #ifdef OJPH_COMPILER_MSVC
  237|       |    unsigned long result = 0;
  238|       |    #if (defined OJPH_ARCH_X86_64) || (defined OJPH_ARCH_ARM)
  239|       |      _BitScanReverse64(&result, val);
  240|       |    #elif (defined OJPH_ARCH_I386)
  241|       |      ui32 msb = (ui32)(val >> 32), lsb = (ui32)val;
  242|       |      if (msb == 0)
  243|       |        _BitScanReverse(&result, lsb);
  244|       |      else {
  245|       |        _BitScanReverse(&result, msb);
  246|       |        result += 32;
  247|       |      }
  248|       |    #else
  249|       |      #error Error unsupport MSVC version
  250|       |    #endif
  251|       |    return 63 ^ (ui32)result;
  252|       |  #elif (defined OJPH_COMPILER_GNUC)
  253|       |    return (ui32)__builtin_clzll(val);
  254|       |  #else
  255|       |    val |= (val >> 1);
  256|       |    val |= (val >> 2);
  257|       |    val |= (val >> 4);
  258|       |    val |= (val >> 8);
  259|       |    val |= (val >> 16);
  260|       |    val |= (val >> 32);
  261|       |    return 64 - population_count64(val);
  262|       |  #endif
  263|  4.50M|  }
_ZN4ojph17calc_aligned_sizeINS_4rectELj8EEEmm:
  360|   996k|  size_t calc_aligned_size(size_t size) {
  361|   996k|    size = size * sizeof(T) + N - 1;
  362|   996k|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|   996k|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|   996k|    return size;
  365|   996k|  }
_ZN4ojph17calc_aligned_sizeIjLj8EEEmm:
  360|  1.49M|  size_t calc_aligned_size(size_t size) {
  361|  1.49M|    size = size * sizeof(T) + N - 1;
  362|  1.49M|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|  1.49M|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|  1.49M|    return size;
  365|  1.49M|  }
_ZN4ojph17calc_aligned_sizeIbLj8EEEmm:
  360|   996k|  size_t calc_aligned_size(size_t size) {
  361|   996k|    size = size * sizeof(T) + N - 1;
  362|   996k|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|   996k|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|   996k|    return size;
  365|   996k|  }
_ZN4ojph17calc_aligned_sizeIfLj64EEEmm:
  360|  3.55M|  size_t calc_aligned_size(size_t size) {
  361|  3.55M|    size = size * sizeof(T) + N - 1;
  362|  3.55M|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|  3.55M|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|  3.55M|    return size;
  365|  3.55M|  }
_ZN4ojph9align_ptrINS_5local9tile_compELj8EEEPT_S4_:
  370|   248k|  inline T *align_ptr(T *ptr) {
  371|   248k|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|   248k|    p += N - 1;
  373|   248k|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|   248k|    return reinterpret_cast<T *>(p);
  375|   248k|  }
_ZN4ojph9align_ptrINS_4rectELj8EEEPT_S3_:
  370|   496k|  inline T *align_ptr(T *ptr) {
  371|   496k|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|   496k|    p += N - 1;
  373|   496k|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|   496k|    return reinterpret_cast<T *>(p);
  375|   496k|  }
_ZN4ojph9align_ptrIjLj8EEEPT_S2_:
  370|   745k|  inline T *align_ptr(T *ptr) {
  371|   745k|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|   745k|    p += N - 1;
  373|   745k|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|   745k|    return reinterpret_cast<T *>(p);
  375|   745k|  }
_ZN4ojph9align_ptrIbLj8EEEPT_S2_:
  370|   496k|  inline T *align_ptr(T *ptr) {
  371|   496k|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|   496k|    p += N - 1;
  373|   496k|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|   496k|    return reinterpret_cast<T *>(p);
  375|   496k|  }
_ZN4ojph9align_ptrIfLj64EEEPT_S2_:
  370|  1.75M|  inline T *align_ptr(T *ptr) {
  371|  1.75M|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|  1.75M|    p += N - 1;
  373|  1.75M|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|  1.75M|    return reinterpret_cast<T *>(p);
  375|  1.75M|  }
ojph_tile_comp.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|   817k|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|   817k|  }
_ZN4ojph17calc_aligned_sizeINS_5local10resolutionELj8EEEmm:
  360|  3.13M|  size_t calc_aligned_size(size_t size) {
  361|  3.13M|    size = size * sizeof(T) + N - 1;
  362|  3.13M|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|  3.13M|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|  3.13M|    return size;
  365|  3.13M|  }
ojph_tile_comp.cpp:_ZN4ojphL19count_leading_zerosEm:
  235|   545k|  {
  236|       |  #ifdef OJPH_COMPILER_MSVC
  237|       |    unsigned long result = 0;
  238|       |    #if (defined OJPH_ARCH_X86_64) || (defined OJPH_ARCH_ARM)
  239|       |      _BitScanReverse64(&result, val);
  240|       |    #elif (defined OJPH_ARCH_I386)
  241|       |      ui32 msb = (ui32)(val >> 32), lsb = (ui32)val;
  242|       |      if (msb == 0)
  243|       |        _BitScanReverse(&result, lsb);
  244|       |      else {
  245|       |        _BitScanReverse(&result, msb);
  246|       |        result += 32;
  247|       |      }
  248|       |    #else
  249|       |      #error Error unsupport MSVC version
  250|       |    #endif
  251|       |    return 63 ^ (ui32)result;
  252|       |  #elif (defined OJPH_COMPILER_GNUC)
  253|       |    return (ui32)__builtin_clzll(val);
  254|       |  #else
  255|       |    val |= (val >> 1);
  256|       |    val |= (val >> 2);
  257|       |    val |= (val >> 4);
  258|       |    val |= (val >> 8);
  259|       |    val |= (val >> 16);
  260|       |    val |= (val >> 32);
  261|       |    return 64 - population_count64(val);
  262|       |  #endif
  263|   545k|  }
_ZN4ojph9align_ptrINS_5local10resolutionELj8EEEPT_S4_:
  370|  1.56M|  inline T *align_ptr(T *ptr) {
  371|  1.56M|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|  1.56M|    p += N - 1;
  373|  1.56M|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|  1.56M|    return reinterpret_cast<T *>(p);
  375|  1.56M|  }
ojph_file.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_mem.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_message.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_colour.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_transform.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_colour_sse.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_transform_sse.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_colour_sse2.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_transform_sse2.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_colour_avx.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_transform_avx.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_colour_avx2.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_transform_avx2.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_transform_avx512.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_resolution.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|  33.0M|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|  33.0M|  }
_ZN4ojph17calc_aligned_sizeINS_5local7subbandELj8EEEmm:
  360|  3.13M|  size_t calc_aligned_size(size_t size) {
  361|  3.13M|    size = size * sizeof(T) + N - 1;
  362|  3.13M|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|  3.13M|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|  3.13M|    return size;
  365|  3.13M|  }
ojph_resolution.cpp:_ZN4ojphL19count_leading_zerosEm:
  235|  22.0M|  {
  236|       |  #ifdef OJPH_COMPILER_MSVC
  237|       |    unsigned long result = 0;
  238|       |    #if (defined OJPH_ARCH_X86_64) || (defined OJPH_ARCH_ARM)
  239|       |      _BitScanReverse64(&result, val);
  240|       |    #elif (defined OJPH_ARCH_I386)
  241|       |      ui32 msb = (ui32)(val >> 32), lsb = (ui32)val;
  242|       |      if (msb == 0)
  243|       |        _BitScanReverse(&result, lsb);
  244|       |      else {
  245|       |        _BitScanReverse(&result, msb);
  246|       |        result += 32;
  247|       |      }
  248|       |    #else
  249|       |      #error Error unsupport MSVC version
  250|       |    #endif
  251|       |    return 63 ^ (ui32)result;
  252|       |  #elif (defined OJPH_COMPILER_GNUC)
  253|       |    return (ui32)__builtin_clzll(val);
  254|       |  #else
  255|       |    val |= (val >> 1);
  256|       |    val |= (val >> 2);
  257|       |    val |= (val >> 4);
  258|       |    val |= (val >> 8);
  259|       |    val |= (val >> 16);
  260|       |    val |= (val >> 32);
  261|       |    return 64 - population_count64(val);
  262|       |  #endif
  263|  22.0M|  }
_ZN4ojph17calc_aligned_sizeINS_5local8precinctELj8EEEmm:
  360|   765k|  size_t calc_aligned_size(size_t size) {
  361|   765k|    size = size * sizeof(T) + N - 1;
  362|   765k|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|   765k|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|   765k|    return size;
  365|   765k|  }
_ZN4ojph17calc_aligned_sizeINS_11lifting_bufELj8EEEmm:
  360|  2.41M|  size_t calc_aligned_size(size_t size) {
  361|  2.41M|    size = size * sizeof(T) + N - 1;
  362|  2.41M|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|  2.41M|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|  2.41M|    return size;
  365|  2.41M|  }
_ZN4ojph17calc_aligned_sizeIlLj64EEEmm:
  360|  2.32M|  size_t calc_aligned_size(size_t size) {
  361|  2.32M|    size = size * sizeof(T) + N - 1;
  362|  2.32M|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|  2.32M|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|  2.32M|    return size;
  365|  2.32M|  }
_ZN4ojph9align_ptrINS_5local7subbandELj8EEEPT_S4_:
  370|  1.56M|  inline T *align_ptr(T *ptr) {
  371|  1.56M|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|  1.56M|    p += N - 1;
  373|  1.56M|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|  1.56M|    return reinterpret_cast<T *>(p);
  375|  1.56M|  }
_ZN4ojph9align_ptrINS_5local8precinctELj8EEEPT_S4_:
  370|   380k|  inline T *align_ptr(T *ptr) {
  371|   380k|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|   380k|    p += N - 1;
  373|   380k|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|   380k|    return reinterpret_cast<T *>(p);
  375|   380k|  }
_ZN4ojph9align_ptrINS_11lifting_bufELj8EEEPT_S3_:
  370|  1.20M|  inline T *align_ptr(T *ptr) {
  371|  1.20M|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|  1.20M|    p += N - 1;
  373|  1.20M|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|  1.20M|    return reinterpret_cast<T *>(p);
  375|  1.20M|  }
_ZN4ojph9align_ptrIlLj64EEEPT_S2_:
  370|  1.16M|  inline T *align_ptr(T *ptr) {
  371|  1.16M|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|  1.16M|    p += N - 1;
  373|  1.16M|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|  1.16M|    return reinterpret_cast<T *>(p);
  375|  1.16M|  }
ojph_subband.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|  4.04M|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|  4.04M|  }
_ZN4ojph17calc_aligned_sizeINS_5local9codeblockELj8EEEmm:
  360|   676k|  size_t calc_aligned_size(size_t size) {
  361|   676k|    size = size * sizeof(T) + N - 1;
  362|   676k|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|   676k|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|   676k|    return size;
  365|   676k|  }
ojph_subband.cpp:_ZN4ojphL19count_leading_zerosEm:
  235|  2.70M|  {
  236|       |  #ifdef OJPH_COMPILER_MSVC
  237|       |    unsigned long result = 0;
  238|       |    #if (defined OJPH_ARCH_X86_64) || (defined OJPH_ARCH_ARM)
  239|       |      _BitScanReverse64(&result, val);
  240|       |    #elif (defined OJPH_ARCH_I386)
  241|       |      ui32 msb = (ui32)(val >> 32), lsb = (ui32)val;
  242|       |      if (msb == 0)
  243|       |        _BitScanReverse(&result, lsb);
  244|       |      else {
  245|       |        _BitScanReverse(&result, msb);
  246|       |        result += 32;
  247|       |      }
  248|       |    #else
  249|       |      #error Error unsupport MSVC version
  250|       |    #endif
  251|       |    return 63 ^ (ui32)result;
  252|       |  #elif (defined OJPH_COMPILER_GNUC)
  253|       |    return (ui32)__builtin_clzll(val);
  254|       |  #else
  255|       |    val |= (val >> 1);
  256|       |    val |= (val >> 2);
  257|       |    val |= (val >> 4);
  258|       |    val |= (val >> 8);
  259|       |    val |= (val >> 16);
  260|       |    val |= (val >> 32);
  261|       |    return 64 - population_count64(val);
  262|       |  #endif
  263|  2.70M|  }
_ZN4ojph17calc_aligned_sizeINS_5local15coded_cb_headerELj8EEEmm:
  360|   676k|  size_t calc_aligned_size(size_t size) {
  361|   676k|    size = size * sizeof(T) + N - 1;
  362|   676k|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|   676k|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|   676k|    return size;
  365|   676k|  }
_ZN4ojph9align_ptrINS_5local9codeblockELj8EEEPT_S4_:
  370|   335k|  inline T *align_ptr(T *ptr) {
  371|   335k|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|   335k|    p += N - 1;
  373|   335k|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|   335k|    return reinterpret_cast<T *>(p);
  375|   335k|  }
_ZN4ojph9align_ptrINS_5local15coded_cb_headerELj8EEEPT_S4_:
  370|   335k|  inline T *align_ptr(T *ptr) {
  371|   335k|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|   335k|    p += N - 1;
  373|   335k|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|   335k|    return reinterpret_cast<T *>(p);
  375|   335k|  }
ojph_arch.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_codeblock.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|  15.6M|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|  15.6M|  }
_ZN4ojph17calc_aligned_sizeIjLj64EEEmm:
  360|  6.34M|  size_t calc_aligned_size(size_t size) {
  361|  6.34M|    size = size * sizeof(T) + N - 1;
  362|  6.34M|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|  6.34M|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|  6.34M|    return size;
  365|  6.34M|  }
ojph_codeblock.cpp:_ZN4ojphL19count_leading_zerosEm:
  235|  10.5M|  {
  236|       |  #ifdef OJPH_COMPILER_MSVC
  237|       |    unsigned long result = 0;
  238|       |    #if (defined OJPH_ARCH_X86_64) || (defined OJPH_ARCH_ARM)
  239|       |      _BitScanReverse64(&result, val);
  240|       |    #elif (defined OJPH_ARCH_I386)
  241|       |      ui32 msb = (ui32)(val >> 32), lsb = (ui32)val;
  242|       |      if (msb == 0)
  243|       |        _BitScanReverse(&result, lsb);
  244|       |      else {
  245|       |        _BitScanReverse(&result, msb);
  246|       |        result += 32;
  247|       |      }
  248|       |    #else
  249|       |      #error Error unsupport MSVC version
  250|       |    #endif
  251|       |    return 63 ^ (ui32)result;
  252|       |  #elif (defined OJPH_COMPILER_GNUC)
  253|       |    return (ui32)__builtin_clzll(val);
  254|       |  #else
  255|       |    val |= (val >> 1);
  256|       |    val |= (val >> 2);
  257|       |    val |= (val >> 4);
  258|       |    val |= (val >> 8);
  259|       |    val |= (val >> 16);
  260|       |    val |= (val >> 32);
  261|       |    return 64 - population_count64(val);
  262|       |  #endif
  263|  10.5M|  }
_ZN4ojph17calc_aligned_sizeImLj64EEEmm:
  360|  4.17M|  size_t calc_aligned_size(size_t size) {
  361|  4.17M|    size = size * sizeof(T) + N - 1;
  362|  4.17M|    size &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  363|  4.17M|    size >>= (63 - count_leading_zeros((ui64)sizeof(T)));
  364|  4.17M|    return size;
  365|  4.17M|  }
_ZN4ojph9align_ptrIjLj64EEEPT_S2_:
  370|  3.09M|  inline T *align_ptr(T *ptr) {
  371|  3.09M|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|  3.09M|    p += N - 1;
  373|  3.09M|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|  3.09M|    return reinterpret_cast<T *>(p);
  375|  3.09M|  }
_ZN4ojph9align_ptrImLj64EEEPT_S2_:
  370|  2.03M|  inline T *align_ptr(T *ptr) {
  371|  2.03M|    intptr_t p = reinterpret_cast<intptr_t>(ptr);
  372|  2.03M|    p += N - 1;
  373|  2.03M|    p &= ~((1ULL << (31 - count_leading_zeros(N))) - 1);
  374|  2.03M|    return reinterpret_cast<T *>(p);
  375|  2.03M|  }
ojph_codeblock_fun.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_codestream_gen.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_precinct.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|   987k|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|   987k|  }
ojph_precinct.cpp:_ZN4ojphL16swap_bytes_if_leEt:
  415|  1.30k|  {
  416|  1.30k|    if (is_machine_little_endian)
  ------------------
  |  Branch (416:9): [True: 1.30k, Folded]
  ------------------
  417|  1.30k|      return (ui16)((t << 8) | (t >> 8));
  418|      0|    else
  419|      0|      return t;
  420|  1.30k|  }
ojph_block_decoder32.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_block_decoder64.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_block_decoder64.cpp:_ZN4ojphL12load_le_ui32EPKh:
  470|  27.5k|  {
  471|  27.5k|    if (is_machine_little_endian) {
  ------------------
  |  Branch (471:9): [True: 27.5k, Folded]
  ------------------
  472|  27.5k|      ui32 val;
  473|  27.5k|      std::memcpy(&val, p, sizeof(val));
  474|  27.5k|      return val;
  475|  27.5k|    }
  476|      0|    else
  477|      0|      return (ui32)p[0] | ((ui32)p[1] << 8)
  478|      0|        | ((ui32)p[2] << 16) | ((ui32)p[3] << 24);
  479|  27.5k|  }
ojph_block_decoder64.cpp:_ZN4ojphL19count_leading_zerosEm:
  235|   283k|  {
  236|       |  #ifdef OJPH_COMPILER_MSVC
  237|       |    unsigned long result = 0;
  238|       |    #if (defined OJPH_ARCH_X86_64) || (defined OJPH_ARCH_ARM)
  239|       |      _BitScanReverse64(&result, val);
  240|       |    #elif (defined OJPH_ARCH_I386)
  241|       |      ui32 msb = (ui32)(val >> 32), lsb = (ui32)val;
  242|       |      if (msb == 0)
  243|       |        _BitScanReverse(&result, lsb);
  244|       |      else {
  245|       |        _BitScanReverse(&result, msb);
  246|       |        result += 32;
  247|       |      }
  248|       |    #else
  249|       |      #error Error unsupport MSVC version
  250|       |    #endif
  251|       |    return 63 ^ (ui32)result;
  252|       |  #elif (defined OJPH_COMPILER_GNUC)
  253|       |    return (ui32)__builtin_clzll(val);
  254|       |  #else
  255|       |    val |= (val >> 1);
  256|       |    val |= (val >> 2);
  257|       |    val |= (val >> 4);
  258|       |    val |= (val >> 8);
  259|       |    val |= (val >> 16);
  260|       |    val |= (val >> 32);
  261|       |    return 64 - population_count64(val);
  262|       |  #endif
  263|   283k|  }
ojph_block_decoder64.cpp:_ZN4ojphL14load_le_ui16x2EPKt:
  486|   382k|  {
  487|   382k|    if (is_machine_little_endian) {
  ------------------
  |  Branch (487:9): [True: 382k, Folded]
  ------------------
  488|   382k|      ui32 val;
  489|   382k|      std::memcpy(&val, p, sizeof(val));
  490|   382k|      return val;
  491|   382k|    }
  492|      0|    else
  493|      0|      return (ui32)p[0] | ((ui32)p[1] << 16);
  494|   382k|  }
ojph_block_decoder64.cpp:_ZN4ojphL16population_countEj:
  186|  42.2k|  {
  187|       |  #if defined(OJPH_COMPILER_MSVC)  \
  188|       |    && (defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  189|       |    return (ui32)__popcnt(val);
  190|       |  #elif (defined OJPH_COMPILER_GNUC)
  191|       |    return (ui32)__builtin_popcount(val);
  192|       |  #else
  193|       |    val -= ((val >> 1) & 0x55555555);
  194|       |    val = (((val >> 2) & 0x33333333) + (val & 0x33333333));
  195|       |    val = (((val >> 4) + val) & 0x0f0f0f0f);
  196|       |    val += (val >> 8);
  197|       |    val += (val >> 16);
  198|       |    return (int)(val & 0x0000003f);
  199|       |  #endif
  200|  42.2k|  }
ojph_block_encoder.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_block_encoder.cpp:_ZN4ojphL16population_countEj:
  186|     16|  {
  187|       |  #if defined(OJPH_COMPILER_MSVC)  \
  188|       |    && (defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  189|       |    return (ui32)__popcnt(val);
  190|       |  #elif (defined OJPH_COMPILER_GNUC)
  191|       |    return (ui32)__builtin_popcount(val);
  192|       |  #else
  193|       |    val -= ((val >> 1) & 0x55555555);
  194|       |    val = (((val >> 2) & 0x33333333) + (val & 0x33333333));
  195|       |    val = (((val >> 4) + val) & 0x0f0f0f0f);
  196|       |    val += (val >> 8);
  197|       |    val += (val >> 16);
  198|       |    return (int)(val & 0x0000003f);
  199|       |  #endif
  200|     16|  }
ojph_codestream_sse.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_codestream_sse2.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_block_decoder_ssse3.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_codestream_avx.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_codestream_avx2.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_block_decoder_avx2.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_block_encoder_avx2.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }
ojph_block_encoder_avx2.cpp:_ZN4ojphL16population_countEj:
  186|     16|  {
  187|       |  #if defined(OJPH_COMPILER_MSVC)  \
  188|       |    && (defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  189|       |    return (ui32)__popcnt(val);
  190|       |  #elif (defined OJPH_COMPILER_GNUC)
  191|       |    return (ui32)__builtin_popcount(val);
  192|       |  #else
  193|       |    val -= ((val >> 1) & 0x55555555);
  194|       |    val = (((val >> 2) & 0x33333333) + (val & 0x33333333));
  195|       |    val = (((val >> 4) + val) & 0x0f0f0f0f);
  196|       |    val += (val >> 8);
  197|       |    val += (val >> 16);
  198|       |    return (int)(val & 0x0000003f);
  199|       |  #endif
  200|     16|  }
ojph_block_encoder_avx512.cpp:_ZN4ojphL19count_leading_zerosEj:
  207|      2|  {
  208|       |  #ifdef OJPH_COMPILER_MSVC
  209|       |    unsigned long result = 0;
  210|       |    _BitScanReverse(&result, val);
  211|       |    return 31 ^ (ui32)result;
  212|       |  #elif (defined OJPH_COMPILER_GNUC)
  213|       |    return (ui32)__builtin_clz(val);
  214|       |  #else
  215|       |    val |= (val >> 1);
  216|       |    val |= (val >> 2);
  217|       |    val |= (val >> 4);
  218|       |    val |= (val >> 8);
  219|       |    val |= (val >> 16);
  220|       |    return 32 - population_count(val);
  221|       |  #endif
  222|      2|  }

_ZN4ojph4sizeC2Ejj:
   49|  89.6M|    explicit size(ui32 w = 0, ui32 h = 0) : w(w), h(h) {}
_ZNK4ojph4size4areaEv:
   53|  5.82M|    ui64 area() const { return (ui64)w * (ui64)h; }
_ZN4ojph5pointC2Ejj:
   59|  74.5M|    explicit point(ui32 x = 0, ui32 y = 0) : x(x), y(y) {}
_ZNK4ojph4recteqERKS0_:
   69|  7.34k|    bool operator==(const rect& a) const {
   70|  7.34k|      return a.org.x == org.x && a.org.y == org.y
  ------------------
  |  Branch (70:14): [True: 7.24k, False: 104]
  |  Branch (70:34): [True: 7.21k, False: 32]
  ------------------
   71|  7.21k|        && a.siz.w == siz.w && a.siz.h == siz.h;
  ------------------
  |  Branch (71:12): [True: 7.18k, False: 31]
  |  Branch (71:32): [True: 7.16k, False: 15]
  ------------------
   72|  7.34k|    }
_ZNK4ojph4rectneERKS0_:
   75|  7.34k|    { return !(a == *this); }

_ZN4ojph10mem_infileC2Ev:
  311|  6.74k|    mem_infile() { close(); }
_ZN4ojph11infile_baseD2Ev:
  275|  6.74k|    virtual ~infile_base() {}
_ZN4ojph10mem_infile4tellEv:
  334|   386k|    si64 tell() override { return cur_ptr - data; }
_ZN4ojph10mem_infile3eofEv:
  335|   138M|    bool eof() override { return cur_ptr >= data + size; }
_ZN4ojph10mem_infile5closeEv:
  336|  11.7k|    void close() override { data = cur_ptr = NULL; size = 0; }

_ZN4ojph19mem_fixed_allocatorC2Ev:
   62|  6.74k|    {
   63|       |      store = NULL; allocated_data = 0;
   64|  6.74k|      restart();
   65|  6.74k|    }
_ZN4ojph19mem_fixed_allocatorD2Ev:
   67|  6.74k|    {
   68|  6.74k|      if (store) free(store);
  ------------------
  |  Branch (68:11): [True: 5.04k, False: 1.70k]
  ------------------
   69|  6.74k|    }
_ZN4ojph19mem_fixed_allocator5allocEv:
   84|  5.04k|    {
   85|  5.04k|      assert(preallocation);
   86|  5.04k|      if (size_data + size_obj > allocated_data)
  ------------------
  |  Branch (86:11): [True: 5.04k, False: 0]
  ------------------
   87|  5.04k|      {
   88|       |        // We should be here once only, because, in subsequent, calls we
   89|       |        // should have size_data + size_obj <= allocated_data
   90|  5.04k|        free(store);
   91|  5.04k|        allocated_data = size_data + size_obj;
   92|  5.04k|        allocated_data = allocated_data + (allocated_data + 19) / 20; // 5%
   93|  5.04k|        store = malloc(allocated_data);
   94|  5.04k|        if (store == NULL)
  ------------------
  |  Branch (94:13): [True: 0, False: 5.04k]
  ------------------
   95|      0|          OJPH_ERROR(0x00090001, "malloc failed");
  ------------------
  |  |  289|      0|  { ojph::get_error()[0](t, __OJPHFILE__, __LINE__,__VA_ARGS__); }
  |  |  ------------------
  |  |  |  |  277|      0|    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (277:6): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   96|  5.04k|      }
   97|  5.04k|      avail_obj = store;
   98|  5.04k|      avail_data = (ui8*)store + size_obj;
   99|  5.04k|      avail_size_obj = size_obj;
  100|  5.04k|      avail_size_data = size_data;
  101|  5.04k|      preallocation = false;
  102|  5.04k|    }
_ZN4ojph19mem_fixed_allocator7restartEv:
  105|  13.4k|    {
  106|       |      avail_obj = avail_data = NULL;
  107|  13.4k|      avail_size_obj = avail_size_data = size_obj = size_data = 0;
  108|  13.4k|      preallocation = true;
  109|  13.4k|    }
_ZN4ojph11lifting_bufC2Ev:
  195|  5.33M|    lifting_buf() { line = NULL;  active = false; }
_ZN4ojph11coded_listsC2Ej:
  204|  92.5k|    {
  205|       |      next_list = NULL;
  206|  92.5k|      avail_size = buf_size = size;
  207|  92.5k|      this->buf = (ui8*)this + sizeof(coded_lists);
  208|  92.5k|    }
_ZN4ojph21mem_elastic_allocatorC2Ej:
  225|  6.74k|    : chunk_size(chunk_size)
  226|  6.74k|    { cur_store = store = avail = NULL; total_allocated = 0; }
_ZN4ojph21mem_elastic_allocatorD2Ev:
  229|  6.74k|    {
  230|  9.90k|      while (store) { // stores in use
  ------------------
  |  Branch (230:14): [True: 3.16k, False: 6.74k]
  ------------------
  231|  3.16k|        stores_list* t = store->next_store;
  232|  3.16k|        free(store);
  233|  3.16k|        store = t;
  234|  3.16k|      }
  235|  6.74k|      while (avail) { // available stores
  ------------------
  |  Branch (235:14): [True: 0, False: 6.74k]
  ------------------
  236|      0|        stores_list* t = avail->next_store;
  237|      0|        free(avail);
  238|      0|        avail = t;
  239|      0|      }
  240|  6.74k|    }
_ZN4ojph21mem_elastic_allocator11stores_list18stores_list_size16Ev:
  253|  6.32k|      {
  254|  6.32k|        return (ui32) ((sizeof (stores_list) + 15u) & ~15u);
  255|  6.32k|      }
_ZN4ojph21mem_elastic_allocator11stores_listC2Ej:
  257|  3.16k|      {
  258|       |        this->next_store = NULL;
  259|  3.16k|        this->orig_size = this->available = available_bytes;
  260|  3.16k|        this->orig_data = this->data = (ui8*)this + stores_list_size16();
  261|  3.16k|      }
_ZN4ojph21mem_elastic_allocator11stores_list16eval_store_bytesEj:
  269|  3.16k|      { // calculates how many bytes need to be allocated
  270|  3.16k|        return available_bytes + stores_list_size16();
  271|  3.16k|      }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objINS_5local4tileEEEvm:
   79|  5.26k|    {
   80|  5.26k|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|  5.26k|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localINS_5local4tileELi8EEEvmjRm:
  128|  5.26k|    {
  129|  5.26k|      assert(preallocation);
  130|  5.26k|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|  5.26k|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|  5.26k|      total += 2*N - 1;
  133|       |
  134|  5.26k|      sz += total;
  135|  5.26k|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objINS_8line_bufEEEvm:
   79|  1.56M|    {
   80|  1.56M|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|  1.56M|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localINS_8line_bufELi8EEEvmjRm:
  128|  1.56M|    {
  129|  1.56M|      assert(preallocation);
  130|  1.56M|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|  1.56M|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|  1.56M|      total += 2*N - 1;
  133|       |
  134|  1.56M|      sz += total;
  135|  1.56M|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objINS_4sizeEEEvm:
   79|  10.0k|    {
   80|  10.0k|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|  10.0k|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localINS_4sizeELi8EEEvmjRm:
  128|  10.0k|    {
  129|  10.0k|      assert(preallocation);
  130|  10.0k|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|  10.0k|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|  10.0k|      total += 2*N - 1;
  133|       |
  134|  10.0k|      sz += total;
  135|  10.0k|    }
_ZN4ojph19mem_fixed_allocator14pre_alloc_dataIiEEvmj:
   73|  2.77M|    {
   74|  2.77M|      pre_alloc_local<T, byte_alignment>(num_ele, pre_size, size_data);
   75|  2.77M|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localIiLi64EEEvmjRm:
  128|  2.77M|    {
  129|  2.77M|      assert(preallocation);
  130|  2.77M|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|  2.77M|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|  2.77M|      total += 2*N - 1;
  133|       |
  134|  2.77M|      sz += total;
  135|  2.77M|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objIhEEvm:
   79|   254k|    {
   80|   254k|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|   254k|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localIhLi8EEEvmjRm:
  128|   254k|    {
  129|   254k|      assert(preallocation);
  130|   254k|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|   254k|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|   254k|      total += 2*N - 1;
  133|       |
  134|   254k|      sz += total;
  135|   254k|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objIhEEPT_m:
  120|   253k|    {
  121|   253k|      return post_alloc_local<T, object_alignment>
  122|   253k|        (num_ele, 0, avail_size_obj, avail_obj);
  123|   253k|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localIhLi8EEEPT_mjRmRPv:
  140|   253k|    {
  141|   253k|      assert(!preallocation);
  142|   253k|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|   253k|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|   253k|      total += 2*N - 1;
  145|       |
  146|   253k|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|   253k|      avail_p = (ui8*)avail_p + total;
  148|   253k|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|   253k|      return p;
  151|   253k|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objINS_5local4tileEEEPT_m:
  120|  5.04k|    {
  121|  5.04k|      return post_alloc_local<T, object_alignment>
  122|  5.04k|        (num_ele, 0, avail_size_obj, avail_obj);
  123|  5.04k|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localINS_5local4tileELi8EEEPT_mjRmRPv:
  140|  5.04k|    {
  141|  5.04k|      assert(!preallocation);
  142|  5.04k|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|  5.04k|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|  5.04k|      total += 2*N - 1;
  145|       |
  146|  5.04k|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|  5.04k|      avail_p = (ui8*)avail_p + total;
  148|  5.04k|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|  5.04k|      return p;
  151|  5.04k|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objINS_8line_bufEEEPT_m:
  120|  1.54M|    {
  121|  1.54M|      return post_alloc_local<T, object_alignment>
  122|  1.54M|        (num_ele, 0, avail_size_obj, avail_obj);
  123|  1.54M|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localINS_8line_bufELi8EEEPT_mjRmRPv:
  140|  1.54M|    {
  141|  1.54M|      assert(!preallocation);
  142|  1.54M|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|  1.54M|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|  1.54M|      total += 2*N - 1;
  145|       |
  146|  1.54M|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|  1.54M|      avail_p = (ui8*)avail_p + total;
  148|  1.54M|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|  1.54M|      return p;
  151|  1.54M|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objINS_4sizeEEEPT_m:
  120|  9.95k|    {
  121|  9.95k|      return post_alloc_local<T, object_alignment>
  122|  9.95k|        (num_ele, 0, avail_size_obj, avail_obj);
  123|  9.95k|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localINS_4sizeELi8EEEPT_mjRmRPv:
  140|  9.95k|    {
  141|  9.95k|      assert(!preallocation);
  142|  9.95k|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|  9.95k|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|  9.95k|      total += 2*N - 1;
  145|       |
  146|  9.95k|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|  9.95k|      avail_p = (ui8*)avail_p + total;
  148|  9.95k|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|  9.95k|      return p;
  151|  9.95k|    }
_ZN4ojph19mem_fixed_allocator15post_alloc_dataIiEEPT_mj:
  113|  2.77M|    {
  114|  2.77M|      return post_alloc_local<T, byte_alignment>
  115|  2.77M|        (num_ele, pre_size, avail_size_data, avail_data);
  116|  2.77M|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localIiLi64EEEPT_mjRmRPv:
  140|  2.77M|    {
  141|  2.77M|      assert(!preallocation);
  142|  2.77M|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|  2.77M|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|  2.77M|      total += 2*N - 1;
  145|       |
  146|  2.77M|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|  2.77M|      avail_p = (ui8*)avail_p + total;
  148|  2.77M|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|  2.77M|      return p;
  151|  2.77M|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objINS_5local9tile_compEEEvm:
   79|   249k|    {
   80|   249k|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|   249k|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localINS_5local9tile_compELi8EEEvmjRm:
  128|   249k|    {
  129|   249k|      assert(preallocation);
  130|   249k|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|   249k|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|   249k|      total += 2*N - 1;
  133|       |
  134|   249k|      sz += total;
  135|   249k|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objINS_4rectEEEvm:
   79|   499k|    {
   80|   499k|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|   499k|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localINS_4rectELi8EEEvmjRm:
  128|   499k|    {
  129|   499k|      assert(preallocation);
  130|   499k|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|   499k|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|   499k|      total += 2*N - 1;
  133|       |
  134|   499k|      sz += total;
  135|   499k|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objIjEEvm:
   79|   749k|    {
   80|   749k|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|   749k|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localIjLi8EEEvmjRm:
  128|   749k|    {
  129|   749k|      assert(preallocation);
  130|   749k|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|   749k|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|   749k|      total += 2*N - 1;
  133|       |
  134|   749k|      sz += total;
  135|   749k|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objIbEEvm:
   79|   499k|    {
   80|   499k|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|   499k|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localIbLi8EEEvmjRm:
  128|   499k|    {
  129|   499k|      assert(preallocation);
  130|   499k|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|   499k|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|   499k|      total += 2*N - 1;
  133|       |
  134|   499k|      sz += total;
  135|   499k|    }
_ZN4ojph19mem_fixed_allocator14pre_alloc_dataIfEEvmj:
   73|  1.80M|    {
   74|  1.80M|      pre_alloc_local<T, byte_alignment>(num_ele, pre_size, size_data);
   75|  1.80M|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localIfLi64EEEvmjRm:
  128|  1.80M|    {
  129|  1.80M|      assert(preallocation);
  130|  1.80M|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|  1.80M|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|  1.80M|      total += 2*N - 1;
  133|       |
  134|  1.80M|      sz += total;
  135|  1.80M|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objINS_5local9tile_compEEEPT_m:
  120|   248k|    {
  121|   248k|      return post_alloc_local<T, object_alignment>
  122|   248k|        (num_ele, 0, avail_size_obj, avail_obj);
  123|   248k|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localINS_5local9tile_compELi8EEEPT_mjRmRPv:
  140|   248k|    {
  141|   248k|      assert(!preallocation);
  142|   248k|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|   248k|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|   248k|      total += 2*N - 1;
  145|       |
  146|   248k|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|   248k|      avail_p = (ui8*)avail_p + total;
  148|   248k|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|   248k|      return p;
  151|   248k|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objINS_4rectEEEPT_m:
  120|   496k|    {
  121|   496k|      return post_alloc_local<T, object_alignment>
  122|   496k|        (num_ele, 0, avail_size_obj, avail_obj);
  123|   496k|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localINS_4rectELi8EEEPT_mjRmRPv:
  140|   496k|    {
  141|   496k|      assert(!preallocation);
  142|   496k|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|   496k|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|   496k|      total += 2*N - 1;
  145|       |
  146|   496k|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|   496k|      avail_p = (ui8*)avail_p + total;
  148|   496k|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|   496k|      return p;
  151|   496k|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objIjEEPT_m:
  120|   745k|    {
  121|   745k|      return post_alloc_local<T, object_alignment>
  122|   745k|        (num_ele, 0, avail_size_obj, avail_obj);
  123|   745k|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localIjLi8EEEPT_mjRmRPv:
  140|   745k|    {
  141|   745k|      assert(!preallocation);
  142|   745k|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|   745k|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|   745k|      total += 2*N - 1;
  145|       |
  146|   745k|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|   745k|      avail_p = (ui8*)avail_p + total;
  148|   745k|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|   745k|      return p;
  151|   745k|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objIbEEPT_m:
  120|   496k|    {
  121|   496k|      return post_alloc_local<T, object_alignment>
  122|   496k|        (num_ele, 0, avail_size_obj, avail_obj);
  123|   496k|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localIbLi8EEEPT_mjRmRPv:
  140|   496k|    {
  141|   496k|      assert(!preallocation);
  142|   496k|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|   496k|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|   496k|      total += 2*N - 1;
  145|       |
  146|   496k|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|   496k|      avail_p = (ui8*)avail_p + total;
  148|   496k|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|   496k|      return p;
  151|   496k|    }
_ZN4ojph19mem_fixed_allocator15post_alloc_dataIfEEPT_mj:
  113|  1.75M|    {
  114|  1.75M|      return post_alloc_local<T, byte_alignment>
  115|  1.75M|        (num_ele, pre_size, avail_size_data, avail_data);
  116|  1.75M|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localIfLi64EEEPT_mjRmRPv:
  140|  1.75M|    {
  141|  1.75M|      assert(!preallocation);
  142|  1.75M|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|  1.75M|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|  1.75M|      total += 2*N - 1;
  145|       |
  146|  1.75M|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|  1.75M|      avail_p = (ui8*)avail_p + total;
  148|  1.75M|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|  1.75M|      return p;
  151|  1.75M|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objINS_5local10resolutionEEEvm:
   79|  1.57M|    {
   80|  1.57M|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|  1.57M|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localINS_5local10resolutionELi8EEEvmjRm:
  128|  1.57M|    {
  129|  1.57M|      assert(preallocation);
  130|  1.57M|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|  1.57M|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|  1.57M|      total += 2*N - 1;
  133|       |
  134|  1.57M|      sz += total;
  135|  1.57M|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objINS_5local10resolutionEEEPT_m:
  120|  1.56M|    {
  121|  1.56M|      return post_alloc_local<T, object_alignment>
  122|  1.56M|        (num_ele, 0, avail_size_obj, avail_obj);
  123|  1.56M|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localINS_5local10resolutionELi8EEEPT_mjRmRPv:
  140|  1.56M|    {
  141|  1.56M|      assert(!preallocation);
  142|  1.56M|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|  1.56M|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|  1.56M|      total += 2*N - 1;
  145|       |
  146|  1.56M|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|  1.56M|      avail_p = (ui8*)avail_p + total;
  148|  1.56M|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|  1.56M|      return p;
  151|  1.56M|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objINS_5local7subbandEEEvm:
   79|  1.57M|    {
   80|  1.57M|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|  1.57M|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localINS_5local7subbandELi8EEEvmjRm:
  128|  1.57M|    {
  129|  1.57M|      assert(preallocation);
  130|  1.57M|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|  1.57M|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|  1.57M|      total += 2*N - 1;
  133|       |
  134|  1.57M|      sz += total;
  135|  1.57M|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objINS_5local8precinctEEEvm:
   79|   385k|    {
   80|   385k|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|   385k|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localINS_5local8precinctELi8EEEvmjRm:
  128|   385k|    {
  129|   385k|      assert(preallocation);
  130|   385k|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|   385k|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|   385k|      total += 2*N - 1;
  133|       |
  134|   385k|      sz += total;
  135|   385k|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objINS_11lifting_bufEEEvm:
   79|  1.21M|    {
   80|  1.21M|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|  1.21M|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localINS_11lifting_bufELi8EEEvmjRm:
  128|  1.21M|    {
  129|  1.21M|      assert(preallocation);
  130|  1.21M|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|  1.21M|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|  1.21M|      total += 2*N - 1;
  133|       |
  134|  1.21M|      sz += total;
  135|  1.21M|    }
_ZN4ojph19mem_fixed_allocator14pre_alloc_dataIlEEvmj:
   73|  1.16M|    {
   74|  1.16M|      pre_alloc_local<T, byte_alignment>(num_ele, pre_size, size_data);
   75|  1.16M|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localIlLi64EEEvmjRm:
  128|  1.16M|    {
  129|  1.16M|      assert(preallocation);
  130|  1.16M|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|  1.16M|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|  1.16M|      total += 2*N - 1;
  133|       |
  134|  1.16M|      sz += total;
  135|  1.16M|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objINS_5local7subbandEEEPT_m:
  120|  1.56M|    {
  121|  1.56M|      return post_alloc_local<T, object_alignment>
  122|  1.56M|        (num_ele, 0, avail_size_obj, avail_obj);
  123|  1.56M|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localINS_5local7subbandELi8EEEPT_mjRmRPv:
  140|  1.56M|    {
  141|  1.56M|      assert(!preallocation);
  142|  1.56M|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|  1.56M|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|  1.56M|      total += 2*N - 1;
  145|       |
  146|  1.56M|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|  1.56M|      avail_p = (ui8*)avail_p + total;
  148|  1.56M|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|  1.56M|      return p;
  151|  1.56M|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objINS_5local8precinctEEEPT_m:
  120|   380k|    {
  121|   380k|      return post_alloc_local<T, object_alignment>
  122|   380k|        (num_ele, 0, avail_size_obj, avail_obj);
  123|   380k|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localINS_5local8precinctELi8EEEPT_mjRmRPv:
  140|   380k|    {
  141|   380k|      assert(!preallocation);
  142|   380k|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|   380k|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|   380k|      total += 2*N - 1;
  145|       |
  146|   380k|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|   380k|      avail_p = (ui8*)avail_p + total;
  148|   380k|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|   380k|      return p;
  151|   380k|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objINS_11lifting_bufEEEPT_m:
  120|  1.20M|    {
  121|  1.20M|      return post_alloc_local<T, object_alignment>
  122|  1.20M|        (num_ele, 0, avail_size_obj, avail_obj);
  123|  1.20M|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localINS_11lifting_bufELi8EEEPT_mjRmRPv:
  140|  1.20M|    {
  141|  1.20M|      assert(!preallocation);
  142|  1.20M|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|  1.20M|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|  1.20M|      total += 2*N - 1;
  145|       |
  146|  1.20M|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|  1.20M|      avail_p = (ui8*)avail_p + total;
  148|  1.20M|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|  1.20M|      return p;
  151|  1.20M|    }
_ZN4ojph19mem_fixed_allocator15post_alloc_dataIlEEPT_mj:
  113|  1.16M|    {
  114|  1.16M|      return post_alloc_local<T, byte_alignment>
  115|  1.16M|        (num_ele, pre_size, avail_size_data, avail_data);
  116|  1.16M|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localIlLi64EEEPT_mjRmRPv:
  140|  1.16M|    {
  141|  1.16M|      assert(!preallocation);
  142|  1.16M|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|  1.16M|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|  1.16M|      total += 2*N - 1;
  145|       |
  146|  1.16M|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|  1.16M|      avail_p = (ui8*)avail_p + total;
  148|  1.16M|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|  1.16M|      return p;
  151|  1.16M|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objINS_5local9codeblockEEEvm:
   79|   341k|    {
   80|   341k|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|   341k|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localINS_5local9codeblockELi8EEEvmjRm:
  128|   341k|    {
  129|   341k|      assert(preallocation);
  130|   341k|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|   341k|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|   341k|      total += 2*N - 1;
  133|       |
  134|   341k|      sz += total;
  135|   341k|    }
_ZN4ojph19mem_fixed_allocator13pre_alloc_objINS_5local15coded_cb_headerEEEvm:
   79|   341k|    {
   80|   341k|      pre_alloc_local<T, object_alignment>(num_ele, 0, size_obj);
   81|   341k|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localINS_5local15coded_cb_headerELi8EEEvmjRm:
  128|   341k|    {
  129|   341k|      assert(preallocation);
  130|   341k|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|   341k|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|   341k|      total += 2*N - 1;
  133|       |
  134|   341k|      sz += total;
  135|   341k|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objINS_5local9codeblockEEEPT_m:
  120|   335k|    {
  121|   335k|      return post_alloc_local<T, object_alignment>
  122|   335k|        (num_ele, 0, avail_size_obj, avail_obj);
  123|   335k|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localINS_5local9codeblockELi8EEEPT_mjRmRPv:
  140|   335k|    {
  141|   335k|      assert(!preallocation);
  142|   335k|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|   335k|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|   335k|      total += 2*N - 1;
  145|       |
  146|   335k|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|   335k|      avail_p = (ui8*)avail_p + total;
  148|   335k|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|   335k|      return p;
  151|   335k|    }
_ZN4ojph19mem_fixed_allocator14post_alloc_objINS_5local15coded_cb_headerEEEPT_m:
  120|   335k|    {
  121|   335k|      return post_alloc_local<T, object_alignment>
  122|   335k|        (num_ele, 0, avail_size_obj, avail_obj);
  123|   335k|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localINS_5local15coded_cb_headerELi8EEEPT_mjRmRPv:
  140|   335k|    {
  141|   335k|      assert(!preallocation);
  142|   335k|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|   335k|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|   335k|      total += 2*N - 1;
  145|       |
  146|   335k|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|   335k|      avail_p = (ui8*)avail_p + total;
  148|   335k|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|   335k|      return p;
  151|   335k|    }
_ZN4ojph19mem_fixed_allocator14pre_alloc_dataIjEEvmj:
   73|  3.25M|    {
   74|  3.25M|      pre_alloc_local<T, byte_alignment>(num_ele, pre_size, size_data);
   75|  3.25M|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localIjLi64EEEvmjRm:
  128|  3.25M|    {
  129|  3.25M|      assert(preallocation);
  130|  3.25M|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|  3.25M|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|  3.25M|      total += 2*N - 1;
  133|       |
  134|  3.25M|      sz += total;
  135|  3.25M|    }
_ZN4ojph19mem_fixed_allocator14pre_alloc_dataImEEvmj:
   73|  2.13M|    {
   74|  2.13M|      pre_alloc_local<T, byte_alignment>(num_ele, pre_size, size_data);
   75|  2.13M|    }
_ZN4ojph19mem_fixed_allocator15pre_alloc_localImLi64EEEvmjRm:
  128|  2.13M|    {
  129|  2.13M|      assert(preallocation);
  130|  2.13M|      num_ele = calc_aligned_size<T, N>(num_ele);
  131|  2.13M|      size_t total = (num_ele + pre_size) * sizeof(T);
  132|  2.13M|      total += 2*N - 1;
  133|       |
  134|  2.13M|      sz += total;
  135|  2.13M|    }
_ZN4ojph19mem_fixed_allocator15post_alloc_dataIjEEPT_mj:
  113|  3.09M|    {
  114|  3.09M|      return post_alloc_local<T, byte_alignment>
  115|  3.09M|        (num_ele, pre_size, avail_size_data, avail_data);
  116|  3.09M|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localIjLi64EEEPT_mjRmRPv:
  140|  3.09M|    {
  141|  3.09M|      assert(!preallocation);
  142|  3.09M|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|  3.09M|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|  3.09M|      total += 2*N - 1;
  145|       |
  146|  3.09M|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|  3.09M|      avail_p = (ui8*)avail_p + total;
  148|  3.09M|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|  3.09M|      return p;
  151|  3.09M|    }
_ZN4ojph19mem_fixed_allocator15post_alloc_dataImEEPT_mj:
  113|  2.03M|    {
  114|  2.03M|      return post_alloc_local<T, byte_alignment>
  115|  2.03M|        (num_ele, pre_size, avail_size_data, avail_data);
  116|  2.03M|    }
_ZN4ojph19mem_fixed_allocator16post_alloc_localImLi64EEEPT_mjRmRPv:
  140|  2.03M|    {
  141|  2.03M|      assert(!preallocation);
  142|  2.03M|      num_ele = calc_aligned_size<T, N>(num_ele);
  143|  2.03M|      size_t total = (num_ele + pre_size) * sizeof(T);
  144|  2.03M|      total += 2*N - 1;
  145|       |
  146|  2.03M|      T* p = align_ptr<T, N>((T*)avail_p + pre_size);
  147|  2.03M|      avail_p = (ui8*)avail_p + total;
  148|  2.03M|      avail_sz -= total;
  149|       |      assert((avail_sz & 0x8000000000000000llu) == 0);
  150|  2.03M|      return p;
  151|  2.03M|    }

_ZN4ojph9param_sizC2EPNS_5local9param_sizE:
   71|  20.6k|    param_siz(local::param_siz *p) : state(p) {}
_ZN4ojph9param_codC2EPNS_5local9param_codE:
  122|   260k|    param_cod(local::param_cod* p) : state(p) {}

_ZN4ojph9run_cpuidEjjPj:
   54|      4|  {
   55|       |  #ifdef OJPH_COMPILER_MSVC
   56|       |    __cpuidex((int *)abcd, eax, ecx);
   57|       |  #else
   58|      4|    uint32_t ebx = 0, edx = 0;
   59|       |  #if defined( __i386__ ) && defined ( __PIC__ )
   60|       |    /* in case of PIC under 32-bit EBX cannot be clobbered */
   61|       |    __asm__ ( "movl %%ebx, %%edi \n\t cpuid \n\t xchgl %%ebx, %%edi"
   62|       |              : "=D" (ebx), "+a" (eax), "+c" (ecx), "=d" (edx) );
   63|       |  #else
   64|      4|    __asm__ ( "cpuid" : "+b" (ebx), "+a" (eax), "+c" (ecx), "=d" (edx) );
   65|      4|  #endif
   66|      4|    abcd[0] = eax; abcd[1] = ebx; abcd[2] = ecx; abcd[3] = edx;
   67|      4|  #endif
   68|      4|    return true;
   69|      4|  }
_ZN4ojph8read_xcrEj:
   73|      2|  {
   74|       |  #ifdef OJPH_COMPILER_MSVC
   75|       |    return _xgetbv(index);
   76|       |  #else
   77|      2|    uint32_t eax = 0, edx = 0;
   78|      2|    __asm__ ( "xgetbv" : "=a" (eax), "=d" (edx) : "c" (index) );
   79|      2|    return ((uint64_t)edx << 32) | eax;
   80|      2|  #endif
   81|      2|  }
_ZN4ojph18init_cpu_ext_levelERi:
   85|      2|  {
   86|      2|    uint32_t mmx_abcd[4];
   87|      2|    run_cpuid(1, 0, mmx_abcd);
   88|      2|    bool mmx_avail = ((mmx_abcd[3] & 0x00800000) == 0x00800000);
   89|       |
   90|      2|    level = 0;
   91|      2|    if (mmx_avail)
  ------------------
  |  Branch (91:9): [True: 2, False: 0]
  ------------------
   92|      2|    {
   93|      2|      level = X86_CPU_EXT_LEVEL_MMX;
   94|      2|      bool sse_avail = ((mmx_abcd[3] & 0x02000000) == 0x02000000);
   95|      2|      if (sse_avail)
  ------------------
  |  Branch (95:11): [True: 2, False: 0]
  ------------------
   96|      2|      {
   97|      2|        level = X86_CPU_EXT_LEVEL_SSE;
   98|      2|        bool sse2_avail = ((mmx_abcd[3] & 0x04000000) == 0x04000000);
   99|      2|        if (sse2_avail)
  ------------------
  |  Branch (99:13): [True: 2, False: 0]
  ------------------
  100|      2|        {
  101|      2|          level = X86_CPU_EXT_LEVEL_SSE2;
  102|      2|          bool sse3_avail = ((mmx_abcd[2] & 0x00000001) == 0x00000001);
  103|      2|          if (sse3_avail)
  ------------------
  |  Branch (103:15): [True: 2, False: 0]
  ------------------
  104|      2|          {
  105|      2|            level = X86_CPU_EXT_LEVEL_SSE3;
  106|      2|            bool ssse3_avail = ((mmx_abcd[2] & 0x00000200) == 0x00000200);
  107|      2|            if (ssse3_avail)
  ------------------
  |  Branch (107:17): [True: 2, False: 0]
  ------------------
  108|      2|            {
  109|      2|              level = X86_CPU_EXT_LEVEL_SSSE3;
  110|      2|              bool sse41_avail = ((mmx_abcd[2] & 0x00080000) == 0x00080000);
  111|      2|              if (sse41_avail) {
  ------------------
  |  Branch (111:19): [True: 2, False: 0]
  ------------------
  112|      2|                level = X86_CPU_EXT_LEVEL_SSE41;
  113|      2|                bool sse42_avail = ((mmx_abcd[2] & 0x00100000) == 0x00100000);
  114|      2|                if (sse42_avail)
  ------------------
  |  Branch (114:21): [True: 2, False: 0]
  ------------------
  115|      2|                {
  116|      2|                  level = X86_CPU_EXT_LEVEL_SSE42;
  117|       |                  
  118|      2|                  uint64_t xcr_val = 0;
  119|      2|                  bool osxsave_avail, ymm_avail, avx_avail = false;
  120|      2|                  osxsave_avail = ((mmx_abcd[2] & 0x08000000) == 0x08000000);
  121|      2|                  if (osxsave_avail)
  ------------------
  |  Branch (121:23): [True: 2, False: 0]
  ------------------
  122|      2|                  {
  123|      2|                    xcr_val = read_xcr(0); // _XCR_XFEATURE_ENABLED_MASK = 0
  124|      2|                    ymm_avail = osxsave_avail && ((xcr_val & 0x6) == 0x6);
  ------------------
  |  Branch (124:33): [True: 2, False: 0]
  |  Branch (124:50): [True: 2, False: 0]
  ------------------
  125|      2|                    avx_avail = ymm_avail && (mmx_abcd[2] & 0x10000000);
  ------------------
  |  Branch (125:33): [True: 2, False: 0]
  |  Branch (125:46): [True: 2, False: 0]
  ------------------
  126|      2|                  }
  127|      2|                  if (avx_avail)
  ------------------
  |  Branch (127:23): [True: 2, False: 0]
  ------------------
  128|      2|                  {
  129|      2|                    level = X86_CPU_EXT_LEVEL_AVX;
  130|       |
  131|      2|                    uint32_t avx2_abcd[4];
  132|      2|                    run_cpuid(7, 0, avx2_abcd);
  133|      2|                    bool avx2_avail = (avx2_abcd[1] & 0x20) != 0;
  134|      2|                    if (avx2_avail)
  ------------------
  |  Branch (134:25): [True: 2, False: 0]
  ------------------
  135|      2|                    {
  136|      2|                      level = X86_CPU_EXT_LEVEL_AVX2;
  137|      2|                      bool avx2fma_avail =
  138|      2|                        avx2_avail && ((mmx_abcd[2] & 0x1000) == 0x1000);
  ------------------
  |  Branch (138:25): [True: 2, False: 0]
  |  Branch (138:39): [True: 2, False: 0]
  ------------------
  139|      2|                      if (avx2fma_avail)
  ------------------
  |  Branch (139:27): [True: 2, False: 0]
  ------------------
  140|      2|                      {
  141|      2|                        level = X86_CPU_EXT_LEVEL_AVX2FMA;
  142|       |
  143|      2|                        bool zmm_avail =
  144|      2|                          osxsave_avail && ((xcr_val & 0xE0) == 0xE0);
  ------------------
  |  Branch (144:27): [True: 2, False: 0]
  |  Branch (144:44): [True: 0, False: 2]
  ------------------
  145|      2|                        bool avx512f_avail = (avx2_abcd[1] & 0x10000) != 0;
  146|      2|                        bool avx512cd_avail = (avx2_abcd[1] & 0x10000000) != 0;
  147|      2|                        bool avx512bw_avail = (avx2_abcd[1] & 0x40000000) != 0;
  148|      2|                        bool avx512vl_avail =
  149|      2|                          (avx2_abcd[1] & 0x80000000u) != 0;
  150|      2|                        bool avx512_avail = zmm_avail && avx512f_avail
  ------------------
  |  Branch (150:45): [True: 0, False: 2]
  |  Branch (150:58): [True: 0, False: 0]
  ------------------
  151|      0|                          && avx512cd_avail && avx512bw_avail
  ------------------
  |  Branch (151:30): [True: 0, False: 0]
  |  Branch (151:48): [True: 0, False: 0]
  ------------------
  152|      0|                          && avx512vl_avail;
  ------------------
  |  Branch (152:30): [True: 0, False: 0]
  ------------------
  153|      2|                        if (avx512_avail)
  ------------------
  |  Branch (153:29): [True: 0, False: 2]
  ------------------
  154|      0|                          level = X86_CPU_EXT_LEVEL_AVX512;
  155|      2|                      }
  156|      2|                    }
  157|      2|                  }
  158|      2|                }
  159|      2|              }
  160|      2|            }
  161|      2|          }
  162|      2|        }
  163|      2|      }
  164|      2|    }
  165|      2|    return true;
  166|      2|  }
_ZN4ojph17get_cpu_ext_levelEv:
  297|  30.7M|  {
  298|       |    assert(cpu_level_initialized);
  299|  30.7M|    return cpu_level;
  300|  30.7M|  }

_ZN4ojph10mem_infile4openEPKhm:
  338|  6.74k|  {
  339|       |    assert(this->data == NULL);
  340|  6.74k|    cur_ptr = this->data = data;
  341|  6.74k|    this->size = size;
  342|  6.74k|  }
_ZN4ojph10mem_infile4readEPvm:
  346|   170M|  {
  347|   170M|    std::ptrdiff_t bytes_left = (data + this->size) - cur_ptr;
  348|   170M|    if (bytes_left > 0)
  ------------------
  |  Branch (348:9): [True: 170M, False: 18.5k]
  ------------------
  349|   170M|    {
  350|   170M|      size_t bytes_to_read = ojph_min(size, (size_t)bytes_left);
  ------------------
  |  |   76|   170M|#define ojph_min(a, b) (((a) < (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (76:25): [True: 170M, False: 22.9k]
  |  |  ------------------
  ------------------
  351|   170M|      memcpy(ptr, cur_ptr, bytes_to_read);
  352|   170M|      cur_ptr += bytes_to_read;
  353|   170M|      return bytes_to_read;
  354|   170M|    }
  355|  18.5k|    else
  356|  18.5k|      return 0;
  357|   170M|  }
_ZN4ojph10mem_infile4seekElNS_11infile_base4seekE:
  361|   370k|  {
  362|   370k|    int result = -1;
  363|   370k|    if (origin == OJPH_SEEK_SET)
  ------------------
  |  Branch (363:9): [True: 184k, False: 186k]
  ------------------
  364|   184k|    {
  365|   184k|      if (offset >= 0 && (size_t)offset <= size)
  ------------------
  |  Branch (365:11): [True: 184k, False: 0]
  |  Branch (365:26): [True: 176k, False: 7.25k]
  ------------------
  366|   176k|      {
  367|   176k|        cur_ptr = data + offset;
  368|   176k|        result = 0;
  369|   176k|      }
  370|   184k|    }
  371|   186k|    else if (origin == OJPH_SEEK_CUR)
  ------------------
  |  Branch (371:14): [True: 186k, False: 0]
  ------------------
  372|   186k|    {
  373|   186k|      si64 bytes_off = (si64)(cur_ptr - data) + offset;
  374|   186k|      if (bytes_off >= 0 && (size_t)bytes_off <= size)
  ------------------
  |  Branch (374:11): [True: 186k, False: 0]
  |  Branch (374:29): [True: 164k, False: 21.5k]
  ------------------
  375|   164k|      {
  376|   164k|        cur_ptr = data + bytes_off;
  377|   164k|        result = 0;
  378|   164k|      }
  379|   186k|    }
  380|      0|    else if (origin == OJPH_SEEK_END)
  ------------------
  |  Branch (380:14): [True: 0, False: 0]
  ------------------
  381|      0|    {
  382|      0|      if (offset <= 0 && (std::ptrdiff_t)size + offset >= 0)
  ------------------
  |  Branch (382:11): [True: 0, False: 0]
  |  Branch (382:26): [True: 0, False: 0]
  ------------------
  383|      0|      {
  384|      0|        cur_ptr = data + size + offset;
  385|      0|        result = 0;
  386|      0|      }
  387|      0|    }
  388|      0|    else
  389|      0|      assert(0);
  390|       |
  391|   370k|    return result;
  392|   370k|  }

_ZN4ojph8line_buf4wrapIiEEvPT_mj:
   55|  2.77M|  {
   56|  2.77M|    this->i32 = buffer;
   57|  2.77M|    this->size = num_ele;
   58|  2.77M|    this->pre_size = pre_size;
   59|  2.77M|    this->flags = LFT_32BIT | LFT_INTEGER;
   60|  2.77M|  }
_ZN4ojph8line_buf4wrapIfEEvPT_mj:
   65|  1.75M|  {
   66|  1.75M|    this->f32 = buffer;
   67|  1.75M|    this->size = num_ele;
   68|  1.75M|    this->pre_size = pre_size;
   69|  1.75M|    this->flags = LFT_32BIT;
   70|  1.75M|  }
_ZN4ojph8line_buf4wrapIlEEvPT_mj:
   75|  1.16M|  {
   76|  1.16M|    this->i64 = buffer;
   77|  1.16M|    this->size = num_ele;
   78|  1.16M|    this->pre_size = pre_size;
   79|  1.16M|    this->flags = LFT_64BIT | LFT_INTEGER;
   80|  1.16M|  }
_ZN4ojph21mem_elastic_allocator8allocateEPPNS0_11stores_listEj:
   94|  3.16k|  {
   95|  3.16k|    ui32 bytes = ojph_max(extended_bytes, chunk_size);
  ------------------
  |  |   73|  3.16k|#define ojph_max(a, b) (((a) > (b)) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (73:25): [True: 0, False: 3.16k]
  |  |  ------------------
  ------------------
   96|  3.16k|    if (avail != NULL && avail->orig_size >= bytes)
  ------------------
  |  Branch (96:9): [True: 0, False: 3.16k]
  |  Branch (96:26): [True: 0, False: 0]
  ------------------
   97|      0|    {
   98|      0|      *list = avail;
   99|      0|      avail = avail->next_store;
  100|      0|      (*list)->restart();
  101|      0|      return *list;
  102|      0|    }
  103|  3.16k|    else
  104|  3.16k|    {
  105|  3.16k|      ui32 store_bytes = stores_list::eval_store_bytes(bytes);
  106|  3.16k|      *list = (stores_list*) malloc(store_bytes);
  107|  3.16k|      total_allocated += store_bytes;
  108|  3.16k|      return new (*list) stores_list(bytes);
  109|  3.16k|    }
  110|  3.16k|  }
_ZN4ojph21mem_elastic_allocator10get_bufferEjRPNS_11coded_listsE:
  114|  92.5k|  {
  115|       |    // Round up so each coded_lists (and coded_lists::buf) stays 16-byte aligned
  116|       |    // within the store; avoids alignment fault on 32-bit architectures
  117|  92.5k|    ui32 raw = needed_bytes + (ui32)sizeof (coded_lists);
  118|  92.5k|    ui32 extended_bytes = (raw + 15u) & ~15u;
  119|       |
  120|  92.5k|    if (store == NULL)
  ------------------
  |  Branch (120:9): [True: 3.07k, False: 89.4k]
  ------------------
  121|  3.07k|      cur_store = store = allocate(&store, extended_bytes);
  122|  89.4k|    else if (cur_store->available < extended_bytes)
  ------------------
  |  Branch (122:14): [True: 92, False: 89.3k]
  ------------------
  123|     92|      cur_store = allocate(&cur_store->next_store, extended_bytes);
  124|       |
  125|  92.5k|    p = new (cur_store->data) coded_lists(needed_bytes);
  126|       |
  127|       |    assert(cur_store->available >= extended_bytes);
  128|  92.5k|    cur_store->available -= extended_bytes;
  129|  92.5k|    cur_store->data += extended_bytes;
  130|  92.5k|  }
_ZN4ojph21mem_elastic_allocator7restartEv:
  134|  6.74k|  {
  135|       |    // move to the end of avail
  136|  6.74k|    stores_list** p = &avail;
  137|  6.74k|    while (*p != NULL)
  ------------------
  |  Branch (137:12): [True: 0, False: 6.74k]
  ------------------
  138|      0|      p = &((*p)->next_store);
  139|  6.74k|    *p = store;
  140|       |    cur_store = store = NULL;
  141|  6.74k|  }

_ZN4ojph8get_infoEv:
   63|  2.19M|  {
   64|  2.19M|    return local_info;
   65|  2.19M|  }
_ZN4ojph12message_infoclEiPKciS2_z:
   76|  2.19M|  {
   77|  2.19M|    if (info_stream == NULL || message_level > OJPH_MSG_INFO)
  ------------------
  |  Branch (77:9): [True: 0, False: 2.19M]
  |  Branch (77:32): [True: 0, False: 2.19M]
  ------------------
   78|      0|      return;
   79|       |
   80|  2.19M|    fprintf(info_stream, "ojph info 0x%08X at %s:%d: ",
   81|  2.19M|      info_code, file_name, line_num);
   82|  2.19M|    va_list args;
   83|  2.19M|    va_start(args, fmt);
   84|  2.19M|    vfprintf(info_stream, fmt, args);
   85|  2.19M|    fprintf(info_stream, "\n");
   86|       |    va_end(args);
   87|  2.19M|  }
_ZN4ojph11get_warningEv:
  104|  98.0k|  {
  105|  98.0k|    return local_warn;
  106|  98.0k|  }
_ZN4ojph15message_warningclEiPKciS2_z:
  117|  98.0k|  {
  118|  98.0k|    if (warning_stream == NULL || message_level > OJPH_MSG_WARN)
  ------------------
  |  Branch (118:9): [True: 0, False: 98.0k]
  |  Branch (118:35): [True: 0, False: 98.0k]
  ------------------
  119|      0|      return;
  120|       |
  121|  98.0k|    fprintf(warning_stream, "ojph warning 0x%08X at %s:%d: ",
  122|  98.0k|      warn_code, file_name, line_num);
  123|  98.0k|    va_list args;
  124|  98.0k|    va_start(args, fmt);
  125|  98.0k|    vfprintf(warning_stream, fmt, args);
  126|  98.0k|    fprintf(warning_stream, "\n");
  127|       |    va_end(args);
  128|  98.0k|  }
_ZN4ojph9get_errorEv:
  145|  1.71k|  {
  146|  1.71k|    return local_error;
  147|  1.71k|  }
_ZN4ojph13message_errorclEiPKciS2_z:
  158|  1.71k|  {
  159|  1.71k|    if (error_stream != NULL && message_level <= OJPH_MSG_ERROR)
  ------------------
  |  Branch (159:9): [True: 1.71k, False: 0]
  |  Branch (159:33): [True: 1.71k, False: 0]
  ------------------
  160|  1.71k|    {
  161|  1.71k|      fprintf(error_stream, "ojph error 0x%08X at %s:%d: ",
  162|  1.71k|        error_code, file_name, line_num);
  163|  1.71k|      va_list args;
  164|  1.71k|      va_start(args, fmt);
  165|  1.71k|      vfprintf(error_stream, fmt, args);
  166|  1.71k|      fprintf(error_stream, "\n");
  167|  1.71k|      va_end(args);
  168|  1.71k|    }
  169|       |
  170|  1.71k|    throw std::runtime_error("ojph error");
  171|  1.71k|  }

_ZN4ojph5local31init_colour_transform_functionsEv:
  110|  6.74k|    {
  111|  6.74k|      static std::once_flag colour_transform_functions_init_flag;
  112|  6.74k|      std::call_once(colour_transform_functions_init_flag, []() {
  113|  6.74k|#if !defined(OJPH_ENABLE_WASM_SIMD) || !defined(OJPH_EMSCRIPTEN)
  114|       |
  115|  6.74k|        rev_convert = gen_rev_convert;
  116|  6.74k|        rev_convert_nlt_type3 = gen_rev_convert_nlt_type3;
  117|  6.74k|        irv_convert_to_integer = gen_irv_convert_to_integer;
  118|  6.74k|        irv_convert_to_float = gen_irv_convert_to_float;
  119|  6.74k|        irv_convert_to_integer_nlt_type3 = gen_irv_convert_to_integer_nlt_type3;
  120|  6.74k|        irv_convert_to_float_nlt_type3 = gen_irv_convert_to_float_nlt_type3;
  121|  6.74k|        rct_forward = gen_rct_forward;
  122|  6.74k|        rct_backward = gen_rct_backward;
  123|  6.74k|        ict_forward = gen_ict_forward;
  124|  6.74k|        ict_backward = gen_ict_backward;
  125|       |
  126|  6.74k|  #ifndef OJPH_DISABLE_SIMD
  127|       |
  128|  6.74k|    #if (defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  129|       |
  130|  6.74k|      #ifndef OJPH_DISABLE_SSE
  131|  6.74k|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_SSE)
  132|  6.74k|        {
  133|  6.74k|          ict_forward = sse_ict_forward;
  134|  6.74k|          ict_backward = sse_ict_backward;
  135|  6.74k|        }
  136|  6.74k|      #endif // !OJPH_DISABLE_SSE
  137|       |
  138|  6.74k|      #ifndef OJPH_DISABLE_SSE2
  139|  6.74k|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_SSE2)
  140|  6.74k|        {
  141|  6.74k|          rev_convert = sse2_rev_convert;
  142|  6.74k|          rev_convert_nlt_type3 = sse2_rev_convert_nlt_type3;
  143|  6.74k|          irv_convert_to_integer = sse2_irv_convert_to_integer;
  144|  6.74k|          irv_convert_to_float = sse2_irv_convert_to_float;
  145|  6.74k|          irv_convert_to_integer_nlt_type3 =
  146|  6.74k|            sse2_irv_convert_to_integer_nlt_type3;
  147|  6.74k|          irv_convert_to_float_nlt_type3 =
  148|  6.74k|            sse2_irv_convert_to_float_nlt_type3;
  149|  6.74k|          rct_forward = sse2_rct_forward;
  150|  6.74k|          rct_backward = sse2_rct_backward;
  151|  6.74k|        }
  152|  6.74k|      #endif // !OJPH_DISABLE_SSE2
  153|       |
  154|  6.74k|      #ifndef OJPH_DISABLE_AVX
  155|  6.74k|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX)
  156|  6.74k|        {
  157|  6.74k|          ict_forward = avx_ict_forward;
  158|  6.74k|          ict_backward = avx_ict_backward;
  159|  6.74k|        }
  160|  6.74k|      #endif // !OJPH_DISABLE_AVX
  161|       |
  162|  6.74k|      #ifndef OJPH_DISABLE_AVX2
  163|  6.74k|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX2)
  164|  6.74k|        {
  165|  6.74k|          rev_convert = avx2_rev_convert;
  166|  6.74k|          rev_convert_nlt_type3 = avx2_rev_convert_nlt_type3;
  167|  6.74k|          irv_convert_to_integer = avx2_irv_convert_to_integer;
  168|  6.74k|          irv_convert_to_float = avx2_irv_convert_to_float;
  169|  6.74k|          irv_convert_to_integer_nlt_type3 =
  170|  6.74k|            avx2_irv_convert_to_integer_nlt_type3;
  171|  6.74k|          irv_convert_to_float_nlt_type3 =
  172|  6.74k|            avx2_irv_convert_to_float_nlt_type3;
  173|  6.74k|          rct_forward = avx2_rct_forward;
  174|  6.74k|          rct_backward = avx2_rct_backward;
  175|  6.74k|        }
  176|  6.74k|      #endif // !OJPH_DISABLE_AVX2
  177|       |
  178|       |    #elif defined(OJPH_ARCH_ARM)
  179|       |
  180|       |    #elif defined(OJPH_ARCH_PPC64LE)
  181|       |
  182|       |        if (get_cpu_ext_level() >= PPC_CPU_EXT_LEVEL_ARCH_3_00)
  183|       |        {
  184|       |          // 128-bit VSX kernels; see ojph_simd_vsx.h
  185|       |          rev_convert = vsx_rev_convert;
  186|       |          rev_convert_nlt_type3 = vsx_rev_convert_nlt_type3;
  187|       |          irv_convert_to_integer = vsx_irv_convert_to_integer;
  188|       |          irv_convert_to_float = vsx_irv_convert_to_float;
  189|       |          irv_convert_to_integer_nlt_type3 =
  190|       |            vsx_irv_convert_to_integer_nlt_type3;
  191|       |          irv_convert_to_float_nlt_type3 =
  192|       |            vsx_irv_convert_to_float_nlt_type3;
  193|       |          rct_forward = vsx_rct_forward;
  194|       |          rct_backward = vsx_rct_backward;
  195|       |          ict_forward = vsx_ict_forward;
  196|       |          ict_backward = vsx_ict_backward;
  197|       |        }
  198|       |
  199|       |    #endif // !(defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  200|       |
  201|  6.74k|  #endif // !OJPH_DISABLE_SIMD
  202|       |
  203|       |#else // OJPH_ENABLE_WASM_SIMD
  204|       |
  205|       |        rev_convert = wasm_rev_convert;
  206|       |        rev_convert_nlt_type3 = wasm_rev_convert_nlt_type3;
  207|       |        irv_convert_to_integer = wasm_irv_convert_to_integer;
  208|       |        irv_convert_to_float = wasm_irv_convert_to_float;
  209|       |        irv_convert_to_integer_nlt_type3 = wasm_irv_convert_to_integer_nlt_type3;
  210|       |        irv_convert_to_float_nlt_type3 = wasm_irv_convert_to_float_nlt_type3;
  211|       |        rct_forward = wasm_rct_forward;
  212|       |        rct_backward = wasm_rct_backward;
  213|       |        ict_forward = wasm_ict_forward;
  214|       |        ict_backward = wasm_ict_backward;
  215|       |
  216|       |#endif // !OJPH_ENABLE_WASM_SIMD
  217|  6.74k|      });
  218|  6.74k|    }
ojph_colour.cpp:_ZZN4ojph5local31init_colour_transform_functionsEvENK3$_0clEv:
  112|      1|      std::call_once(colour_transform_functions_init_flag, []() {
  113|      1|#if !defined(OJPH_ENABLE_WASM_SIMD) || !defined(OJPH_EMSCRIPTEN)
  114|       |
  115|      1|        rev_convert = gen_rev_convert;
  116|      1|        rev_convert_nlt_type3 = gen_rev_convert_nlt_type3;
  117|      1|        irv_convert_to_integer = gen_irv_convert_to_integer;
  118|      1|        irv_convert_to_float = gen_irv_convert_to_float;
  119|      1|        irv_convert_to_integer_nlt_type3 = gen_irv_convert_to_integer_nlt_type3;
  120|      1|        irv_convert_to_float_nlt_type3 = gen_irv_convert_to_float_nlt_type3;
  121|      1|        rct_forward = gen_rct_forward;
  122|      1|        rct_backward = gen_rct_backward;
  123|      1|        ict_forward = gen_ict_forward;
  124|      1|        ict_backward = gen_ict_backward;
  125|       |
  126|      1|  #ifndef OJPH_DISABLE_SIMD
  127|       |
  128|      1|    #if (defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  129|       |
  130|      1|      #ifndef OJPH_DISABLE_SSE
  131|      1|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_SSE)
  ------------------
  |  Branch (131:13): [True: 1, False: 0]
  ------------------
  132|      1|        {
  133|      1|          ict_forward = sse_ict_forward;
  134|      1|          ict_backward = sse_ict_backward;
  135|      1|        }
  136|      1|      #endif // !OJPH_DISABLE_SSE
  137|       |
  138|      1|      #ifndef OJPH_DISABLE_SSE2
  139|      1|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_SSE2)
  ------------------
  |  Branch (139:13): [True: 1, False: 0]
  ------------------
  140|      1|        {
  141|      1|          rev_convert = sse2_rev_convert;
  142|      1|          rev_convert_nlt_type3 = sse2_rev_convert_nlt_type3;
  143|      1|          irv_convert_to_integer = sse2_irv_convert_to_integer;
  144|      1|          irv_convert_to_float = sse2_irv_convert_to_float;
  145|      1|          irv_convert_to_integer_nlt_type3 =
  146|      1|            sse2_irv_convert_to_integer_nlt_type3;
  147|      1|          irv_convert_to_float_nlt_type3 =
  148|      1|            sse2_irv_convert_to_float_nlt_type3;
  149|      1|          rct_forward = sse2_rct_forward;
  150|      1|          rct_backward = sse2_rct_backward;
  151|      1|        }
  152|      1|      #endif // !OJPH_DISABLE_SSE2
  153|       |
  154|      1|      #ifndef OJPH_DISABLE_AVX
  155|      1|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX)
  ------------------
  |  Branch (155:13): [True: 1, False: 0]
  ------------------
  156|      1|        {
  157|      1|          ict_forward = avx_ict_forward;
  158|      1|          ict_backward = avx_ict_backward;
  159|      1|        }
  160|      1|      #endif // !OJPH_DISABLE_AVX
  161|       |
  162|      1|      #ifndef OJPH_DISABLE_AVX2
  163|      1|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX2)
  ------------------
  |  Branch (163:13): [True: 1, False: 0]
  ------------------
  164|      1|        {
  165|      1|          rev_convert = avx2_rev_convert;
  166|      1|          rev_convert_nlt_type3 = avx2_rev_convert_nlt_type3;
  167|      1|          irv_convert_to_integer = avx2_irv_convert_to_integer;
  168|      1|          irv_convert_to_float = avx2_irv_convert_to_float;
  169|      1|          irv_convert_to_integer_nlt_type3 =
  170|      1|            avx2_irv_convert_to_integer_nlt_type3;
  171|      1|          irv_convert_to_float_nlt_type3 =
  172|      1|            avx2_irv_convert_to_float_nlt_type3;
  173|      1|          rct_forward = avx2_rct_forward;
  174|      1|          rct_backward = avx2_rct_backward;
  175|      1|        }
  176|      1|      #endif // !OJPH_DISABLE_AVX2
  177|       |
  178|       |    #elif defined(OJPH_ARCH_ARM)
  179|       |
  180|       |    #elif defined(OJPH_ARCH_PPC64LE)
  181|       |
  182|       |        if (get_cpu_ext_level() >= PPC_CPU_EXT_LEVEL_ARCH_3_00)
  183|       |        {
  184|       |          // 128-bit VSX kernels; see ojph_simd_vsx.h
  185|       |          rev_convert = vsx_rev_convert;
  186|       |          rev_convert_nlt_type3 = vsx_rev_convert_nlt_type3;
  187|       |          irv_convert_to_integer = vsx_irv_convert_to_integer;
  188|       |          irv_convert_to_float = vsx_irv_convert_to_float;
  189|       |          irv_convert_to_integer_nlt_type3 =
  190|       |            vsx_irv_convert_to_integer_nlt_type3;
  191|       |          irv_convert_to_float_nlt_type3 =
  192|       |            vsx_irv_convert_to_float_nlt_type3;
  193|       |          rct_forward = vsx_rct_forward;
  194|       |          rct_backward = vsx_rct_backward;
  195|       |          ict_forward = vsx_ict_forward;
  196|       |          ict_backward = vsx_ict_backward;
  197|       |        }
  198|       |
  199|       |    #endif // !(defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  200|       |
  201|      1|  #endif // !OJPH_DISABLE_SIMD
  202|       |
  203|       |#else // OJPH_ENABLE_WASM_SIMD
  204|       |
  205|       |        rev_convert = wasm_rev_convert;
  206|       |        rev_convert_nlt_type3 = wasm_rev_convert_nlt_type3;
  207|       |        irv_convert_to_integer = wasm_irv_convert_to_integer;
  208|       |        irv_convert_to_float = wasm_irv_convert_to_float;
  209|       |        irv_convert_to_integer_nlt_type3 = wasm_irv_convert_to_integer_nlt_type3;
  210|       |        irv_convert_to_float_nlt_type3 = wasm_irv_convert_to_float_nlt_type3;
  211|       |        rct_forward = wasm_rct_forward;
  212|       |        rct_backward = wasm_rct_backward;
  213|       |        ict_forward = wasm_ict_forward;
  214|       |        ict_backward = wasm_ict_backward;
  215|       |
  216|       |#endif // !OJPH_ENABLE_WASM_SIMD
  217|      1|      });

_ZN4ojph5local16avx_ict_backwardEPKfS2_S2_PfS3_S3_j:
   80|  2.63k|    {
   81|  2.63k|      __m256 gamma_cr2g = _mm256_set1_ps(CT_CNST::GAMMA_CR2G);
   82|  2.63k|      __m256 gamma_cb2g = _mm256_set1_ps(CT_CNST::GAMMA_CB2G);
   83|  2.63k|      __m256 gamma_cr2r = _mm256_set1_ps(CT_CNST::GAMMA_CR2R);
   84|  2.63k|      __m256 gamma_cb2b = _mm256_set1_ps(CT_CNST::GAMMA_CB2B);
   85|  11.1k|      for (int i = (repeat + 7) >> 3; i > 0; --i)
  ------------------
  |  Branch (85:39): [True: 8.53k, False: 2.63k]
  ------------------
   86|  8.53k|      {
   87|  8.53k|        __m256 my = _mm256_load_ps(y);
   88|  8.53k|        __m256 mcr = _mm256_load_ps(cr);
   89|  8.53k|        __m256 mcb = _mm256_load_ps(cb);
   90|  8.53k|        __m256 mg = _mm256_sub_ps(my, _mm256_mul_ps(gamma_cr2g, mcr));
   91|  8.53k|        _mm256_store_ps(g, _mm256_sub_ps(mg, _mm256_mul_ps(gamma_cb2g, mcb)));
   92|  8.53k|        _mm256_store_ps(r, _mm256_add_ps(my, _mm256_mul_ps(gamma_cr2r, mcr)));
   93|  8.53k|        _mm256_store_ps(b, _mm256_add_ps(my, _mm256_mul_ps(gamma_cb2b, mcb)));
   94|       |
   95|  8.53k|        y += 8; cb += 8; cr += 8;
   96|  8.53k|        r += 8; g += 8; b += 8;
   97|  8.53k|      }
   98|  2.63k|    }

_ZN4ojph5local16avx2_rev_convertEPKNS_8line_bufEjPS1_jlj:
   72|  1.85M|    {
   73|  1.85M|      if (src_line->flags & line_buf::LFT_32BIT)
  ------------------
  |  Branch (73:11): [True: 1.12M, False: 726k]
  ------------------
   74|  1.12M|      {
   75|  1.12M|        if (dst_line->flags & line_buf::LFT_32BIT)
  ------------------
  |  Branch (75:13): [True: 1.12M, False: 0]
  ------------------
   76|  1.12M|        {
   77|  1.12M|          const si32 *sp = src_line->i32 + src_line_offset;
   78|  1.12M|          si32 *dp = dst_line->i32 + dst_line_offset;
   79|  1.12M|          __m256i sh = _mm256_set1_epi32((si32)shift);
   80|  9.53M|          for (int i = (width + 7) >> 3; i > 0; --i, sp+=8, dp+=8)
  ------------------
  |  Branch (80:42): [True: 8.40M, False: 1.12M]
  ------------------
   81|  8.40M|          {
   82|  8.40M|            __m256i s = _mm256_loadu_si256((__m256i*)sp);
   83|  8.40M|            s = _mm256_add_epi32(s, sh);
   84|  8.40M|            _mm256_storeu_si256((__m256i*)dp, s);
   85|  8.40M|          }
   86|  1.12M|        }
   87|      0|        else
   88|      0|        {
   89|      0|          const si32 *sp = src_line->i32 + src_line_offset;
   90|      0|          si64 *dp = dst_line->i64 + dst_line_offset;
   91|      0|          __m256i sh = _mm256_set1_epi64x(shift);
   92|      0|          for (int i = (width + 7) >> 3; i > 0; --i, sp+=8, dp+=8)
  ------------------
  |  Branch (92:42): [True: 0, False: 0]
  ------------------
   93|      0|          {
   94|      0|            __m256i s, t;
   95|      0|            s = _mm256_loadu_si256((__m256i*)sp);
   96|       |
   97|      0|            t = _mm256_cvtepi32_epi64(_mm256_extracti128_si256(s, 0));
   98|      0|            t = _mm256_add_epi64(t, sh);
   99|      0|            _mm256_storeu_si256((__m256i*)dp, t);
  100|       |
  101|      0|            t = _mm256_cvtepi32_epi64(_mm256_extracti128_si256(s, 1));
  102|      0|            t = _mm256_add_epi64(t, sh);
  103|      0|            _mm256_storeu_si256((__m256i*)dp + 1, t);
  104|      0|          }
  105|      0|        }
  106|  1.12M|      }
  107|   726k|      else
  108|   726k|      {
  109|   726k|        assert(src_line->flags | line_buf::LFT_64BIT);
  110|   726k|        assert(dst_line->flags | line_buf::LFT_32BIT);
  111|   726k|        const si64 *sp = src_line->i64 + src_line_offset;
  112|   726k|        si32 *dp = dst_line->i32 + dst_line_offset;
  113|   726k|        __m256i low_bits = _mm256_set_epi64x(0, (si64)ULLONG_MAX,
  114|   726k|                                             0, (si64)ULLONG_MAX);
  115|   726k|        __m256i sh = _mm256_set1_epi64x(shift);
  116|  5.86M|        for (int i = (width + 7) >> 3; i > 0; --i, sp+=8, dp+=8)
  ------------------
  |  Branch (116:40): [True: 5.13M, False: 726k]
  ------------------
  117|  5.13M|        {
  118|  5.13M|          __m256i s, t;
  119|  5.13M|          s = _mm256_loadu_si256((__m256i*)sp);
  120|  5.13M|          s = _mm256_add_epi64(s, sh);
  121|       |
  122|  5.13M|          t = _mm256_shuffle_epi32(s, _MM_SHUFFLE(0, 0, 2, 0));
  123|  5.13M|          t = _mm256_and_si256(low_bits, t);
  124|       |
  125|  5.13M|          s = _mm256_loadu_si256((__m256i*)sp + 1);
  126|  5.13M|          s = _mm256_add_epi64(s, sh);
  127|       |
  128|  5.13M|          s = _mm256_shuffle_epi32(s, _MM_SHUFFLE(2, 0, 0, 0));
  129|  5.13M|          s = _mm256_andnot_si256(low_bits, s);
  130|       |
  131|  5.13M|          t = _mm256_or_si256(s, t);
  132|       |          t = _mm256_permute4x64_epi64(t, _MM_SHUFFLE(3, 1, 2, 0));
  133|  5.13M|          _mm256_storeu_si256((__m256i*)dp, t);
  134|  5.13M|        }
  135|   726k|      }
  136|  1.85M|    }
_ZN4ojph5local26avx2_rev_convert_nlt_type3EPKNS_8line_bufEjPS1_jlj:
  144|  9.13k|    {
  145|  9.13k|      if (src_line->flags & line_buf::LFT_32BIT)
  ------------------
  |  Branch (145:11): [True: 8.70k, False: 439]
  ------------------
  146|  8.70k|      {
  147|  8.70k|        if (dst_line->flags & line_buf::LFT_32BIT)
  ------------------
  |  Branch (147:13): [True: 8.70k, False: 0]
  ------------------
  148|  8.70k|        {
  149|  8.70k|          const si32 *sp = src_line->i32 + src_line_offset;
  150|  8.70k|          si32 *dp = dst_line->i32 + dst_line_offset;
  151|  8.70k|          __m256i sh = _mm256_set1_epi32((si32)(-shift));
  152|  8.70k|          __m256i zero = _mm256_setzero_si256();
  153|  37.9k|          for (int i = (width + 7) >> 3; i > 0; --i, sp += 8, dp += 8)
  ------------------
  |  Branch (153:42): [True: 29.2k, False: 8.70k]
  ------------------
  154|  29.2k|          {
  155|  29.2k|            __m256i s = _mm256_loadu_si256((__m256i*)sp);
  156|  29.2k|            __m256i c = _mm256_cmpgt_epi32(zero, s);  // 0xFFFFFFFF for -ve val
  157|  29.2k|            __m256i v_m_sh = _mm256_sub_epi32(sh, s); // - shift - value
  158|  29.2k|            v_m_sh = _mm256_and_si256(c, v_m_sh);     // keep only -shift-val
  159|  29.2k|            s = _mm256_andnot_si256(c, s);            // keep only +ve or 0
  160|  29.2k|            s = _mm256_or_si256(s, v_m_sh);           // combine
  161|  29.2k|            _mm256_storeu_si256((__m256i*)dp, s);
  162|  29.2k|          }
  163|  8.70k|        }
  164|      0|        else
  165|      0|        {
  166|      0|          const si32 *sp = src_line->i32 + src_line_offset;
  167|      0|          si64 *dp = dst_line->i64 + dst_line_offset;
  168|      0|          __m256i sh = _mm256_set1_epi64x(-shift);
  169|      0|          __m256i zero = _mm256_setzero_si256();
  170|      0|          for (int i = (width + 7) >> 3; i > 0; --i, sp += 8, dp += 8)
  ------------------
  |  Branch (170:42): [True: 0, False: 0]
  ------------------
  171|      0|          {
  172|      0|            __m256i s, t, u0, u1, c, v_m_sh;
  173|      0|            s = _mm256_loadu_si256((__m256i*)sp);
  174|       |
  175|      0|            t = _mm256_cmpgt_epi32(zero, s);      // find -ve 32bit -1
  176|      0|            u0 = _mm256_unpacklo_epi32(s, t);     // correct 64bit data
  177|      0|            c = _mm256_unpacklo_epi32(t, t);      // 64bit -1 for -ve value
  178|       |
  179|      0|            v_m_sh = _mm256_sub_epi64(sh, u0);    // - shift - value
  180|      0|            v_m_sh = _mm256_and_si256(c, v_m_sh); // keep only - shift - value
  181|      0|            u0 = _mm256_andnot_si256(c, u0);      // keep only +ve or 0
  182|      0|            u0 = _mm256_or_si256(u0, v_m_sh);     // combine
  183|       |
  184|      0|            u1 = _mm256_unpackhi_epi32(s, t);     // correct 64bit data
  185|      0|            c = _mm256_unpackhi_epi32(t, t);      // 64bit -1 for -ve value
  186|       |
  187|      0|            v_m_sh = _mm256_sub_epi64(sh, u1);    // - shift - value
  188|      0|            v_m_sh = _mm256_and_si256(c, v_m_sh); // keep only - shift - value
  189|      0|            u1 = _mm256_andnot_si256(c, u1);      // keep only +ve or 0
  190|      0|            u1 = _mm256_or_si256(u1, v_m_sh);     // combine
  191|       |
  192|      0|            t = _mm256_permute2x128_si256(u0, u1, (2 << 4) | 0);
  193|      0|            _mm256_storeu_si256((__m256i*)dp, t);
  194|       |
  195|      0|            t = _mm256_permute2x128_si256(u0, u1, (3 << 4) | 1);
  196|      0|            _mm256_storeu_si256((__m256i*)dp + 1, t);
  197|      0|          }
  198|      0|        }
  199|  8.70k|      }
  200|    439|      else
  201|    439|      {
  202|    439|        assert(src_line->flags | line_buf::LFT_64BIT);
  203|    439|        assert(dst_line->flags | line_buf::LFT_32BIT);
  204|    439|        const si64 *sp = src_line->i64 + src_line_offset;
  205|    439|        si32 *dp = dst_line->i32 + dst_line_offset;
  206|    439|        __m256i sh = _mm256_set1_epi64x(-shift);
  207|    439|        __m256i zero = _mm256_setzero_si256();
  208|    439|        __m256i half_mask = _mm256_set_epi64x(0, (si64)ULLONG_MAX,
  209|    439|                                              0, (si64)ULLONG_MAX);
  210|  19.0k|        for (int i = (width + 7) >> 3; i > 0; --i, sp += 8, dp += 8)
  ------------------
  |  Branch (210:40): [True: 18.6k, False: 439]
  ------------------
  211|  18.6k|        {
  212|       |          // s for source, t for target, p for positive, n for negative,
  213|       |          // m for mask, and tm for temp
  214|  18.6k|          __m256i s, t, p, n, m, tm;
  215|  18.6k|          s = _mm256_loadu_si256((__m256i*)sp);
  216|       |
  217|  18.6k|          m = _mm256_cmpgt_epi64(zero, s);    // 64b -1 for -ve value
  218|  18.6k|          tm = _mm256_sub_epi64(sh, s);       // - shift - value
  219|  18.6k|          n = _mm256_and_si256(m, tm);        // -ve
  220|  18.6k|          p = _mm256_andnot_si256(m, s);      // +ve
  221|  18.6k|          tm = _mm256_or_si256(n, p);
  222|  18.6k|          tm = _mm256_shuffle_epi32(tm, _MM_SHUFFLE(0, 0, 2, 0));
  223|  18.6k|          t = _mm256_and_si256(half_mask, tm);
  224|       |
  225|  18.6k|          s = _mm256_loadu_si256((__m256i*)sp + 1);
  226|  18.6k|          m = _mm256_cmpgt_epi64(zero, s);    // 64b -1 for -ve value
  227|  18.6k|          tm = _mm256_sub_epi64(sh, s);       // - shift - value
  228|  18.6k|          n = _mm256_and_si256(m, tm);        // -ve
  229|  18.6k|          p = _mm256_andnot_si256(m, s);      // +ve
  230|  18.6k|          tm = _mm256_or_si256(n, p);
  231|  18.6k|          tm = _mm256_shuffle_epi32(tm, _MM_SHUFFLE(2, 0, 0, 0));
  232|  18.6k|          tm = _mm256_andnot_si256(half_mask, tm);
  233|       |
  234|  18.6k|          t = _mm256_or_si256(t, tm);
  235|       |          t = _mm256_permute4x64_epi64(t, _MM_SHUFFLE(3, 1, 2, 0));
  236|  18.6k|           _mm256_storeu_si256((__m256i*)dp, t);
  237|  18.6k|        }
  238|    439|      }
  239|  9.13k|    }
_ZN4ojph5local27avx2_irv_convert_to_integerEPKNS_8line_bufEPS1_jjbj:
  336|  1.34M|    {
  337|  1.34M|      local_avx2_irv_convert_to_integer<false>(src_line, dst_line, 
  338|  1.34M|        dst_line_offset, bit_depth, is_signed, width);
  339|  1.34M|    }
_ZN4ojph5local37avx2_irv_convert_to_integer_nlt_type3EPKNS_8line_bufEPS1_jjbj:
  345|  10.9k|    {
  346|  10.9k|      local_avx2_irv_convert_to_integer<true>(src_line, dst_line, 
  347|  10.9k|        dst_line_offset, bit_depth, is_signed, width);
  348|  10.9k|    }
_ZN4ojph5local17avx2_rct_backwardEPKNS_8line_bufES3_S3_PS1_S4_S4_j:
  515|  3.48k|    {
  516|  3.48k|      assert((y->flags  & line_buf::LFT_INTEGER) &&
  517|  3.48k|             (cb->flags & line_buf::LFT_INTEGER) &&
  518|  3.48k|             (cr->flags & line_buf::LFT_INTEGER) &&
  519|  3.48k|             (r->flags  & line_buf::LFT_INTEGER) &&
  520|  3.48k|             (g->flags  & line_buf::LFT_INTEGER) &&
  521|  3.48k|             (b->flags  & line_buf::LFT_INTEGER));
  522|       |
  523|  3.48k|      if (y->flags & line_buf::LFT_32BIT)
  ------------------
  |  Branch (523:11): [True: 2.23k, False: 1.24k]
  ------------------
  524|  2.23k|      {
  525|  2.23k|        assert((y->flags  & line_buf::LFT_32BIT) &&
  526|  2.23k|               (cb->flags & line_buf::LFT_32BIT) &&
  527|  2.23k|               (cr->flags & line_buf::LFT_32BIT) &&
  528|  2.23k|               (r->flags  & line_buf::LFT_32BIT) &&
  529|  2.23k|               (g->flags  & line_buf::LFT_32BIT) &&
  530|  2.23k|               (b->flags  & line_buf::LFT_32BIT));
  531|  2.23k|        const si32 *yp = y->i32, *cbp = cb->i32, *crp = cr->i32;
  532|  2.23k|        si32 *rp = r->i32, *gp = g->i32, *bp = b->i32;
  533|  8.25k|        for (int i = (repeat + 7) >> 3; i > 0; --i)
  ------------------
  |  Branch (533:41): [True: 6.01k, False: 2.23k]
  ------------------
  534|  6.01k|        {
  535|  6.01k|          __m256i my  = _mm256_load_si256((__m256i*)yp);
  536|  6.01k|          __m256i mcb = _mm256_load_si256((__m256i*)cbp);
  537|  6.01k|          __m256i mcr = _mm256_load_si256((__m256i*)crp);
  538|       |
  539|  6.01k|          __m256i t = _mm256_add_epi32(mcb, mcr);
  540|  6.01k|          t = _mm256_sub_epi32(my, _mm256_srai_epi32(t, 2));
  541|  6.01k|          _mm256_store_si256((__m256i*)gp, t);
  542|  6.01k|          __m256i u = _mm256_add_epi32(mcb, t);
  543|  6.01k|          _mm256_store_si256((__m256i*)bp, u);
  544|  6.01k|          u = _mm256_add_epi32(mcr, t);
  545|  6.01k|          _mm256_store_si256((__m256i*)rp, u);
  546|       |
  547|  6.01k|          yp += 8; cbp += 8; crp += 8;
  548|  6.01k|          rp += 8; gp += 8; bp += 8;
  549|  6.01k|        }
  550|  2.23k|      }
  551|  1.24k|      else
  552|  1.24k|      {
  553|  1.24k|        assert((y->flags  & line_buf::LFT_64BIT) &&
  554|  1.24k|               (cb->flags & line_buf::LFT_64BIT) &&
  555|  1.24k|               (cr->flags & line_buf::LFT_64BIT) &&
  556|  1.24k|               (r->flags  & line_buf::LFT_32BIT) &&
  557|  1.24k|               (g->flags  & line_buf::LFT_32BIT) &&
  558|  1.24k|               (b->flags  & line_buf::LFT_32BIT));
  559|  1.24k|        __m256i v2 = _mm256_set1_epi64x(1ULL << (63 - 2));
  560|  1.24k|        __m256i low_bits = _mm256_set_epi64x(0, (si64)ULLONG_MAX,
  561|  1.24k|                                             0, (si64)ULLONG_MAX);
  562|  1.24k|        const si64 *yp = y->i64, *cbp = cb->i64, *crp = cr->i64;
  563|  1.24k|        si32 *rp = r->i32, *gp = g->i32, *bp = b->i32;
  564|  3.63k|        for (int i = (repeat + 7) >> 3; i > 0; --i)
  ------------------
  |  Branch (564:41): [True: 2.39k, False: 1.24k]
  ------------------
  565|  2.39k|        {
  566|  2.39k|          __m256i my, mcb, mcr, tr, tg, tb;
  567|  2.39k|          my  = _mm256_load_si256((__m256i*)yp);
  568|  2.39k|          mcb = _mm256_load_si256((__m256i*)cbp);
  569|  2.39k|          mcr = _mm256_load_si256((__m256i*)crp);
  570|       |
  571|  2.39k|          tg = _mm256_add_epi64(mcb, mcr);
  572|  2.39k|          tg = _mm256_sub_epi64(my, avx2_mm256_srai_epi64(tg, 2, v2));
  573|  2.39k|          tb = _mm256_add_epi64(mcb, tg);
  574|  2.39k|          tr = _mm256_add_epi64(mcr, tg);
  575|       |
  576|  2.39k|          __m256i mr, mg, mb;
  577|  2.39k|          mr = _mm256_shuffle_epi32(tr, _MM_SHUFFLE(0, 0, 2, 0));
  578|  2.39k|          mr = _mm256_and_si256(low_bits, mr);
  579|  2.39k|          mg = _mm256_shuffle_epi32(tg, _MM_SHUFFLE(0, 0, 2, 0));
  580|  2.39k|          mg = _mm256_and_si256(low_bits, mg);
  581|  2.39k|          mb = _mm256_shuffle_epi32(tb, _MM_SHUFFLE(0, 0, 2, 0));
  582|  2.39k|          mb = _mm256_and_si256(low_bits, mb);
  583|       |
  584|  2.39k|          yp += 4; cbp += 4; crp += 4;
  585|       |
  586|  2.39k|          my  = _mm256_load_si256((__m256i*)yp);
  587|  2.39k|          mcb = _mm256_load_si256((__m256i*)cbp);
  588|  2.39k|          mcr = _mm256_load_si256((__m256i*)crp);
  589|       |
  590|  2.39k|          tg = _mm256_add_epi64(mcb, mcr);
  591|  2.39k|          tg = _mm256_sub_epi64(my, avx2_mm256_srai_epi64(tg, 2, v2));
  592|  2.39k|          tb = _mm256_add_epi64(mcb, tg);
  593|  2.39k|          tr = _mm256_add_epi64(mcr, tg);
  594|       |
  595|  2.39k|          tr = _mm256_shuffle_epi32(tr, _MM_SHUFFLE(2, 0, 0, 0));
  596|  2.39k|          tr = _mm256_andnot_si256(low_bits, tr);
  597|  2.39k|          mr = _mm256_or_si256(mr, tr);
  598|  2.39k|          mr = _mm256_permute4x64_epi64(mr, _MM_SHUFFLE(3, 1, 2, 0));
  599|       |
  600|  2.39k|          tg = _mm256_shuffle_epi32(tg, _MM_SHUFFLE(2, 0, 0, 0));
  601|  2.39k|          tg = _mm256_andnot_si256(low_bits, tg);
  602|  2.39k|          mg = _mm256_or_si256(mg, tg);
  603|  2.39k|          mg = _mm256_permute4x64_epi64(mg, _MM_SHUFFLE(3, 1, 2, 0));
  604|       |
  605|  2.39k|          tb = _mm256_shuffle_epi32(tb, _MM_SHUFFLE(2, 0, 0, 0));
  606|  2.39k|          tb = _mm256_andnot_si256(low_bits, tb);
  607|  2.39k|          mb = _mm256_or_si256(mb, tb);
  608|  2.39k|          mb = _mm256_permute4x64_epi64(mb, _MM_SHUFFLE(3, 1, 2, 0));
  609|       |
  610|  2.39k|          _mm256_store_si256((__m256i*)rp, mr);
  611|  2.39k|          _mm256_store_si256((__m256i*)gp, mg);
  612|  2.39k|          _mm256_store_si256((__m256i*)bp, mb);
  613|       |
  614|  2.39k|          yp += 4; cbp += 4; crp += 4;
  615|  2.39k|          rp += 8; gp += 8; bp += 8;
  616|  2.39k|        }
  617|  1.24k|      }
  618|  3.48k|    }
ojph_colour_avx2.cpp:_ZN4ojph5localL21avx2_mm256_srai_epi64EDv4_xiS1_:
   57|  4.78k|    {
   58|       |      // note than m must be obtained using
   59|       |      // __m256i m = _mm256_set1_epi64x(1ULL << (63 - amt));
   60|  4.78k|      __m256i x = _mm256_srli_epi64(a, amt);
   61|  4.78k|      x = _mm256_xor_si256(x, m);
   62|  4.78k|      __m256i result = _mm256_sub_epi64(x, m);
   63|  4.78k|      return result;
   64|  4.78k|    }
ojph_colour_avx2.cpp:_ZN4ojph5localL33local_avx2_irv_convert_to_integerILb0EEEvPKNS_8line_bufEPS2_jjbj:
  273|  1.34M|    {
  274|  1.34M|      assert((src_line->flags & line_buf::LFT_32BIT) &&
  275|  1.34M|             (src_line->flags & line_buf::LFT_INTEGER) == 0 &&
  276|  1.34M|             (dst_line->flags & line_buf::LFT_32BIT) &&
  277|  1.34M|             (dst_line->flags & line_buf::LFT_INTEGER));
  278|       |
  279|  1.34M|      assert(bit_depth <= 32);
  280|  1.34M|      const float* sp = src_line->f32;
  281|  1.34M|      si32* dp = dst_line->i32 + dst_line_offset;
  282|       |      // There is the possibility that converting to integer will
  283|       |      // exceed the dynamic range of 32bit integer; therefore, care must be
  284|       |      // exercised.
  285|       |      // We look if the floating point number is outside the half-closed
  286|       |      // interval [-0.5f, 0.5f). If so, we limit the resulting integer
  287|       |      // to the maximum/minimum that number supports.
  288|  1.34M|      si32 neg_limit = (si32)INT_MIN >> (32 - bit_depth);
  289|  1.34M|      __m256 mul = _mm256_set1_ps((float)(1ull << bit_depth));
  290|  1.34M|      __m256 fl_up_lim = _mm256_set1_ps(-(float)neg_limit);  // val < upper
  291|  1.34M|      __m256 fl_low_lim = _mm256_set1_ps((float)neg_limit);  // val >= lower
  292|  1.34M|      __m256i s32_up_lim = _mm256_set1_epi32(INT_MAX >> (32 - bit_depth));
  293|  1.34M|      __m256i s32_low_lim = _mm256_set1_epi32(INT_MIN >> (32 - bit_depth));
  294|       |
  295|  1.34M|      if (is_signed)
  ------------------
  |  Branch (295:11): [True: 3.69k, False: 1.33M]
  ------------------
  296|  3.69k|      {
  297|  3.69k|        __m256i zero = _mm256_setzero_si256();
  298|  3.69k|        __m256i bias = 
  299|  3.69k|          _mm256_set1_epi32(-(si32)((1ULL << (bit_depth - 1)) + 1));
  300|   137k|        for (int i = (int)width; i > 0; i -= 8, sp += 8, dp += 8) {
  ------------------
  |  Branch (300:34): [True: 133k, False: 3.69k]
  ------------------
  301|   133k|          __m256 t = _mm256_loadu_ps(sp);
  302|   133k|          t = _mm256_mul_ps(t, mul);
  303|   133k|          __m256i u = _mm256_cvtps_epi32(t);
  304|   133k|          u = ojph_mm256_max_ge_epi32(u, s32_low_lim, t, fl_low_lim);
  305|   133k|          u = ojph_mm256_min_lt_epi32(u,  s32_up_lim, t,  fl_up_lim);
  306|   133k|          if (NLT_TYPE3)
  ------------------
  |  Branch (306:15): [Folded, False: 133k]
  ------------------
  307|      0|          {
  308|      0|            __m256i c = _mm256_cmpgt_epi32(zero, u); // 0xFFFFFFFF for -ve val
  309|      0|            __m256i neg = _mm256_sub_epi32(bias, u); // -bias -value
  310|      0|            neg = _mm256_and_si256(c, neg);          // keep only - bias - val
  311|      0|            u = _mm256_andnot_si256(c, u);           // keep only +ve or 0
  312|      0|            u = _mm256_or_si256(neg, u);             // combine
  313|      0|          }
  314|   133k|          _mm256_storeu_si256((__m256i*)dp, u);
  315|   133k|        }
  316|  3.69k|      }
  317|  1.33M|      else
  318|  1.33M|      {
  319|  1.33M|        __m256i half = _mm256_set1_epi32((si32)(1ULL << (bit_depth - 1)));
  320|  4.71M|        for (int i = (int)width; i > 0; i -= 8, sp += 8, dp += 8) {
  ------------------
  |  Branch (320:34): [True: 3.37M, False: 1.33M]
  ------------------
  321|  3.37M|          __m256 t = _mm256_loadu_ps(sp);
  322|  3.37M|          t = _mm256_mul_ps(t, mul);
  323|  3.37M|          __m256i u = _mm256_cvtps_epi32(t);
  324|  3.37M|          u = ojph_mm256_max_ge_epi32(u, s32_low_lim, t, fl_low_lim);
  325|  3.37M|          u = ojph_mm256_min_lt_epi32(u,  s32_up_lim, t,  fl_up_lim);
  326|  3.37M|          u = _mm256_add_epi32(u, half);
  327|  3.37M|          _mm256_storeu_si256((__m256i*)dp, u);
  328|  3.37M|        }
  329|  1.33M|      }
  330|  1.34M|    }
ojph_colour_avx2.cpp:_ZN4ojph5localL23ojph_mm256_max_ge_epi32EDv4_xS1_Dv8_fS2_:
  244|  3.55M|    {
  245|       |      // We must use _CMP_NLT_UQ or _CMP_GE_OQ, _CMP_GE_OS, or _CMP_NLT_US
  246|       |      // It is not clear to me which to use
  247|       |      __m256 ct = _mm256_cmp_ps(x, y, _CMP_NLT_UQ); // 0xFFFFFFFF for x >= y
  248|  3.55M|      __m256i c = _mm256_castps_si256(ct);   // does not generate any code
  249|  3.55M|      __m256i d = _mm256_and_si256(c, a);    // keep only a, where x >= y
  250|  3.55M|      __m256i e = _mm256_andnot_si256(c, b); // keep only b, where x <  y
  251|  3.55M|      return _mm256_or_si256(d, e);          // combine
  252|  3.55M|    }
ojph_colour_avx2.cpp:_ZN4ojph5localL23ojph_mm256_min_lt_epi32EDv4_xS1_Dv8_fS2_:
  257|  3.55M|    {
  258|       |      // We must use _CMP_LT_OQ or _CMP_NGE_UQ, _CMP_LT_OS, or _CMP_NGE_US
  259|       |      // It is not clear to me which to use
  260|       |      __m256 ct = _mm256_cmp_ps(x, y, _CMP_NGE_UQ); // 0xFFFFFFFF for x < y
  261|  3.55M|      __m256i c = _mm256_castps_si256(ct);   // does not generate any code
  262|  3.55M|      __m256i d = _mm256_and_si256(c, a);    // keep only a, where x <  y
  263|  3.55M|      __m256i e = _mm256_andnot_si256(c, b); // keep only b, where x >= y
  264|  3.55M|      return _mm256_or_si256(d, e);          // combine
  265|  3.55M|    }
ojph_colour_avx2.cpp:_ZN4ojph5localL33local_avx2_irv_convert_to_integerILb1EEEvPKNS_8line_bufEPS2_jjbj:
  273|  10.9k|    {
  274|  10.9k|      assert((src_line->flags & line_buf::LFT_32BIT) &&
  275|  10.9k|             (src_line->flags & line_buf::LFT_INTEGER) == 0 &&
  276|  10.9k|             (dst_line->flags & line_buf::LFT_32BIT) &&
  277|  10.9k|             (dst_line->flags & line_buf::LFT_INTEGER));
  278|       |
  279|  10.9k|      assert(bit_depth <= 32);
  280|  10.9k|      const float* sp = src_line->f32;
  281|  10.9k|      si32* dp = dst_line->i32 + dst_line_offset;
  282|       |      // There is the possibility that converting to integer will
  283|       |      // exceed the dynamic range of 32bit integer; therefore, care must be
  284|       |      // exercised.
  285|       |      // We look if the floating point number is outside the half-closed
  286|       |      // interval [-0.5f, 0.5f). If so, we limit the resulting integer
  287|       |      // to the maximum/minimum that number supports.
  288|  10.9k|      si32 neg_limit = (si32)INT_MIN >> (32 - bit_depth);
  289|  10.9k|      __m256 mul = _mm256_set1_ps((float)(1ull << bit_depth));
  290|  10.9k|      __m256 fl_up_lim = _mm256_set1_ps(-(float)neg_limit);  // val < upper
  291|  10.9k|      __m256 fl_low_lim = _mm256_set1_ps((float)neg_limit);  // val >= lower
  292|  10.9k|      __m256i s32_up_lim = _mm256_set1_epi32(INT_MAX >> (32 - bit_depth));
  293|  10.9k|      __m256i s32_low_lim = _mm256_set1_epi32(INT_MIN >> (32 - bit_depth));
  294|       |
  295|  10.9k|      if (is_signed)
  ------------------
  |  Branch (295:11): [True: 8.54k, False: 2.40k]
  ------------------
  296|  8.54k|      {
  297|  8.54k|        __m256i zero = _mm256_setzero_si256();
  298|  8.54k|        __m256i bias = 
  299|  8.54k|          _mm256_set1_epi32(-(si32)((1ULL << (bit_depth - 1)) + 1));
  300|  40.4k|        for (int i = (int)width; i > 0; i -= 8, sp += 8, dp += 8) {
  ------------------
  |  Branch (300:34): [True: 31.8k, False: 8.54k]
  ------------------
  301|  31.8k|          __m256 t = _mm256_loadu_ps(sp);
  302|  31.8k|          t = _mm256_mul_ps(t, mul);
  303|  31.8k|          __m256i u = _mm256_cvtps_epi32(t);
  304|  31.8k|          u = ojph_mm256_max_ge_epi32(u, s32_low_lim, t, fl_low_lim);
  305|  31.8k|          u = ojph_mm256_min_lt_epi32(u,  s32_up_lim, t,  fl_up_lim);
  306|  31.8k|          if (NLT_TYPE3)
  ------------------
  |  Branch (306:15): [True: 31.8k, Folded]
  ------------------
  307|  31.8k|          {
  308|  31.8k|            __m256i c = _mm256_cmpgt_epi32(zero, u); // 0xFFFFFFFF for -ve val
  309|  31.8k|            __m256i neg = _mm256_sub_epi32(bias, u); // -bias -value
  310|  31.8k|            neg = _mm256_and_si256(c, neg);          // keep only - bias - val
  311|  31.8k|            u = _mm256_andnot_si256(c, u);           // keep only +ve or 0
  312|  31.8k|            u = _mm256_or_si256(neg, u);             // combine
  313|  31.8k|          }
  314|  31.8k|          _mm256_storeu_si256((__m256i*)dp, u);
  315|  31.8k|        }
  316|  8.54k|      }
  317|  2.40k|      else
  318|  2.40k|      {
  319|  2.40k|        __m256i half = _mm256_set1_epi32((si32)(1ULL << (bit_depth - 1)));
  320|  12.9k|        for (int i = (int)width; i > 0; i -= 8, sp += 8, dp += 8) {
  ------------------
  |  Branch (320:34): [True: 10.5k, False: 2.40k]
  ------------------
  321|  10.5k|          __m256 t = _mm256_loadu_ps(sp);
  322|  10.5k|          t = _mm256_mul_ps(t, mul);
  323|  10.5k|          __m256i u = _mm256_cvtps_epi32(t);
  324|  10.5k|          u = ojph_mm256_max_ge_epi32(u, s32_low_lim, t, fl_low_lim);
  325|  10.5k|          u = ojph_mm256_min_lt_epi32(u,  s32_up_lim, t,  fl_up_lim);
  326|  10.5k|          u = _mm256_add_epi32(u, half);
  327|  10.5k|          _mm256_storeu_si256((__m256i*)dp, u);
  328|  10.5k|        }
  329|  2.40k|      }
  330|  10.9k|    }

_ZN4ojph5local32init_wavelet_transform_functionsEv:
   99|  6.74k|    {
  100|  6.74k|      static std::once_flag wavelet_transform_functions_init_flag;
  101|  6.74k|      std::call_once(wavelet_transform_functions_init_flag, [](){
  102|  6.74k|#if !defined(OJPH_ENABLE_WASM_SIMD) || !defined(OJPH_EMSCRIPTEN)
  103|       |
  104|  6.74k|        rev_vert_step             = gen_rev_vert_step;
  105|  6.74k|        rev_horz_ana              = gen_rev_horz_ana;
  106|  6.74k|        rev_horz_syn              = gen_rev_horz_syn;
  107|       |
  108|  6.74k|        irv_vert_step             = gen_irv_vert_step;
  109|  6.74k|        irv_vert_times_K          = gen_irv_vert_times_K;
  110|  6.74k|        irv_horz_ana              = gen_irv_horz_ana;
  111|  6.74k|        irv_horz_syn              = gen_irv_horz_syn;
  112|       |
  113|  6.74k|  #ifndef OJPH_DISABLE_SIMD
  114|       |
  115|  6.74k|    #if (defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  116|       |
  117|  6.74k|      #ifndef OJPH_DISABLE_SSE
  118|  6.74k|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_SSE)
  119|  6.74k|        {
  120|  6.74k|          irv_vert_step             = sse_irv_vert_step;
  121|  6.74k|          irv_vert_times_K          = sse_irv_vert_times_K;
  122|  6.74k|          irv_horz_ana              = sse_irv_horz_ana;
  123|  6.74k|          irv_horz_syn              = sse_irv_horz_syn;
  124|  6.74k|        }
  125|  6.74k|      #endif // !OJPH_DISABLE_SSE
  126|       |
  127|  6.74k|      #ifndef OJPH_DISABLE_SSE2
  128|  6.74k|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_SSE2)
  129|  6.74k|        {
  130|  6.74k|          rev_vert_step             = sse2_rev_vert_step;
  131|  6.74k|          rev_horz_ana              = sse2_rev_horz_ana;
  132|  6.74k|          rev_horz_syn              = sse2_rev_horz_syn;
  133|  6.74k|        }
  134|  6.74k|      #endif // !OJPH_DISABLE_SSE2
  135|       |
  136|  6.74k|      #ifndef OJPH_DISABLE_AVX
  137|  6.74k|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX)
  138|  6.74k|        {
  139|  6.74k|          irv_vert_step             = avx_irv_vert_step;
  140|  6.74k|          irv_vert_times_K          = avx_irv_vert_times_K;
  141|  6.74k|          irv_horz_ana              = avx_irv_horz_ana;      
  142|  6.74k|          irv_horz_syn              = avx_irv_horz_syn;
  143|  6.74k|        }
  144|  6.74k|      #endif // !OJPH_DISABLE_AVX
  145|       |
  146|  6.74k|      #ifndef OJPH_DISABLE_AVX2
  147|  6.74k|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX2)
  148|  6.74k|        {
  149|  6.74k|          rev_vert_step             = avx2_rev_vert_step;
  150|  6.74k|          rev_horz_ana              = avx2_rev_horz_ana;
  151|  6.74k|          rev_horz_syn              = avx2_rev_horz_syn;
  152|  6.74k|        }
  153|  6.74k|      #endif // !OJPH_DISABLE_AVX2
  154|       |
  155|  6.74k|      #if (defined(OJPH_ARCH_X86_64) && !defined(OJPH_DISABLE_AVX512))
  156|  6.74k|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX512)
  157|  6.74k|        {
  158|       |          // rev_vert_step             = avx512_rev_vert_step;
  159|       |          // rev_horz_ana              = avx512_rev_horz_ana;
  160|       |          // rev_horz_syn              = avx512_rev_horz_syn;
  161|       |
  162|  6.74k|          irv_vert_step             = avx512_irv_vert_step;
  163|  6.74k|          irv_vert_times_K          = avx512_irv_vert_times_K;
  164|  6.74k|          irv_horz_ana              = avx512_irv_horz_ana;
  165|  6.74k|          irv_horz_syn              = avx512_irv_horz_syn;
  166|  6.74k|        }
  167|  6.74k|      #endif // !OJPH_DISABLE_AVX512
  168|       |    
  169|       |    #elif defined(OJPH_ARCH_ARM)
  170|       |
  171|       |    #elif defined(OJPH_ARCH_PPC64LE)
  172|       |
  173|       |        if (get_cpu_ext_level() >= PPC_CPU_EXT_LEVEL_ARCH_3_00)
  174|       |        {
  175|       |          // 128-bit VSX kernels; see ojph_simd_vsx.h
  176|       |          rev_vert_step             = vsx_rev_vert_step;
  177|       |          rev_horz_ana              = vsx_rev_horz_ana;
  178|       |          rev_horz_syn              = vsx_rev_horz_syn;
  179|       |
  180|       |          irv_vert_step             = vsx_irv_vert_step;
  181|       |          irv_vert_times_K          = vsx_irv_vert_times_K;
  182|       |          irv_horz_ana              = vsx_irv_horz_ana;
  183|       |          irv_horz_syn              = vsx_irv_horz_syn;
  184|       |        }
  185|       |
  186|       |    #endif // !(defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  187|       |
  188|  6.74k|  #endif // !OJPH_DISABLE_SIMD
  189|       |
  190|       |#else // OJPH_ENABLE_WASM_SIMD
  191|       |        rev_vert_step             = wasm_rev_vert_step;
  192|       |        rev_horz_ana              = wasm_rev_horz_ana;
  193|       |        rev_horz_syn              = wasm_rev_horz_syn;
  194|       |        
  195|       |        irv_vert_step             = wasm_irv_vert_step;
  196|       |        irv_vert_times_K          = wasm_irv_vert_times_K;
  197|       |        irv_horz_ana              = wasm_irv_horz_ana;
  198|       |        irv_horz_syn              = wasm_irv_horz_syn;
  199|       |#endif // !OJPH_ENABLE_WASM_SIMD
  200|  6.74k|      });
  201|  6.74k|    }
ojph_transform.cpp:_ZZN4ojph5local32init_wavelet_transform_functionsEvENK3$_0clEv:
  101|      1|      std::call_once(wavelet_transform_functions_init_flag, [](){
  102|      1|#if !defined(OJPH_ENABLE_WASM_SIMD) || !defined(OJPH_EMSCRIPTEN)
  103|       |
  104|      1|        rev_vert_step             = gen_rev_vert_step;
  105|      1|        rev_horz_ana              = gen_rev_horz_ana;
  106|      1|        rev_horz_syn              = gen_rev_horz_syn;
  107|       |
  108|      1|        irv_vert_step             = gen_irv_vert_step;
  109|      1|        irv_vert_times_K          = gen_irv_vert_times_K;
  110|      1|        irv_horz_ana              = gen_irv_horz_ana;
  111|      1|        irv_horz_syn              = gen_irv_horz_syn;
  112|       |
  113|      1|  #ifndef OJPH_DISABLE_SIMD
  114|       |
  115|      1|    #if (defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  116|       |
  117|      1|      #ifndef OJPH_DISABLE_SSE
  118|      1|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_SSE)
  ------------------
  |  Branch (118:13): [True: 1, False: 0]
  ------------------
  119|      1|        {
  120|      1|          irv_vert_step             = sse_irv_vert_step;
  121|      1|          irv_vert_times_K          = sse_irv_vert_times_K;
  122|      1|          irv_horz_ana              = sse_irv_horz_ana;
  123|      1|          irv_horz_syn              = sse_irv_horz_syn;
  124|      1|        }
  125|      1|      #endif // !OJPH_DISABLE_SSE
  126|       |
  127|      1|      #ifndef OJPH_DISABLE_SSE2
  128|      1|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_SSE2)
  ------------------
  |  Branch (128:13): [True: 1, False: 0]
  ------------------
  129|      1|        {
  130|      1|          rev_vert_step             = sse2_rev_vert_step;
  131|      1|          rev_horz_ana              = sse2_rev_horz_ana;
  132|      1|          rev_horz_syn              = sse2_rev_horz_syn;
  133|      1|        }
  134|      1|      #endif // !OJPH_DISABLE_SSE2
  135|       |
  136|      1|      #ifndef OJPH_DISABLE_AVX
  137|      1|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX)
  ------------------
  |  Branch (137:13): [True: 1, False: 0]
  ------------------
  138|      1|        {
  139|      1|          irv_vert_step             = avx_irv_vert_step;
  140|      1|          irv_vert_times_K          = avx_irv_vert_times_K;
  141|      1|          irv_horz_ana              = avx_irv_horz_ana;      
  142|      1|          irv_horz_syn              = avx_irv_horz_syn;
  143|      1|        }
  144|      1|      #endif // !OJPH_DISABLE_AVX
  145|       |
  146|      1|      #ifndef OJPH_DISABLE_AVX2
  147|      1|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX2)
  ------------------
  |  Branch (147:13): [True: 1, False: 0]
  ------------------
  148|      1|        {
  149|      1|          rev_vert_step             = avx2_rev_vert_step;
  150|      1|          rev_horz_ana              = avx2_rev_horz_ana;
  151|      1|          rev_horz_syn              = avx2_rev_horz_syn;
  152|      1|        }
  153|      1|      #endif // !OJPH_DISABLE_AVX2
  154|       |
  155|      1|      #if (defined(OJPH_ARCH_X86_64) && !defined(OJPH_DISABLE_AVX512))
  156|      1|        if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX512)
  ------------------
  |  Branch (156:13): [True: 0, False: 1]
  ------------------
  157|      0|        {
  158|       |          // rev_vert_step             = avx512_rev_vert_step;
  159|       |          // rev_horz_ana              = avx512_rev_horz_ana;
  160|       |          // rev_horz_syn              = avx512_rev_horz_syn;
  161|       |
  162|      0|          irv_vert_step             = avx512_irv_vert_step;
  163|      0|          irv_vert_times_K          = avx512_irv_vert_times_K;
  164|      0|          irv_horz_ana              = avx512_irv_horz_ana;
  165|      0|          irv_horz_syn              = avx512_irv_horz_syn;
  166|      0|        }
  167|      1|      #endif // !OJPH_DISABLE_AVX512
  168|       |    
  169|       |    #elif defined(OJPH_ARCH_ARM)
  170|       |
  171|       |    #elif defined(OJPH_ARCH_PPC64LE)
  172|       |
  173|       |        if (get_cpu_ext_level() >= PPC_CPU_EXT_LEVEL_ARCH_3_00)
  174|       |        {
  175|       |          // 128-bit VSX kernels; see ojph_simd_vsx.h
  176|       |          rev_vert_step             = vsx_rev_vert_step;
  177|       |          rev_horz_ana              = vsx_rev_horz_ana;
  178|       |          rev_horz_syn              = vsx_rev_horz_syn;
  179|       |
  180|       |          irv_vert_step             = vsx_irv_vert_step;
  181|       |          irv_vert_times_K          = vsx_irv_vert_times_K;
  182|       |          irv_horz_ana              = vsx_irv_horz_ana;
  183|       |          irv_horz_syn              = vsx_irv_horz_syn;
  184|       |        }
  185|       |
  186|       |    #endif // !(defined(OJPH_ARCH_X86_64) || defined(OJPH_ARCH_I386))
  187|       |
  188|      1|  #endif // !OJPH_DISABLE_SIMD
  189|       |
  190|       |#else // OJPH_ENABLE_WASM_SIMD
  191|       |        rev_vert_step             = wasm_rev_vert_step;
  192|       |        rev_horz_ana              = wasm_rev_horz_ana;
  193|       |        rev_horz_syn              = wasm_rev_horz_syn;
  194|       |        
  195|       |        irv_vert_step             = wasm_irv_vert_step;
  196|       |        irv_vert_times_K          = wasm_irv_vert_times_K;
  197|       |        irv_horz_ana              = wasm_irv_horz_ana;
  198|       |        irv_horz_syn              = wasm_irv_horz_syn;
  199|       |#endif // !OJPH_ENABLE_WASM_SIMD
  200|      1|      });

_ZN4ojph5local17avx_irv_vert_stepEPKNS0_12lifting_stepEPKNS_8line_bufES6_S6_jb:
  104|  3.23M|    {
  105|  3.23M|      float a = s->irv.Aatk;
  106|  3.23M|      if (synthesis)
  ------------------
  |  Branch (106:11): [True: 3.23M, False: 0]
  ------------------
  107|  3.23M|        a = -a;
  108|       |
  109|  3.23M|      __m256 factor = _mm256_set1_ps(a);
  110|       |
  111|  3.23M|      float* dst = aug->f32;
  112|  3.23M|      const float* src1 = sig->f32, * src2 = other->f32;
  113|  3.23M|      int i = (int)repeat;
  114|  11.4M|      for ( ; i > 0; i -= 8, dst += 8, src1 += 8, src2 += 8)
  ------------------
  |  Branch (114:15): [True: 8.25M, False: 3.23M]
  ------------------
  115|  8.25M|      {
  116|  8.25M|        __m256 s1 = _mm256_load_ps(src1);
  117|  8.25M|        __m256 s2 = _mm256_load_ps(src2);
  118|  8.25M|        __m256 d = _mm256_load_ps(dst);
  119|  8.25M|        d = _mm256_add_ps(d, _mm256_mul_ps(factor, _mm256_add_ps(s1, s2)));
  120|  8.25M|        _mm256_store_ps(dst, d);
  121|  8.25M|      }
  122|  3.23M|    }
_ZN4ojph5local20avx_irv_vert_times_KEfPKNS_8line_bufEj:
  126|  1.61M|    {
  127|  1.61M|      avx_multiply_const(aug->f32, K, (int)repeat);
  128|  1.61M|    }
_ZN4ojph5local16avx_irv_horz_synEPKNS0_9param_atkEPKNS_8line_bufES6_S6_jb:
  212|  1.39M|    {
  213|  1.39M|      if (width > 1)
  ------------------
  |  Branch (213:11): [True: 232k, False: 1.16M]
  ------------------
  214|   232k|      {
  215|   232k|        bool ev = even;
  216|   232k|        float* oth = hsrc->f32, * aug = lsrc->f32;
  217|   232k|        ui32 aug_width = (width + (even ? 1 : 0)) >> 1;  // low pass
  ------------------
  |  Branch (217:36): [True: 174k, False: 58.1k]
  ------------------
  218|   232k|        ui32 oth_width = (width + (even ? 0 : 1)) >> 1;  // high pass
  ------------------
  |  Branch (218:36): [True: 174k, False: 58.1k]
  ------------------
  219|       |
  220|   232k|        { // multiply by K or 1/K
  221|   232k|          float K = atk->get_K();
  222|   232k|          float K_inv = 1.0f / K;
  223|   232k|          avx_multiply_const(aug, K, (int)aug_width);
  224|   232k|          avx_multiply_const(oth, K_inv, (int)oth_width);
  225|   232k|        }
  226|       |
  227|       |        // the actual horizontal transform
  228|   232k|        ui32 num_steps = atk->get_num_steps();
  229|  1.15M|        for (ui32 j = 0; j < num_steps; ++j)
  ------------------
  |  Branch (229:26): [True: 919k, False: 232k]
  ------------------
  230|   919k|        {
  231|   919k|          const lifting_step* s = atk->get_step(j);
  232|   919k|          const float a = s->irv.Aatk;
  233|       |
  234|       |          // extension
  235|   919k|          oth[-1] = oth[0];
  236|   919k|          oth[oth_width] = oth[oth_width - 1];
  237|       |          // lifting step
  238|   919k|          const float* sp = oth;
  239|   919k|          float* dp = aug;
  240|   919k|          int i = (int)aug_width;
  241|   919k|          __m256 f = _mm256_set1_ps(a);
  242|   919k|          if (ev)
  ------------------
  |  Branch (242:15): [True: 459k, False: 459k]
  ------------------
  243|   459k|          {
  244|  3.63M|            for (; i > 0; i -= 8, sp += 8, dp += 8)
  ------------------
  |  Branch (244:20): [True: 3.17M, False: 459k]
  ------------------
  245|  3.17M|            {
  246|  3.17M|              __m256 m = _mm256_load_ps(sp);
  247|  3.17M|              __m256 n = _mm256_loadu_ps(sp - 1);
  248|  3.17M|              __m256 p = _mm256_load_ps(dp);
  249|  3.17M|              p = _mm256_sub_ps(p, _mm256_mul_ps(f, _mm256_add_ps(m, n)));
  250|  3.17M|              _mm256_store_ps(dp, p);
  251|  3.17M|            }
  252|   459k|          }
  253|   459k|          else
  254|   459k|          {
  255|  3.57M|            for (; i > 0; i -= 8, sp += 8, dp += 8)
  ------------------
  |  Branch (255:20): [True: 3.11M, False: 459k]
  ------------------
  256|  3.11M|            {
  257|  3.11M|              __m256 m = _mm256_load_ps(sp);
  258|  3.11M|              __m256 n = _mm256_loadu_ps(sp + 1);
  259|  3.11M|              __m256 p = _mm256_load_ps(dp);
  260|  3.11M|              p = _mm256_sub_ps(p, _mm256_mul_ps(f, _mm256_add_ps(m, n)));
  261|  3.11M|              _mm256_store_ps(dp, p);
  262|  3.11M|            }
  263|   459k|          }
  264|       |
  265|       |          // swap buffers
  266|   919k|          float* t = aug; aug = oth; oth = t;
  267|   919k|          ev = !ev;
  268|   919k|          ui32 w = aug_width; aug_width = oth_width; oth_width = w;
  269|   919k|        }
  270|       |
  271|       |        // combine both lsrc and hsrc into dst
  272|   232k|        {
  273|   232k|          float* dp = dst->f32;
  274|   232k|          float* spl = even ? lsrc->f32 : hsrc->f32;
  ------------------
  |  Branch (274:24): [True: 174k, False: 58.1k]
  ------------------
  275|   232k|          float* sph = even ? hsrc->f32 : lsrc->f32;
  ------------------
  |  Branch (275:24): [True: 174k, False: 58.1k]
  ------------------
  276|   232k|          int w = (int)width;
  277|   232k|          avx_interleave32(dp, spl, sph, w);
  278|   232k|        }
  279|   232k|      }
  280|  1.16M|      else {
  281|  1.16M|        if (even)
  ------------------
  |  Branch (281:13): [True: 1.08M, False: 75.6k]
  ------------------
  282|  1.08M|          dst->f32[0] = lsrc->f32[0];
  283|  75.6k|        else
  284|  75.6k|          dst->f32[0] = hsrc->f32[0] * 0.5f;
  285|  1.16M|      }
  286|  1.39M|    }
ojph_transform_avx.cpp:_ZN4ojph5localL18avx_multiply_constEPffi:
   57|  2.08M|    {
   58|  2.08M|      __m256 factor = _mm256_set1_ps(f);
   59|  9.41M|      for (; width > 0; width -= 8, p += 8)
  ------------------
  |  Branch (59:14): [True: 7.32M, False: 2.08M]
  ------------------
   60|  7.32M|      {
   61|  7.32M|        __m256 s = _mm256_load_ps(p);
   62|  7.32M|        _mm256_store_ps(p, _mm256_mul_ps(factor, s));
   63|  7.32M|      }
   64|  2.08M|    }
ojph_transform_avx.cpp:_ZN4ojph5localL16avx_interleave32EPfS1_S1_i:
   86|   232k|    {
   87|  1.83M|      for (; width > 0; width -= 16, dp += 16, spl += 8, sph += 8)
  ------------------
  |  Branch (87:14): [True: 1.60M, False: 232k]
  ------------------
   88|  1.60M|      {
   89|  1.60M|        __m256 a = _mm256_load_ps(spl);
   90|  1.60M|        __m256 b = _mm256_load_ps(sph);
   91|  1.60M|        __m256 c = _mm256_unpacklo_ps(a, b);
   92|  1.60M|        __m256 d = _mm256_unpackhi_ps(a, b);
   93|  1.60M|        __m256 e = _mm256_permute2f128_ps(c, d, (2 << 4) | (0));
   94|       |        __m256 f = _mm256_permute2f128_ps(c, d, (3 << 4) | (1));
   95|  1.60M|        _mm256_store_ps(dp, e);
   96|  1.60M|        _mm256_store_ps(dp + 8, f);
   97|  1.60M|      }
   98|   232k|    }

_ZN4ojph5local18avx2_rev_vert_stepEPKNS0_12lifting_stepEPKNS_8line_bufES6_S6_jb:
  390|  2.82M|    {
  391|  2.82M|      if (((sig != NULL) && (sig->flags & line_buf::LFT_32BIT)) ||
  ------------------
  |  Branch (391:12): [True: 2.82M, False: 0]
  |  Branch (391:29): [True: 1.60M, False: 1.22M]
  ------------------
  392|  1.22M|          ((aug != NULL) && (aug->flags & line_buf::LFT_32BIT)) ||
  ------------------
  |  Branch (392:12): [True: 1.22M, False: 0]
  |  Branch (392:29): [True: 0, False: 1.22M]
  ------------------
  393|  1.22M|          ((other != NULL) && (other->flags & line_buf::LFT_32BIT)))
  ------------------
  |  Branch (393:12): [True: 1.22M, False: 0]
  |  Branch (393:31): [True: 0, False: 1.22M]
  ------------------
  394|  1.60M|      {
  395|  1.60M|        assert((sig == NULL || sig->flags & line_buf::LFT_32BIT) &&
  396|  1.60M|               (other == NULL || other->flags & line_buf::LFT_32BIT) &&
  397|  1.60M|               (aug == NULL || aug->flags & line_buf::LFT_32BIT));
  398|  1.60M|        avx2_rev_vert_step32(s, sig, other, aug, repeat, synthesis);
  399|  1.60M|      }
  400|  1.22M|      else
  401|  1.22M|      {
  402|       |        assert((sig == NULL || sig->flags & line_buf::LFT_64BIT) &&
  403|  1.22M|               (other == NULL || other->flags & line_buf::LFT_64BIT) &&
  404|  1.22M|               (aug == NULL || aug->flags & line_buf::LFT_64BIT));
  405|  1.22M|        avx2_rev_vert_step64(s, sig, other, aug, repeat, synthesis);
  406|  1.22M|      }
  407|  2.82M|    }
_ZN4ojph5local17avx2_rev_horz_synEPKNS0_9param_atkEPKNS_8line_bufES6_S6_jb:
 1067|  3.15M|    {
 1068|  3.15M|      if (dst->flags & line_buf::LFT_32BIT)
  ------------------
  |  Branch (1068:11): [True: 1.92M, False: 1.23M]
  ------------------
 1069|  1.92M|      {
 1070|  1.92M|        assert((lsrc == NULL || lsrc->flags & line_buf::LFT_32BIT) &&
 1071|  1.92M|               (hsrc == NULL || hsrc->flags & line_buf::LFT_32BIT));
 1072|  1.92M|        avx2_rev_horz_syn32(atk, dst, lsrc, hsrc, width, even);
 1073|  1.92M|      }
 1074|  1.23M|      else
 1075|  1.23M|      {
 1076|       |        assert((dst == NULL || dst->flags & line_buf::LFT_64BIT) &&
 1077|  1.23M|               (lsrc == NULL || lsrc->flags & line_buf::LFT_64BIT) &&
 1078|  1.23M|               (hsrc == NULL || hsrc->flags & line_buf::LFT_64BIT));
 1079|  1.23M|        avx2_rev_horz_syn64(atk, dst, lsrc, hsrc, width, even);
 1080|  1.23M|      }
 1081|  3.15M|    }
ojph_transform_avx2.cpp:_ZN4ojph5localL20avx2_rev_vert_step32EPKNS0_12lifting_stepEPKNS_8line_bufES6_S6_jb:
  150|  1.60M|    {
  151|  1.60M|      const si32 a = s->rev.Aatk;
  152|  1.60M|      const si32 b = s->rev.Batk;
  153|  1.60M|      const ui8 e = s->rev.Eatk;
  154|  1.60M|      __m256i va = _mm256_set1_epi32(a);
  155|  1.60M|      __m256i vb = _mm256_set1_epi32(b);
  156|       |
  157|  1.60M|      si32* dst = aug->i32;
  158|  1.60M|      const si32* src1 = sig->i32, * src2 = other->i32;
  159|       |      // The general definition of the wavelet in Part 2 is slightly
  160|       |      // different to part 2, although they are mathematically equivalent
  161|       |      // here, we identify the simpler form from Part 1 and employ them
  162|  1.60M|      if (a == 1)
  ------------------
  |  Branch (162:11): [True: 801k, False: 798k]
  ------------------
  163|   801k|      { // 5/3 update and any case with a == 1
  164|   801k|        int i = (int)repeat;
  165|   801k|        if (synthesis)
  ------------------
  |  Branch (165:13): [True: 801k, False: 0]
  ------------------
  166|  6.17M|          for (; i > 0; i -= 8, dst += 8, src1 += 8, src2 += 8)
  ------------------
  |  Branch (166:18): [True: 5.37M, False: 801k]
  ------------------
  167|  5.37M|          {
  168|  5.37M|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  169|  5.37M|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  170|  5.37M|            __m256i d = _mm256_load_si256((__m256i*)dst);
  171|  5.37M|            __m256i t = _mm256_add_epi32(s1, s2);
  172|  5.37M|            __m256i v = _mm256_add_epi32(vb, t);
  173|  5.37M|            __m256i w = _mm256_srai_epi32(v, e);
  174|  5.37M|            d = _mm256_sub_epi32(d, w);
  175|  5.37M|            _mm256_store_si256((__m256i*)dst, d);
  176|  5.37M|          }
  177|      0|        else
  178|      0|          for (; i > 0; i -= 8, dst += 8, src1 += 8, src2 += 8)
  ------------------
  |  Branch (178:18): [True: 0, False: 0]
  ------------------
  179|      0|          {
  180|      0|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  181|      0|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  182|      0|            __m256i d = _mm256_load_si256((__m256i*)dst);
  183|      0|            __m256i t = _mm256_add_epi32(s1, s2);
  184|      0|            __m256i v = _mm256_add_epi32(vb, t);
  185|      0|            __m256i w = _mm256_srai_epi32(v, e);
  186|      0|            d = _mm256_add_epi32(d, w);
  187|      0|            _mm256_store_si256((__m256i*)dst, d);
  188|      0|          }
  189|   801k|      }
  190|   798k|      else if (a == -1 && b == 1 && e == 1)
  ------------------
  |  Branch (190:16): [True: 798k, False: 0]
  |  Branch (190:27): [True: 798k, False: 0]
  |  Branch (190:37): [True: 798k, False: 0]
  ------------------
  191|   798k|      { // 5/3 predict
  192|   798k|        int i = (int)repeat;
  193|   798k|        if (synthesis)
  ------------------
  |  Branch (193:13): [True: 798k, False: 0]
  ------------------
  194|  6.16M|          for (; i > 0; i -= 8, dst += 8, src1 += 8, src2 += 8)
  ------------------
  |  Branch (194:18): [True: 5.36M, False: 798k]
  ------------------
  195|  5.36M|          {
  196|  5.36M|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  197|  5.36M|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  198|  5.36M|            __m256i d = _mm256_load_si256((__m256i*)dst);
  199|  5.36M|            __m256i t = _mm256_add_epi32(s1, s2);
  200|  5.36M|            __m256i w = _mm256_srai_epi32(t, e);
  201|  5.36M|            d = _mm256_add_epi32(d, w);
  202|  5.36M|            _mm256_store_si256((__m256i*)dst, d);
  203|  5.36M|          }
  204|      0|        else
  205|      0|          for (; i > 0; i -= 8, dst += 8, src1 += 8, src2 += 8)
  ------------------
  |  Branch (205:18): [True: 0, False: 0]
  ------------------
  206|      0|          {
  207|      0|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  208|      0|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  209|      0|            __m256i d = _mm256_load_si256((__m256i*)dst);
  210|      0|            __m256i t = _mm256_add_epi32(s1, s2);
  211|      0|            __m256i w = _mm256_srai_epi32(t, e);
  212|      0|            d = _mm256_sub_epi32(d, w);
  213|      0|            _mm256_store_si256((__m256i*)dst, d);
  214|      0|          }
  215|   798k|      }
  216|      0|      else if (a == -1)
  ------------------
  |  Branch (216:16): [True: 0, False: 0]
  ------------------
  217|      0|      { // any case with a == -1, which is not 5/3 predict
  218|      0|        int i = (int)repeat;
  219|      0|        if (synthesis)
  ------------------
  |  Branch (219:13): [True: 0, False: 0]
  ------------------
  220|      0|          for (; i > 0; i -= 8, dst += 8, src1 += 8, src2 += 8)
  ------------------
  |  Branch (220:18): [True: 0, False: 0]
  ------------------
  221|      0|          {
  222|      0|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  223|      0|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  224|      0|            __m256i d = _mm256_load_si256((__m256i*)dst);
  225|      0|            __m256i t = _mm256_add_epi32(s1, s2);
  226|      0|            __m256i v = _mm256_sub_epi32(vb, t);
  227|      0|            __m256i w = _mm256_srai_epi32(v, e);
  228|      0|            d = _mm256_sub_epi32(d, w);
  229|      0|            _mm256_store_si256((__m256i*)dst, d);
  230|      0|          }
  231|      0|        else
  232|      0|          for (; i > 0; i -= 8, dst += 8, src1 += 8, src2 += 8)
  ------------------
  |  Branch (232:18): [True: 0, False: 0]
  ------------------
  233|      0|          {
  234|      0|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  235|      0|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  236|      0|            __m256i d = _mm256_load_si256((__m256i*)dst);
  237|      0|            __m256i t = _mm256_add_epi32(s1, s2);
  238|      0|            __m256i v = _mm256_sub_epi32(vb, t);
  239|      0|            __m256i w = _mm256_srai_epi32(v, e);
  240|      0|            d = _mm256_add_epi32(d, w);
  241|      0|            _mm256_store_si256((__m256i*)dst, d);
  242|      0|          }
  243|      0|      }
  244|      0|      else { // general case
  245|      0|        int i = (int)repeat;
  246|      0|        if (synthesis)
  ------------------
  |  Branch (246:13): [True: 0, False: 0]
  ------------------
  247|      0|          for (; i > 0; i -= 8, dst += 8, src1 += 8, src2 += 8)
  ------------------
  |  Branch (247:18): [True: 0, False: 0]
  ------------------
  248|      0|          {
  249|      0|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  250|      0|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  251|      0|            __m256i d = _mm256_load_si256((__m256i*)dst);
  252|      0|            __m256i t = _mm256_add_epi32(s1, s2);
  253|      0|            __m256i u = _mm256_mullo_epi32(va, t);
  254|      0|            __m256i v = _mm256_add_epi32(vb, u);
  255|      0|            __m256i w = _mm256_srai_epi32(v, e);
  256|      0|            d = _mm256_sub_epi32(d, w);
  257|      0|            _mm256_store_si256((__m256i*)dst, d);
  258|      0|          }
  259|      0|        else
  260|      0|          for (; i > 0; i -= 8, dst += 8, src1 += 8, src2 += 8)
  ------------------
  |  Branch (260:18): [True: 0, False: 0]
  ------------------
  261|      0|          {
  262|      0|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  263|      0|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  264|      0|            __m256i d = _mm256_load_si256((__m256i*)dst);
  265|      0|            __m256i t = _mm256_add_epi32(s1, s2);
  266|      0|            __m256i u = _mm256_mullo_epi32(va, t);
  267|      0|            __m256i v = _mm256_add_epi32(vb, u);
  268|      0|            __m256i w = _mm256_srai_epi32(v, e);
  269|      0|            d = _mm256_add_epi32(d, w);
  270|      0|            _mm256_store_si256((__m256i*)dst, d);
  271|      0|          }
  272|      0|      }
  273|  1.60M|    }
ojph_transform_avx2.cpp:_ZN4ojph5localL20avx2_rev_vert_step64EPKNS0_12lifting_stepEPKNS_8line_bufES6_S6_jb:
  280|  1.22M|    {
  281|  1.22M|      const si32 a = s->rev.Aatk;
  282|  1.22M|      const si32 b = s->rev.Batk;
  283|  1.22M|      const ui8 e = s->rev.Eatk;
  284|  1.22M|      __m256i vb = _mm256_set1_epi64x(b);
  285|  1.22M|      __m256i ve = _mm256_set1_epi64x(1LL << (63 - e));
  286|       |
  287|  1.22M|      si64* dst = aug->i64;
  288|  1.22M|      const si64* src1 = sig->i64, * src2 = other->i64;
  289|       |      // The general definition of the wavelet in Part 2 is slightly
  290|       |      // different to part 2, although they are mathematically equivalent
  291|       |      // here, we identify the simpler form from Part 1 and employ them
  292|  1.22M|      if (a == 1)
  ------------------
  |  Branch (292:11): [True: 612k, False: 610k]
  ------------------
  293|   612k|      { // 5/3 update and any case with a == 1
  294|   612k|        int i = (int)repeat;
  295|   612k|        if (synthesis)
  ------------------
  |  Branch (295:13): [True: 612k, False: 0]
  ------------------
  296|  6.91M|          for (; i > 0; i -= 4, dst += 4, src1 += 4, src2 += 4)
  ------------------
  |  Branch (296:18): [True: 6.30M, False: 612k]
  ------------------
  297|  6.30M|          {
  298|  6.30M|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  299|  6.30M|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  300|  6.30M|            __m256i d = _mm256_load_si256((__m256i*)dst);
  301|  6.30M|            __m256i t = _mm256_add_epi64(s1, s2);
  302|  6.30M|            __m256i v = _mm256_add_epi64(vb, t);
  303|  6.30M|            __m256i w = avx2_mm256_srai_epi64(v, e, ve);
  304|  6.30M|            d = _mm256_sub_epi64(d, w);
  305|  6.30M|            _mm256_store_si256((__m256i*)dst, d);
  306|  6.30M|          }
  307|      0|        else
  308|      0|          for (; i > 0; i -= 4, dst += 4, src1 += 4, src2 += 4)
  ------------------
  |  Branch (308:18): [True: 0, False: 0]
  ------------------
  309|      0|          {
  310|      0|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  311|      0|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  312|      0|            __m256i d = _mm256_load_si256((__m256i*)dst);
  313|      0|            __m256i t = _mm256_add_epi64(s1, s2);
  314|      0|            __m256i v = _mm256_add_epi64(vb, t);
  315|      0|            __m256i w = avx2_mm256_srai_epi64(v, e, ve);
  316|      0|            d = _mm256_add_epi64(d, w);
  317|      0|            _mm256_store_si256((__m256i*)dst, d);
  318|      0|          }
  319|   612k|      }
  320|   610k|      else if (a == -1 && b == 1 && e == 1)
  ------------------
  |  Branch (320:16): [True: 610k, False: 0]
  |  Branch (320:27): [True: 610k, False: 0]
  |  Branch (320:37): [True: 610k, False: 0]
  ------------------
  321|   610k|      { // 5/3 predict
  322|   610k|        int i = (int)repeat;
  323|   610k|        if (synthesis)
  ------------------
  |  Branch (323:13): [True: 610k, False: 0]
  ------------------
  324|  6.89M|          for (; i > 0; i -= 4, dst += 4, src1 += 4, src2 += 4)
  ------------------
  |  Branch (324:18): [True: 6.28M, False: 610k]
  ------------------
  325|  6.28M|          {
  326|  6.28M|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  327|  6.28M|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  328|  6.28M|            __m256i d = _mm256_load_si256((__m256i*)dst);
  329|  6.28M|            __m256i t = _mm256_add_epi64(s1, s2);
  330|  6.28M|            __m256i w = avx2_mm256_srai_epi64(t, e, ve);
  331|  6.28M|            d = _mm256_add_epi64(d, w);
  332|  6.28M|            _mm256_store_si256((__m256i*)dst, d);
  333|  6.28M|          }
  334|      0|        else
  335|      0|          for (; i > 0; i -= 4, dst += 4, src1 += 4, src2 += 4)
  ------------------
  |  Branch (335:18): [True: 0, False: 0]
  ------------------
  336|      0|          {
  337|      0|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  338|      0|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  339|      0|            __m256i d = _mm256_load_si256((__m256i*)dst);
  340|      0|            __m256i t = _mm256_add_epi64(s1, s2);
  341|      0|            __m256i w = avx2_mm256_srai_epi64(t, e, ve);
  342|      0|            d = _mm256_sub_epi64(d, w);
  343|      0|            _mm256_store_si256((__m256i*)dst, d);
  344|      0|          }
  345|   610k|      }
  346|      0|      else if (a == -1)
  ------------------
  |  Branch (346:16): [True: 0, False: 0]
  ------------------
  347|      0|      { // any case with a == -1, which is not 5/3 predict
  348|      0|        int i = (int)repeat;
  349|      0|        if (synthesis)
  ------------------
  |  Branch (349:13): [True: 0, False: 0]
  ------------------
  350|      0|          for (; i > 0; i -= 4, dst += 4, src1 += 4, src2 += 4)
  ------------------
  |  Branch (350:18): [True: 0, False: 0]
  ------------------
  351|      0|          {
  352|      0|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  353|      0|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  354|      0|            __m256i d = _mm256_load_si256((__m256i*)dst);
  355|      0|            __m256i t = _mm256_add_epi64(s1, s2);
  356|      0|            __m256i v = _mm256_sub_epi64(vb, t);
  357|      0|            __m256i w = avx2_mm256_srai_epi64(v, e, ve);
  358|      0|            d = _mm256_sub_epi64(d, w);
  359|      0|            _mm256_store_si256((__m256i*)dst, d);
  360|      0|          }
  361|      0|        else
  362|      0|          for (; i > 0; i -= 4, dst += 4, src1 += 4, src2 += 4)
  ------------------
  |  Branch (362:18): [True: 0, False: 0]
  ------------------
  363|      0|          {
  364|      0|            __m256i s1 = _mm256_load_si256((__m256i*)src1);
  365|      0|            __m256i s2 = _mm256_load_si256((__m256i*)src2);
  366|      0|            __m256i d = _mm256_load_si256((__m256i*)dst);
  367|      0|            __m256i t = _mm256_add_epi64(s1, s2);
  368|      0|            __m256i v = _mm256_sub_epi64(vb, t);
  369|      0|            __m256i w = avx2_mm256_srai_epi64(v, e, ve);
  370|      0|            d = _mm256_add_epi64(d, w);
  371|      0|            _mm256_store_si256((__m256i*)dst, d);
  372|      0|          }
  373|      0|      }
  374|      0|      else { // general case
  375|       |        // 64bit multiplication is not supported in avx2;
  376|       |        // in particular, _mm256_mullo_epi64.
  377|      0|        if (synthesis)
  ------------------
  |  Branch (377:13): [True: 0, False: 0]
  ------------------
  378|      0|          for (ui32 i = repeat; i > 0; --i)
  ------------------
  |  Branch (378:33): [True: 0, False: 0]
  ------------------
  379|      0|            *dst++ -= (b + a * (*src1++ + *src2++)) >> e;
  380|      0|        else
  381|      0|          for (ui32 i = repeat; i > 0; --i)
  ------------------
  |  Branch (381:33): [True: 0, False: 0]
  ------------------
  382|      0|            *dst++ += (b + a * (*src1++ + *src2++)) >> e;
  383|      0|      }
  384|  1.22M|    }
ojph_transform_avx2.cpp:_ZN4ojph5localL21avx2_mm256_srai_epi64EDv4_xiS1_:
   61|  24.9M|    {
   62|       |      // note than m must be obtained using
   63|       |      // __m256i m = _mm256_set1_epi64x(1ULL << (63 - amt));
   64|  24.9M|      __m256i x = _mm256_srli_epi64(a, amt);
   65|  24.9M|      x = _mm256_xor_si256(x, m);
   66|  24.9M|      __m256i result = _mm256_sub_epi64(x, m);
   67|  24.9M|      return result;
   68|  24.9M|    }
ojph_transform_avx2.cpp:_ZN4ojph5localL19avx2_rev_horz_syn32EPKNS0_9param_atkEPKNS_8line_bufES6_S6_jb:
  751|  1.92M|    {
  752|  1.92M|      if (width > 1)
  ------------------
  |  Branch (752:11): [True: 686k, False: 1.23M]
  ------------------
  753|   686k|      {
  754|   686k|        bool ev = even;
  755|   686k|        si32* oth = hsrc->i32, * aug = lsrc->i32;
  756|   686k|        ui32 aug_width = (width + (even ? 1 : 0)) >> 1;  // low pass
  ------------------
  |  Branch (756:36): [True: 619k, False: 67.0k]
  ------------------
  757|   686k|        ui32 oth_width = (width + (even ? 0 : 1)) >> 1;  // high pass
  ------------------
  |  Branch (757:36): [True: 619k, False: 67.0k]
  ------------------
  758|   686k|        ui32 num_steps = atk->get_num_steps();
  759|  2.05M|        for (ui32 j = 0; j < num_steps; ++j)
  ------------------
  |  Branch (759:26): [True: 1.37M, False: 686k]
  ------------------
  760|  1.37M|        {
  761|  1.37M|          const lifting_step* s = atk->get_step(j);
  762|  1.37M|          const si32 a = s->rev.Aatk;
  763|  1.37M|          const si32 b = s->rev.Batk;
  764|  1.37M|          const ui8 e  = s->rev.Eatk;
  765|  1.37M|          __m256i va = _mm256_set1_epi32(a);
  766|  1.37M|          __m256i vb = _mm256_set1_epi32(b);
  767|       |
  768|       |          // extension
  769|  1.37M|          oth[-1] = oth[0];
  770|  1.37M|          oth[oth_width] = oth[oth_width - 1];
  771|       |          // lifting step
  772|  1.37M|          const si32* sp = oth;
  773|  1.37M|          si32* dp = aug;
  774|  1.37M|          if (a == 1)
  ------------------
  |  Branch (774:15): [True: 686k, False: 686k]
  ------------------
  775|   686k|          { // 5/3 update and any case with a == 1
  776|   686k|            int i = (int)aug_width;
  777|   686k|            if (ev)
  ------------------
  |  Branch (777:17): [True: 619k, False: 67.0k]
  ------------------
  778|   619k|            {
  779|  5.43M|              for (; i > 0; i -= 8, sp += 8, dp += 8)
  ------------------
  |  Branch (779:22): [True: 4.81M, False: 619k]
  ------------------
  780|  4.81M|              {
  781|  4.81M|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
  782|  4.81M|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp - 1));
  783|  4.81M|                __m256i d = _mm256_load_si256((__m256i*)dp);
  784|  4.81M|                __m256i t = _mm256_add_epi32(s1, s2);
  785|  4.81M|                __m256i v = _mm256_add_epi32(vb, t);
  786|  4.81M|                __m256i w = _mm256_srai_epi32(v, e);
  787|  4.81M|                d = _mm256_sub_epi32(d, w);
  788|  4.81M|                _mm256_store_si256((__m256i*)dp, d);
  789|  4.81M|              }
  790|   619k|            }
  791|  67.0k|            else
  792|  67.0k|            {
  793|   556k|              for (; i > 0; i -= 8, sp += 8, dp += 8)
  ------------------
  |  Branch (793:22): [True: 489k, False: 67.0k]
  ------------------
  794|   489k|              {
  795|   489k|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
  796|   489k|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp + 1));
  797|   489k|                __m256i d = _mm256_load_si256((__m256i*)dp);
  798|   489k|                __m256i t = _mm256_add_epi32(s1, s2);
  799|   489k|                __m256i v = _mm256_add_epi32(vb, t);
  800|   489k|                __m256i w = _mm256_srai_epi32(v, e);
  801|   489k|                d = _mm256_sub_epi32(d, w);
  802|   489k|                _mm256_store_si256((__m256i*)dp, d);
  803|   489k|              }
  804|  67.0k|            }
  805|   686k|          }
  806|   686k|          else if (a == -1 && b == 1 && e == 1)
  ------------------
  |  Branch (806:20): [True: 686k, False: 0]
  |  Branch (806:31): [True: 686k, False: 0]
  |  Branch (806:41): [True: 686k, False: 0]
  ------------------
  807|   686k|          {  // 5/3 predict
  808|   686k|            int i = (int)aug_width;
  809|   686k|            if (ev)
  ------------------
  |  Branch (809:17): [True: 67.0k, False: 619k]
  ------------------
  810|   557k|              for (; i > 0; i -= 8, sp += 8, dp += 8)
  ------------------
  |  Branch (810:22): [True: 490k, False: 67.0k]
  ------------------
  811|   490k|              {
  812|   490k|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
  813|   490k|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp - 1));
  814|   490k|                __m256i d = _mm256_load_si256((__m256i*)dp);
  815|   490k|                __m256i t = _mm256_add_epi32(s1, s2);
  816|   490k|                __m256i w = _mm256_srai_epi32(t, e);
  817|   490k|                d = _mm256_add_epi32(d, w);
  818|   490k|                _mm256_store_si256((__m256i*)dp, d);
  819|   490k|              }
  820|   619k|            else
  821|  5.30M|              for (; i > 0; i -= 8, sp += 8, dp += 8)
  ------------------
  |  Branch (821:22): [True: 4.68M, False: 619k]
  ------------------
  822|  4.68M|              {
  823|  4.68M|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
  824|  4.68M|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp + 1));
  825|  4.68M|                __m256i d = _mm256_load_si256((__m256i*)dp);
  826|  4.68M|                __m256i t = _mm256_add_epi32(s1, s2);
  827|  4.68M|                __m256i w = _mm256_srai_epi32(t, e);
  828|  4.68M|                d = _mm256_add_epi32(d, w);
  829|  4.68M|                _mm256_store_si256((__m256i*)dp, d);
  830|  4.68M|              }
  831|   686k|          }
  832|      0|          else if (a == -1)
  ------------------
  |  Branch (832:20): [True: 0, False: 0]
  ------------------
  833|      0|          { // any case with a == -1, which is not 5/3 predict
  834|      0|            int i = (int)aug_width;
  835|      0|            if (ev)
  ------------------
  |  Branch (835:17): [True: 0, False: 0]
  ------------------
  836|      0|              for (; i > 0; i -= 8, sp += 8, dp += 8)
  ------------------
  |  Branch (836:22): [True: 0, False: 0]
  ------------------
  837|      0|              {
  838|      0|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
  839|      0|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp - 1));
  840|      0|                __m256i d = _mm256_load_si256((__m256i*)dp);
  841|      0|                __m256i t = _mm256_add_epi32(s1, s2);
  842|      0|                __m256i v = _mm256_sub_epi32(vb, t);
  843|      0|                __m256i w = _mm256_srai_epi32(v, e);
  844|      0|                d = _mm256_sub_epi32(d, w);
  845|      0|                _mm256_store_si256((__m256i*)dp, d);
  846|      0|              }
  847|      0|            else
  848|      0|              for (; i > 0; i -= 8, sp += 8, dp += 8)
  ------------------
  |  Branch (848:22): [True: 0, False: 0]
  ------------------
  849|      0|              {
  850|      0|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
  851|      0|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp + 1));
  852|      0|                __m256i d = _mm256_load_si256((__m256i*)dp);
  853|      0|                __m256i t = _mm256_add_epi32(s1, s2);
  854|      0|                __m256i v = _mm256_sub_epi32(vb, t);
  855|      0|                __m256i w = _mm256_srai_epi32(v, e);
  856|      0|                d = _mm256_sub_epi32(d, w);
  857|      0|                _mm256_store_si256((__m256i*)dp, d);
  858|      0|              }
  859|      0|          }
  860|      0|          else {
  861|       |            // general case
  862|      0|            int i = (int)aug_width;
  863|      0|            if (ev)
  ------------------
  |  Branch (863:17): [True: 0, False: 0]
  ------------------
  864|      0|              for (; i > 0; i -= 8, sp += 8, dp += 8)
  ------------------
  |  Branch (864:22): [True: 0, False: 0]
  ------------------
  865|      0|              {
  866|      0|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
  867|      0|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp - 1));
  868|      0|                __m256i d = _mm256_load_si256((__m256i*)dp);
  869|      0|                __m256i t = _mm256_add_epi32(s1, s2);
  870|      0|                __m256i u = _mm256_mullo_epi32(va, t);
  871|      0|                __m256i v = _mm256_add_epi32(vb, u);
  872|      0|                __m256i w = _mm256_srai_epi32(v, e);
  873|      0|                d = _mm256_sub_epi32(d, w);
  874|      0|                _mm256_store_si256((__m256i*)dp, d);
  875|      0|              }
  876|      0|            else
  877|      0|              for (; i > 0; i -= 8, sp += 8, dp += 8)
  ------------------
  |  Branch (877:22): [True: 0, False: 0]
  ------------------
  878|      0|              {
  879|      0|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
  880|      0|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp + 1));
  881|      0|                __m256i d = _mm256_load_si256((__m256i*)dp);
  882|      0|                __m256i t = _mm256_add_epi32(s1, s2);
  883|      0|                __m256i u = _mm256_mullo_epi32(va, t);
  884|      0|                __m256i v = _mm256_add_epi32(vb, u);
  885|      0|                __m256i w = _mm256_srai_epi32(v, e);
  886|      0|                d = _mm256_sub_epi32(d, w);
  887|      0|                _mm256_store_si256((__m256i*)dp, d);
  888|      0|              }
  889|      0|          }
  890|       |
  891|       |          // swap buffers
  892|  1.37M|          si32* t = aug; aug = oth; oth = t;
  893|  1.37M|          ev = !ev;
  894|  1.37M|          ui32 w = aug_width; aug_width = oth_width; oth_width = w;
  895|  1.37M|        }
  896|       |
  897|       |        // combine both lsrc and hsrc into dst
  898|   686k|        {
  899|   686k|          float* dp  = dst->f32;
  900|   686k|          float* spl = even ? lsrc->f32 : hsrc->f32;
  ------------------
  |  Branch (900:24): [True: 619k, False: 67.0k]
  ------------------
  901|   686k|          float* sph = even ? hsrc->f32 : lsrc->f32;
  ------------------
  |  Branch (901:24): [True: 619k, False: 67.0k]
  ------------------
  902|   686k|          int w = (int)width;
  903|   686k|          avx2_interleave32(dp, spl, sph, w);
  904|   686k|        }
  905|   686k|      }
  906|  1.23M|      else {
  907|  1.23M|        if (even)
  ------------------
  |  Branch (907:13): [True: 1.10M, False: 129k]
  ------------------
  908|  1.10M|          dst->i32[0] = lsrc->i32[0];
  909|   129k|        else
  910|   129k|          dst->i32[0] = hsrc->i32[0] >> 1;
  911|  1.23M|      }
  912|  1.92M|    }
ojph_transform_avx2.cpp:_ZN4ojph5localL17avx2_interleave32EPfS1_S1_i:
   90|   686k|    {
   91|  5.99M|      for (; width > 0; width -= 16, dp += 16, spl += 8, sph += 8)
  ------------------
  |  Branch (91:14): [True: 5.31M, False: 686k]
  ------------------
   92|  5.31M|      {
   93|  5.31M|        __m256 a = _mm256_load_ps(spl);
   94|  5.31M|        __m256 b = _mm256_load_ps(sph);
   95|  5.31M|        __m256 c = _mm256_unpacklo_ps(a, b);
   96|  5.31M|        __m256 d = _mm256_unpackhi_ps(a, b);
   97|  5.31M|        __m256 e = _mm256_permute2f128_ps(c, d, (2 << 4) | (0));
   98|       |        __m256 f = _mm256_permute2f128_ps(c, d, (3 << 4) | (1));
   99|  5.31M|        _mm256_store_ps(dp, e);
  100|  5.31M|        _mm256_store_ps(dp + 8, f);
  101|  5.31M|      }
  102|   686k|    }
ojph_transform_avx2.cpp:_ZN4ojph5localL19avx2_rev_horz_syn64EPKNS0_9param_atkEPKNS_8line_bufES6_S6_jb:
  919|  1.23M|    {
  920|  1.23M|      if (width > 1)
  ------------------
  |  Branch (920:11): [True: 394k, False: 843k]
  ------------------
  921|   394k|      {
  922|   394k|        bool ev = even;
  923|   394k|        si64* oth = hsrc->i64, * aug = lsrc->i64;
  924|   394k|        ui32 aug_width = (width + (even ? 1 : 0)) >> 1;  // low pass
  ------------------
  |  Branch (924:36): [True: 351k, False: 42.5k]
  ------------------
  925|   394k|        ui32 oth_width = (width + (even ? 0 : 1)) >> 1;  // high pass
  ------------------
  |  Branch (925:36): [True: 351k, False: 42.5k]
  ------------------
  926|   394k|        ui32 num_steps = atk->get_num_steps();
  927|  1.18M|        for (ui32 j = 0; j < num_steps; ++j)
  ------------------
  |  Branch (927:26): [True: 787k, False: 394k]
  ------------------
  928|   787k|        {
  929|   787k|          const lifting_step* s = atk->get_step(j);
  930|   787k|          const si32 a = s->rev.Aatk;
  931|   787k|          const si32 b = s->rev.Batk;
  932|   787k|          const ui8 e  = s->rev.Eatk;
  933|   787k|          __m256i vb = _mm256_set1_epi64x(b);
  934|   787k|          __m256i ve = _mm256_set1_epi64x(1LL << (63 - e));
  935|       |
  936|       |          // extension
  937|   787k|          oth[-1] = oth[0];
  938|   787k|          oth[oth_width] = oth[oth_width - 1];
  939|       |          // lifting step
  940|   787k|          const si64* sp = oth;
  941|   787k|          si64* dp = aug;
  942|   787k|          if (a == 1)
  ------------------
  |  Branch (942:15): [True: 393k, False: 393k]
  ------------------
  943|   393k|          { // 5/3 update and any case with a == 1
  944|   393k|            int i = (int)aug_width;
  945|   393k|            if (ev)
  ------------------
  |  Branch (945:17): [True: 351k, False: 42.3k]
  ------------------
  946|   351k|            {
  947|  6.06M|              for (; i > 0; i -= 4, sp += 4, dp += 4)
  ------------------
  |  Branch (947:22): [True: 5.71M, False: 351k]
  ------------------
  948|  5.71M|              {
  949|  5.71M|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
  950|  5.71M|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp - 1));
  951|  5.71M|                __m256i d = _mm256_load_si256((__m256i*)dp);
  952|  5.71M|                __m256i t = _mm256_add_epi64(s1, s2);
  953|  5.71M|                __m256i v = _mm256_add_epi64(vb, t);
  954|  5.71M|                __m256i w = avx2_mm256_srai_epi64(v, e, ve);
  955|  5.71M|                d = _mm256_sub_epi64(d, w);
  956|  5.71M|                _mm256_store_si256((__m256i*)dp, d);
  957|  5.71M|              }
  958|   351k|            }
  959|  42.3k|            else
  960|  42.3k|            {
  961|   590k|              for (; i > 0; i -= 4, sp += 4, dp += 4)
  ------------------
  |  Branch (961:22): [True: 548k, False: 42.3k]
  ------------------
  962|   548k|              {
  963|   548k|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
  964|   548k|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp + 1));
  965|   548k|                __m256i d = _mm256_load_si256((__m256i*)dp);
  966|   548k|                __m256i t = _mm256_add_epi64(s1, s2);
  967|   548k|                __m256i v = _mm256_add_epi64(vb, t);
  968|   548k|                __m256i w = avx2_mm256_srai_epi64(v, e, ve);
  969|   548k|                d = _mm256_sub_epi64(d, w);
  970|   548k|                _mm256_store_si256((__m256i*)dp, d);
  971|   548k|              }
  972|  42.3k|            }
  973|   393k|          }
  974|   393k|          else if (a == -1 && b == 1 && e == 1)
  ------------------
  |  Branch (974:20): [True: 393k, False: 0]
  |  Branch (974:31): [True: 393k, False: 0]
  |  Branch (974:41): [True: 393k, False: 0]
  ------------------
  975|   393k|          {  // 5/3 predict
  976|   393k|            int i = (int)aug_width;
  977|   393k|            if (ev)
  ------------------
  |  Branch (977:17): [True: 42.3k, False: 351k]
  ------------------
  978|   594k|              for (; i > 0; i -= 4, sp += 4, dp += 4)
  ------------------
  |  Branch (978:22): [True: 552k, False: 42.3k]
  ------------------
  979|   552k|              {
  980|   552k|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
  981|   552k|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp - 1));
  982|   552k|                __m256i d = _mm256_load_si256((__m256i*)dp);
  983|   552k|                __m256i t = _mm256_add_epi64(s1, s2);
  984|   552k|                __m256i w = avx2_mm256_srai_epi64(t, e, ve);
  985|   552k|                d = _mm256_add_epi64(d, w);
  986|   552k|                _mm256_store_si256((__m256i*)dp, d);
  987|   552k|              }
  988|   351k|            else
  989|  5.94M|              for (; i > 0; i -= 4, sp += 4, dp += 4)
  ------------------
  |  Branch (989:22): [True: 5.58M, False: 351k]
  ------------------
  990|  5.58M|              {
  991|  5.58M|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
  992|  5.58M|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp + 1));
  993|  5.58M|                __m256i d = _mm256_load_si256((__m256i*)dp);
  994|  5.58M|                __m256i t = _mm256_add_epi64(s1, s2);
  995|  5.58M|                __m256i w = avx2_mm256_srai_epi64(t, e, ve);
  996|  5.58M|                d = _mm256_add_epi64(d, w);
  997|  5.58M|                _mm256_store_si256((__m256i*)dp, d);
  998|  5.58M|              }
  999|   393k|          }
 1000|      0|          else if (a == -1)
  ------------------
  |  Branch (1000:20): [True: 0, False: 0]
  ------------------
 1001|      0|          { // any case with a == -1, which is not 5/3 predict
 1002|      0|            int i = (int)aug_width;
 1003|      0|            if (ev)
  ------------------
  |  Branch (1003:17): [True: 0, False: 0]
  ------------------
 1004|      0|              for (; i > 0; i -= 4, sp += 4, dp += 4)
  ------------------
  |  Branch (1004:22): [True: 0, False: 0]
  ------------------
 1005|      0|              {
 1006|      0|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
 1007|      0|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp - 1));
 1008|      0|                __m256i d = _mm256_load_si256((__m256i*)dp);
 1009|      0|                __m256i t = _mm256_add_epi64(s1, s2);
 1010|      0|                __m256i v = _mm256_sub_epi64(vb, t);
 1011|      0|                __m256i w = avx2_mm256_srai_epi64(v, e, ve);
 1012|      0|                d = _mm256_sub_epi64(d, w);
 1013|      0|                _mm256_store_si256((__m256i*)dp, d);
 1014|      0|              }
 1015|      0|            else
 1016|      0|              for (; i > 0; i -= 4, sp += 4, dp += 4)
  ------------------
  |  Branch (1016:22): [True: 0, False: 0]
  ------------------
 1017|      0|              {
 1018|      0|                __m256i s1 = _mm256_load_si256((__m256i*)sp);
 1019|      0|                __m256i s2 = _mm256_loadu_si256((__m256i*)(sp + 1));
 1020|      0|                __m256i d = _mm256_load_si256((__m256i*)dp);
 1021|      0|                __m256i t = _mm256_add_epi64(s1, s2);
 1022|      0|                __m256i v = _mm256_sub_epi64(vb, t);
 1023|      0|                __m256i w = avx2_mm256_srai_epi64(v, e, ve);
 1024|      0|                d = _mm256_sub_epi64(d, w);
 1025|      0|                _mm256_store_si256((__m256i*)dp, d);
 1026|      0|              }
 1027|      0|          }
 1028|      0|          else {
 1029|       |            // general case
 1030|       |            // 64bit multiplication is not supported in avx2;
 1031|       |            // in particular, _mm_mullo_epi64.
 1032|      0|            if (ev)
  ------------------
  |  Branch (1032:17): [True: 0, False: 0]
  ------------------
 1033|      0|              for (ui32 i = aug_width; i > 0; --i, sp++, dp++)
  ------------------
  |  Branch (1033:40): [True: 0, False: 0]
  ------------------
 1034|      0|                *dp -= (b + a * (sp[-1] + sp[0])) >> e;
 1035|      0|            else
 1036|      0|              for (ui32 i = aug_width; i > 0; --i, sp++, dp++)
  ------------------
  |  Branch (1036:40): [True: 0, False: 0]
  ------------------
 1037|      0|                *dp -= (b + a * (sp[0] + sp[1])) >> e;
 1038|      0|          }
 1039|       |
 1040|       |          // swap buffers
 1041|   787k|          si64* t = aug; aug = oth; oth = t;
 1042|   787k|          ev = !ev;
 1043|   787k|          ui32 w = aug_width; aug_width = oth_width; oth_width = w;
 1044|   787k|        }
 1045|       |
 1046|       |        // combine both lsrc and hsrc into dst
 1047|   394k|        {
 1048|   394k|          void* dp = dst->p;
 1049|   394k|          const void* spl = even ? lsrc->p : hsrc->p;
  ------------------
  |  Branch (1049:29): [True: 351k, False: 42.5k]
  ------------------
 1050|   394k|          const void* sph = even ? hsrc->p : lsrc->p;
  ------------------
  |  Branch (1050:29): [True: 351k, False: 42.5k]
  ------------------
 1051|   394k|          int w = (int)width;
 1052|   394k|          avx2_interleave64(dp, spl, sph, w);
 1053|   394k|        }
 1054|   394k|      }
 1055|   843k|      else {
 1056|   843k|        if (even)
  ------------------
  |  Branch (1056:13): [True: 665k, False: 177k]
  ------------------
 1057|   665k|          dst->i64[0] = lsrc->i64[0];
 1058|   177k|        else
 1059|   177k|          dst->i64[0] = hsrc->i64[0] >> 1;
 1060|   843k|      }
 1061|  1.23M|    }
ojph_transform_avx2.cpp:_ZN4ojph5localL17avx2_interleave64EPvPKvS3_i:
  128|   394k|    {
  129|  6.67M|      for (; width > 0; width -= 8,
  ------------------
  |  Branch (129:14): [True: 6.27M, False: 394k]
  ------------------
  130|  6.27M|             dp = (char*)dp + 64,
  131|  6.27M|             spl = (const char*)spl + 32,
  132|  6.27M|             sph = (const char*)sph + 32)
  133|  6.27M|      {
  134|  6.27M|        __m256i a = _mm256_load_si256((const __m256i*)spl);
  135|  6.27M|        __m256i b = _mm256_load_si256((const __m256i*)sph);
  136|  6.27M|        __m256i c = _mm256_unpacklo_epi64(a, b);
  137|  6.27M|        __m256i d = _mm256_unpackhi_epi64(a, b);
  138|  6.27M|        __m256i e = _mm256_permute2f128_si256(c, d, (2 << 4) | (0));
  139|       |        __m256i f = _mm256_permute2f128_si256(c, d, (3 << 4) | (1));
  140|  6.27M|        _mm256_store_si256((__m256i*)dp, e);
  141|  6.27M|        _mm256_store_si256((__m256i*)((char*)dp + 32), f);
  142|  6.27M|      }
  143|   394k|    }

