Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 766) sorted by relevance

12345678910>>...31

/AOO41X/main/external/mingwheaders/
H A Dmakefile.mk52 excpt.h \
53 tchar.h
56 amvideo.h \
57 basetyps.h \
58 objidl.h \
59 specstrings.h \
60 uxtheme.h \
61 winbase.h \
62 windef.h \
63 wininet.h \
[all …]
H A Dmingw_headers.patch1 --- include/crtdbg.h.orig 2006-09-18 01:21:38.968750000 +0900
2 +++ include/crtdbg.h 2006-09-02 23:12:50.109375000 +0900
15 --- include/excpt.h.orig 2009-01-11 04:32:43.000000000 +0900
16 +++ include/excpt.h 2009-08-21 09:21:56.000000000 +0900
20 #include <_mingw.h>
21 +#include <setjmp.h>
22 +#include <stdarg.h>
24 #include <windef.h>
25 +#include <winbase.h>
161 --- include/tchar.h.orig 2009-01-11 04:32:46.000000000 +0900
[all …]
/AOO41X/ext_libraries/apr/
H A Dapr-1.5.2-darwin19.6.patch4 #include <errno.h>
5 #include <string.h>
6 #include <stdio.h>
7 +#include <stdlib.h>
12 /* end confdefs.h. */
13 #include <stdio.h>
14 #include <sys/types.h>
15 +#include <stdlib.h>
20 /* end confdefs.h. */
21 #include <stdio.h>
[all …]
/AOO41X/main/cppu/prj/
H A Dd.lst13 ..\inc\com\sun\star\uno\Reference.h %_DEST%\inc%_EXT%\com\sun\star\uno\Reference.h
15 ..\inc\com\sun\star\uno\Type.h %_DEST%\inc%_EXT%\com\sun\star\uno\Type.h
17 ..\inc\com\sun\star\uno\Any.h %_DEST%\inc%_EXT%\com\sun\star\uno\Any.h
19 ..\inc\com\sun\star\uno\Sequence.h %_DEST%\inc%_EXT%\com\sun\star\uno\Sequence.h
21 ..\inc\com\sun\star\uno\genfunc.h %_DEST%\inc%_EXT%\com\sun\star\uno\genfunc.h
24 ..\inc\typelib\typeclass.h %_DEST%\inc%_EXT%\typelib\typeclass.h
25 ..\inc\typelib\typedescription.h %_DEST%\inc%_EXT%\typelib\typedescription.h
27 ..\inc\typelib\uik.h %_DEST%\inc%_EXT%\typelib\uik.h
29 ..\inc\uno\dispatcher.h %_DEST%\inc%_EXT%\uno\dispatcher.h
31 ..\inc\uno\any2.h %_DEST%\inc%_EXT%\uno\any2.h
[all …]
/AOO41X/main/svtools/source/filter/
H A Dsgvspln.cxx456 double* h; in NaturalSpline() local
462 h=new double[n+1]; in NaturalSpline()
464 h[i]=x[i+1]-x[i]; in NaturalSpline()
465 if (h[i]<=0.0) { delete[] a; delete[] h; return 1; } in NaturalSpline()
468 a[i]=3.0*((y[i+2]-y[i+1])/h[i+1]-(y[i+1]-y[i])/h[i]); in NaturalSpline()
469 b[i]=h[i]; in NaturalSpline()
470 c[i]=h[i+1]; in NaturalSpline()
471 d[i]=2.0*(h[i]+h[i+1]); in NaturalSpline()
479 a[0] =a[0]*h[1]/(h[0]+h[1]); in NaturalSpline()
480 a[n-2]=a[n-2]*h[n-2]/(h[n-1]+h[n-2]); in NaturalSpline()
[all …]
/AOO41X/main/sw/inc/
H A Dstringhash.hxx49 sal_Int32 h, nLen; in operator ()() local
50 h = nLen = rString->Len(); in operator ()()
55 h = (h*37) + *(pStr++); in operator ()()
63 h = (h*39) + *(pStr++); in operator ()()
64 h = (h*39) + *(pStr++); in operator ()()
65 h = (h*39) + *(pStr++); in operator ()()
71 h = (h*39) + ( *pStr ); in operator ()()
76 h = (h*39) + *(pEndStr++); in operator ()()
77 h = (h*39) + *(pEndStr++); in operator ()()
78 h = (h*39) + *(pEndStr++); in operator ()()
[all …]
/AOO41X/main/redland/rasqal/
H A Drasqal-0.9.33.patch.win321 diff -ur misc/rasqal-0.9.33/src/rasqal_config.h.in misc/build/rasqal-0.9.33/src/rasqal_config.h.in
2 --- misc/rasqal-0.9.33/src/rasqal_config.h.in 2014-11-23 14:11:50.000000000 -0800
3 +++ misc/build/rasqal-0.9.33/src/rasqal_config.h.in 2016-08-23 00:00:45.440707000 -0700
5 +/* src/rasqal_config.h. Generated from rasqal_config.h.in by configure. */
6 /* src/rasqal_config.h.in. Generated from configure.ac by autoheader. */
16 /* Define to 1 if you have the <dlfcn.h> header file. */
20 /* Define to 1 if you have the <errno.h> header file. */
24 /* Define to 1 if you have the <float.h> header file. */
28 /* Define to 1 if you have the <gcrypt.h> header file. */
36 /* Define to 1 if you have the <getopt.h> header file. */
[all …]
/AOO41X/main/basegfx/source/color/
H A Dbcolortools.cxx42 double h=0, s=0, l=0; in rgb2hsl() local
48 s = h = 0; // hue undefined (achromatic case) in rgb2hsl()
56 h = (g - b)/d; in rgb2hsl()
58 h = 2.0 + (b - r)/d; in rgb2hsl()
60 h = 4.0 + (r - g)/d; in rgb2hsl()
62 h *= 60.0; in rgb2hsl()
64 if( h < 0.0 ) in rgb2hsl()
65 h += 360.0; in rgb2hsl()
68 return BColor(h,s,l); in rgb2hsl()
92 const double h=rHSLColor.getRed(), s=rHSLColor.getGreen(), l=rHSLColor.getBlue(); in hsl2rgb() local
[all …]
/AOO41X/main/redland/redland/
H A Dmakefile.mk48 ADDITIONAL_FILES=src/makefile.mk src/rdf_config.h
87 $(COPY) src/rdf_config.h.in src/rdf_config.h
141 OUT2INC+=src$/librdf.h src$/redland.h \
142 src$/rdf_concepts.h \
143 src$/rdf_digest.h \
144 src$/rdf_hash.h \
145 src$/rdf_init.h \
146 src$/rdf_iterator.h \
147 src$/rdf_list.h \
148 src$/rdf_log.h \
[all …]
H A Dredland-1.0.17.patch.win321 --- misc/redland-1.0.17/src/rdf_config.h.in 2013-12-28 08:27:04.000000000 -0800
2 +++ misc/build/redland-1.0.17/src/rdf_config.h.in 2016-08-23 18:50:20.613027000 -0700
4 +/* src/rdf_config.h. Generated from rdf_config.h.in by configure. */
5 /* src/rdf_config.h.in. Generated from configure.ac by autoheader. */
27 /* Define to 1 if you have the <argz.h> header file. */
95 /* Define to 1 if you have the <db.h> header file. */
108 /* Define to 1 if you have the <dirent.h> header file. */
116 /* Define to 1 if you have the <dld.h> header file. */
124 /* Define to 1 if you have the <dlfcn.h> header file. */
128 /* Define to 1 if you have the <dl.h> header file. */
[all …]
/AOO41X/main/curl/prj/
H A Dd.lst2 ..\%__SRC%\inc\easy.h %_DEST%\inc%_EXT%\external\curl\easy.h
3 ..\%__SRC%\inc\curlver.h %_DEST%\inc%_EXT%\external\curl\curlver.h
4 ..\%__SRC%\inc\curl.h %_DEST%\inc%_EXT%\external\curl\curl.h
5 ..\%__SRC%\inc\mprintf.h %_DEST%\inc%_EXT%\external\curl\mprintf.h
6 ..\%__SRC%\inc\multi.h %_DEST%\inc%_EXT%\external\curl\multi.h
7 ..\%__SRC%\inc\stdcheaders.h %_DEST%\inc%_EXT%\external\curl\stdcheaders.h
8 ..\%__SRC%\inc\typecheck-gcc.h %_DEST%\inc%_EXT%\external\curl\typecheck-gcc.h
9 ..\%__SRC%\inc\system.h %_DEST%\inc%_EXT%\external\curl\system.h
10 ..\%__SRC%\inc\urlapi.h %_DEST%\inc%_EXT%\external\curl\urlapi.h
/AOO41X/main/redland/raptor/
H A Draptor2-2.0.15.patch.win321 diff -ur misc/raptor2-2.0.15/src/raptor_config.h.in misc/build/raptor2-2.0.15/src/raptor_config.h.in
2 --- misc/raptor2-2.0.15/src/raptor_config.h.in 2014-11-01 23:04:51.000000000 -0700
3 +++ misc/build/raptor2-2.0.15/src/raptor_config.h.in 2016-08-22 19:14:14.557872000 -0700
5 +/* src/raptor_config.h. Generated from raptor_config.h.in by configure. */
6 /* src/raptor_config.h.in. Generated from configure.ac by autoheader. */
24 /* Have curl/curl.h */
28 /* Define to 1 if you have the <dlfcn.h> header file. */
32 /* Define to 1 if you have the <errno.h> header file. */
36 /* Define to 1 if you have the <fcntl.h> header file. */
40 /* Define to 1 if you have the <fetch.h> header file. */
[all …]
/AOO41X/main/tools/
H A DPackage_inc.mk36 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/diagnose_ex.h,tools/diagnose_ex.h))
64 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/postsys.h,tools/postsys.h))
65 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/postwin.h,tools/postwin.h))
66 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/postx.h,tools/postx.h))
67 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/presys.h,tools/presys.h))
68 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/prewin.h,tools/prewin.h))
69 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/prex.h,tools/prex.h))
72 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/rc.h,tools/rc.h))
74 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/rcid.h,tools/rcid.h))
82 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/solar.h,tools/solar.h))
[all …]
/AOO41X/main/expat/
H A Dexpat-2.5.0.patch98 diff -ru misc/expat-2.5.0/expat_config.h misc/build/expat-2.5.0/expat_config.h
99 --- misc/expat-2.5.0/expat_config.h 2022-10-25 17:34:58.000000000 +0200
100 +++ misc/build/expat-2.5.0/expat_config.h 2023-02-06 23:22:40.604116318 +0100
108 /* Define to 1 if you have the <dlfcn.h> header file. */
167 diff -ru misc/expat-2.5.0/lib/siphash.h misc/build/expat-2.5.0/lib/siphash.h
168 --- misc/expat-2.5.0/lib/siphash.h 2022-10-23 17:16:56.000000000 +0200
169 +++ misc/build/expat-2.5.0/lib/siphash.h 2023-02-06 23:22:40.588115938 +0100
173 #include <stddef.h> /* size_t */
174 -#include <stdint.h> /* uint64_t uint32_t uint8_t */
181 +# include <stdint.h> /* uint64_t uint32_t uint8_t */
[all …]
/AOO41X/main/cairo/
H A Dcairo-1.8.0.patch101 /* confdefs.h. */
103 cat confdefs.h >>conftest.$ac_ext
105 /* end confdefs.h. */
106 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
107 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
112 + Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
113 + <limits.h> exists even on freestanding compilers. */
116 +# include <limits.h>
118 +# include <assert.h>
172 + cat >>confdefs.h <<_ACEOF
[all …]
/AOO41X/main/vcl/aqua/source/gdi/
H A Dsalnativewidgets.cxx1259 short w, h; in getNativeControlRegion() local
1270 h = aCtrlBoundRect.GetHeight(); in getNativeControlRegion()
1271 … rNativeBoundingRegion = rNativeContentRegion = Rectangle( Point( x, y ), Size( w, h ) ); in getNativeControlRegion()
1277 h = 18; // taken from HIG in getNativeControlRegion()
1278 … rNativeBoundingRegion = rNativeContentRegion = Rectangle( Point( x, y ), Size( w, h ) ); in getNativeControlRegion()
1303 h = aCtrlBoundRect.GetHeight(); in getNativeControlRegion()
1312 h = BUTTON_HEIGHT; in getNativeControlRegion()
1316 rNativeContentRegion = Rectangle( Point( x, y ), Size( w, h + nBorderCleanup) ); in getNativeControlRegion()
1317 rNativeBoundingRegion = Rectangle( Point( x, y ), Size( w, h ) ); in getNativeControlRegion()
1350 h = TAB_HEIGHT_NORMAL; in getNativeControlRegion()
[all …]
/AOO41X/main/nss/
H A Dnss_win.patch4 #include "blapi.h"
5 #include "sechash.h" /* for HASH_GetHashObject() */
164 …3.39/nss/gtests/freebl_gtest/kat/blake2b_kat.h misc/build/nss-3.39/nss/gtests/freebl_gtest/kat/bla…
165 --- misc/nss-3.39/nss/gtests/freebl_gtest/kat/blake2b_kat.h 2018-08-31 05:55:53.000000000 -0700
166 +++ misc/build/nss-3.39/nss/gtests/freebl_gtest/kat/blake2b_kat.h 2018-10-21 01:47:24.131348000 -…
171 -#include <stdint.h>
187 + #include <stdint.h>
199 …ss-3.39/nss/gtests/ssl_gtest/libssl_internals.h misc/build/nss-3.39/nss/gtests/ssl_gtest/libssl_in…
200 --- misc/nss-3.39/nss/gtests/ssl_gtest/libssl_internals.h 2018-08-31 05:55:53.000000000 -0700
201 +++ misc/build/nss-3.39/nss/gtests/ssl_gtest/libssl_internals.h 2018-10-21 01:47:16.342484000 -0700
[all …]
/AOO41X/main/libtextcat/data/new_fingerprints/lm/
H A Dvietnamese.lm3 h 12823
102 hÜ 728
181 há 471
183 hô 468
207 hôn 398
211 h» 382
212 hà 380
223 hú 366
226 hông 362
253 hông_ 336
[all …]
/AOO41X/main/lingucomponent/source/languageguessing/
H A Dsimpleguesser.cxx93 h = NULL; in SimpleGuesser()
97 if(h){textcat_Done(h);} in operator =()
98 h = sg.h; in operator =()
103 if(h){textcat_Done(h);} in ~SimpleGuesser()
114 if(!h){return guesses;} in GuessLanguage()
121 char *guess_list = textcat_Classify(h, text, len); in GuessLanguage()
169 textcat_t *tables = (textcat_t*)h; in GetManagedLanguages()
172 if(!h){return lang;} in GetManagedLanguages()
200 textcat_t *tables = (textcat_t*)h; in XableLanguage()
202 if(!h){return;} in XableLanguage()
[all …]
/AOO41X/main/libxmlsec/
H A Dxmlsec1-customkeymanage.patch7 +akmngr.h \
8 app.h \
9 certkeys.h \
10 crypto.h \
17 +akmngr.h \
18 app.h \
19 certkeys.h \
20 crypto.h \
21 --- misc/xmlsec1-1.2.14/include/xmlsec/mscrypto/akmngr.h 2009-09-21 14:07:19.052318336 +0200
22 +++ misc/build/xmlsec1-1.2.14/include/xmlsec/mscrypto/akmngr.h 2009-09-21 14:02:48.504966762 +0200
[all …]
/AOO41X/main/sdext/source/pdfimport/tree/
H A Dwritertreevisiting.cxx145 rProps[ USTR( "svg:height" ) ] = convertPixelToUnitString( rElem.h ); in fillFrameProps()
282 aBuf.append( convPx2mmPrec2(elem.h)*100.0 ); in visit()
447 if( pPrevPara->y + pPrevPara->h + 2*head_line_height > elem.y ) in visit()
515 …fCurLineHeight = (fCurLineHeight*double(nCurLineElements) + pTestText->h)/double(nCurLineElements+… in visit()
532 if( pCurPara && pDraw->y < pCurPara->y + pCurPara->h ) in visit()
534 if( pDraw->h < fCurLineHeight * 1.5 ) in visit()
537 … fCurLineHeight = (fCurLineHeight*double(nCurLineElements) + pDraw->h)/double(nCurLineElements+1); in visit()
554 pDraw->h < pText->h*1.5 && // and it is approx the same height in visit()
556 ( ( pDraw->y >= pText->y && pDraw->y <= pText->y+pText->h ) || in visit()
557 ( pDraw->y+pDraw->h >= pText->y && pDraw->y+pDraw->h <= pText->y+pText->h ) in visit()
[all …]
/AOO41X/main/libpng/
H A Dlibpng-1.5.1.patch54 --- misc/libpng-1.5.1/pnglibconf.h 2011-03-24 21:49:50.913397154 +0100
55 +++ misc/build/libpng-1.5.1/pnglibconf.h 2011-03-24 21:47:23.380397048 +0100
61 +/* pnglibconf.h - library build configuration */
69 +/* and license in png.h */
71 +/* pnglibconf.h */
234 --- misc/libpng-1.5.1/pngstruct.h 2011-02-03 05:58:17.000000000 +0100
235 +++ misc/build/libpng-1.5.1/pngstruct.h 2011-03-24 21:47:23.380397048 +0100
241 #include "zlib.h"
243 +#include <external/zlib/zlib.h>
255 #include "zlib.h"
[all …]
/AOO41X/main/vcl/aqua/source/a11y/
H A Daqua11yfactory.mm27 #include "aqua/salinst.h"
28 #include "aqua/aqua11yfactory.h"
32 #include "aqua11yrolehelper.h"
33 #include "aqua11ywrapperbutton.h"
34 #include "aqua11ywrapperstatictext.h"
35 #include "aqua11ywrappertextarea.h"
36 #include "aqua11ywrappercheckbox.h"
37 #include "aqua11ywrappercombobox.h"
38 #include "aqua11ywrappergroup.h"
39 #include "aqua11ywrapperlist.h"
[all …]
/AOO41X/ext_libraries/hunspell/
H A Dhunspell-1.3.3-overflow.patch27 #include <string.h>
28 #include <unistd.h>
29 #include <stdlib.h>
30 +#include <stdint.h>
31 #include <stdio.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
61 #include <string.h>
62 #include <unistd.h>
63 #include <stdlib.h>
[all …]
/AOO41X/main/rsc/source/rscpp/
H A Dmakefile.mk81 cpp1.c: cppdef.h cpp.h
82 cpp2.c: cppdef.h cpp.h
83 cpp3.c: cppdef.h cpp.h
84 cpp4.c: cppdef.h cpp.h
85 cpp5.c: cppdef.h cpp.h
86 cpp6.c: cppdef.h cpp.h

12345678910>>...31