/* * Copyright (c) 2001-2016, Alliance for Open Media. All rights reserved. * * This source code is subject to the terms of the BSD 2 Clause License and * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License * was not distributed with this source code in the LICENSE file, you can * obtain it at www.aomedia.org/license/software. If the Alliance for Open * Media Patent License 1.0 was not distributed with this source code in the * PATENTS file, you can obtain it at www.aomedia.org/license/patent. */ /* clang-format off */ #include "aom_dsp/odintrin.h" /*Constants for use with OD_DIVU_SMALL(). See \cite{Rob05} for details on computing these constants. @INPROCEEDINGS{Rob05, author="Arch D. Robison", title="{N}-bit Unsigned Division via {N}-bit Multiply-Add", booktitle="Proc. of the 17th IEEE Symposium on Computer Arithmetic (ARITH'05)", pages="131--139", address="Cape Cod, MA", month=Jun, year=2005 }*/ uint32_t OD_DIVU_SMALL_CONSTS[OD_DIVU_DMAX][2] = …;