Lines Matching refs:Table
15 * Definition of a lookup table based 1D floating-point to floating-point function abstraction using linear interpolation.
32 /// \brief A 1D floating-point lookup table using linear interpolation.
39 /// Constants denoting size of table.
43 kTableBits = 12, //< Table is always a power of 2 in size. This is log2(kTableSize).
44 kTableSize = (1 << kTableBits) //< Number of entries in table.
59 /// Set up table, initialize entries using functiion.
61 /// \param allocator Memory allocator from which table memory is allocated.
62 /// \param function Table is initialized with values of finction.Evalluate(0.0) to function.Evaluate(1.0).
99 /// Direct access function for table data.
101 const real32 * Table () const
106 /// Expand the table to a 16-bit to 16-bit table.
119 dng_1d_table (const dng_1d_table &table);
121 dng_1d_table & operator= (const dng_1d_table &table);