Home
last modified time | relevance | path

Searched refs:dataSection (Results 1 – 25 of 320) sorted by relevance

12345678910>>...13

/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/
H A DXls.php577 $dataSection = [];
583 $dataSection[] = [
603 $dataSection[] = [
611 $dataSection[] = [
619 $dataSection[] = [
627 $dataSection[] = [
635 $dataSection[] = [
656 $dataSection[] = [
692 $dataSection[] = [
814 $dataSection = [];
[all …]
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/
H A DXls.php582 $dataSection = [];
588 $dataSection[] = [
608 $dataSection[] = [
616 $dataSection[] = [
624 $dataSection[] = [
632 $dataSection[] = [
640 $dataSection[] = [
661 $dataSection[] = [
697 $dataSection[] = [
824 $dataSection = [];
[all …]
/dports/finance/weberp/webERP/Classes/PHPExcel/Writer/
H A DExcel5.php584 $dataSection = array();
590 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x01),
606 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x17),
612 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0B),
618 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x10),
624 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x13),
630 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x16),
649 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0D),
693 foreach ($dataSection as $dataProp){
784 $dataSection = array();
[all …]
/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/
H A DExcel5.php561 $dataSection = array();
567 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x01),
583 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x17),
589 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0B),
595 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x10),
601 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x13),
607 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x16),
626 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0D),
670 foreach ($dataSection as $dataProp) {
757 $dataSection = array();
[all …]
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/includes/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/
H A DXls.php566 $dataSection = [];
572 $dataSection[] = [
592 $dataSection[] = [
600 $dataSection[] = [
608 $dataSection[] = [
616 $dataSection[] = [
624 $dataSection[] = [
645 $dataSection[] = [
681 $dataSection[] = [
781 $dataSection = [];
[all …]
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/includes/phpoffice/PhpSpreadsheet/Writer/
H A DXls.php566 $dataSection = [];
572 $dataSection[] = [
592 $dataSection[] = [
600 $dataSection[] = [
608 $dataSection[] = [
616 $dataSection[] = [
624 $dataSection[] = [
645 $dataSection[] = [
681 $dataSection[] = [
781 $dataSection = [];
[all …]
/dports/finance/prestashop/prestashop/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/
H A DXls.php566 $dataSection = [];
572 $dataSection[] = [
592 $dataSection[] = [
600 $dataSection[] = [
608 $dataSection[] = [
616 $dataSection[] = [
624 $dataSection[] = [
645 $dataSection[] = [
681 $dataSection[] = [
781 $dataSection = [];
[all …]
/dports/www/thirtybees/thirtybees-1.1.0/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/
H A DExcel5.php561 $dataSection = array();
567 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x01),
583 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x17),
589 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0B),
595 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x10),
601 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x13),
607 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x16),
626 $dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0D),
670 foreach ($dataSection as $dataProp) {
757 $dataSection = array();
[all …]
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/play/src/
H A DCoffObjectFile.cpp46 …auto dataSection = BuildSection(m_internalSymbols, internalSymbolInfos, INTERNAL_SYMBOL_LOCATION_D… in Write() local
49 m_externalSymbols, externalSymbolInfos, textSection.data.size(), dataSection.data.size()); in Write()
57 uint32 dataSectionRelocOffset = offsetKeeper.Advance(dataSection.data.size()); in Write()
58 …uint32 symbolTableOffset = offsetKeeper.Advance(dataSection.symbolReferences.size() * sizeof(Coff:… in Write()
82 sectionHeader.sizeOfRawData = dataSection.data.size(); in Write()
84 …sectionHeader.pointerToRelocations = (dataSection.symbolReferences.size() == 0) ? 0 : dataSectionR… in Write()
86 sectionHeader.numberOfRelocations = dataSection.symbolReferences.size(); in Write()
93 …auto dataSectionRelocations = BuildRelocations(dataSection, internalSymbolInfos, externalSymbolInf… in Write()
108 stream.Write(dataSection.data.data(), dataSection.data.size()); in Write()
H A DMachoObjectFile.cpp32 …auto dataSection = BuildSection(m_internalSymbols, internalSymbolInfos, INTERNAL_SYMBOL_LOCATION_D… in Write() local
36 dataSection.data.resize((dataSection.data.size() + 0x01) & ~0x01); in Write()
42 …auto dataSectionRelocations = BuildRelocations(dataSection, internalSymbolInfos, externalSymbolInf… in Write()
50 …Size = static_cast<uint32>(textSection.data.size()) + static_cast<uint32>(dataSection.data.size()); in Write()
85 section.size = static_cast<uint32>(dataSection.data.size()); in Write()
152 stream.Write(dataSection.data.data(), dataSection.data.size()); in Write()
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/deps/CodeGen/src/
H A DCoffObjectFile.cpp46 …auto dataSection = BuildSection(m_internalSymbols, internalSymbolInfos, INTERNAL_SYMBOL_LOCATION_D… in Write() local
49 m_externalSymbols, externalSymbolInfos, textSection.data.size(), dataSection.data.size()); in Write()
57 uint32 dataSectionRelocOffset = offsetKeeper.Advance(dataSection.data.size()); in Write()
58 …uint32 symbolTableOffset = offsetKeeper.Advance(dataSection.symbolReferences.size() * sizeof(Coff:… in Write()
82 sectionHeader.sizeOfRawData = dataSection.data.size(); in Write()
84 …sectionHeader.pointerToRelocations = (dataSection.symbolReferences.size() == 0) ? 0 : dataSectionR… in Write()
86 sectionHeader.numberOfRelocations = dataSection.symbolReferences.size(); in Write()
93 …auto dataSectionRelocations = BuildRelocations(dataSection, internalSymbolInfos, externalSymbolInf… in Write()
108 stream.Write(dataSection.data.data(), dataSection.data.size()); in Write()
H A DMachoObjectFile.cpp33 …auto dataSection = BuildSection(m_internalSymbols, internalSymbolInfos, INTERNAL_SYMBOL_LOCATION_D… in Write() local
37 dataSection.data.resize((dataSection.data.size() + 0x01) & ~0x01); in Write()
43 …auto dataSectionRelocations = BuildRelocations(dataSection, internalSymbolInfos, externalSymbolInf… in Write()
51 …Size = static_cast<uint32>(textSection.data.size()) + static_cast<uint32>(dataSection.data.size()); in Write()
86 section.size = static_cast<uint32>(dataSection.data.size()); in Write()
153 stream.Write(dataSection.data.data(), dataSection.data.size()); in Write()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotCompiledCode.java80 protected final byte[] dataSection; field in HotSpotCompiledCode
119 …es, Assumption[] assumptions, ResolvedJavaMethod[] methods, Comment[] comments, byte[] dataSection, in HotSpotCompiledCode() argument
129 this.dataSection = dataSection; in HotSpotCompiledCode()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotCompiledCode.java80 protected final byte[] dataSection; field in HotSpotCompiledCode
119 …es, Assumption[] assumptions, ResolvedJavaMethod[] methods, Comment[] comments, byte[] dataSection, in HotSpotCompiledCode() argument
129 this.dataSection = dataSection; in HotSpotCompiledCode()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotCompiledCode.java80 protected final byte[] dataSection; field in HotSpotCompiledCode
119 …es, Assumption[] assumptions, ResolvedJavaMethod[] methods, Comment[] comments, byte[] dataSection, in HotSpotCompiledCode() argument
129 this.dataSection = dataSection; in HotSpotCompiledCode()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotCompiledCode.java80 protected final byte[] dataSection; field in HotSpotCompiledCode
119 …es, Assumption[] assumptions, ResolvedJavaMethod[] methods, Comment[] comments, byte[] dataSection, in HotSpotCompiledCode() argument
129 this.dataSection = dataSection; in HotSpotCompiledCode()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotCompiledCode.java82 protected final byte[] dataSection; field in HotSpotCompiledCode
121 …es, Assumption[] assumptions, ResolvedJavaMethod[] methods, Comment[] comments, byte[] dataSection, in HotSpotCompiledCode() argument
131 this.dataSection = dataSection; in HotSpotCompiledCode()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotCompiledCode.java82 protected final byte[] dataSection; field in HotSpotCompiledCode
121 …es, Assumption[] assumptions, ResolvedJavaMethod[] methods, Comment[] comments, byte[] dataSection, in HotSpotCompiledCode() argument
131 this.dataSection = dataSection; in HotSpotCompiledCode()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotCompiledCode.java82 protected final byte[] dataSection; field in HotSpotCompiledCode
121 …es, Assumption[] assumptions, ResolvedJavaMethod[] methods, Comment[] comments, byte[] dataSection, in HotSpotCompiledCode() argument
131 this.dataSection = dataSection; in HotSpotCompiledCode()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotCompiledCode.java82 protected final byte[] dataSection; field in HotSpotCompiledCode
121 …es, Assumption[] assumptions, ResolvedJavaMethod[] methods, Comment[] comments, byte[] dataSection, in HotSpotCompiledCode() argument
131 this.dataSection = dataSection; in HotSpotCompiledCode()
/dports/lang/gcc10/gcc-10.3.0/libphobos/libdruntime/gcc/sections/
H A Dwin64.d79 void[] dataSection = findImageSection(".data"); in initSections()
80 debug(PRINTF) printf("found .data section: [%p,+%llx]\n", dataSection.ptr, in initSections()
81 cast(ulong)dataSection.length); in initSections()
89 _sections._gcRanges[0] = dataSection; in initSections()
102 void* addr = dataSection.ptr + off; in initSections()
/dports/devel/avr-gcc/gcc-10.2.0/libphobos/libdruntime/gcc/sections/
H A Dwin64.d79 void[] dataSection = findImageSection(".data"); in initSections()
80 debug(PRINTF) printf("found .data section: [%p,+%llx]\n", dataSection.ptr, in initSections()
81 cast(ulong)dataSection.length); in initSections()
89 _sections._gcRanges[0] = dataSection; in initSections()
102 void* addr = dataSection.ptr + off; in initSections()
/dports/lang/gcc9-devel/gcc-9-20211007/libphobos/libdruntime/gcc/sections/
H A Dwin64.d79 void[] dataSection = findImageSection(".data"); in initSections()
80 debug(PRINTF) printf("found .data section: [%p,+%llx]\n", dataSection.ptr, in initSections()
81 cast(ulong)dataSection.length); in initSections()
89 _sections._gcRanges[0] = dataSection; in initSections()
102 void* addr = dataSection.ptr + off; in initSections()
/dports/lang/gcc9-aux/gcc-9.1.0/libphobos/libdruntime/gcc/sections/
H A Dwin64.d79 void[] dataSection = findImageSection(".data"); in initSections()
80 debug(PRINTF) printf("found .data section: [%p,+%llx]\n", dataSection.ptr, in initSections()
81 cast(ulong)dataSection.length); in initSections()
89 _sections._gcRanges[0] = dataSection; in initSections()
102 void* addr = dataSection.ptr + off; in initSections()
/dports/lang/gcc10-devel/gcc-10-20211008/libphobos/libdruntime/gcc/sections/
H A Dwin64.d79 void[] dataSection = findImageSection(".data"); in initSections()
80 debug(PRINTF) printf("found .data section: [%p,+%llx]\n", dataSection.ptr, in initSections()
81 cast(ulong)dataSection.length); in initSections()
89 _sections._gcRanges[0] = dataSection; in initSections()
102 void* addr = dataSection.ptr + off; in initSections()

12345678910>>...13