OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:leadingZeroBits
(Results
1 - 6
of
6
) sorted by null
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_bsd.c
35
int32_t
leadingZeroBits
= 0;
93
leadingZeroBits
+= count;
98
leadingZeroBits
+= noOfBits;
113
////// step 2: Now read the next (
leadingZeroBits
-1) bits to get the encoded value.
121
//count = (uint8_t)((
leadingZeroBits
+ bits_offset)& 0x7);
124
leadingZeroBits
--;
125
length =
leadingZeroBits
;
130
while(
leadingZeroBits
> 0)
132
if(noOfBits < (uint32_t)
leadingZeroBits
)
138
leadingZeroBits
-= noOfBits;
[
all
...]
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
h264_utils.cpp
146
int
leadingZeroBits
= -1;
147
for (uint32 b = 0; !b; ++
leadingZeroBits
)
151
return ((1 <<
leadingZeroBits
) - 1) +
152
u (static_cast<uint32>(
leadingZeroBits
));
[
all
...]
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
h264_utils.cpp
138
int
leadingZeroBits
= -1;
139
for (uint32 b = 0; !b; ++
leadingZeroBits
) {
142
return ((1 <<
leadingZeroBits
) - 1) +
143
u (static_cast<uint32>(
leadingZeroBits
));
[
all
...]
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
h264_utils.cpp
138
int
leadingZeroBits
= -1;
139
for (uint32 b = 0; !b; ++
leadingZeroBits
) {
142
return ((1 <<
leadingZeroBits
) - 1) +
143
u (static_cast<uint32>(
leadingZeroBits
));
[
all
...]
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/
h264_utils.cpp
138
int
leadingZeroBits
= -1;
139
for (uint32 b = 0; !b; ++
leadingZeroBits
) {
142
return ((1 <<
leadingZeroBits
) - 1) +
143
u (static_cast<uint32>(
leadingZeroBits
));
[
all
...]
/packages/apps/ExactCalculator/src/com/android/calculator2/
Evaluator.java
596
int
leadingZeroBits
= res.leadingBinaryZeroes();
597
if (
leadingZeroBits
< QUICK_MAX_RESULT_BITS) {
600
(int)Math.ceil(Math.log(2.0d) / Math.log(10.0d) *
leadingZeroBits
);
[
all
...]
Completed in 189 milliseconds