| 262 | { |
| 263 | |
| 264 | inline int bfi(int width, int offset, int src2, int src3) |
| 265 | { |
| 266 | int bitmask = (((1 << width)-1) << offset) & 0xffffffff; |
| 267 | return ((src2 << offset) & bitmask) | (src3 & ~bitmask); |
| 268 | } |
| 269 | |
| 270 | class CpuDepthPacketProcessorImpl: public WithPerfLogging |
| 271 | { |
nothing calls this directly
no outgoing calls
no test coverage detected