Home
last modified time | relevance | path

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

1234567891011

/ndk/sources/host-tools/sed-4.2.1/lib/
Dobstack.h209 #define obstack_base(h) ((void *) (h)->object_base) argument
213 #define obstack_chunk_size(h) ((h)->chunk_size) argument
217 #define obstack_next_free(h) ((h)->next_free) argument
221 #define obstack_alignment_mask(h) ((h)->alignment_mask) argument
224 #define obstack_init(h) \ argument
225 _obstack_begin ((h), 0, 0, \
229 #define obstack_begin(h, size) \ argument
230 _obstack_begin ((h), (size), 0, \
234 #define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \ argument
235 _obstack_begin ((h), (size), (alignment), \
[all …]
Dobstack.c120 # define CALL_CHUNKFUN(h, size) \ argument
121 (((h) -> use_extra_arg) \
122 ? (*(h)->chunkfun) ((h)->extra_arg, (size)) \
123 : (*(struct _obstack_chunk *(*) (long)) (h)->chunkfun) ((size)))
125 # define CALL_FREEFUN(h, old_chunk) \ argument
127 if ((h) -> use_extra_arg) \
128 (*(h)->freefun) ((h)->extra_arg, (old_chunk)); \
130 (*(void (*) (void *)) (h)->freefun) ((old_chunk)); \
143 _obstack_begin (struct obstack *h, in _obstack_begin() argument
169 h->chunkfun = (struct _obstack_chunk * (*)(void *, long)) chunkfun; in _obstack_begin()
[all …]
Dgnulib.mk43 EXTRA_DIST += acl-internal.h acl.h acl_entries.c
66 alloca.h: alloca.in.h
68 cat $(srcdir)/alloca.in.h; \
71 MOSTLYCLEANFILES += alloca.h alloca.h-t
73 EXTRA_DIST += alloca.in.h
88 libsed_a_SOURCES += c-ctype.h c-ctype.c
111 configmake.h: Makefile
148 BUILT_SOURCES += configmake.h
149 CLEANFILES += configmake.h configmake.h-t
156 EXTRA_DIST += basename.c dirname.c dirname.h stripslash.c
[all …]
DMakefile.in96 CONFIG_HEADER = $(top_builddir)/config.h
600 EXTRA_DIST = acl-internal.h acl.h acl_entries.c alloca.c alloca.in.h \
601 btowc.c basename.c dirname.c dirname.h stripslash.c errno.in.h \
602 error.c error.h exitfail.c exitfail.h getdelim.c getline.c \
603 getopt.c getopt.in.h getopt1.c getopt_int.h getpagesize.c \
605 $(top_srcdir)/build-aux/config.rpath intprops.h \
606 $(top_srcdir)/build-aux/link-warning.h config.charset \
609 obstack.c obstack.h pathmax.h quote.c quote.h quotearg.c \
610 quotearg.h realloc.c regcomp.c regex.c regex.h \
611 regex_internal.c regex_internal.h regexec.c rename.c \
[all …]
/ndk/build/tools/
Ddev-platform-import.sh336 copy_system_headers $ANDROID_ROOT/bionic/libm/include math.h
339 copy_arch_system_headers $ANDROID_ROOT/bionic/libm/include/i387 fenv.h
342 copy_arch_system_headers $ANDROID_ROOT/bionic/libm/$ARCH fenv.h
353 copy_system_headers $ANDROID_ROOT/external/zlib zconf.h zlib.h
356 copy_system_headers $ANDROID_ROOT/system/core/include android/log.h
366 copy_system_headers $ANDROID_ROOT/dalvik/libnativehelper/include/nativehelper jni.h
373 GLES/gl.h \
374 GLES/glext.h \
375 GLES/glplatform.h
378 KHR/khrplatform.h
[all …]
Ddev-system-import.sh520 copy_system_headers $ANDROID_ROOT/bionic/libm/include math.h
523 copy_arch_system_headers $ANDROID_ROOT/bionic/libm/include/i387 fenv.h
526 copy_arch_system_headers $ANDROID_ROOT/bionic/libm/$ARCH fenv.h
537 copy_system_headers $ANDROID_ROOT/external/zlib zconf.h zlib.h
542 copy_system_headers $ANDROID_ROOT/system/core/include android/log.h
558 copy_system_headers $ANDROID_ROOT/bionic/libthread_db/include thread_db.h sys/procfs.h
560 copy_system_headers $ANDROID_ROOT/dalvik/libnativehelper/include/nativehelper jni.h
567 GLES/gl.h \
568 GLES/glext.h \
569 GLES/glplatform.h
[all …]
/ndk/sources/host-tools/sed-4.2.1/m4/
Dwint_t.m48 dnl Test whether <wchar.h> has the 'wint_t' type.
15 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
16 <wchar.h>.
17 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
18 before <wchar.h>. */
19 #include <stddef.h>
20 #include <stdio.h>
21 #include <time.h>
22 #include <wchar.h>
Dwctob.m439 #include <locale.h>
40 #include <string.h>
41 #include <wchar.h>
71 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
72 <wchar.h>.
73 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
74 before <wchar.h>. */
75 #include <stddef.h>
76 #include <stdio.h>
77 #include <time.h>
[all …]
Dgnulib-comp.m494 dnl Note: AC_FUNC_OBSTACK does AC_LIBSOURCES([obstack.h, obstack.c]).
267 build-aux/link-warning.h
268 lib/acl-internal.h
269 lib/acl.h
272 lib/alloca.in.h
276 lib/c-ctype.h
280 lib/dirname.h
281 lib/errno.in.h
283 lib/error.h
285 lib/exitfail.h
[all …]
Dwctype.m43 dnl A placeholder for ISO C99 <wctype.h>, for platforms that lack it.
22 AC_CHECK_HEADERS_ONCE([wctype.h])
33 WCTYPE_H=wctype.h
40 AC_TRY_RUN([#include <stddef.h>
41 #include <stdio.h>
42 #include <time.h>
43 #include <wchar.h>
44 #include <wctype.h>
47 [AC_TRY_COMPILE([#include <stdlib.h>
60 gl_CHECK_NEXT_HEADERS([wctype.h])
Dgetopt.m49 # always include <getopt.h> for the getopt prototypes.
21 GETOPT_H=getopt.h
31 AC_CHECK_HEADERS([getopt.h], [], [GETOPT_H=getopt.h])
35 AC_CHECK_FUNCS([getopt_long_only], [], [GETOPT_H=getopt.h])
41 AC_CHECK_DECL([optreset], [GETOPT_H=getopt.h], [], [#include <getopt.h>])
49 [AC_LANG_PROGRAM([[#include <getopt.h>]],
64 [#include <getopt.h>])])])
66 GETOPT_H=getopt.h
Dstdint.m48 dnl Test whether <stdint.h> is supported or must be substituted.
30 dnl Check for <inttypes.h>.
39 dnl Check for <sys/types.h>.
48 gl_CHECK_NEXT_HEADERS([stdint.h])
56 dnl Now see whether we need a substitute <stdint.h>.
58 AC_CACHE_CHECK([whether stdint.h conforms to C99],
66 #include <stdint.h>
67 /* Dragonfly defines WCHAR_MIN, WCHAR_MAX only in <wchar.h>. */
69 #error "WCHAR_MIN, WCHAR_MAX not defined in <stdint.h>"
141 uintptr_t h = UINTPTR_MAX;
[all …]
Derrno_h.m410 AC_CACHE_CHECK([for complete errno.h], [gl_cv_header_errno_h_complete], [
12 #include <errno.h>
50 gl_CHECK_NEXT_HEADERS([errno.h])
51 ERRNO_H='errno.h'
60 # The EOVERFLOW errno value ought to be defined in <errno.h>, according to
70 #include <errno.h>
80 #include <errno.h>
90 #include <errno.h>
92 #include <stdio.h>
93 #include <stdlib.h>
Dwchar.m41 dnl A placeholder for ISO C99 <wchar.h>, for platforms that have issues.
15 AC_CACHE_CHECK([whether <wchar.h> is standalone],
17 [AC_COMPILE_IFELSE([[#include <wchar.h>
31 WCHAR_H=wchar.h
34 dnl Prepare for creating substitute <wchar.h>.
36 dnl Check for <wchar.h> (missing in Linux uClibc when built without wide
38 AC_CHECK_HEADERS_ONCE([wchar.h])
45 gl_CHECK_NEXT_HEADERS([wchar.h])
48 dnl Unconditionally enables the replacement of <wchar.h>.
52 WCHAR_H=wchar.h
/ndk/sources/host-tools/sed-4.2.1/
Dconfigure2141 ac_header_list="$ac_header_list errno.h"
2142 ac_header_list="$ac_header_list sys/time.h"
2148 ac_header_list="$ac_header_list sys/mman.h"
2151 ac_header_list="$ac_header_list sys/param.h"
2152 ac_header_list="$ac_header_list locale.h"
2156 ac_header_list="$ac_header_list stdint.h"
2157 ac_header_list="$ac_header_list wchar.h"
2158 ac_header_list="$ac_header_list stdio.h"
2159 ac_header_list="$ac_header_list stdlib.h"
2160 ac_header_list="$ac_header_list sys/socket.h"
[all …]
Dbootstrap.sh8 if test -f config.h; then :; else
10 cat >config.h <<'END_OF_CONFIG_H'
11 /* A bootstrap version of config.h, for systems which can't
46 /* Emulate stdbool.h. */
55 /* All other config.h.in options intentionally omitted. Report as a
68 echo '#define size_t unsigned' >> config.h
82 echo '#define ssize_t int' >> config.h
95 echo '#define VOID char' >> config.h
101 cat >> config.h << \EOF
115 cp alloca.in.h alloca.h || exit 1
Dbootstrap.sh.in8 if test -f config.h; then :; else
10 cat >config.h <<'END_OF_CONFIG_H'
11 /* A bootstrap version of config.h, for systems which can't
46 /* Emulate stdbool.h. */
55 /* All other config.h.in options intentionally omitted. Report as a
68 echo '#define size_t unsigned' >> config.h
82 echo '#define ssize_t int' >> config.h
95 echo '#define VOID char' >> config.h
101 cat >> config.h << \EOF
115 cp alloca.in.h alloca.h || exit 1
Dconfigure.ac5 AM_CONFIG_HEADER(config.h:config_h.in)
26 #include <stdio.h>
27 #include <errno.h>
48 AC_CHECK_HEADERS_ONCE(io.h limits.h locale.h stdarg.h alloca.h stddef.h
49 errno.h wchar.h wctype.h sys/file.h mcheck.h, [], [],
100 #include <locale.h>
101 #include <string.h>
102 #include <stdlib.h>
103 #include <wchar.h>
105 #include <wctype.h>
/ndk/sources/cxx-stl/stlport/stlport/
Dwctype.h27 # include_next <stdarg.h>
28 # include_next <wchar.h>
30 # include_next <wctype.h>
33 # include _STLP_NATIVE_C_HEADER(stdarg.h)
34 # include _STLP_NATIVE_C_HEADER(wchar.h)
36 # include _STLP_NATIVE_C_HEADER(wctype.h)
Dstring.h37 # include_next <string.h>
39 # include _STLP_NATIVE_C_HEADER(string.h)
44 # include_next <_str.h>
46 # include _STLP_NATIVE_CPP_C_HEADER(_str.h)
50 # include_next <string.h>
52 # include _STLP_NATIVE_C_HEADER(string.h)
Dwchar.h27 # include_next <_str.h>
29 # include _STLP_NATIVE_CPP_C_HEADER(_str.h)
39 # include_next <stddef.h>
41 # include _STLP_NATIVE_C_HEADER(stddef.h)
45 # include_next <wchar.h>
47 # include _STLP_NATIVE_C_HEADER(wchar.h)
Dcstdlib21 # include <stl/_prolog.h>
25 /* Native cstdlib includes stdlib.h using an include_next so STLport stdlib.h
27 * (see stdlib.h). */
28 # include "errno.h"
33 # include <stl/_cstdlib.h>
46 # include <stl/_epilog.h>
Dnew.h27 # include_next <new.h>
29 # include _STLP_NATIVE_OLD_STREAMS_HEADER(new.h)
32 # include _STLP_NATIVE_OLD_STREAMS_HEADER(new.h)
34 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(new.h)
/ndk/build/tools/toolchain-patches/gcc/
D0001-Update-gcc-4.4.3-for-building-libsupc-in-freestandin.patch25 + Installed cpu_defines.h in freestanding standing mode (libstdc++/48123)
36 - for file in ${host_srcdir}/os_defines.h ${host_builddir}/c++config.h; do \
37 + for file in ${host_srcdir}/os_defines.h ${host_builddir}/c++config.h \
38 + ${glibcxx_srcdir}/$(CPU_DEFINES_SRCDIR)/cpu_defines.h; do \
50 - for file in ${host_srcdir}/os_defines.h ${host_builddir}/c++config.h; do \
51 + for file in ${host_srcdir}/os_defines.h ${host_builddir}/c++config.h \
52 + ${glibcxx_srcdir}/$(CPU_DEFINES_SRCDIR)/cpu_defines.h; do \
D0004-Enable-x86-gcc-defaults.patch12 gcc-4.4.3/gcc/config/arm/linux-eabi.h | 2 +-
13 gcc-4.4.3/gcc/config/i386/linux.h | 38 +++++++++++++++++++++++++++-----
14 gcc-4.4.3/gcc/config/linux-android.h | 4 +-
39 diff --git a/gcc-4.4.3/gcc/config/arm/linux-eabi.h b/gcc-4.4.3/gcc/config/arm/linux-eabi.h
41 --- a/gcc-4.4.3/gcc/config/arm/linux-eabi.h
42 +++ b/gcc-4.4.3/gcc/config/arm/linux-eabi.h
52 diff --git a/gcc-4.4.3/gcc/config/i386/linux.h b/gcc-4.4.3/gcc/config/i386/linux.h
54 --- a/gcc-4.4.3/gcc/config/i386/linux.h
55 +++ b/gcc-4.4.3/gcc/config/i386/linux.h
128 diff --git a/gcc-4.4.3/gcc/config/linux-android.h b/gcc-4.4.3/gcc/config/linux-android.h
[all …]

1234567891011