HomeSort by relevance Sort by last modified time
    Searched defs:lutSize (Results 1 - 3 of 3) sorted by null

  /prebuilts/go/darwin-x86/src/image/jpeg/
huffman.go 17 // lutSize is the log-2 size of the Huffman decoder's look-up table.
18 const lutSize = 8
24 // lut is the look-up table for the next lutSize bits in the bit-stream.
27 // lutSize bits.
28 lut [1 << lutSize]uint16
137 for i := uint32(0); i < lutSize; i++ {
196 if v := h.lut[(d.bits.a>>uint32(d.bits.n-lutSize))&0xff]; v != 0 {
  /prebuilts/go/linux-x86/src/image/jpeg/
huffman.go 17 // lutSize is the log-2 size of the Huffman decoder's look-up table.
18 const lutSize = 8
24 // lut is the look-up table for the next lutSize bits in the bit-stream.
27 // lutSize bits.
28 lut [1 << lutSize]uint16
137 for i := uint32(0); i < lutSize; i++ {
196 if v := h.lut[(d.bits.a>>uint32(d.bits.n-lutSize))&0xff]; v != 0 {
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RS3DLUTTest.java 34 private final int lutSize = 64;
36 native boolean lutTest(String path, int X, int Y, int lutSize, byte[] input, byte[] input2, byte[] output);
40 int[] colorCube = new int[lutSize * lutSize * lutSize * 4];
43 byte[] byteColorCube = new byte[lutSize * lutSize * lutSize * 4];
47 for (int i = 0; i < lutSize * lutSize * lutSize * 4; i++)
    [all...]

Completed in 89 milliseconds