Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/decoder/
Ddboolhuff.h62 VP8_BD_VALUE bigsplit; in vp8dx_decode_bool() local
74 bigsplit = (VP8_BD_VALUE)split << (VP8_BD_VALUE_SIZE - 8); in vp8dx_decode_bool()
78 if (value >= bigsplit) in vp8dx_decode_bool()
81 value = value - bigsplit; in vp8dx_decode_bool()
Ddetokenize.c62 VP8_BD_VALUE bigsplit = (VP8_BD_VALUE)split << (VP8_BD_VALUE_SIZE - 8); in GetSigned() local
68 if ( br->value < bigsplit ) in GetSigned()
76 br->value = br->value-bigsplit; in GetSigned()
/external/libvpx/libvpx/vpx_dsp/
Dbitreader.h79 BD_VALUE bigsplit; in vpx_read() local
90 bigsplit = (BD_VALUE)split << (BD_VALUE_SIZE - CHAR_BIT); in vpx_read()
94 if (value >= bigsplit) { in vpx_read()
96 value = value - bigsplit; in vpx_read()