| /external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/metadata/dvbsi/ |
| D | AppInfoTableDecoder.java | 62 private static Metadata parseAit(ParsableBitArray sectionData) { in parseAit() argument 64 sectionData.skipBits(12); in parseAit() 65 int sectionLength = sectionData.readBits(12); in parseAit() 66 int endOfSection = sectionData.getBytePosition() + sectionLength - 4 /* Ignore leading CRC */; in parseAit() 70 sectionData.skipBits(44); in parseAit() 72 int commonDescriptorsLength = sectionData.readBits(12); in parseAit() 76 sectionData.skipBytes(commonDescriptorsLength); in parseAit() 79 sectionData.skipBits(16); in parseAit() 82 while (sectionData.getBytePosition() < endOfSection) { in parseAit() 87 sectionData.skipBits(48); in parseAit() [all …]
|
| /external/aac/libAACenc/src/ |
| D | dyn_bits.cpp | 344 SECTION_DATA* const RESTRICT sectionData, INT mergeGainLookUp[MAX_SFB_LONG], in FDKaacEnc_noiselessCounter() argument 366 sectionData->noOfSections = 0; in FDKaacEnc_noiselessCounter() 367 sectionData->huffmanBits = 0; in FDKaacEnc_noiselessCounter() 368 sectionData->sideInfoBits = 0; in FDKaacEnc_noiselessCounter() 370 if (sectionData->maxSfbPerGroup == 0) return; in FDKaacEnc_noiselessCounter() 373 for (grpNdx = 0; grpNdx < sectionData->sfbCnt; in FDKaacEnc_noiselessCounter() 374 grpNdx += sectionData->sfbPerGroup) { in FDKaacEnc_noiselessCounter() 375 huffsection = sectionData->huffsection + sectionData->noOfSections; in FDKaacEnc_noiselessCounter() 378 FDKaacEnc_buildBitLookUp(quantSpectrum, sectionData->maxSfbPerGroup, in FDKaacEnc_noiselessCounter() 383 FDKaacEnc_gmStage0(huffsection, bitLookUp, sectionData->maxSfbPerGroup, in FDKaacEnc_noiselessCounter() [all …]
|
| /external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| D | DWARFContext.h | 26 struct SectionData { struct 31 SectionData m_data_debug_abbrev; argument 32 SectionData m_data_debug_addr; 33 SectionData m_data_debug_aranges; 34 SectionData m_data_debug_cu_index; 35 SectionData m_data_debug_info; 36 SectionData m_data_debug_line; 37 SectionData m_data_debug_line_str; 38 SectionData m_data_debug_loc; 39 SectionData m_data_debug_loclists; [all …]
|
| /external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/ts/ |
| D | SectionReader.java | 35 private final ParsableByteArray sectionData; field in SectionReader 44 sectionData = new ParsableByteArray(DEFAULT_SECTION_BUFFER_LENGTH); in SectionReader() 91 data.readBytes(sectionData.data, bytesRead, headerBytesToRead); in consume() 94 sectionData.reset(SECTION_HEADER_LENGTH); in consume() 95 sectionData.skipBytes(1); // Skip table id (8). in consume() 96 int secondHeaderByte = sectionData.readUnsignedByte(); in consume() 97 int thirdHeaderByte = sectionData.readUnsignedByte(); in consume() 101 if (sectionData.capacity() < totalSectionLength) { in consume() 103 byte[] bytes = sectionData.data; in consume() 104 sectionData.reset( in consume() [all …]
|
| /external/llvm-project/llvm/lib/Object/ |
| D | Decompressor.cpp | 34 : SectionData(Data), DecompressedSize(0) {} in Decompressor() 37 if (!SectionData.startswith("ZLIB")) in consumeCompressedGnuHeader() 40 SectionData = SectionData.substr(4); in consumeCompressedGnuHeader() 43 if (SectionData.size() < 8) in consumeCompressedGnuHeader() 45 DecompressedSize = read64be(SectionData.data()); in consumeCompressedGnuHeader() 46 SectionData = SectionData.substr(8); in consumeCompressedGnuHeader() 55 if (SectionData.size() < HdrSize) in consumeCompressedZLibHeader() 58 DataExtractor Extractor(SectionData, IsLittleEndian, 0); in consumeCompressedZLibHeader() 71 SectionData = SectionData.substr(HdrSize); in consumeCompressedZLibHeader() 97 return zlib::uncompress(SectionData, Buffer.data(), Size); in decompress()
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
| D | Decompressor.cpp | 34 : SectionData(Data), DecompressedSize(0) {} in Decompressor() 37 if (!SectionData.startswith("ZLIB")) in consumeCompressedGnuHeader() 40 SectionData = SectionData.substr(4); in consumeCompressedGnuHeader() 43 if (SectionData.size() < 8) in consumeCompressedGnuHeader() 45 DecompressedSize = read64be(SectionData.data()); in consumeCompressedGnuHeader() 46 SectionData = SectionData.substr(8); in consumeCompressedGnuHeader() 55 if (SectionData.size() < HdrSize) in consumeCompressedZLibHeader() 58 DataExtractor Extractor(SectionData, IsLittleEndian, 0); in consumeCompressedZLibHeader() 71 SectionData = SectionData.substr(HdrSize); in consumeCompressedZLibHeader() 97 return zlib::uncompress(SectionData, Buffer.data(), Size); in decompress()
|
| /external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/metadata/scte35/ |
| D | SpliceScheduleCommand.java | 124 private static Event parseFromSection(ParsableByteArray sectionData) { in parseFromSection() argument 125 long spliceEventId = sectionData.readUnsignedInt(); in parseFromSection() 127 boolean spliceEventCancelIndicator = (sectionData.readUnsignedByte() & 0x80) != 0; in parseFromSection() 138 int headerByte = sectionData.readUnsignedByte(); in parseFromSection() 143 utcSpliceTime = sectionData.readUnsignedInt(); in parseFromSection() 146 int componentCount = sectionData.readUnsignedByte(); in parseFromSection() 149 int componentTag = sectionData.readUnsignedByte(); in parseFromSection() 150 long componentUtcSpliceTime = sectionData.readUnsignedInt(); in parseFromSection() 155 long firstByte = sectionData.readUnsignedByte(); in parseFromSection() 157 long breakDuration90khz = ((firstByte & 0x01) << 32) | sectionData.readUnsignedInt(); in parseFromSection() [all …]
|
| D | SpliceInsertCommand.java | 135 /* package */ static SpliceInsertCommand parseFromSection(ParsableByteArray sectionData, in parseFromSection() argument 137 long spliceEventId = sectionData.readUnsignedInt(); in parseFromSection() 139 boolean spliceEventCancelIndicator = (sectionData.readUnsignedByte() & 0x80) != 0; in parseFromSection() 151 int headerByte = sectionData.readUnsignedByte(); in parseFromSection() 157 programSplicePts = TimeSignalCommand.parseSpliceTime(sectionData, ptsAdjustment); in parseFromSection() 160 int componentCount = sectionData.readUnsignedByte(); in parseFromSection() 163 int componentTag = sectionData.readUnsignedByte(); in parseFromSection() 166 componentSplicePts = TimeSignalCommand.parseSpliceTime(sectionData, ptsAdjustment); in parseFromSection() 173 long firstByte = sectionData.readUnsignedByte(); in parseFromSection() 175 long breakDuration90khz = ((firstByte & 0x01) << 32) | sectionData.readUnsignedInt(); in parseFromSection() [all …]
|
| D | SpliceInfoDecoder.java | 40 private final ParsableByteArray sectionData; field in SpliceInfoDecoder 46 sectionData = new ParsableByteArray(); in SpliceInfoDecoder() 65 sectionData.reset(data, size); in decode() 78 sectionData.skipBytes(14); in decode() 84 command = SpliceScheduleCommand.parseFromSection(sectionData); in decode() 87 command = SpliceInsertCommand.parseFromSection(sectionData, ptsAdjustment, in decode() 91 command = TimeSignalCommand.parseFromSection(sectionData, ptsAdjustment, timestampAdjuster); in decode() 94 command = PrivateCommand.parseFromSection(sectionData, spliceCommandLength, ptsAdjustment); in decode()
|
| /external/llvm-project/llvm/test/tools/llvm-objcopy/COFF/Inputs/ |
| D | x86_64-obj.yaml | 9 …SectionData: 50894C24048B0D00000000034C240489C859C3662E0F1F8400000000000F1F00C3662E0F1F8400000… 23 SectionData: '01000000' 27 SectionData: '' 31 SectionData: 0101010001020000010A03350A03055201500000 35 …SectionData: 636C616E672076657273696F6E20382E302E3020287472756E6B203334363337382920286C6C766D2… 39 …SectionData: 011101250E1305030E10171B0E110112060000023400030E49133A0B3B0B02180000032400030E3E0… 43 …SectionData: 990000000400000000000801000000000C00370000000000000040000000000000000000000057000… 96 SectionData: '00' 100 SectionData: '000000001300000000000000000000002700000008000000' 123 …SectionData: 57000000040020000000010101FB0E0D00010101010000000100000100736F757263652E630000000… [all …]
|
| D | only-keep-sections.yaml | 27 SectionData: C3C3C3C3 32 SectionData: 2A000000 37 SectionData: 2B000000 42 SectionData: 2C000000 47 SectionData: 2D000000 52 SectionData: 2E000000 57 SectionData: 2F000000
|
| D | i386-obj.yaml | 9 …SectionData: 5589E5508B45088B0D00000000034D088945FC89C883C4045DC3660F1F4400005589E55DC3662E0F1… 23 SectionData: '01000000' 27 SectionData: '' 31 …SectionData: 636C616E672076657273696F6E20382E302E3020287472756E6B203334363337382920286C6C766D2… 35 …SectionData: 011101250E1305030E10171B0E110112060000023400030E49133A0B3B0B02180000032400030E3E0… 39 …SectionData: 850000000400000000000401000000000C003700000000000000400000000000000053000000026B0… 92 SectionData: '00' 96 …SectionData: 52000000040020000000010101FB0E0D00010101010000000100000100736F757263652E630000000… 104 SectionData: '1314'
|
| /external/llvm-project/lld/test/mach-o/ |
| D | write-final-sections.yaml | 13 # CHECK: SectionData ( 34 # CHECK: SectionData ( 46 # CHECK: SectionData ( 57 # CHECK: SectionData ( 67 # CHECK: SectionData ( 92 # CHECK: SectionData ( 105 # CHECK: SectionData ( 122 # CHECK: SectionData ( 131 # CHECK: SectionData ( 140 # CHECK: SectionData ( [all …]
|
| /external/llvm-project/lld/test/COFF/Inputs/ |
| D | pdb_lines_1_relative.yaml | 9 SectionData: 4883EC28C744242400000000E800000000B82A0000004883C428C3 17 SectionData: '' 21 SectionData: '' 25 SectionData: '0104010004420000' 29 SectionData: 4883EC28E800000000904883C428C3 37 …SectionData: 202F44454641554C544C49423A6C6962636D742E6C6962202F44454641554C544C49423A6F6C646E6… 41 …SectionData: 04000000F10000002F0000002D003C1100000000D0000700000000000000581B000000000000636C6… 122 …SectionData: 0400000006000112000000000E0008107400000000000000001000001200011600000000011000006… 154 SectionData: 000000001B00000000000000 168 SectionData: '0104010004420000' [all …]
|
| /external/llvm-project/llvm/test/tools/llvm-objdump/COFF/Inputs/ |
| D | eh_frame-coff.yaml | 72 …SectionData: 0FB70500004000C705DC43400001000000C705E043400001000000C705E443400001000000C705B44… 77 …SectionData: 84434000B84040000070400004704000D8434000CC3240000000000000000000C0164000000000000… 82 …SectionData: 0A000000E4324000FFFFFFFFFFFFFFFFFF000000FFFFFFFFB01D40000444400008444000604040006… 87 …SectionData: 1C00000000000000017A504C5200017C080700D725400000000C0404880100001C000000240000001… 92 SectionData: FF0015010C00350000351E58015325000001000000000000 97 SectionData: '0000000000000000' 102 …SectionData: 001000007C0100000330093013301D30273037303D304A3063306C30753081308A30A030B230BA30C…
|
| /external/llvm-project/llvm/test/MC/ARM/ |
| D | eh-directive-personalityindex.s | 23 @ CHECK: SectionData ( 52 @ CHECK: SectionData ( 78 @ CHECK: SectionData ( 85 @ CHECK: SectionData ( 115 @ CHECK: SectionData ( 122 @ CHECK: SectionData ( 149 @ CHECK: SectionData ( 156 @ CHECK: SectionData ( 184 @ CHECK: SectionData ( 191 @ CHECK: SectionData (
|
| /external/llvm/test/MC/ARM/ |
| D | eh-directive-personalityindex.s | 23 @ CHECK: SectionData ( 52 @ CHECK: SectionData ( 78 @ CHECK: SectionData ( 85 @ CHECK: SectionData ( 115 @ CHECK: SectionData ( 122 @ CHECK: SectionData ( 149 @ CHECK: SectionData ( 156 @ CHECK: SectionData ( 184 @ CHECK: SectionData ( 191 @ CHECK: SectionData (
|
| /external/exoplayer/tree/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/ts/ |
| D | TsExtractorTest.java | 294 public void consume(ParsableByteArray sectionData) { in consume() argument 299 sectionData.skipBytes(11); in consume() 301 assertThat(sectionData.readUnsignedShort()).isEqualTo(0x5566 /* arbitrary service id */); in consume() 303 sectionData.skipBytes(1); in consume() 306 assertThat(sectionData.readUnsignedShort() & 0xFFF).isEqualTo(sectionData.bytesLeft()); in consume() 307 while (sectionData.bytesLeft() > 0) { in consume() 308 int descriptorTag = sectionData.readUnsignedByte(); in consume() 309 int descriptorLength = sectionData.readUnsignedByte(); in consume() 311 assertThat(sectionData.readUnsignedByte()).isEqualTo(1); // Service type: Digital TV. in consume() 312 int serviceProviderNameLength = sectionData.readUnsignedByte(); in consume() [all …]
|
| /external/llvm/test/MC/MachO/ |
| D | x86_32-sections.s | 79 // CHECK: SectionData ( 97 // CHECK: SectionData ( 115 // CHECK: SectionData ( 133 // CHECK: SectionData ( 151 // CHECK: SectionData ( 169 // CHECK: SectionData ( 187 // CHECK: SectionData ( 205 // CHECK: SectionData ( 223 // CHECK: SectionData ( 242 // CHECK: SectionData ( [all …]
|
| D | x86_64-sections.s | 76 // CHECK: SectionData ( 95 // CHECK: SectionData ( 114 // CHECK: SectionData ( 133 // CHECK: SectionData ( 152 // CHECK: SectionData ( 171 // CHECK: SectionData ( 190 // CHECK: SectionData ( 209 // CHECK: SectionData ( 228 // CHECK: SectionData ( 247 // CHECK: SectionData ( [all …]
|
| /external/llvm-project/llvm/test/MC/MachO/ |
| D | x86_32-sections.s | 79 // CHECK: SectionData ( 97 // CHECK: SectionData ( 115 // CHECK: SectionData ( 133 // CHECK: SectionData ( 151 // CHECK: SectionData ( 169 // CHECK: SectionData ( 187 // CHECK: SectionData ( 205 // CHECK: SectionData ( 223 // CHECK: SectionData ( 242 // CHECK: SectionData ( [all …]
|
| D | x86_64-sections.s | 76 // CHECK: SectionData ( 95 // CHECK: SectionData ( 114 // CHECK: SectionData ( 133 // CHECK: SectionData ( 152 // CHECK: SectionData ( 171 // CHECK: SectionData ( 190 // CHECK: SectionData ( 209 // CHECK: SectionData ( 228 // CHECK: SectionData ( 247 // CHECK: SectionData ( [all …]
|
| /external/llvm-project/lld/test/COFF/ |
| D | sort-debug.test | 35 SectionData: 508D0500000000C70424000000005AC3 43 SectionData: '' 47 SectionData: '' 108 SectionData: '' 112 SectionData: '' 116 …SectionData: 011101250E1305030E10171B0E110112060000023400030E49133F193A0B3B0B02186E0E000003240… 120 …SectionData: 54000000040000000000040100000000040037000000000000003F000000000000001000000002720… 161 SectionData: '' 165 SectionData: 1D00000002000000000058000000420000006D61696E0026000000780000000000 173 SectionData: 16000000020000000000580000003B000000696E740000000000 [all …]
|
| /external/elfutils/libdw/ |
| D | libdw_findcu.c | 70 Elf_Data *dbg1_data = dbg1->sectiondata[IDX_debug_info]; in __libdw_finddbg_cb() 74 Elf_Data *dbg2_data = dbg2->sectiondata[IDX_debug_info]; in __libdw_finddbg_cb() 142 Elf_Data *data = dbg->sectiondata[sec_idx]; in __libdw_intern_next_unit() 267 if (addr >= dbg->sectiondata[IDX_debug_info]->d_buf in __libdw_findcu_addr() 268 && addr < (dbg->sectiondata[IDX_debug_info]->d_buf in __libdw_findcu_addr() 269 + dbg->sectiondata[IDX_debug_info]->d_size)) in __libdw_findcu_addr() 272 start = addr - dbg->sectiondata[IDX_debug_info]->d_buf; in __libdw_findcu_addr() 274 else if (dbg->sectiondata[IDX_debug_types] != NULL in __libdw_findcu_addr() 275 && addr >= dbg->sectiondata[IDX_debug_types]->d_buf in __libdw_findcu_addr() 276 && addr < (dbg->sectiondata[IDX_debug_types]->d_buf in __libdw_findcu_addr() [all …]
|
| /external/llvm-project/llvm/test/tools/llvm-objcopy/COFF/ |
| D | strip-debug.test | 55 SectionData: 00000000 59 SectionData: 00000000 63 SectionData: 00000000 67 SectionData: 00000000 71 SectionData: 00000000 75 SectionData: 00000000 79 SectionData: 00000000 83 SectionData: 00000000
|