Home
last modified time | relevance | path

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

/external/swiftshader/src/Device/
DETC_Decoder.cpp83 inline int extend_7to8bits(int x) in extend_7to8bits() function
562 int go = extend_7to8bits(GO1 << 6 | GO2); in decodePlanarBlock()
566 int gh = extend_7to8bits(GH); in decodePlanarBlock()
570 int gv = extend_7to8bits(GVa << 2 | GVb); in decodePlanarBlock()
/external/swiftshader/src/Renderer/
DETC_Decoder.cpp84 inline int extend_7to8bits(int x) in extend_7to8bits() function
565 int go = extend_7to8bits(GO1 << 6 | GO2); in decodePlanarBlock()
569 int gh = extend_7to8bits(GH); in decodePlanarBlock()
573 int gv = extend_7to8bits(GVa << 2 | GVb); in decodePlanarBlock()
/external/angle/src/image_util/
Dloadimage_etc.cpp419 static int extend_7to8bits(int x) { return (x << 1) | (x >> 6); } in extend_7to8bits() function
644 int go = extend_7to8bits(u.pblk.GO1 << 6 | u.pblk.GO2); in decodePlanarBlock()
648 int gh = extend_7to8bits(u.pblk.GH); in decodePlanarBlock()
651 int gv = extend_7to8bits(u.pblk.GVa << 2 | u.pblk.GVb); in decodePlanarBlock()