HomeSort by relevance Sort by last modified time
    Searched refs:getBits (Results 1 - 25 of 66) sorted by null

1 2 3

  /frameworks/native/libs/math/tests/
half_test.cpp 38 EXPECT_EQ(0x0000, half( 0.0f).getBits());
39 EXPECT_EQ(0x8000, half(-0.0f).getBits());
42 EXPECT_EQ(0x7e00, half(NAN).getBits());
45 EXPECT_EQ(0x7C00, half( std::numeric_limits<float>::infinity()).getBits());
46 EXPECT_EQ(0xFC00, half(-std::numeric_limits<float>::infinity()).getBits());
49 EXPECT_EQ(0x3C01, half(1.0009765625).getBits());
50 EXPECT_EQ(0xC000, half(-2).getBits());
51 EXPECT_EQ(0x0400, half(6.10352e-5).getBits());
52 EXPECT_EQ(0x7BFF, half(65504).getBits());
53 EXPECT_EQ(0x3555, half(1.0f/3).getBits());
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
AMPEG4AudioAssembler.cpp 100 *audioObjectType = bits->getBits(5);
102 *audioObjectType = 32 + bits->getBits(6);
111 unsigned frameLengthFlag __unused = bits->getBits(1);
112 unsigned dependsOnCoreCoder = bits->getBits(1);
114 /* unsigned coreCoderDelay = */bits->getBits(1);
116 unsigned extensionFlag = bits->getBits(1);
124 /* unsigned layerNr = */bits->getBits(3);
129 /* unsigned numOfSubFrame = */bits->getBits(5);
130 /* unsigned layerLength = */bits->getBits(11);
133 /* unsigned aacSectionDataResilienceFlag = */bits->getBits(1)
    [all...]
AMPEG4ElementaryAssembler.cpp 271 unsigned AU_size = bits.getBits(mSizeLength);
277 unsigned AU_index = bits.getBits(n);
291 if (bits.getBits(1)) {
305 if (bits.getBits(1)) {
340 unsigned auxSize = bits.getBits(mAuxiliaryDataSizeLength);
  /frameworks/av/media/libstagefright/mpeg2ts/
MPEG2PSExtractor.cpp 282 unsigned packet_startcode_prefix = br.getBits(24);
298 unsigned stream_id = br.getBits(8);
301 /* unsigned PES_packet_length = */br.getBits(16);
312 /* unsigned current_next_indicator = */br.getBits(1);
313 /* unsigned reserved = */br.getBits(2);
314 /* unsigned program_stream_map_version = */br.getBits(5);
315 /* unsigned reserved = */br.getBits(7);
316 /* unsigned marker_bit = */br.getBits(1);
317 unsigned program_stream_info_length = br.getBits(16);
325 unsigned descriptor_tag = br.getBits(8)
    [all...]
ATSParser.cpp 434 unsigned descriptor_tag = br->getBits(8);
437 unsigned descriptor_length = br->getBits(8);
446 caDescriptor->mSystemID = br->getBits(16);
447 caDescriptor->mPID = br->getBits(16) & 0x1fff;
462 unsigned table_id = br->getBits(8);
468 unsigned section_syntax_indicator = br->getBits(1);
476 MY_LOGV(" reserved = %u", br->getBits(2));
478 unsigned section_length = br->getBits(12);
481 MY_LOGV(" program_number = %u", br->getBits(16));
482 MY_LOGV(" reserved = %u", br->getBits(2))
    [all...]
ESQueue.cpp 122 if (bits.getBits(16) != 0x0B77) {
132 unsigned fscod = bits.getBits(2);
138 unsigned frmsizecod = bits.getBits(6);
144 unsigned bsid = bits.getBits(5);
150 unsigned bsmod __unused = bits.getBits(3);
151 unsigned acmod = bits.getBits(3);
160 cmixlev = bits.getBits(2);
166 surmixlev = bits.getBits(2);
172 dsurmod = bits.getBits(2);
178 unsigned lfeon = bits.getBits(1)
    [all...]
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64InsnHelpers.h 25 static unsigned getBits(InsnType insn, int pos, int l) {
30 return getBits(insn, 0, 5);
34 return getBits(insn, 10, 5);
38 return getBits(insn, 10, 5);
42 return getBits(insn, 0, 5);
46 return getBits(insn, 5, 5);
50 return getBits(insn, 16, 5);
54 return getBits(insn, pos, 1);
58 return getBits(insn, 21, 3);
199 unsigned opc = getBits(insn, 22, 2)
    [all...]
  /frameworks/av/media/libstagefright/
avc_utils.cpp 35 while (br->getBits(1) == 0) {
39 unsigned x = br->getBits(numZeroes);
106 unsigned profile_idc = br.getBits(8);
123 if (br.getBits(1)) { // seq_scaling_matrix_present_flag
125 if (br.getBits(1)) { // seq_scaling_list_present_flag[i]
152 br.getBits(1); // delta_pic_order_always_zero_flag
163 br.getBits(1); // gaps_in_frame_num_value_allowed_flag
167 unsigned frame_mbs_only_flag = br.getBits(1);
175 br.getBits(1); // mb_adaptive_frame_field_flag
178 br.getBits(1); // direct_8x8_inference_fla
    [all...]
HevcUtils.cpp 171 mParams.add(kGeneralProfileSpace, reader.getBits(2));
172 mParams.add(kGeneralTierFlag, reader.getBits(1));
173 mParams.add(kGeneralProfileIdc, reader.getBits(5));
174 mParams.add(kGeneralProfileCompatibilityFlags, reader.getBits(32));
177 ((uint64_t)reader.getBits(16) << 32) | reader.getBits(32));
178 mParams.add(kGeneralLevelIdc, reader.getBits(8));
  /external/deqp/framework/common/
tcuCompressedTexture.cpp 312 inline deUint32 getBits (deUint64 src, int low, int high)
376 const deUint32 table[2] = { getBits(src, 37, 39), getBits(src, 34, 36) };
384 baseR[0] = extend4To8((deUint8)getBits(src, 60, 63));
385 baseR[1] = extend4To8((deUint8)getBits(src, 56, 59));
386 baseG[0] = extend4To8((deUint8)getBits(src, 52, 55));
387 baseG[1] = extend4To8((deUint8)getBits(src, 48, 51));
388 baseB[0] = extend4To8((deUint8)getBits(src, 44, 47));
389 baseB[1] = extend4To8((deUint8)getBits(src, 40, 43));
394 deUint8 bR = (deUint8)getBits(src, 59, 63); // 5
    [all...]
tcuAstcUtil.cpp 55 inline deUint32 getBits (deUint32 src, int low, int high)
100 return getBits(v, 10, 14) == 31;
221 deUint32 getBits (int low, int high) const
282 return m_forward ? m_src.getBits(m_startNdxInSrc + low, m_startNdxInSrc + high)
283 : reverseBits(m_src.getBits(m_startNdxInSrc - high, m_startNdxInSrc - low), numBitsFromSrc);
346 blockMode.isVoidExtent = getBits(blockModeData, 0, 8) == 0x1fc;
350 if ((getBits(blockModeData, 0, 1) == 0 && getBits(blockModeData, 6, 8) == 7) || getBits(blockModeData, 0, 3) == 0)
355 if (getBits(blockModeData, 0, 1) == 0
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerCCDecoder.cpp 250 last_byte = br.getBits(8);
255 last_byte = br.getBits(8);
272 uint8_t itu_t_t35_country_code = br.getBits(8);
273 uint16_t itu_t_t35_provider_code = br.getBits(16);
274 uint32_t user_identifier = br.getBits(32);
275 uint8_t user_data_type_code = br.getBits(8);
328 uint32_t user_identifier = br.getBits(32);
329 uint8_t user_data_type = br.getBits(8);
351 bool process_cc_data_flag = br.getBits(1);
353 size_t cc_count = br.getBits(5)
    [all...]
  /external/clang/include/clang/Sema/
ObjCMethodList.h 41 unsigned getBits() const { return NextAndExtraBits.getInt(); }
  /external/pdfium/xfa/fxbarcode/datamatrix/
BC_DefaultPlacement.h 21 CFX_ArrayTemplate<uint8_t>& getBits();
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
ABitReader.h 44 uint32_t getBits(size_t n);
58 // Returns true iff the stream was over-read (e.g. any getBits operation has been unsuccessful
  /frameworks/rs/
rsComponent.h 44 uint32_t getBits() const {return mBits;}
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
ObjCMethodList.h 41 unsigned getBits() const { return NextAndExtraBits.getInt(); }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
ObjCMethodList.h 41 unsigned getBits() const { return NextAndExtraBits.getInt(); }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Sema/
ObjCMethodList.h 41 unsigned getBits() const { return NextAndExtraBits.getInt(); }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
ObjCMethodList.h 41 unsigned getBits() const { return NextAndExtraBits.getInt(); }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
ObjCMethodList.h 41 unsigned getBits() const { return NextAndExtraBits.getInt(); }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
ObjCMethodList.h 41 unsigned getBits() const { return NextAndExtraBits.getInt(); }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Sema/
ObjCMethodList.h 41 unsigned getBits() const { return NextAndExtraBits.getInt(); }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
ObjCMethodList.h 41 unsigned getBits() const { return NextAndExtraBits.getInt(); }
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/endo/
GLVTypeBParameters.java 94 public int getBits()

Completed in 640 milliseconds

1 2 3