| #
534d9352
|
| 18-Jul-2025 |
John Bampton <jbampton@users.noreply.github.com> |
pre-commit auto remove trailing whitespace from C files (#386)
Another big whitespace clean up
|
| #
787e1130
|
| 28-Apr-2018 |
Don Lewis <truckman@apache.org> |
Fix potential memory alignment issues on X86_64.
Clang version 4.0 and newer uses SSE instructions that require 16-byte alignment to zero memory allocated using the C++ new operator. The internal me
Fix potential memory alignment issues on X86_64.
Clang version 4.0 and newer uses SSE instructions that require 16-byte alignment to zero memory allocated using the C++ new operator. The internal memory allocator does not understand anything larger than 8-byte alignment. Modify it to be capable of doing 16-byte alignment when necessary.
There is also a debug layer beneath the C++ new and delete operators that is enabled by the --enable-debug configure option. This layer adds 8 to the requested size of any allocations before calling the underlying allocator, adds a known signature to the start of the memory block, and then adds an 8 byte offset to the pointer before returning it to the caller. The delete operator basically does the reverse, checking for the proper signature. Modify this code so that it adds and subtracts a 16-byte offset on X86_64 so that a properly aligned block from the underlying allocator does not cause new to return a misaligned pointer.
Modify set_soenv.in so that it always requests 16-byte alignment on X86_64 so that the ABI is the same independent of the toolchain.
git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1830406 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| #
509a48ff
|
| 10-Apr-2016 |
pfg <pfg@13f79535-47bb-0310-9956-ffa450edef68> |
Replace 0 with NULL for pointers.
Only applied to C code: common syntax for C++ is different (nullptr).
Found with coccinelle: http://coccinelle.lip6.fr/
git-svn-id: https://svn.apache.org/repos/
Replace 0 with NULL for pointers.
Only applied to C code: common syntax for C++ is different (nullptr).
Found with coccinelle: http://coccinelle.lip6.fr/
git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1738404 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| #
5be78d22
|
| 11-Nov-2013 |
Steve Yin <steve_y@apache.org> |
Synchronized with the trunk to solve the build issue (removing moz)
git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/ia2@1540658 13f79535-47bb-0310-9956-ffa450edef68
|
| #
87c0c1b4
|
| 08-Nov-2013 |
Yuri Dario <ydario@apache.org> |
i123001 - force destructor to be called before libc calls DosExit().
git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1539965 13f79535-47bb-0310-9956-ffa450edef68
|
| #
3a700b0a
|
| 29-Oct-2013 |
Steve Yin <steve_y@apache.org> |
sal: commented WaitForSingleObject (g_cache_list.m_update_thread, INFINITE), which can lead a deadlock when unloading the sal3.dll after register UAccCOM.dll.
vcl: removed all unused UAccCOM.dll re
sal: commented WaitForSingleObject (g_cache_list.m_update_thread, INFINITE), which can lead a deadlock when unloading the sal3.dll after register UAccCOM.dll.
vcl: removed all unused UAccCOM.dll registration lines.
winaccessibility: updated to Apache License.
git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/ia2@1536599 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| #
647f063d
|
| 30-Nov-2011 |
Andrew Rist <arist@apache.org> |
Update headers to Alv2 headers
git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1208548 13f79535-47bb-0310-9956-ffa450edef68
|
| #
cdf0e10c
|
| 16-Aug-2011 |
rcweir <rcweir@unknown> |
Initial import of the old OOo hg repository tip revision.
.../trunk/main is a copy of (currently tip-most) http://hg.services.openoffice.org/OOO340/rev/c904c1944462
.../trunk/extras/l10n is a co
Initial import of the old OOo hg repository tip revision.
.../trunk/main is a copy of (currently tip-most) http://hg.services.openoffice.org/OOO340/rev/c904c1944462
.../trunk/extras/l10n is a copy of (currently tip-most) http://hg.services.openoffice.org/master_l10n/OOO340/rev/af6bc9467af5 Note that the following files with line-end and/or encoding anomalies were left out (they will need to be to be checked in separately):
/ooo/trunk/core/dictionaries/de_DE/README_hyph_de_DE.txt /ooo/trunk/core/dictionaries/de_CH/README_hyph_de_CH.txt /ooo/trunk/core/dictionaries/de_AT/README_hyph_de_AT.txt /ooo/trunk/core/gettext/gettext-0.18.1.1.patch /ooo/trunk/core/apache-commons/patches/codec.patch /ooo/trunk/core/libcroco/libcroco-0.6.2.patch /ooo/trunk/core/testautomation/writer/optional/input/import/mactext.txt /ooo/trunk/core/graphite/graphite-2.3.1.patch /ooo/trunk/core/hwpfilter/source/hwpeq.cpp /ooo/trunk/core/solenv/bin/cwstouched.pl /ooo/trunk/core/readlicense_oo/html/THIRDPARTYLICENSEREADME.html /ooo/trunk/core/writerfilter/source/doctok/escher.html /ooo/trunk/core/writerfilter/source/odiapi/qname/resource/office2003/WordprocessingML Schemas/xsdlib.xsd /ooo/trunk/core/writerfilter/source/odiapi/qname/resource/office2003/WordprocessingML Schemas/wordnetaux.xsd /ooo/trunk/core/filter/source/xslt/odf2xhtml/export/common/body.xsl /ooo/trunk/core/filter/source/xslt/odf2xhtml/export/common/styles/style_mapping_css.xsl
Also: Repository.mk from the l10n toplevel
git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1162288 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|