/aosp_15_r20/external/aac/libAACenc/src/ |
H A 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 …]
|
H A D | bitenc.cpp | 128 SECTION_DATA *sectionData, in FDKaacEnc_encodeSpectralData() argument 134 for (i = 0; i < sectionData->noOfSections; i++) { in FDKaacEnc_encodeSpectralData() 135 if (sectionData->huffsection[i].codeBook != CODE_BOOK_PNS_NO) { in FDKaacEnc_encodeSpectralData() 137 INT tmp = sectionData->huffsection[i].sfbStart + in FDKaacEnc_encodeSpectralData() 138 sectionData->huffsection[i].sfbCnt; in FDKaacEnc_encodeSpectralData() 139 for (sfb = sectionData->huffsection[i].sfbStart; sfb < tmp; sfb++) { in FDKaacEnc_encodeSpectralData() 142 sectionData->huffsection[i].codeBook, hBitStream); in FDKaacEnc_encodeSpectralData() 239 static INT FDKaacEnc_encodeSectionData(SECTION_DATA *sectionData, in FDKaacEnc_encodeSectionData() argument 249 switch (sectionData->blockType) { in FDKaacEnc_encodeSectionData() 263 for (i = 0; i < sectionData->noOfSections; i++) { in FDKaacEnc_encodeSectionData() [all …]
|
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/metadata/dvbsi/ |
H A D | AppInfoTableDecoder.java | 58 private static Metadata parseAit(ParsableBitArray sectionData) { in parseAit() argument 60 sectionData.skipBits(12); in parseAit() 61 int sectionLength = sectionData.readBits(12); in parseAit() 62 int endOfSection = sectionData.getBytePosition() + sectionLength - 4 /* Ignore leading CRC */; in parseAit() 66 sectionData.skipBits(44); in parseAit() 68 int commonDescriptorsLength = sectionData.readBits(12); in parseAit() 72 sectionData.skipBytes(commonDescriptorsLength); in parseAit() 75 sectionData.skipBits(16); in parseAit() 78 while (sectionData.getBytePosition() < endOfSection) { in parseAit() 83 sectionData.skipBits(48); in parseAit() [all …]
|
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/metadata/dvbsi/ |
H A D | AppInfoTableDecoder.java | 58 private static Metadata parseAit(ParsableBitArray sectionData) { in parseAit() argument 60 sectionData.skipBits(12); in parseAit() 61 int sectionLength = sectionData.readBits(12); in parseAit() 62 int endOfSection = sectionData.getBytePosition() + sectionLength - 4 /* Ignore leading CRC */; in parseAit() 66 sectionData.skipBits(44); in parseAit() 68 int commonDescriptorsLength = sectionData.readBits(12); in parseAit() 72 sectionData.skipBytes(commonDescriptorsLength); in parseAit() 75 sectionData.skipBits(16); in parseAit() 78 while (sectionData.getBytePosition() < endOfSection) { in parseAit() 83 sectionData.skipBits(48); in parseAit() [all …]
|
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/ts/ |
H A D | SectionReader.java | 38 private final ParsableByteArray sectionData; field in SectionReader 47 sectionData = new ParsableByteArray(DEFAULT_SECTION_BUFFER_LENGTH); in SectionReader() 96 // sectionData is guaranteed to have enough space because it's initialized with a 32-element in consume() 98 data.readBytes(sectionData.getData(), bytesRead, headerBytesToRead); in consume() 101 sectionData.setPosition(0); in consume() 102 sectionData.setLimit(SECTION_HEADER_LENGTH); in consume() 103 sectionData.skipBytes(1); // Skip table id (8). in consume() 104 int secondHeaderByte = sectionData.readUnsignedByte(); in consume() 105 int thirdHeaderByte = sectionData.readUnsignedByte(); in consume() 109 if (sectionData.capacity() < totalSectionLength) { in consume() [all …]
|
H A D | TsExtractor.java | 504 public void consume(ParsableByteArray sectionData) { in consume() argument 505 int tableId = sectionData.readUnsignedByte(); in consume() 511 int secondHeaderByte = sectionData.readUnsignedByte(); in consume() 518 sectionData.skipBytes(6); in consume() 520 int programCount = sectionData.bytesLeft() / 4; in consume() 522 sectionData.readBytes(patScratch, 4); in consume() 576 public void consume(ParsableByteArray sectionData) { in consume() argument 577 int tableId = sectionData.readUnsignedByte(); in consume() 593 int secondHeaderByte = sectionData.readUnsignedByte(); in consume() 599 sectionData.skipBytes(1); in consume() [all …]
|
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/ts/ |
H A D | SectionReader.java | 38 private final ParsableByteArray sectionData; field in SectionReader 47 sectionData = new ParsableByteArray(DEFAULT_SECTION_BUFFER_LENGTH); in SectionReader() 96 // sectionData is guaranteed to have enough space because it's initialized with a 32-element in consume() 98 data.readBytes(sectionData.getData(), bytesRead, headerBytesToRead); in consume() 101 sectionData.setPosition(0); in consume() 102 sectionData.setLimit(SECTION_HEADER_LENGTH); in consume() 103 sectionData.skipBytes(1); // Skip table id (8). in consume() 104 int secondHeaderByte = sectionData.readUnsignedByte(); in consume() 105 int thirdHeaderByte = sectionData.readUnsignedByte(); in consume() 109 if (sectionData.capacity() < totalSectionLength) { in consume() [all …]
|
H A D | TsExtractor.java | 507 public void consume(ParsableByteArray sectionData) { in consume() argument 508 int tableId = sectionData.readUnsignedByte(); in consume() 514 int secondHeaderByte = sectionData.readUnsignedByte(); in consume() 521 sectionData.skipBytes(6); in consume() 523 int programCount = sectionData.bytesLeft() / 4; in consume() 525 sectionData.readBytes(patScratch, 4); in consume() 579 public void consume(ParsableByteArray sectionData) { in consume() argument 580 int tableId = sectionData.readUnsignedByte(); in consume() 596 int secondHeaderByte = sectionData.readUnsignedByte(); in consume() 602 sectionData.skipBytes(1); in consume() [all …]
|
/aosp_15_r20/frameworks/compile/mclinker/lib/LD/ |
D | SectionData.cpp | 1 //===- SectionData.cpp ----------------------------------------------------===// 9 #include "mcld/LD/SectionData.h" 18 typedef GCFactory<SectionData, MCLD_SECTIONS_PER_INPUT> SectDataFactory; 23 // SectionData 25 SectionData::SectionData() : m_pSection(NULL) { in SectionData() function in mcld::SectionData 28 SectionData::SectionData(LDSection& pSection) : m_pSection(&pSection) { in SectionData() function in mcld::SectionData 31 SectionData* SectionData::Create(LDSection& pSection) { in Create() 32 SectionData* result = g_SectDataFactory->allocate(); in Create() 33 new (result) SectionData(pSection); in Create() 37 void SectionData::Destroy(SectionData*& pSection) { in Destroy() [all …]
|
D | EhFrame.cpp | 17 #include "mcld/LD/SectionData.h" 97 m_pSectionData = SectionData::Create(pSection); in EhFrame() 314 SectionData& in_sd = *pInFrame.getSectionData(); in moveInputFragments() 315 SectionData::FragmentListType& in_frag_list = in_sd.getFragmentList(); in moveInputFragments() 316 SectionData& out_sd = *getSectionData(); in moveInputFragments() 317 SectionData::FragmentListType& out_frag_list = out_sd.getFragmentList(); in moveInputFragments() 327 SectionData& in_sd = *pInFrame.getSectionData(); in moveInputFragments() 328 SectionData::FragmentListType& in_frag_list = in_sd.getFragmentList(); in moveInputFragments() 329 SectionData& out_sd = *getSectionData(); in moveInputFragments() 330 SectionData::FragmentListType& out_frag_list = out_sd.getFragmentList(); in moveInputFragments() [all …]
|
/aosp_15_r20/external/llvm/test/MC/MachO/ |
H A 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 …]
|
H A 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 …]
|
H A D | x86_32-symbols.s | 155 // CHECK: SectionData ( 173 // CHECK: SectionData ( 191 // CHECK: SectionData ( 209 // CHECK: SectionData ( 227 // CHECK: SectionData ( 245 // CHECK: SectionData ( 263 // CHECK: SectionData ( 281 // CHECK: SectionData ( 299 // CHECK: SectionData ( 318 // CHECK: SectionData ( [all …]
|
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/metadata/scte35/ |
H A D | SpliceScheduleCommand.java | 118 private static Event parseFromSection(ParsableByteArray sectionData) { in parseFromSection() argument 119 long spliceEventId = sectionData.readUnsignedInt(); in parseFromSection() 121 boolean spliceEventCancelIndicator = (sectionData.readUnsignedByte() & 0x80) != 0; in parseFromSection() 132 int headerByte = sectionData.readUnsignedByte(); in parseFromSection() 137 utcSpliceTime = sectionData.readUnsignedInt(); in parseFromSection() 140 int componentCount = sectionData.readUnsignedByte(); in parseFromSection() 143 int componentTag = sectionData.readUnsignedByte(); in parseFromSection() 144 long componentUtcSpliceTime = sectionData.readUnsignedInt(); in parseFromSection() 149 long firstByte = sectionData.readUnsignedByte(); in parseFromSection() 151 long breakDuration90khz = ((firstByte & 0x01) << 32) | sectionData.readUnsignedInt(); in parseFromSection() [all …]
|
H A D | SpliceInsertCommand.java | 130 ParsableByteArray sectionData, long ptsAdjustment, TimestampAdjuster timestampAdjuster) { in parseFromSection() argument 131 long spliceEventId = sectionData.readUnsignedInt(); in parseFromSection() 133 boolean spliceEventCancelIndicator = (sectionData.readUnsignedByte() & 0x80) != 0; in parseFromSection() 145 int headerByte = sectionData.readUnsignedByte(); in parseFromSection() 151 programSplicePts = TimeSignalCommand.parseSpliceTime(sectionData, ptsAdjustment); in parseFromSection() 154 int componentCount = sectionData.readUnsignedByte(); in parseFromSection() 157 int componentTag = sectionData.readUnsignedByte(); in parseFromSection() 160 componentSplicePts = TimeSignalCommand.parseSpliceTime(sectionData, ptsAdjustment); in parseFromSection() 170 long firstByte = sectionData.readUnsignedByte(); in parseFromSection() 172 long breakDuration90khz = ((firstByte & 0x01) << 32) | sectionData.readUnsignedInt(); in parseFromSection() [all …]
|
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/metadata/scte35/ |
H A D | SpliceScheduleCommand.java | 118 private static Event parseFromSection(ParsableByteArray sectionData) { in parseFromSection() argument 119 long spliceEventId = sectionData.readUnsignedInt(); in parseFromSection() 121 boolean spliceEventCancelIndicator = (sectionData.readUnsignedByte() & 0x80) != 0; in parseFromSection() 132 int headerByte = sectionData.readUnsignedByte(); in parseFromSection() 137 utcSpliceTime = sectionData.readUnsignedInt(); in parseFromSection() 140 int componentCount = sectionData.readUnsignedByte(); in parseFromSection() 143 int componentTag = sectionData.readUnsignedByte(); in parseFromSection() 144 long componentUtcSpliceTime = sectionData.readUnsignedInt(); in parseFromSection() 149 long firstByte = sectionData.readUnsignedByte(); in parseFromSection() 151 long breakDuration90khz = ((firstByte & 0x01) << 32) | sectionData.readUnsignedInt(); in parseFromSection() [all …]
|
H A D | SpliceInsertCommand.java | 130 ParsableByteArray sectionData, long ptsAdjustment, TimestampAdjuster timestampAdjuster) { in parseFromSection() argument 131 long spliceEventId = sectionData.readUnsignedInt(); in parseFromSection() 133 boolean spliceEventCancelIndicator = (sectionData.readUnsignedByte() & 0x80) != 0; in parseFromSection() 145 int headerByte = sectionData.readUnsignedByte(); in parseFromSection() 151 programSplicePts = TimeSignalCommand.parseSpliceTime(sectionData, ptsAdjustment); in parseFromSection() 154 int componentCount = sectionData.readUnsignedByte(); in parseFromSection() 157 int componentTag = sectionData.readUnsignedByte(); in parseFromSection() 160 componentSplicePts = TimeSignalCommand.parseSpliceTime(sectionData, ptsAdjustment); in parseFromSection() 170 long firstByte = sectionData.readUnsignedByte(); in parseFromSection() 172 long breakDuration90khz = ((firstByte & 0x01) << 32) | sectionData.readUnsignedInt(); in parseFromSection() [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A 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()
|
/aosp_15_r20/frameworks/compile/mclinker/include/mcld/LD/ |
D | SectionData.h | 1 //===- SectionData.h ------------------------------------------------------===// 25 /** \class SectionData 26 * \brief SectionData provides a container for all Fragments. 28 class SectionData { 30 friend class Chunk<SectionData, MCLD_SECTIONS_PER_INPUT>; 32 SectionData(); 33 explicit SectionData(LDSection& pSection); 48 static SectionData* Create(LDSection& pSection); 50 static void Destroy(SectionData*& pSection); 64 static FragmentListType SectionData::*getSublistAccess(Fragment *) { in getSublistAccess() [all …]
|
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/ts/ |
H A D | TsExtractorTest.java | 306 public void consume(ParsableByteArray sectionData) { in consume() argument 311 sectionData.skipBytes(11); in consume() 313 assertThat(sectionData.readUnsignedShort()).isEqualTo(0x5566 /* arbitrary service id */); in consume() 315 sectionData.skipBytes(1); in consume() 318 assertThat(sectionData.readUnsignedShort() & 0xFFF).isEqualTo(sectionData.bytesLeft()); in consume() 319 while (sectionData.bytesLeft() > 0) { in consume() 320 int descriptorTag = sectionData.readUnsignedByte(); in consume() 321 int descriptorLength = sectionData.readUnsignedByte(); in consume() 323 assertThat(sectionData.readUnsignedByte()).isEqualTo(1); // Service type: Digital TV. in consume() 324 int serviceProviderNameLength = sectionData.readUnsignedByte(); in consume() [all …]
|
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/ts/ |
H A D | TsExtractorTest.java | 306 public void consume(ParsableByteArray sectionData) { in consume() argument 311 sectionData.skipBytes(11); in consume() 313 assertThat(sectionData.readUnsignedShort()).isEqualTo(0x5566 /* arbitrary service id */); in consume() 315 sectionData.skipBytes(1); in consume() 318 assertThat(sectionData.readUnsignedShort() & 0xFFF).isEqualTo(sectionData.bytesLeft()); in consume() 319 while (sectionData.bytesLeft() > 0) { in consume() 320 int descriptorTag = sectionData.readUnsignedByte(); in consume() 321 int descriptorLength = sectionData.readUnsignedByte(); in consume() 323 assertThat(sectionData.readUnsignedByte()).isEqualTo(1); // Service type: Digital TV. in consume() 324 int serviceProviderNameLength = sectionData.readUnsignedByte(); in consume() [all …]
|
/aosp_15_r20/external/elfutils/libdw/ |
H A 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() 275 if (addr >= dbg->sectiondata[IDX_debug_info]->d_buf in __libdw_findcu_addr() 276 && addr < (dbg->sectiondata[IDX_debug_info]->d_buf in __libdw_findcu_addr() 277 + dbg->sectiondata[IDX_debug_info]->d_size)) in __libdw_findcu_addr() 280 start = addr - dbg->sectiondata[IDX_debug_info]->d_buf; in __libdw_findcu_addr() 282 else if (dbg->sectiondata[IDX_debug_types] != NULL in __libdw_findcu_addr() 283 && addr >= dbg->sectiondata[IDX_debug_types]->d_buf in __libdw_findcu_addr() 284 && addr < (dbg->sectiondata[IDX_debug_types]->d_buf in __libdw_findcu_addr() [all …]
|
H A D | dwarf_begin_elf.c | 227 if (unlikely (result->sectiondata[cnt] != NULL)) in check_section() 257 result->sectiondata[cnt] = data; in check_section() 308 && unlikely (result->sectiondata[IDX_debug_info] == NULL in valid_p() 309 && result->sectiondata[IDX_debug_line] == NULL in valid_p() 310 && result->sectiondata[IDX_debug_frame] == NULL)) in valid_p() 338 if (result != NULL && result->sectiondata[IDX_debug_loc] != NULL) in valid_p() 353 = result->sectiondata[IDX_debug_loc]->d_buf; in valid_p() 355 = (result->sectiondata[IDX_debug_loc]->d_buf in valid_p() 356 + result->sectiondata[IDX_debug_loc]->d_size); in valid_p() 365 if (result != NULL && result->sectiondata[IDX_debug_loclists] != NULL) in valid_p() [all …]
|
/aosp_15_r20/external/llvm/test/MC/ARM/ |
H A 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 (
|
/aosp_15_r20/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonLDBackend.cpp | 179 const SectionData* sect_data = pSection.getSectionData(); in emitSectionData() 180 SectionData::const_iterator frag_iter, frag_end = sect_data->end(); in emitSectionData() 644 SectionData* prev = NULL; in doRelax() 649 SectionData* sd = (*island).begin()->getParent(); in doRelax() 698 SectionData* sd = NULL; in mergeSection() 713 SectionData* pTo = (m_psdata->getSectionData()); in SetSDataSection() 721 SectionData::FragmentListType& to_list = pTo->getFragmentList(); in SetSDataSection() 722 SectionData::FragmentListType::iterator fragTo, fragToEnd = to_list.end(); in SetSDataSection() 732 SectionData::FragmentListType& newlist = pTo->getFragmentList(); in SetSDataSection() 763 // get or create corresponding BSS SectionData in allocateCommonSymbols() [all …]
|