Home
last modified time | relevance | path

Searched refs:sectionLength (Results 1 – 25 of 126) sorted by relevance

123456

/dports/www/firefox-esr/firefox-91.8.0/mobile/android/geckoview/src/thirdparty/java/org/mozilla/thirdparty/com/google/android/exoplayer2/text/pgs/
H A DPgsDecoder.java84 int sectionLength = buffer.readUnsignedShort(); in readNextSection() local
95 cueBuilder.parsePaletteSection(buffer, sectionLength); in readNextSection()
98 cueBuilder.parseBitmapSection(buffer, sectionLength); in readNextSection()
134 if ((sectionLength % 5) != 2) { in parsePaletteSection()
141 int entryCount = sectionLength / 5; in parsePaletteSection()
161 if (sectionLength < 4) { in parseBitmapSection()
166 sectionLength -= 4; in parseBitmapSection()
169 if (sectionLength < 7) { in parseBitmapSection()
179 sectionLength -= 7; in parseBitmapSection()
184 if (position < limit && sectionLength > 0) { in parseBitmapSection()
[all …]
/dports/www/firefox/firefox-99.0/mobile/android/exoplayer2/src/main/java/org/mozilla/thirdparty/com/google/android/exoplayer2/text/pgs/
H A DPgsDecoder.java84 int sectionLength = buffer.readUnsignedShort(); in readNextSection() local
95 cueBuilder.parsePaletteSection(buffer, sectionLength); in readNextSection()
98 cueBuilder.parseBitmapSection(buffer, sectionLength); in readNextSection()
134 if ((sectionLength % 5) != 2) { in parsePaletteSection()
141 int entryCount = sectionLength / 5; in parsePaletteSection()
161 if (sectionLength < 4) { in parseBitmapSection()
166 sectionLength -= 4; in parseBitmapSection()
169 if (sectionLength < 7) { in parseBitmapSection()
179 sectionLength -= 7; in parseBitmapSection()
184 if (position < limit && sectionLength > 0) { in parseBitmapSection()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/mobile/android/geckoview/src/thirdparty/java/org/mozilla/thirdparty/com/google/android/exoplayer2/text/pgs/
H A DPgsDecoder.java84 int sectionLength = buffer.readUnsignedShort(); in readNextSection() local
95 cueBuilder.parsePaletteSection(buffer, sectionLength); in readNextSection()
98 cueBuilder.parseBitmapSection(buffer, sectionLength); in readNextSection()
134 if ((sectionLength % 5) != 2) { in parsePaletteSection()
141 int entryCount = sectionLength / 5; in parsePaletteSection()
161 if (sectionLength < 4) { in parseBitmapSection()
166 sectionLength -= 4; in parseBitmapSection()
169 if (sectionLength < 7) { in parseBitmapSection()
179 sectionLength -= 7; in parseBitmapSection()
184 if (position < limit && sectionLength > 0) { in parseBitmapSection()
[all …]
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pictures/
H A DJpegParse.cpp94 bool CJpegParse::GetSection (CFile& infile, const unsigned short sectionLength) in GetSection() argument
96 if (sectionLength < 2) in GetSection()
102 m_SectionBuffer = new unsigned char[sectionLength]; in GetSection()
109 m_SectionBuffer[0] = (unsigned char)(sectionLength >> 8); in GetSection()
110 m_SectionBuffer[1] = (unsigned char)(sectionLength & 0x00FF); in GetSection()
112 unsigned int len = (unsigned int)sectionLength; in GetSection()
114 size_t bytesRead = infile.Read(m_SectionBuffer+sizeof(sectionLength), len-sizeof(sectionLength)); in GetSection()
115 if (bytesRead != sectionLength-sizeof(sectionLength)) in GetSection()
/dports/science/eccodes/eccodes-2.23.0-Source/src/
H A Dgrib_accessor_class_raw.c53 const char* sectionLength; member
141 long sectionLength; in init() local
148 self->sectionLength = grib_arguments_get_name(hand, arg, n++); in init()
155 grib_get_long(hand, self->sectionLength, &sectionLength); in init()
157 a->length = sectionLength - self->relativeOffset; in init()
228 long sectionLength; in pack_bytes() local
235 grib_get_long(h, self->sectionLength, &sectionLength); in pack_bytes()
236 sectionLength += dlen; in pack_bytes()
241 grib_set_long(h, self->sectionLength, sectionLength); in pack_bytes()
H A Dgrib_accessor_class_section_pointer.c50 const char* sectionLength; member
143 self->sectionLength = grib_arguments_get_name(grib_handle_of_accessor(a), arg, n++); in init()
149 grib_handle_of_accessor(a)->section_length[self->sectionNumber] = (char*)self->sectionLength; in init()
194 long sectionLength = 0; in byte_count() local
197 ret = grib_get_long(grib_handle_of_accessor(a), self->sectionLength, &sectionLength); in byte_count()
201 self->sectionLength, grib_get_error_message(ret)); in byte_count()
205 return sectionLength; in byte_count()
/dports/science/grib_api/grib_api-1.28.0-Source/src/
H A Dgrib_accessor_class_section_pointer.c49 const char* sectionLength; member
136 self->sectionLength = grib_arguments_get_name(a->parent->h,arg,n++); in init()
142 a->parent->h->section_length[self->sectionNumber]=(char*)self->sectionLength; in init()
187 long sectionLength=0; in byte_count() local
190 ret=grib_get_long(a->parent->h,self->sectionLength,&sectionLength); in byte_count()
194 self->sectionLength,grib_get_error_message(ret)); in byte_count()
198 return sectionLength; in byte_count()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/java/lang/instrument/ilib/
H A DClassReaderWriter.java34 private final int sectionLength; field in ClassReaderWriter
53 sectionLength = orig.length * GROWTH_FACTOR; in ClassReaderWriter()
54 gen = new byte[sectionLength * SECTIONS]; in ClassReaderWriter()
56 genSectionPos[section] = section * sectionLength; in ClassReaderWriter()
75 int sectionStart = section * sectionLength; in result()
83 int sectionStart = section * sectionLength; in result()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/test/java/lang/instrument/ilib/
H A DClassReaderWriter.java34 private final int sectionLength; field in ClassReaderWriter
53 sectionLength = orig.length * GROWTH_FACTOR; in ClassReaderWriter()
54 gen = new byte[sectionLength * SECTIONS]; in ClassReaderWriter()
56 genSectionPos[section] = section * sectionLength; in ClassReaderWriter()
75 int sectionStart = section * sectionLength; in result()
83 int sectionStart = section * sectionLength; in result()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/icu4c-57.1/source/i18n/
H A Duspoof_impl.cpp805 int32_t sectionLength; in uspoof_swap() local
818 sectionLength = ds->readUInt32(spoofDH->fCFUKeysSize) * 4; in uspoof_swap()
819 ds->swapArray32(ds, inBytes+sectionStart, sectionLength, outBytes+sectionStart, status); in uspoof_swap()
823 sectionLength = ds->readUInt32(spoofDH->fCFUStringIndexSize) * 2; in uspoof_swap()
828 sectionLength = ds->readUInt32(spoofDH->fCFUStringTableLen) * 2; in uspoof_swap()
833 sectionLength = ds->readUInt32(spoofDH->fCFUStringLengthsSize) * 4; in uspoof_swap()
838 sectionLength = ds->readUInt32(spoofDH->fAnyCaseTrieLength); in uspoof_swap()
839 utrie2_swap(ds, inBytes+sectionStart, sectionLength, outBytes+sectionStart, status); in uspoof_swap()
843 sectionLength = ds->readUInt32(spoofDH->fLowerCaseTrieLength); in uspoof_swap()
844 utrie2_swap(ds, inBytes+sectionStart, sectionLength, outBytes+sectionStart, status); in uspoof_swap()
[all …]
/dports/audio/praat/praat-6.2.03/artsynth/
H A DArt_Speaker_to_VocalTract.cpp28 constexpr double sectionLength = 0.001; // one millimetre in Art_Speaker_to_VocalTract() local
32 integer numberOfConstantSections = Melder_iround (tube -> Dxeq / sectionLength); in Art_Speaker_to_VocalTract()
37 autoVocalTract thee = VocalTract_create (numberOfSections, sectionLength); in Art_Speaker_to_VocalTract()
/dports/textproc/R-cran-stringi/stringi/src/icu55/i18n/
H A Duspoof_impl.cpp806 int32_t sectionLength; in uspoof_swap() local
819 sectionLength = ds->readUInt32(spoofDH->fCFUKeysSize) * 4; in uspoof_swap()
820 ds->swapArray32(ds, inBytes+sectionStart, sectionLength, outBytes+sectionStart, status); in uspoof_swap()
824 sectionLength = ds->readUInt32(spoofDH->fCFUStringIndexSize) * 2; in uspoof_swap()
829 sectionLength = ds->readUInt32(spoofDH->fCFUStringTableLen) * 2; in uspoof_swap()
834 sectionLength = ds->readUInt32(spoofDH->fCFUStringLengthsSize) * 4; in uspoof_swap()
839 sectionLength = ds->readUInt32(spoofDH->fAnyCaseTrieLength); in uspoof_swap()
840 utrie2_swap(ds, inBytes+sectionStart, sectionLength, outBytes+sectionStart, status); in uspoof_swap()
844 sectionLength = ds->readUInt32(spoofDH->fLowerCaseTrieLength); in uspoof_swap()
845 utrie2_swap(ds, inBytes+sectionStart, sectionLength, outBytes+sectionStart, status); in uspoof_swap()
[all …]
/dports/multimedia/kaffeine/kaffeine-2.0.18/src/dvb/
H A Ddvbsi.cpp36 if (sectionLength > size) { in initSection()
38 sectionLength = size; in initSection()
41 initSectionData(data, sectionLength, size); in initSection()
1101 char *DvbSectionGenerator::startSection(int sectionLength) in startSection() argument
1103 Q_ASSERT((sectionLength >= 4) && (sectionLength <= 0x1002)); in startSection()
1104 packets.resize(((sectionLength / 184) + 1) * 188); in startSection()
1110 Q_ASSERT((sectionLength >= 4) && (sectionLength <= 0x1002)); in endSection()
1113 packets.resize(((sectionLength / 184) + 1) * 188); in endSection()
1121 data[6] = 0xb0 | char((sectionLength - 3) >> 8); in endSection()
1122 data[7] = char(sectionLength - 3); in endSection()
[all …]
/dports/misc/libemos/libemos-4.5.9-Source/gribtemplates/
H A DlocalDefinitionTemplate_007_002_0008 sectionLength 1 L3 n/a ignore
15 if_ge_46 - IF_GT 45 sectionLength
23 if_ge_61 - IF_GT 60 sectionLength
H A DlocalDefinitionTemplate_007_002_0018 sectionLength 1 L3 n/a ignore
15 if_ge_46 - IF_GT 45 sectionLength
23 if_ge_61 - IF_GT 60 sectionLength
H A DlocalDefinitionTemplate_007_000_0018 sectionLength 1 L3 n/a ignore
15 if_ge_46 - IF_GT 45 sectionLength
23 if_ge_61 - IF_GT 60 sectionLength
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/swarm/bmt/
H A Dbmt_r.go35 sectionLength int // 2 * hashSize member
47 sectionLength: 2 * hashsize,
72 if length == rh.sectionLength {
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/Support/
H A DELFAttributeParser.cpp209 uint32_t sectionLength = de.getU32(cursor); in parse() local
218 if (sectionLength < 4 || cursor.tell() - 4 + sectionLength > section.size()) in parse()
221 Twine(sectionLength) + " at offset 0x" + in parse()
224 if (Error e = parseSubsection(sectionLength)) in parse()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/lib/Support/
H A DELFAttributeParser.cpp209 uint32_t sectionLength = de.getU32(cursor); in parse() local
218 if (sectionLength < 4 || cursor.tell() - 4 + sectionLength > section.size()) in parse()
221 Twine(sectionLength) + " at offset 0x" + in parse()
224 if (Error e = parseSubsection(sectionLength)) in parse()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/lib/Support/
H A DELFAttributeParser.cpp209 uint32_t sectionLength = de.getU32(cursor); in parse() local
218 if (sectionLength < 4 || cursor.tell() - 4 + sectionLength > section.size()) in parse()
221 Twine(sectionLength) + " at offset 0x" + in parse()
224 if (Error e = parseSubsection(sectionLength)) in parse()
/dports/graphics/llvm-mesa/llvm-13.0.1.src/lib/Support/
H A DELFAttributeParser.cpp209 uint32_t sectionLength = de.getU32(cursor); in parse() local
218 if (sectionLength < 4 || cursor.tell() - 4 + sectionLength > section.size()) in parse()
221 Twine(sectionLength) + " at offset 0x" + in parse()
224 if (Error e = parseSubsection(sectionLength)) in parse()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/lib/Support/
H A DELFAttributeParser.cpp209 uint32_t sectionLength = de.getU32(cursor); in parse() local
218 if (sectionLength < 4 || cursor.tell() - 4 + sectionLength > section.size()) in parse()
221 Twine(sectionLength) + " at offset 0x" + in parse()
224 if (Error e = parseSubsection(sectionLength)) in parse()
/dports/devel/llvm11/llvm-11.0.1.src/lib/Support/
H A DELFAttributeParser.cpp209 uint32_t sectionLength = de.getU32(cursor); in parse() local
218 if (sectionLength < 4 || cursor.tell() - 4 + sectionLength > section.size()) in parse()
221 Twine(sectionLength) + " at offset 0x" + in parse()
224 if (Error e = parseSubsection(sectionLength)) in parse()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/lib/Support/
H A DELFAttributeParser.cpp209 uint32_t sectionLength = de.getU32(cursor); in parse() local
218 if (sectionLength < 4 || cursor.tell() - 4 + sectionLength > section.size()) in parse()
221 Twine(sectionLength) + " at offset 0x" + in parse()
224 if (Error e = parseSubsection(sectionLength)) in parse()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/lib/Support/
H A DELFAttributeParser.cpp209 uint32_t sectionLength = de.getU32(cursor); in parse() local
218 if (sectionLength < 4 || cursor.tell() - 4 + sectionLength > section.size()) in parse()
221 Twine(sectionLength) + " at offset 0x" + in parse()
224 if (Error e = parseSubsection(sectionLength)) in parse()

123456