Home
last modified time | relevance | path

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

/third_party/openh264/test/api/
DBaseThreadDecoderTest.cpp8 static int32_t readBit (uint8_t* pBufPtr, int32_t& curBit) { in readBit() function
20 r |= (readBit (pBufPtr, curBit) << (n - i - 1)); in readBits()
28 while ((readBit (pBufPtr, curBit) == 0) && (i < 32)) { in bsGetUe()
/third_party/openh264/codec/console/dec/src/
Dh264dec.cpp71 int32_t readBit (uint8_t* pBufPtr, int32_t& curBit) { in readBit() function
83 r |= (readBit (pBufPtr, curBit) << (n - i - 1)); in readBits()
91 while ((readBit (pBufPtr, curBit) == 0) && (i < 32)) { in bsGetUe()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DBuffer11.cpp72 bool readBit = ((access & GL_MAP_READ_BIT) != 0); in GetD3DMapTypeFromBits() local
75 ASSERT(readBit || writeBit); in GetD3DMapTypeFromBits()
80 if (readBit && !writeBit) in GetD3DMapTypeFromBits()
84 else if (writeBit && !readBit) in GetD3DMapTypeFromBits()
91 else if (writeBit && readBit) in GetD3DMapTypeFromBits()