Searched refs:threading_ (Results 1 – 2 of 2) sorted by relevance
751 std::lock_guard<std::mutex> lock(threading_.mutex); in ThreadedParseAndDecode()752 if (!threading_.sb_state.Reset(superblock_rows_, superblock_columns_)) { in ThreadedParseAndDecode()758 ++threading_.pending_jobs; in ThreadedParseAndDecode()778 std::lock_guard<std::mutex> lock(threading_.mutex); in ThreadedParseAndDecode()779 threading_.abort = true; in ThreadedParseAndDecode()782 std::unique_lock<std::mutex> lock(threading_.mutex); in ThreadedParseAndDecode()783 if (threading_.abort) break; in ThreadedParseAndDecode()784 threading_.sb_state[row_index][column_index] = kSuperBlockStateParsed; in ThreadedParseAndDecode()787 ++threading_.pending_jobs; in ThreadedParseAndDecode()788 threading_.sb_state[row_index][column_index] = in ThreadedParseAndDecode()[all …]
723 ThreadingParameters threading_; variable