Home
last modified time | relevance | path

Searched refs:extend_6to8bits (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/src/Device/
DETC_Decoder.cpp78 inline int extend_6to8bits(int x) in extend_6to8bits() function
561 int ro = extend_6to8bits(RO); in decodePlanarBlock()
563 int bo = extend_6to8bits(BO1 << 5 | BO2 << 3 | BO3a << 1 | BO3b); in decodePlanarBlock()
565 int rh = extend_6to8bits(RH1 << 1 | RH2); in decodePlanarBlock()
567 int bh = extend_6to8bits(BHa << 5 | BHb); in decodePlanarBlock()
569 int rv = extend_6to8bits(RVa << 3 | RVb); in decodePlanarBlock()
571 int bv = extend_6to8bits(BV); in decodePlanarBlock()
/external/swiftshader/src/Renderer/
DETC_Decoder.cpp79 inline int extend_6to8bits(int x) in extend_6to8bits() function
564 int ro = extend_6to8bits(RO); in decodePlanarBlock()
566 int bo = extend_6to8bits(BO1 << 5 | BO2 << 3 | BO3a << 1 | BO3b); in decodePlanarBlock()
568 int rh = extend_6to8bits(RH1 << 1 | RH2); in decodePlanarBlock()
570 int bh = extend_6to8bits(BHa << 5 | BHb); in decodePlanarBlock()
572 int rv = extend_6to8bits(RVa << 3 | RVb); in decodePlanarBlock()
574 int bv = extend_6to8bits(BV); in decodePlanarBlock()
/external/angle/src/image_util/
Dloadimage_etc.cpp418 static int extend_6to8bits(int x) { return (x << 2) | (x >> 4); } in extend_6to8bits() function
643 int ro = extend_6to8bits(u.pblk.RO); in decodePlanarBlock()
646 extend_6to8bits(u.pblk.BO1 << 5 | u.pblk.BO2 << 3 | u.pblk.BO3a << 1 | u.pblk.BO3b); in decodePlanarBlock()
647 int rh = extend_6to8bits(u.pblk.RH1 << 1 | u.pblk.RH2); in decodePlanarBlock()
649 int bh = extend_6to8bits(u.pblk.BHa << 5 | u.pblk.BHb); in decodePlanarBlock()
650 int rv = extend_6to8bits(u.pblk.RVa << 3 | u.pblk.RVb); in decodePlanarBlock()
652 int bv = extend_6to8bits(u.pblk.BV); in decodePlanarBlock()