Coverage Report

Created: 2025-11-14 07:32

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjxl/lib/jxl/base/data_parallel.h
Line
Count
Source
1
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
2
//
3
// Use of this source code is governed by a BSD-style
4
// license that can be found in the LICENSE file.
5
6
#ifndef LIB_JXL_BASE_DATA_PARALLEL_H_
7
#define LIB_JXL_BASE_DATA_PARALLEL_H_
8
9
// Portable, low-overhead C++11 ThreadPool alternative to OpenMP for
10
// data-parallel computations.
11
12
#include <jxl/parallel_runner.h>
13
14
#include <atomic>
15
#include <cstddef>
16
#include <cstdint>
17
18
#include "lib/jxl/base/compiler_specific.h"
19
#include "lib/jxl/base/status.h"
20
#if JXL_COMPILER_MSVC
21
// suppress warnings about the const & applied to function types
22
#pragma warning(disable : 4180)
23
#endif
24
25
namespace jxl {
26
27
struct ThreadPoolNoInit {};
28
29
class ThreadPool {
30
 public:
31
  ThreadPool(JxlParallelRunner runner, void* runner_opaque)
32
339k
      : runner_(runner),
33
339k
        runner_opaque_(runner ? runner_opaque : static_cast<void*>(this)) {}
34
35
  ThreadPool(const ThreadPool&) = delete;
36
  ThreadPool& operator&(const ThreadPool&) = delete;
37
38
0
  JxlParallelRunner runner() const { return runner_; }
39
0
  void* runner_opaque() const { return runner_opaque_; }
40
41
  // Runs init_func(num_threads) followed by data_func(task, thread) on worker
42
  // thread(s) for every task in [begin, end). init_func() must return a Status
43
  // indicating whether the initialization succeeded.
44
  // "thread" is an integer smaller than num_threads.
45
  // Not thread-safe - no two calls to Run may overlap.
46
  // Subsequent calls will reuse the same threads.
47
  //
48
  // Precondition: begin <= end.
49
  template <class InitFunc, class DataFunc>
50
  Status Run(uint32_t begin, uint32_t end, const InitFunc& init_func,
51
537k
             const DataFunc& data_func, const char* caller) {
52
537k
    JXL_ENSURE(begin <= end);
53
537k
    if (begin == end) return true;
54
537k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
537k
    if (!runner_) {
58
315k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
315k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
315k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
6.37M
      for (uint32_t i = begin; i < end; i++) {
64
6.06M
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
6.06M
      }
66
315k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
315k
      return true;
70
315k
    }
71
222k
    JxlParallelRetCode ret = (*runner_)(
72
222k
        runner_opaque_, static_cast<void*>(&call_state),
73
222k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
222k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
1.14k
      return JXL_FAILURE("[%s] failed", caller);
77
1.14k
    }
78
220k
    return true;
79
222k
  }
Unexecuted instantiation: encode.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)
enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1>(unsigned int, unsigned int, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0 const&, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1 const&, char const*)
Line
Count
Source
51
3.02k
             const DataFunc& data_func, const char* caller) {
52
3.02k
    JXL_ENSURE(begin <= end);
53
3.02k
    if (begin == end) return true;
54
3.02k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.02k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.02k
    JxlParallelRetCode ret = (*runner_)(
72
3.02k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.02k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.02k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.02k
    return true;
79
3.02k
  }
enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0>(unsigned int, unsigned int, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2 const&, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0 const&, char const*)
Line
Count
Source
51
3.93k
             const DataFunc& data_func, const char* caller) {
52
3.93k
    JXL_ENSURE(begin <= end);
53
3.93k
    if (begin == end) return true;
54
3.93k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.93k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.93k
    JxlParallelRetCode ret = (*runner_)(
72
3.93k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.93k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.93k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.93k
    return true;
79
3.93k
  }
enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3>(unsigned int, unsigned int, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2 const&, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3 const&, char const*)
Line
Count
Source
51
3.93k
             const DataFunc& data_func, const char* caller) {
52
3.93k
    JXL_ENSURE(begin <= end);
53
3.93k
    if (begin == end) return true;
54
3.93k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.93k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.93k
    JxlParallelRetCode ret = (*runner_)(
72
3.93k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.93k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.93k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.93k
    return true;
79
3.93k
  }
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)
enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)
Line
Count
Source
51
1.82k
             const DataFunc& data_func, const char* caller) {
52
1.82k
    JXL_ENSURE(begin <= end);
53
1.82k
    if (begin == end) return true;
54
1.82k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
1.82k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
1.82k
    JxlParallelRetCode ret = (*runner_)(
72
1.82k
        runner_opaque_, static_cast<void*>(&call_state),
73
1.82k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
1.82k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
1.82k
    return true;
79
1.82k
  }
enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)
Line
Count
Source
51
1.42k
             const DataFunc& data_func, const char* caller) {
52
1.42k
    JXL_ENSURE(begin <= end);
53
1.42k
    if (begin == end) return true;
54
1.42k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
1.42k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
1.42k
    JxlParallelRetCode ret = (*runner_)(
72
1.42k
        runner_opaque_, static_cast<void*>(&call_state),
73
1.42k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
1.42k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
1.42k
    return true;
79
1.42k
  }
enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)
Line
Count
Source
51
1.95k
             const DataFunc& data_func, const char* caller) {
52
1.95k
    JXL_ENSURE(begin <= end);
53
1.95k
    if (begin == end) return true;
54
1.95k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
1.95k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
1.95k
    JxlParallelRetCode ret = (*runner_)(
72
1.95k
        runner_opaque_, static_cast<void*>(&call_state),
73
1.95k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
1.95k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
1.95k
    return true;
79
1.95k
  }
enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
51
3.93k
             const DataFunc& data_func, const char* caller) {
52
3.93k
    JXL_ENSURE(begin <= end);
53
3.93k
    if (begin == end) return true;
54
3.93k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.93k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.93k
    JxlParallelRetCode ret = (*runner_)(
72
3.93k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.93k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.93k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.93k
    return true;
79
3.93k
  }
enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
51
3.93k
             const DataFunc& data_func, const char* caller) {
52
3.93k
    JXL_ENSURE(begin <= end);
53
3.93k
    if (begin == end) return true;
54
3.93k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.93k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.93k
    JxlParallelRetCode ret = (*runner_)(
72
3.93k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.93k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.93k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.93k
    return true;
79
3.93k
  }
enc_patch_dictionary.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)
Line
Count
Source
51
2.21k
             const DataFunc& data_func, const char* caller) {
52
2.21k
    JXL_ENSURE(begin <= end);
53
2.21k
    if (begin == end) return true;
54
2.21k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.21k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
2.21k
    JxlParallelRetCode ret = (*runner_)(
72
2.21k
        runner_opaque_, static_cast<void*>(&call_state),
73
2.21k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2.21k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2.21k
    return true;
79
2.21k
  }
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Line
Count
Source
51
9
             const DataFunc& data_func, const char* caller) {
52
9
    JXL_ENSURE(begin <= end);
53
9
    if (begin == end) return true;
54
9
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
9
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
9
    JxlParallelRetCode ret = (*runner_)(
72
9
        runner_opaque_, static_cast<void*>(&call_state),
73
9
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
9
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
9
    return true;
79
9
  }
enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Line
Count
Source
51
3.01k
             const DataFunc& data_func, const char* caller) {
52
3.01k
    JXL_ENSURE(begin <= end);
53
3.01k
    if (begin == end) return true;
54
3.01k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.01k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.01k
    JxlParallelRetCode ret = (*runner_)(
72
3.01k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.01k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.01k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.01k
    return true;
79
3.01k
  }
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_image_bundle.cc:jxl::Status jxl::ThreadPool::Run<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>(unsigned int, unsigned int, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1 const&, char const*)
enc_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Line
Count
Source
51
12.9k
             const DataFunc& data_func, const char* caller) {
52
12.9k
    JXL_ENSURE(begin <= end);
53
12.9k
    if (begin == end) return true;
54
12.9k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
12.9k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
12.9k
    JxlParallelRetCode ret = (*runner_)(
72
12.9k
        runner_opaque_, static_cast<void*>(&call_state),
73
12.9k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
12.9k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
12.9k
    return true;
79
12.9k
  }
enc_heuristics.cc:jxl::Status jxl::ThreadPool::Run<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0 const&, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
51
9.06k
             const DataFunc& data_func, const char* caller) {
52
9.06k
    JXL_ENSURE(begin <= end);
53
9.06k
    if (begin == end) return true;
54
9.06k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
9.06k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
9.06k
    JxlParallelRetCode ret = (*runner_)(
72
9.06k
        runner_opaque_, static_cast<void*>(&call_state),
73
9.06k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
9.06k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
9.06k
    return true;
79
9.06k
  }
enc_heuristics.cc:jxl::Status jxl::ThreadPool::Run<jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0>(unsigned int, unsigned int, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1 const&, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0 const&, char const*)
Line
Count
Source
51
3.02k
             const DataFunc& data_func, const char* caller) {
52
3.02k
    JXL_ENSURE(begin <= end);
53
3.02k
    if (begin == end) return true;
54
3.02k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.02k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.02k
    JxlParallelRetCode ret = (*runner_)(
72
3.02k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.02k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.02k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.02k
    return true;
79
3.02k
  }
enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
Line
Count
Source
51
3.02k
             const DataFunc& data_func, const char* caller) {
52
3.02k
    JXL_ENSURE(begin <= end);
53
3.02k
    if (begin == end) return true;
54
3.02k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.02k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.02k
    JxlParallelRetCode ret = (*runner_)(
72
3.02k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.02k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.02k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.02k
    return true;
79
3.02k
  }
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0 const&, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1 const&, char const*)
enc_cache.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)
Line
Count
Source
51
3.02k
             const DataFunc& data_func, const char* caller) {
52
3.02k
    JXL_ENSURE(begin <= end);
53
3.02k
    if (begin == end) return true;
54
3.02k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.02k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.02k
    JxlParallelRetCode ret = (*runner_)(
72
3.02k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.02k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.02k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.02k
    return true;
79
3.02k
  }
enc_cache.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)
Line
Count
Source
51
3.02k
             const DataFunc& data_func, const char* caller) {
52
3.02k
    JXL_ENSURE(begin <= end);
53
3.02k
    if (begin == end) return true;
54
3.02k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.02k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.02k
    JxlParallelRetCode ret = (*runner_)(
72
3.02k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.02k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.02k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.02k
    return true;
79
3.02k
  }
enc_cache.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)
Line
Count
Source
51
3.02k
             const DataFunc& data_func, const char* caller) {
52
3.02k
    JXL_ENSURE(begin <= end);
53
3.02k
    if (begin == end) return true;
54
3.02k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.02k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.02k
    JxlParallelRetCode ret = (*runner_)(
72
3.02k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.02k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.02k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.02k
    return true;
79
3.02k
  }
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
51
3.22k
             const DataFunc& data_func, const char* caller) {
52
3.22k
    JXL_ENSURE(begin <= end);
53
3.22k
    if (begin == end) return true;
54
3.22k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.22k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.22k
    JxlParallelRetCode ret = (*runner_)(
72
3.22k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.22k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.22k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.22k
    return true;
79
3.22k
  }
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Line
Count
Source
51
12.0k
             const DataFunc& data_func, const char* caller) {
52
12.0k
    JXL_ENSURE(begin <= end);
53
12.0k
    if (begin == end) return true;
54
12.0k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
12.0k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
12.0k
    JxlParallelRetCode ret = (*runner_)(
72
12.0k
        runner_opaque_, static_cast<void*>(&call_state),
73
12.0k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
12.0k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
12.0k
    return true;
79
12.0k
  }
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE0_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE1_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE2_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE3_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE4_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE5_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>(unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3 const&, char const*)
dec_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>(unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5 const&, char const*)
Line
Count
Source
51
1.28k
             const DataFunc& data_func, const char* caller) {
52
1.28k
    JXL_ENSURE(begin <= end);
53
1.28k
    if (begin == end) return true;
54
1.28k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
1.28k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
1.28k
    JxlParallelRetCode ret = (*runner_)(
72
1.28k
        runner_opaque_, static_cast<void*>(&call_state),
73
1.28k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
1.28k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
1.28k
    return true;
79
1.28k
  }
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7>(unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7 const&, char const*)
dec_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)
Line
Count
Source
51
35.0k
             const DataFunc& data_func, const char* caller) {
52
35.0k
    JXL_ENSURE(begin <= end);
53
35.0k
    if (begin == end) return true;
54
35.0k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
35.0k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
35.0k
    JxlParallelRetCode ret = (*runner_)(
72
35.0k
        runner_opaque_, static_cast<void*>(&call_state),
73
35.0k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
35.0k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
846
      return JXL_FAILURE("[%s] failed", caller);
77
846
    }
78
34.2k
    return true;
79
35.0k
  }
dec_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2>(unsigned int, unsigned int, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1 const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2 const&, char const*)
Line
Count
Source
51
33.8k
             const DataFunc& data_func, const char* caller) {
52
33.8k
    JXL_ENSURE(begin <= end);
53
33.8k
    if (begin == end) return true;
54
33.8k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
33.8k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
33.8k
    JxlParallelRetCode ret = (*runner_)(
72
33.8k
        runner_opaque_, static_cast<void*>(&call_state),
73
33.8k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
33.8k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
295
      return JXL_FAILURE("[%s] failed", caller);
77
295
    }
78
33.5k
    return true;
79
33.8k
  }
Unexecuted instantiation: dec_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::FrameDecoder::Flush()::$_0, jxl::FrameDecoder::Flush()::$_1>(unsigned int, unsigned int, jxl::FrameDecoder::Flush()::$_0 const&, jxl::FrameDecoder::Flush()::$_1 const&, char const*)
dec_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)
Line
Count
Source
51
17.3k
             const DataFunc& data_func, const char* caller) {
52
17.3k
    JXL_ENSURE(begin <= end);
53
17.3k
    if (begin == end) return true;
54
17.3k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
17.3k
    if (!runner_) {
58
17.3k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
17.3k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
17.3k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
1.45M
      for (uint32_t i = begin; i < end; i++) {
64
1.43M
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
1.43M
      }
66
17.3k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
17.3k
      return true;
70
17.3k
    }
71
0
    JxlParallelRetCode ret = (*runner_)(
72
0
        runner_opaque_, static_cast<void*>(&call_state),
73
0
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
0
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
0
    return true;
79
0
  }
dec_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)
Line
Count
Source
51
19.7k
             const DataFunc& data_func, const char* caller) {
52
19.7k
    JXL_ENSURE(begin <= end);
53
19.7k
    if (begin == end) return true;
54
19.7k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
19.7k
    if (!runner_) {
58
19.7k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
19.7k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
19.7k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
284k
      for (uint32_t i = begin; i < end; i++) {
64
264k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
264k
      }
66
19.7k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
19.7k
      return true;
70
19.7k
    }
71
0
    JxlParallelRetCode ret = (*runner_)(
72
0
        runner_opaque_, static_cast<void*>(&call_state),
73
0
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
0
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
0
    return true;
79
0
  }
dec_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)
Line
Count
Source
51
52.2k
             const DataFunc& data_func, const char* caller) {
52
52.2k
    JXL_ENSURE(begin <= end);
53
52.2k
    if (begin == end) return true;
54
52.2k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
52.2k
    if (!runner_) {
58
52.2k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
52.2k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
52.2k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
3.75M
      for (uint32_t i = begin; i < end; i++) {
64
3.70M
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
3.70M
      }
66
52.2k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
52.2k
      return true;
70
52.2k
    }
71
0
    JxlParallelRetCode ret = (*runner_)(
72
0
        runner_opaque_, static_cast<void*>(&call_state),
73
0
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
0
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
0
    return true;
79
0
  }
dec_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>(unsigned int, unsigned int, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0 const&, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1 const&, char const*)
Line
Count
Source
51
28.3k
             const DataFunc& data_func, const char* caller) {
52
28.3k
    JXL_ENSURE(begin <= end);
53
28.3k
    if (begin == end) return true;
54
28.3k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
28.3k
    if (!runner_) {
58
24.5k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
24.5k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
24.5k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
49.8k
      for (uint32_t i = begin; i < end; i++) {
64
25.3k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
25.3k
      }
66
24.5k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
24.5k
      return true;
70
24.5k
    }
71
3.80k
    JxlParallelRetCode ret = (*runner_)(
72
3.80k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.80k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.80k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.80k
    return true;
79
3.80k
  }
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
51
131k
             const DataFunc& data_func, const char* caller) {
52
131k
    JXL_ENSURE(begin <= end);
53
131k
    if (begin == end) return true;
54
131k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
131k
    if (!runner_) {
58
98.8k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
98.8k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
98.8k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
506k
      for (uint32_t i = begin; i < end; i++) {
64
407k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
407k
      }
66
98.8k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
98.8k
      return true;
70
98.8k
    }
71
32.4k
    JxlParallelRetCode ret = (*runner_)(
72
32.4k
        runner_opaque_, static_cast<void*>(&call_state),
73
32.4k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
32.4k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
32.4k
    return true;
79
32.4k
  }
squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
51
129k
             const DataFunc& data_func, const char* caller) {
52
129k
    JXL_ENSURE(begin <= end);
53
129k
    if (begin == end) return true;
54
129k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
129k
    if (!runner_) {
58
97.4k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
97.4k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
97.4k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
208k
      for (uint32_t i = begin; i < end; i++) {
64
110k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
110k
      }
66
97.4k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
97.4k
      return true;
70
97.4k
    }
71
31.9k
    JxlParallelRetCode ret = (*runner_)(
72
31.9k
        runner_opaque_, static_cast<void*>(&call_state),
73
31.9k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
31.9k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
31.9k
    return true;
79
31.9k
  }
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
51
2.42k
             const DataFunc& data_func, const char* caller) {
52
2.42k
    JXL_ENSURE(begin <= end);
53
2.42k
    if (begin == end) return true;
54
2.40k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.40k
    if (!runner_) {
58
2.14k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
2.14k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
2.14k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
70.4k
      for (uint32_t i = begin; i < end; i++) {
64
68.3k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
68.3k
      }
66
2.14k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
2.14k
      return true;
70
2.14k
    }
71
259
    JxlParallelRetCode ret = (*runner_)(
72
259
        runner_opaque_, static_cast<void*>(&call_state),
73
259
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
259
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
259
    return true;
79
259
  }
Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
palette.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
51
893
             const DataFunc& data_func, const char* caller) {
52
893
    JXL_ENSURE(begin <= end);
53
893
    if (begin == end) return true;
54
892
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
892
    if (!runner_) {
58
655
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
655
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
655
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
35.2k
      for (uint32_t i = begin; i < end; i++) {
64
34.6k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
34.6k
      }
66
655
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
655
      return true;
70
655
    }
71
237
    JxlParallelRetCode ret = (*runner_)(
72
237
        runner_opaque_, static_cast<void*>(&call_state),
73
237
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
237
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
237
    return true;
79
237
  }
palette.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
51
883
             const DataFunc& data_func, const char* caller) {
52
883
    JXL_ENSURE(begin <= end);
53
883
    if (begin == end) return true;
54
882
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
882
    if (!runner_) {
58
169
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
169
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
169
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
9.61k
      for (uint32_t i = begin; i < end; i++) {
64
9.44k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
9.44k
      }
66
169
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
169
      return true;
70
169
    }
71
713
    JxlParallelRetCode ret = (*runner_)(
72
713
        runner_opaque_, static_cast<void*>(&call_state),
73
713
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
713
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
713
    return true;
79
713
  }
palette.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)
Line
Count
Source
51
610
             const DataFunc& data_func, const char* caller) {
52
610
    JXL_ENSURE(begin <= end);
53
610
    if (begin == end) return true;
54
610
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
610
    if (!runner_) {
58
305
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
305
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
305
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
1.13k
      for (uint32_t i = begin; i < end; i++) {
64
826
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
826
      }
66
305
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
305
      return true;
70
305
    }
71
305
    JxlParallelRetCode ret = (*runner_)(
72
305
        runner_opaque_, static_cast<void*>(&call_state),
73
305
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
305
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
305
    return true;
79
305
  }
palette.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)
Line
Count
Source
51
2.27k
             const DataFunc& data_func, const char* caller) {
52
2.27k
    JXL_ENSURE(begin <= end);
53
2.27k
    if (begin == end) return true;
54
2.27k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.27k
    if (!runner_) {
58
1.67k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
1.67k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
1.67k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
4.49k
      for (uint32_t i = begin; i < end; i++) {
64
2.82k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
2.82k
      }
66
1.67k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
1.67k
      return true;
70
1.67k
    }
71
594
    JxlParallelRetCode ret = (*runner_)(
72
594
        runner_opaque_, static_cast<void*>(&call_state),
73
594
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
594
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
594
    return true;
79
594
  }
80
81
  // Use this as init_func when no initialization is needed.
82
  static constexpr ThreadPoolNoInit NoInit{};
83
84
 private:
85
  // class holding the state of a Run() call to pass to the runner_ as an
86
  // opaque_jpegxl pointer.
87
  template <class InitFunc, class DataFunc>
88
  class RunCallState final {
89
   public:
90
    RunCallState(const InitFunc& init_func, const DataFunc& data_func)
91
537k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: encode.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>::RunCallState({lambda(unsigned long)#1} const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&)
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&)
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&)
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1>::RunCallState(jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0 const&, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1 const&)
Line
Count
Source
91
3.02k
        : init_func_(init_func), data_func_(data_func) {}
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0>::RunCallState(jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2 const&, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0 const&)
Line
Count
Source
91
3.93k
        : init_func_(init_func), data_func_(data_func) {}
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3>::RunCallState(jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2 const&, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3 const&)
Line
Count
Source
91
3.93k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&)
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&)
Line
Count
Source
91
1.82k
        : init_func_(init_func), data_func_(data_func) {}
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&)
Line
Count
Source
91
1.42k
        : init_func_(init_func), data_func_(data_func) {}
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&)
Line
Count
Source
91
1.95k
        : init_func_(init_func), data_func_(data_func) {}
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&)
Line
Count
Source
91
3.93k
        : init_func_(init_func), data_func_(data_func) {}
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&)
Line
Count
Source
91
3.93k
        : init_func_(init_func), data_func_(data_func) {}
enc_patch_dictionary.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&)
Line
Count
Source
91
2.21k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Line
Count
Source
91
9
        : init_func_(init_func), data_func_(data_func) {}
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Line
Count
Source
91
3.01k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::RunCallState(jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1 const&)
enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&)
Line
Count
Source
91
12.9k
        : init_func_(init_func), data_func_(data_func) {}
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::RunCallState(jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0 const&, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1 const&)
Line
Count
Source
91
9.06k
        : init_func_(init_func), data_func_(data_func) {}
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0>::RunCallState(jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1 const&, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0 const&)
Line
Count
Source
91
3.02k
        : init_func_(init_func), data_func_(data_func) {}
enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&)
Line
Count
Source
91
3.02k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1>::RunCallState(jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0 const&, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1 const&)
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&)
Line
Count
Source
91
3.02k
        : init_func_(init_func), data_func_(data_func) {}
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&)
Line
Count
Source
91
3.02k
        : init_func_(init_func), data_func_(data_func) {}
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&)
Line
Count
Source
91
3.02k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)
compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)
Line
Count
Source
91
3.22k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)
convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)
Line
Count
Source
91
12.0k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#2} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#3} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#4} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#5} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#6} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#7} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::RunCallState(jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3 const&)
dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::RunCallState(jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5 const&)
Line
Count
Source
91
1.28k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7>::RunCallState(jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7 const&)
dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&)
Line
Count
Source
91
35.0k
        : init_func_(init_func), data_func_(data_func) {}
dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2>::RunCallState(jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1 const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2 const&)
Line
Count
Source
91
33.8k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::Flush()::$_0, jxl::FrameDecoder::Flush()::$_1>::RunCallState(jxl::FrameDecoder::Flush()::$_0 const&, jxl::FrameDecoder::Flush()::$_1 const&)
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&)
Line
Count
Source
91
17.3k
        : init_func_(init_func), data_func_(data_func) {}
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&)
Line
Count
Source
91
19.7k
        : init_func_(init_func), data_func_(data_func) {}
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&)
Line
Count
Source
91
52.2k
        : init_func_(init_func), data_func_(data_func) {}
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>::RunCallState(jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0 const&, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1 const&)
Line
Count
Source
91
28.3k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)
Line
Count
Source
91
131k
        : init_func_(init_func), data_func_(data_func) {}
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)
Line
Count
Source
91
129k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)
rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)
Line
Count
Source
91
2.40k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&)
Line
Count
Source
91
892
        : init_func_(init_func), data_func_(data_func) {}
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&)
Line
Count
Source
91
882
        : init_func_(init_func), data_func_(data_func) {}
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&)
Line
Count
Source
91
610
        : init_func_(init_func), data_func_(data_func) {}
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&)
Line
Count
Source
91
2.27k
        : init_func_(init_func), data_func_(data_func) {}
92
93
    // JxlParallelRunInit interface.
94
537k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
537k
      auto* self =
96
537k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
537k
      if (!self->init_func_(num_threads)) {
100
1
        self->has_error_ = 1;
101
1
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
1
      }
103
537k
      return JXL_PARALLEL_RET_SUCCESS;
104
537k
    }
Unexecuted instantiation: encode.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>::CallInitFunc(void*, unsigned long)
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
3.02k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.02k
      auto* self =
96
3.02k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.02k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.02k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.02k
    }
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
3.93k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.93k
      auto* self =
96
3.93k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.93k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.93k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.93k
    }
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
3.93k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.93k
      auto* self =
96
3.93k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.93k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.93k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.93k
    }
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::CallInitFunc(void*, unsigned long)
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
1.82k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
1.82k
      auto* self =
96
1.82k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
1.82k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
1.82k
      return JXL_PARALLEL_RET_SUCCESS;
104
1.82k
    }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
1.42k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
1.42k
      auto* self =
96
1.42k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
1.42k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
1.42k
      return JXL_PARALLEL_RET_SUCCESS;
104
1.42k
    }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
1.95k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
1.95k
      auto* self =
96
1.95k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
1.95k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
1.95k
      return JXL_PARALLEL_RET_SUCCESS;
104
1.95k
    }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
3.93k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.93k
      auto* self =
96
3.93k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.93k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.93k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.93k
    }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
3.93k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.93k
      auto* self =
96
3.93k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.93k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.93k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.93k
    }
enc_patch_dictionary.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
2.21k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.21k
      auto* self =
96
2.21k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.21k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.21k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.21k
    }
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
9
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
9
      auto* self =
96
9
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
9
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
9
      return JXL_PARALLEL_RET_SUCCESS;
104
9
    }
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
3.01k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.01k
      auto* self =
96
3.01k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.01k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.01k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.01k
    }
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::CallInitFunc(void*, unsigned long)
enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
12.9k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
12.9k
      auto* self =
96
12.9k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
12.9k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
12.9k
      return JXL_PARALLEL_RET_SUCCESS;
104
12.9k
    }
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
9.06k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
9.06k
      auto* self =
96
9.06k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
9.06k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
9.06k
      return JXL_PARALLEL_RET_SUCCESS;
104
9.06k
    }
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
3.02k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.02k
      auto* self =
96
3.02k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.02k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.02k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.02k
    }
enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
3.02k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.02k
      auto* self =
96
3.02k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.02k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.02k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.02k
    }
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
3.02k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.02k
      auto* self =
96
3.02k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.02k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.02k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.02k
    }
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
3.02k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.02k
      auto* self =
96
3.02k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.02k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.02k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.02k
    }
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
3.02k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.02k
      auto* self =
96
3.02k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.02k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.02k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.02k
    }
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
3.22k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.22k
      auto* self =
96
3.22k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.22k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.22k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.22k
    }
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)
convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
12.0k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
12.0k
      auto* self =
96
12.0k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
12.0k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
12.0k
      return JXL_PARALLEL_RET_SUCCESS;
104
12.0k
    }
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::CallInitFunc(void*, unsigned long)
dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
1.28k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
1.28k
      auto* self =
96
1.28k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
1.28k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
1.28k
      return JXL_PARALLEL_RET_SUCCESS;
104
1.28k
    }
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7>::CallInitFunc(void*, unsigned long)
dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
35.0k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
35.0k
      auto* self =
96
35.0k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
35.0k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
35.0k
      return JXL_PARALLEL_RET_SUCCESS;
104
35.0k
    }
dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
33.8k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
33.8k
      auto* self =
96
33.8k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
33.8k
      if (!self->init_func_(num_threads)) {
100
1
        self->has_error_ = 1;
101
1
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
1
      }
103
33.8k
      return JXL_PARALLEL_RET_SUCCESS;
104
33.8k
    }
Unexecuted instantiation: dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::Flush()::$_0, jxl::FrameDecoder::Flush()::$_1>::CallInitFunc(void*, unsigned long)
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
17.3k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
17.3k
      auto* self =
96
17.3k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
17.3k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
17.3k
      return JXL_PARALLEL_RET_SUCCESS;
104
17.3k
    }
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
19.7k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
19.7k
      auto* self =
96
19.7k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
19.7k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
19.7k
      return JXL_PARALLEL_RET_SUCCESS;
104
19.7k
    }
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
52.2k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
52.2k
      auto* self =
96
52.2k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
52.2k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
52.2k
      return JXL_PARALLEL_RET_SUCCESS;
104
52.2k
    }
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
28.3k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
28.3k
      auto* self =
96
28.3k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
28.3k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
28.3k
      return JXL_PARALLEL_RET_SUCCESS;
104
28.3k
    }
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
131k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
131k
      auto* self =
96
131k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
131k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
131k
      return JXL_PARALLEL_RET_SUCCESS;
104
131k
    }
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
129k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
129k
      auto* self =
96
129k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
129k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
129k
      return JXL_PARALLEL_RET_SUCCESS;
104
129k
    }
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
2.40k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.40k
      auto* self =
96
2.40k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.40k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.40k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.40k
    }
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
892
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
892
      auto* self =
96
892
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
892
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
892
      return JXL_PARALLEL_RET_SUCCESS;
104
892
    }
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
882
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
882
      auto* self =
96
882
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
882
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
882
      return JXL_PARALLEL_RET_SUCCESS;
104
882
    }
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
610
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
610
      auto* self =
96
610
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
610
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
610
      return JXL_PARALLEL_RET_SUCCESS;
104
610
    }
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
2.27k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.27k
      auto* self =
96
2.27k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.27k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.27k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.27k
    }
105
106
    // JxlParallelRunFunction interface.
107
    static void CallDataFunc(void* jpegxl_opaque, uint32_t value,
108
14.4M
                             size_t thread_id) {
109
14.4M
      auto* self =
110
14.4M
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
14.4M
      if (self->has_error_) return;
112
14.4M
      if (!self->data_func_(value, thread_id)) {
113
1.14k
        self->has_error_ = 1;
114
1.14k
      }
115
14.4M
    }
Unexecuted instantiation: encode.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
7.81k
                             size_t thread_id) {
109
7.81k
      auto* self =
110
7.81k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
7.81k
      if (self->has_error_) return;
112
7.81k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
7.81k
    }
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
3.93k
                             size_t thread_id) {
109
3.93k
      auto* self =
110
3.93k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
3.93k
      if (self->has_error_) return;
112
3.93k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
3.93k
    }
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
8.72k
                             size_t thread_id) {
109
8.72k
      auto* self =
110
8.72k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
8.72k
      if (self->has_error_) return;
112
8.72k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
8.72k
    }
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
97.2k
                             size_t thread_id) {
109
97.2k
      auto* self =
110
97.2k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
97.2k
      if (self->has_error_) return;
112
97.2k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
97.2k
    }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
215k
                             size_t thread_id) {
109
215k
      auto* self =
110
215k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
215k
      if (self->has_error_) return;
112
215k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
215k
    }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
6.72k
                             size_t thread_id) {
109
6.72k
      auto* self =
110
6.72k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
6.72k
      if (self->has_error_) return;
112
6.72k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
6.72k
    }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
8.45k
                             size_t thread_id) {
109
8.45k
      auto* self =
110
8.45k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
8.45k
      if (self->has_error_) return;
112
8.45k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
8.45k
    }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
91.2k
                             size_t thread_id) {
109
91.2k
      auto* self =
110
91.2k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
91.2k
      if (self->has_error_) return;
112
91.2k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
91.2k
    }
enc_patch_dictionary.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
183k
                             size_t thread_id) {
109
183k
      auto* self =
110
183k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
183k
      if (self->has_error_) return;
112
183k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
183k
    }
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
1.19k
                             size_t thread_id) {
109
1.19k
      auto* self =
110
1.19k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
1.19k
      if (self->has_error_) return;
112
1.19k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
1.19k
    }
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
809k
                             size_t thread_id) {
109
809k
      auto* self =
110
809k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
809k
      if (self->has_error_) return;
112
809k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
809k
    }
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
2.77M
                             size_t thread_id) {
109
2.77M
      auto* self =
110
2.77M
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
2.77M
      if (self->has_error_) return;
112
2.77M
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
2.77M
    }
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
23.4k
                             size_t thread_id) {
109
23.4k
      auto* self =
110
23.4k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
23.4k
      if (self->has_error_) return;
112
23.4k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
23.4k
    }
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
82.7k
                             size_t thread_id) {
109
82.7k
      auto* self =
110
82.7k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
82.7k
      if (self->has_error_) return;
112
82.7k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
82.7k
    }
enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
82.7k
                             size_t thread_id) {
109
82.7k
      auto* self =
110
82.7k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
82.7k
      if (self->has_error_) return;
112
82.7k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
82.7k
    }
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
3.02k
                             size_t thread_id) {
109
3.02k
      auto* self =
110
3.02k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
3.02k
      if (self->has_error_) return;
112
3.02k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
3.02k
    }
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
7.81k
                             size_t thread_id) {
109
7.81k
      auto* self =
110
7.81k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
7.81k
      if (self->has_error_) return;
112
7.81k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
7.81k
    }
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
3.02k
                             size_t thread_id) {
109
3.02k
      auto* self =
110
3.02k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
3.02k
      if (self->has_error_) return;
112
3.02k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
3.02k
    }
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
98.0k
                             size_t thread_id) {
109
98.0k
      auto* self =
110
98.0k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
98.0k
      if (self->has_error_) return;
112
98.0k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
98.0k
    }
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
3.26M
                             size_t thread_id) {
109
3.26M
      auto* self =
110
3.26M
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
3.26M
      if (self->has_error_) return;
112
3.26M
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
3.26M
    }
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
67.0k
                             size_t thread_id) {
109
67.0k
      auto* self =
110
67.0k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
67.0k
      if (self->has_error_) return;
112
67.0k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
67.0k
    }
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7>::CallDataFunc(void*, unsigned int, unsigned long)
dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
36.2k
                             size_t thread_id) {
109
36.2k
      auto* self =
110
36.2k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
36.2k
      if (self->has_error_) return;
112
35.8k
      if (!self->data_func_(value, thread_id)) {
113
846
        self->has_error_ = 1;
114
846
      }
115
35.8k
    }
dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
39.9k
                             size_t thread_id) {
109
39.9k
      auto* self =
110
39.9k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
39.9k
      if (self->has_error_) return;
112
37.9k
      if (!self->data_func_(value, thread_id)) {
113
294
        self->has_error_ = 1;
114
294
      }
115
37.9k
    }
Unexecuted instantiation: dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::Flush()::$_0, jxl::FrameDecoder::Flush()::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
1.43M
                             size_t thread_id) {
109
1.43M
      auto* self =
110
1.43M
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
1.43M
      if (self->has_error_) return;
112
1.43M
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
1.43M
    }
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
264k
                             size_t thread_id) {
109
264k
      auto* self =
110
264k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
264k
      if (self->has_error_) return;
112
264k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
264k
    }
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
3.70M
                             size_t thread_id) {
109
3.70M
      auto* self =
110
3.70M
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
3.70M
      if (self->has_error_) return;
112
3.70M
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
3.70M
    }
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
29.4k
                             size_t thread_id) {
109
29.4k
      auto* self =
110
29.4k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
29.4k
      if (self->has_error_) return;
112
29.4k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
29.4k
    }
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
638k
                             size_t thread_id) {
109
638k
      auto* self =
110
638k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
638k
      if (self->has_error_) return;
112
638k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
638k
    }
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
156k
                             size_t thread_id) {
109
156k
      auto* self =
110
156k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
156k
      if (self->has_error_) return;
112
156k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
156k
    }
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
101k
                             size_t thread_id) {
109
101k
      auto* self =
110
101k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
101k
      if (self->has_error_) return;
112
101k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
101k
    }
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
39.9k
                             size_t thread_id) {
109
39.9k
      auto* self =
110
39.9k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
39.9k
      if (self->has_error_) return;
112
39.9k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
39.9k
    }
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
127k
                             size_t thread_id) {
109
127k
      auto* self =
110
127k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
127k
      if (self->has_error_) return;
112
127k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
127k
    }
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
2.04k
                             size_t thread_id) {
109
2.04k
      auto* self =
110
2.04k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
2.04k
      if (self->has_error_) return;
112
2.04k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
2.04k
    }
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
5.16k
                             size_t thread_id) {
109
5.16k
      auto* self =
110
5.16k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
5.16k
      if (self->has_error_) return;
112
5.16k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
5.16k
    }
116
117
537k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: encode.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>::HasError() const
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>::HasError() const
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>::HasError() const
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1>::HasError() const
Line
Count
Source
117
3.02k
    bool HasError() const { return has_error_ != 0; }
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0>::HasError() const
Line
Count
Source
117
3.93k
    bool HasError() const { return has_error_ != 0; }
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3>::HasError() const
Line
Count
Source
117
3.93k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::HasError() const
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::HasError() const
Line
Count
Source
117
1.82k
    bool HasError() const { return has_error_ != 0; }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::HasError() const
Line
Count
Source
117
1.42k
    bool HasError() const { return has_error_ != 0; }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::HasError() const
Line
Count
Source
117
1.95k
    bool HasError() const { return has_error_ != 0; }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>::HasError() const
Line
Count
Source
117
3.93k
    bool HasError() const { return has_error_ != 0; }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>::HasError() const
Line
Count
Source
117
3.93k
    bool HasError() const { return has_error_ != 0; }
enc_patch_dictionary.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::HasError() const
Line
Count
Source
117
2.21k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() const
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Line
Count
Source
117
9
    bool HasError() const { return has_error_ != 0; }
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Line
Count
Source
117
3.01k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::HasError() const
enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::HasError() const
Line
Count
Source
117
12.9k
    bool HasError() const { return has_error_ != 0; }
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::HasError() const
Line
Count
Source
117
9.06k
    bool HasError() const { return has_error_ != 0; }
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0>::HasError() const
Line
Count
Source
117
3.02k
    bool HasError() const { return has_error_ != 0; }
enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const
Line
Count
Source
117
3.02k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1>::HasError() const
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>::HasError() const
Line
Count
Source
117
3.02k
    bool HasError() const { return has_error_ != 0; }
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>::HasError() const
Line
Count
Source
117
3.02k
    bool HasError() const { return has_error_ != 0; }
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>::HasError() const
Line
Count
Source
117
3.02k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() const
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() const
compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Line
Count
Source
117
3.22k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::HasError() const
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() const
convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() const
Line
Count
Source
117
12.0k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::HasError() const
dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::HasError() const
Line
Count
Source
117
1.28k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7>::HasError() const
dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>::HasError() const
Line
Count
Source
117
35.0k
    bool HasError() const { return has_error_ != 0; }
dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2>::HasError() const
Line
Count
Source
117
33.8k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::Flush()::$_0, jxl::FrameDecoder::Flush()::$_1>::HasError() const
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>::HasError() const
Line
Count
Source
117
17.3k
    bool HasError() const { return has_error_ != 0; }
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>::HasError() const
Line
Count
Source
117
19.7k
    bool HasError() const { return has_error_ != 0; }
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>::HasError() const
Line
Count
Source
117
52.2k
    bool HasError() const { return has_error_ != 0; }
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>::HasError() const
Line
Count
Source
117
28.3k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() const
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() const
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() const
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() const
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() const
Line
Count
Source
117
131k
    bool HasError() const { return has_error_ != 0; }
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() const
Line
Count
Source
117
129k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Line
Count
Source
117
2.40k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::HasError() const
Line
Count
Source
117
892
    bool HasError() const { return has_error_ != 0; }
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>::HasError() const
Line
Count
Source
117
882
    bool HasError() const { return has_error_ != 0; }
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>::HasError() const
Line
Count
Source
117
610
    bool HasError() const { return has_error_ != 0; }
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>::HasError() const
Line
Count
Source
117
2.27k
    bool HasError() const { return has_error_ != 0; }
118
119
   private:
120
    const InitFunc& init_func_;
121
    const DataFunc& data_func_;
122
    std::atomic<uint32_t> has_error_{0};
123
  };
124
125
  // The caller supplied runner function and its opaque void*.
126
  const JxlParallelRunner runner_;
127
  void* const runner_opaque_;
128
};
129
130
template <class InitFunc, class DataFunc>
131
Status RunOnPool(ThreadPool* pool, const uint32_t begin, const uint32_t end,
132
                 const InitFunc& init_func, const DataFunc& data_func,
133
537k
                 const char* caller) {
134
537k
  if (pool == nullptr) {
135
315k
    ThreadPool default_pool(nullptr, nullptr);
136
315k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
315k
  } else {
138
222k
    return pool->Run(begin, end, init_func, data_func, caller);
139
222k
  }
140
537k
}
Unexecuted instantiation: encode.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)
enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0 const&, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1 const&, char const*)
Line
Count
Source
133
3.02k
                 const char* caller) {
134
3.02k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.02k
  } else {
138
3.02k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.02k
  }
140
3.02k
}
enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2 const&, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0 const&, char const*)
Line
Count
Source
133
3.93k
                 const char* caller) {
134
3.93k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.93k
  } else {
138
3.93k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.93k
  }
140
3.93k
}
enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2 const&, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3 const&, char const*)
Line
Count
Source
133
3.93k
                 const char* caller) {
134
3.93k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.93k
  } else {
138
3.93k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.93k
  }
140
3.93k
}
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)
Line
Count
Source
133
1.82k
                 const char* caller) {
134
1.82k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
1.82k
  } else {
138
1.82k
    return pool->Run(begin, end, init_func, data_func, caller);
139
1.82k
  }
140
1.82k
}
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)
Line
Count
Source
133
1.42k
                 const char* caller) {
134
1.42k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
1.42k
  } else {
138
1.42k
    return pool->Run(begin, end, init_func, data_func, caller);
139
1.42k
  }
140
1.42k
}
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)
Line
Count
Source
133
1.95k
                 const char* caller) {
134
1.95k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
1.95k
  } else {
138
1.95k
    return pool->Run(begin, end, init_func, data_func, caller);
139
1.95k
  }
140
1.95k
}
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
133
3.93k
                 const char* caller) {
134
3.93k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.93k
  } else {
138
3.93k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.93k
  }
140
3.93k
}
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
133
3.93k
                 const char* caller) {
134
3.93k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.93k
  } else {
138
3.93k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.93k
  }
140
3.93k
}
enc_patch_dictionary.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)
Line
Count
Source
133
2.21k
                 const char* caller) {
134
2.21k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
2.21k
  } else {
138
2.21k
    return pool->Run(begin, end, init_func, data_func, caller);
139
2.21k
  }
140
2.21k
}
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Line
Count
Source
133
9
                 const char* caller) {
134
9
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
9
  } else {
138
9
    return pool->Run(begin, end, init_func, data_func, caller);
139
9
  }
140
9
}
enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Line
Count
Source
133
3.01k
                 const char* caller) {
134
3.01k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.01k
  } else {
138
3.01k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.01k
  }
140
3.01k
}
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_image_bundle.cc:jxl::Status jxl::RunOnPool<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1 const&, char const*)
enc_external_image.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Line
Count
Source
133
12.9k
                 const char* caller) {
134
12.9k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
12.9k
  } else {
138
12.9k
    return pool->Run(begin, end, init_func, data_func, caller);
139
12.9k
  }
140
12.9k
}
enc_heuristics.cc:jxl::Status jxl::RunOnPool<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0 const&, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
133
9.06k
                 const char* caller) {
134
9.06k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
9.06k
  } else {
138
9.06k
    return pool->Run(begin, end, init_func, data_func, caller);
139
9.06k
  }
140
9.06k
}
enc_heuristics.cc:jxl::Status jxl::RunOnPool<jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1 const&, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0 const&, char const*)
Line
Count
Source
133
3.02k
                 const char* caller) {
134
3.02k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.02k
  } else {
138
3.02k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.02k
  }
140
3.02k
}
enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
Line
Count
Source
133
3.02k
                 const char* caller) {
134
3.02k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.02k
  } else {
138
3.02k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.02k
  }
140
3.02k
}
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0 const&, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1 const&, char const*)
enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)
Line
Count
Source
133
3.02k
                 const char* caller) {
134
3.02k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.02k
  } else {
138
3.02k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.02k
  }
140
3.02k
}
enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)
Line
Count
Source
133
3.02k
                 const char* caller) {
134
3.02k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.02k
  } else {
138
3.02k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.02k
  }
140
3.02k
}
enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)
Line
Count
Source
133
3.02k
                 const char* caller) {
134
3.02k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.02k
  } else {
138
3.02k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.02k
  }
140
3.02k
}
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
133
3.22k
                 const char* caller) {
134
3.22k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.22k
  } else {
138
3.22k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.22k
  }
140
3.22k
}
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Line
Count
Source
133
12.0k
                 const char* caller) {
134
12.0k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
12.0k
  } else {
138
12.0k
    return pool->Run(begin, end, init_func, data_func, caller);
139
12.0k
  }
140
12.0k
}
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE0_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE1_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE2_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE3_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE4_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE5_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3 const&, char const*)
dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5 const&, char const*)
Line
Count
Source
133
1.28k
                 const char* caller) {
134
1.28k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
1.28k
  } else {
138
1.28k
    return pool->Run(begin, end, init_func, data_func, caller);
139
1.28k
  }
140
1.28k
}
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7 const&, char const*)
dec_frame.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)
Line
Count
Source
133
35.0k
                 const char* caller) {
134
35.0k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
35.0k
  } else {
138
35.0k
    return pool->Run(begin, end, init_func, data_func, caller);
139
35.0k
  }
140
35.0k
}
dec_frame.cc:jxl::Status jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1 const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2 const&, char const*)
Line
Count
Source
133
33.8k
                 const char* caller) {
134
33.8k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
33.8k
  } else {
138
33.8k
    return pool->Run(begin, end, init_func, data_func, caller);
139
33.8k
  }
140
33.8k
}
Unexecuted instantiation: dec_frame.cc:jxl::Status jxl::RunOnPool<jxl::FrameDecoder::Flush()::$_0, jxl::FrameDecoder::Flush()::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::FrameDecoder::Flush()::$_0 const&, jxl::FrameDecoder::Flush()::$_1 const&, char const*)
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)
Line
Count
Source
133
17.3k
                 const char* caller) {
134
17.3k
  if (pool == nullptr) {
135
17.3k
    ThreadPool default_pool(nullptr, nullptr);
136
17.3k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
17.3k
  } else {
138
0
    return pool->Run(begin, end, init_func, data_func, caller);
139
0
  }
140
17.3k
}
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)
Line
Count
Source
133
19.7k
                 const char* caller) {
134
19.7k
  if (pool == nullptr) {
135
19.7k
    ThreadPool default_pool(nullptr, nullptr);
136
19.7k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
19.7k
  } else {
138
0
    return pool->Run(begin, end, init_func, data_func, caller);
139
0
  }
140
19.7k
}
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)
Line
Count
Source
133
52.2k
                 const char* caller) {
134
52.2k
  if (pool == nullptr) {
135
52.2k
    ThreadPool default_pool(nullptr, nullptr);
136
52.2k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
52.2k
  } else {
138
0
    return pool->Run(begin, end, init_func, data_func, caller);
139
0
  }
140
52.2k
}
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0 const&, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1 const&, char const*)
Line
Count
Source
133
28.3k
                 const char* caller) {
134
28.3k
  if (pool == nullptr) {
135
24.5k
    ThreadPool default_pool(nullptr, nullptr);
136
24.5k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
24.5k
  } else {
138
3.80k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.80k
  }
140
28.3k
}
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
133
131k
                 const char* caller) {
134
131k
  if (pool == nullptr) {
135
98.8k
    ThreadPool default_pool(nullptr, nullptr);
136
98.8k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
98.8k
  } else {
138
32.4k
    return pool->Run(begin, end, init_func, data_func, caller);
139
32.4k
  }
140
131k
}
squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
133
129k
                 const char* caller) {
134
129k
  if (pool == nullptr) {
135
97.4k
    ThreadPool default_pool(nullptr, nullptr);
136
97.4k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
97.4k
  } else {
138
31.9k
    return pool->Run(begin, end, init_func, data_func, caller);
139
31.9k
  }
140
129k
}
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
133
2.42k
                 const char* caller) {
134
2.42k
  if (pool == nullptr) {
135
2.16k
    ThreadPool default_pool(nullptr, nullptr);
136
2.16k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
2.16k
  } else {
138
259
    return pool->Run(begin, end, init_func, data_func, caller);
139
259
  }
140
2.42k
}
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
palette.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
133
893
                 const char* caller) {
134
893
  if (pool == nullptr) {
135
656
    ThreadPool default_pool(nullptr, nullptr);
136
656
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
656
  } else {
138
237
    return pool->Run(begin, end, init_func, data_func, caller);
139
237
  }
140
893
}
palette.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
133
883
                 const char* caller) {
134
883
  if (pool == nullptr) {
135
170
    ThreadPool default_pool(nullptr, nullptr);
136
170
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
713
  } else {
138
713
    return pool->Run(begin, end, init_func, data_func, caller);
139
713
  }
140
883
}
palette.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)
Line
Count
Source
133
610
                 const char* caller) {
134
610
  if (pool == nullptr) {
135
305
    ThreadPool default_pool(nullptr, nullptr);
136
305
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
305
  } else {
138
305
    return pool->Run(begin, end, init_func, data_func, caller);
139
305
  }
140
610
}
palette.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)
Line
Count
Source
133
2.27k
                 const char* caller) {
134
2.27k
  if (pool == nullptr) {
135
1.67k
    ThreadPool default_pool(nullptr, nullptr);
136
1.67k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
1.67k
  } else {
138
594
    return pool->Run(begin, end, init_func, data_func, caller);
139
594
  }
140
2.27k
}
141
142
template <class DataFunc>
143
Status RunOnPool(ThreadPool* pool, const uint32_t begin, const uint32_t end,
144
                 const ThreadPoolNoInit& no_init_func,
145
447k
                 const DataFunc& data_func, const char* caller) {
146
447k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: encode.cc:jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_frame.cc:jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_frame.cc:jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_frame.cc:jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
enc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
1.82k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
enc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
1.42k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
enc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
1.95k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
enc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
3.93k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
enc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
3.93k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
enc_patch_dictionary.cc:jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
2.21k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
9
  const auto init_func = [](size_t num_threads) -> Status { return true; };
enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
3.01k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
enc_external_image.cc:jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
12.9k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
enc_cache.cc:jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
3.02k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
enc_cache.cc:jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
3.02k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
enc_cache.cc:jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
3.02k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: compressed_dc.cc:jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
compressed_dc.cc:jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
3.22k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: compressed_dc.cc:jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: convolve_slow.cc:jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: convolve_slow.cc:jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
12.0k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
dec_frame.cc:jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
35.0k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
dec_modular.cc:jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
17.3k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
dec_modular.cc:jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
19.7k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
dec_modular.cc:jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
52.2k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
squeeze.cc:jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
131k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
squeeze.cc:jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
129k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
rct.cc:jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
2.40k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
palette.cc:jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
892
  const auto init_func = [](size_t num_threads) -> Status { return true; };
palette.cc:jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
882
  const auto init_func = [](size_t num_threads) -> Status { return true; };
palette.cc:jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
610
  const auto init_func = [](size_t num_threads) -> Status { return true; };
palette.cc:jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
2.27k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
447k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
447k
}
Unexecuted instantiation: encode.cc:jxl::Status jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)
Line
Count
Source
145
1.82k
                 const DataFunc& data_func, const char* caller) {
146
1.82k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
1.82k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
1.82k
}
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)
Line
Count
Source
145
1.42k
                 const DataFunc& data_func, const char* caller) {
146
1.42k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
1.42k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
1.42k
}
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)
Line
Count
Source
145
1.95k
                 const DataFunc& data_func, const char* caller) {
146
1.95k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
1.95k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
1.95k
}
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
145
3.93k
                 const DataFunc& data_func, const char* caller) {
146
3.93k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
3.93k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
3.93k
}
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
145
3.93k
                 const DataFunc& data_func, const char* caller) {
146
3.93k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
3.93k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
3.93k
}
enc_patch_dictionary.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)
Line
Count
Source
145
2.21k
                 const DataFunc& data_func, const char* caller) {
146
2.21k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
2.21k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
2.21k
}
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Line
Count
Source
145
9
                 const DataFunc& data_func, const char* caller) {
146
9
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
9
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
9
}
enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Line
Count
Source
145
3.01k
                 const DataFunc& data_func, const char* caller) {
146
3.01k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
3.01k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
3.01k
}
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
enc_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Line
Count
Source
145
12.9k
                 const DataFunc& data_func, const char* caller) {
146
12.9k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
12.9k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
12.9k
}
enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)
Line
Count
Source
145
3.02k
                 const DataFunc& data_func, const char* caller) {
146
3.02k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
3.02k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
3.02k
}
enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)
Line
Count
Source
145
3.02k
                 const DataFunc& data_func, const char* caller) {
146
3.02k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
3.02k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
3.02k
}
enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)
Line
Count
Source
145
3.02k
                 const DataFunc& data_func, const char* caller) {
146
3.02k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
3.02k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
3.02k
}
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
145
3.22k
                 const DataFunc& data_func, const char* caller) {
146
3.22k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
3.22k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
3.22k
}
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Line
Count
Source
145
12.0k
                 const DataFunc& data_func, const char* caller) {
146
12.0k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
12.0k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
12.0k
}
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)
dec_frame.cc:jxl::Status jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)
Line
Count
Source
145
35.0k
                 const DataFunc& data_func, const char* caller) {
146
35.0k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
35.0k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
35.0k
}
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)
Line
Count
Source
145
17.3k
                 const DataFunc& data_func, const char* caller) {
146
17.3k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
17.3k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
17.3k
}
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)
Line
Count
Source
145
19.7k
                 const DataFunc& data_func, const char* caller) {
146
19.7k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
19.7k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
19.7k
}
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)
Line
Count
Source
145
52.2k
                 const DataFunc& data_func, const char* caller) {
146
52.2k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
52.2k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
52.2k
}
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
145
131k
                 const DataFunc& data_func, const char* caller) {
146
131k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
131k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
131k
}
squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
145
129k
                 const DataFunc& data_func, const char* caller) {
146
129k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
129k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
129k
}
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
145
2.42k
                 const DataFunc& data_func, const char* caller) {
146
2.42k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
2.42k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
2.42k
}
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
palette.cc:jxl::Status jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
145
893
                 const DataFunc& data_func, const char* caller) {
146
893
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
893
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
893
}
palette.cc:jxl::Status jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
145
883
                 const DataFunc& data_func, const char* caller) {
146
883
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
883
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
883
}
palette.cc:jxl::Status jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)
Line
Count
Source
145
610
                 const DataFunc& data_func, const char* caller) {
146
610
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
610
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
610
}
palette.cc:jxl::Status jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)
Line
Count
Source
145
2.27k
                 const DataFunc& data_func, const char* caller) {
146
2.27k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
2.27k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
2.27k
}
149
150
}  // namespace jxl
151
#if JXL_COMPILER_MSVC
152
#pragma warning(default : 4180)
153
#endif
154
155
#endif  // LIB_JXL_BASE_DATA_PARALLEL_H_