HomeSort by relevance Sort by last modified time
    Searched refs:byte0 (Results 1 - 4 of 4) sorted by null

  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
residual.cpp 30 uint32 byte0, byte1; local
49 status = BitstreamReadBits(stream, 8, (uint*) & byte0);
51 byte0 |= (byte1 << 8);
53 byte0 |= (byte1 << 16);
55 byte0 |= (byte1 << 24);
56 *((uint32*)pDst) = byte0;
58 status = BitstreamReadBits(stream, 8, (uint*) & byte0);
60 byte0 |= (byte1 << 8);
62 byte0 |= (byte1 << 16);
64 byte0 |= (byte1 << 24)
    [all...]
  /sdk/emulator/qtools/
decoder.cpp 212 uint8_t byte0 = *next_; local
215 int len = prefix_to_len[byte0];
224 val64 = prefix_to_signed_data[byte0];
226 val64 = prefix_to_data[byte0];
235 uint8_t byte0 = data; local
239 int len = prefix_to_len[byte0];
248 val64 = prefix_to_signed_data[byte0];
250 val64 = prefix_to_data[byte0];
  /external/webkit/JavaScriptCore/assembler/
ARMv7Assembler.h 191 // byte0 contains least significant bit; not using an array to make client code endian agnostic.
195 uint8_t byte0; member in struct:JSC::ARMThumbImmediate::__anon8026::__anon8027
280 if ((bytes.byte0 == bytes.byte1) && (bytes.byte0 == bytes.byte2) && (bytes.byte0 == bytes.byte3)) {
281 encoding.immediate = bytes.byte0;
286 if ((bytes.byte0 == bytes.byte2) && !(bytes.byte1 | bytes.byte3)) {
287 encoding.immediate = bytes.byte0;
292 if ((bytes.byte1 == bytes.byte3) && !(bytes.byte0 | bytes.byte2)) {
293 encoding.immediate = bytes.byte0;
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 953 int byte0, byte1, byte2, shift, tmpvar; local
    [all...]

Completed in 24 milliseconds