Home
last modified time | relevance | path

Searched refs:cflags (Results 1 – 25 of 321) sorted by relevance

12345678910>>...13

/external/v8/gypfiles/
Dtoolchain.gypi117 # are using a custom toolchain and need to control -B in cflags.
206 'cflags': ['-march=armv7-a',],
211 'cflags': ['-mfpu=<(arm_fpu)',],
216 'cflags': ['-mfloat-abi=<(arm_float_abi)',],
219 'cflags': ['-mthumb',],
222 'cflags': ['-marm',],
249 'cflags': ['-march=armv7-a',],
254 'cflags': ['-mfpu=<(arm_fpu)',],
259 'cflags': ['-mfloat-abi=<(arm_float_abi)',],
262 'cflags': ['-mthumb',],
[all …]
Dstandalone.gypi476 'cflags': [ '-g', '-Og', '-gxcoff' ],
478 'cflags': [ '-g', '-O0' ],
489 'cflags+': ['<@(release_extra_cflags)'],
507 'cflags+': [
520 'cflags': ['-mstack-alignment=16', '-mstackrealign'],
549 'cflags!': [
556 'cflags+': [
602 'cflags': [
606 'cflags!': [
615 'cflags': [
[all …]
Dset_clang_warning_flags.gypi37 'cflags': [ '>@(clang_warning_flags)' ],
38 'cflags!': [ '>@(clang_warning_flags_unset)' ],
53 'cflags': [ '>@(clang_warning_flags)' ],
54 'cflags!': [ '>@(clang_warning_flags_unset)' ],
/external/openssh/openbsd-compat/
Dbsd-snprintf.c202 int cflags; in dopr() local
209 currlen = flags = cflags = min = 0; in dopr()
289 cflags = DP_C_SHORT; in dopr()
293 cflags = DP_C_INTMAX; in dopr()
297 cflags = DP_C_LONG; in dopr()
300 cflags = DP_C_LLONG; in dopr()
305 cflags = DP_C_LDOUBLE; in dopr()
309 cflags = DP_C_SIZE; in dopr()
321 if (cflags == DP_C_SHORT) in dopr()
323 else if (cflags == DP_C_LONG) in dopr()
[all …]
/external/llvm/soong/
Dllvm.go26 var cflags []string
29 cflags = append(cflags, "-D_DEBUG", "-UNDEBUG")
32 return cflags
36 var cflags []string
38 return cflags
42 var cflags []string
45 cflags = append(cflags, "-O0", "-g")
48 return cflags
/external/skia/src/jumper/
Dbuild_stages.py21 cflags = ['-std=c++11', '-Os', '-DJUMPER', variable
25 subprocess.check_call(clang + cflags + sse2 +
28 subprocess.check_call(clang + cflags + sse2 + ['-DWIN'] +
33 subprocess.check_call(clang + cflags + sse41 +
36 subprocess.check_call(clang + cflags + sse41 + ['-DWIN'] +
41 subprocess.check_call(clang + cflags + avx +
44 subprocess.check_call(clang + cflags + avx + ['-DWIN'] +
49 subprocess.check_call(clang + cflags + hsw +
52 subprocess.check_call(clang + cflags + hsw + ['-DWIN'] +
60 subprocess.check_call(clang + cflags + aarch64 +
[all …]
/external/e2fsprogs/misc/
DAndroid.bp12 cflags: ["-W", "-Wall", "-Wno-macro-redefined"],
35 cflags: ["-W", "-Wall", "-Wno-macro-redefined"],
57 cflags: [
96 cflags: ["-DBUILD_AS_LIB"],
108 cflags: ["-W", "-Wall", "-Wno-macro-redefined"],
127 cflags: ["-W", "-Wall", "-Wno-macro-redefined"],
141 cflags: ["-W", "-Wall", "-Wno-macro-redefined"],
173 cflags: ["-W", "-Wall", "-Wno-macro-redefined"],
191 cflags: ["-W", "-Wall", "-Wno-macro-redefined"],
213 cflags: ["-W", "-Wall", "-Wno-macro-redefined"],
/external/pcre/dist2/
Dpcre2-config.in7 cflags="[--cflags]"
20 cflags="$cflags [--cflags-posix]"
23 usage="Usage: pcre2-config [--prefix] [--exec-prefix] [--version] $libs $cflags"
71 --cflags)
77 --cflags-posix)
/external/skia/gn/
DBUILD.gn76 cflags = []
84 cflags += [
147 cflags += [
160 cflags += [ "-fvisibility=hidden" ]
166 cflags += [
172 cflags += [
179 cflags += [
188 cflags += [
202 cflags += [
248 cflags += [
[all …]
/external/tinyalsa/
DAndroid.bp9 cflags: ["-Werror", "-Wno-macro-redefined"],
25 cflags: ["-Werror"],
37 cflags: ["-Werror"],
44 cflags: ["-Werror", "-Wall"],
51 cflags: ["-Werror"],
/external/fdlibm/
DAndroid.mk46 cflags := -D_IEEE_LIBM
49 cflags += -D__LITTLE_ENDIAN
54 cflags += -fno-strict-aliasing
58 cflags += -std=c99
61 cflags += -Wno-sign-compare -Wno-dangling-else -Wno-unknown-pragmas
69 LOCAL_CFLAGS := $(cflags)
82 LOCAL_CFLAGS := $(cflags)
/external/pcre/dist2/src/
Dpcre2posix.c231 regcomp(regex_t *preg, const char *pattern, int cflags) in regcomp() argument
238 if ((cflags & REG_ICASE) != 0) options |= PCRE2_CASELESS; in regcomp()
239 if ((cflags & REG_NEWLINE) != 0) options |= PCRE2_MULTILINE; in regcomp()
240 if ((cflags & REG_DOTALL) != 0) options |= PCRE2_DOTALL; in regcomp()
241 if ((cflags & REG_UTF) != 0) options |= PCRE2_UTF; in regcomp()
242 if ((cflags & REG_UCP) != 0) options |= PCRE2_UCP; in regcomp()
243 if ((cflags & REG_UNGREEDY) != 0) options |= PCRE2_UNGREEDY; in regcomp()
245 preg->re_cflags = cflags; in regcomp()
/external/ImageMagick/Magick++/bin/
DMagick++-config.in43 --cflags)
44 pkg-config --cflags Magick++
47 pkg-config --cflags Magick++
50 pkg-config --cflags Magick++
/external/libpng/
DAndroid.bp23 cflags: [
48 // cflags: ["-DPNG_INTEL_SSE_OPT=1"],
56 // cflags: ["-DPNG_INTEL_SSE_OPT=1"],
64 cflags: ["-DPNG_INTEL_SSE_OPT=1"],
67 cflags: ["-DPNG_INTEL_SSE_OPT=1"],
98 cflags: ["-ftrapv"],
/external/ImageMagick/MagickCore/
DMagickCore-config.in40 --cflags)
41 pkg-config --cflags MagickCore
44 pkg-config --cflags MagickCore
47 pkg-config --cflags MagickCore
/external/ImageMagick/MagickWand/
DMagickWand-config.in40 --cflags)
41 PKG_CONFIG_PATH="@libdir@/pkgconfig" pkg-config --cflags MagickWand
44 PKG_CONFIG_PATH="@libdir@/pkgconfig" pkg-config --cflags MagickWand
47 PKG_CONFIG_PATH="@libdir@/pkgconfig" pkg-config --cflags MagickWand
/external/deqp/scripts/
Dcheck_build_sanity.py61 def makeCflagsArgs (cflags): argument
62 cflagsStr = " ".join(cflags)
65 def makeBuildArgs (target, cc, cpp, cflags): argument
66 …" % target, "-DCMAKE_C_COMPILER=%s" % cc, "-DCMAKE_CXX_COMPILER=%s" % cpp] + makeCflagsArgs(cflags)
73 def __init__ (self, target, buildType, cc, cpp, cflags): argument
78 self.cflags = cflags
84 args = makeBuildArgs(self.target, self.cc, self.cpp, self.cflags)
/external/jemalloc/
DAndroid.bp61 cflags: [
74 cflags: common_cflags,
83 cflags: [
90 cflags: [
139 cflags: ["-include bionic/libc/private/libc_logging.h"],
152 cflags: [
182 cflags: [
252 cflags: common_cflags + [
279 cflags: [
320 cflags: common_cflags + [
/external/mesa3d/src/gallium/auxiliary/util/
Du_snprintf.c476 int cflags = 0; in util_vsnprintf() local
595 cflags = PRINT_C_CHAR; in util_vsnprintf()
597 cflags = PRINT_C_SHORT; in util_vsnprintf()
603 cflags = PRINT_C_LLONG; in util_vsnprintf()
605 cflags = PRINT_C_LONG; in util_vsnprintf()
608 cflags = PRINT_C_LDOUBLE; in util_vsnprintf()
612 cflags = PRINT_C_INTMAX; in util_vsnprintf()
616 cflags = PRINT_C_PTRDIFF; in util_vsnprintf()
620 cflags = PRINT_C_SIZE; in util_vsnprintf()
631 switch (cflags) { in util_vsnprintf()
[all …]
/external/toolchain-utils/fdo_scripts/
Dvanilla_vs_fdo.py98 cflags='', argument
105 label = ' '.join([env_string, cflags, cxxflags, ldflags, ebuild_version])
112 '--cflags=%r' % cflags, '--cxxflags=%r' %
203 cflags = ('-fprofile-use '
214 cflags=cflags,
215 cxxflags=cflags,
216 ldflags=cflags,
/external/libldac/
DAndroid.bp14 // -D_32BIT_FIXED_POINT should be added to cflags for devices without a FPU
16 cflags: ["-O2", "-Werror", "-Wall", "-Wextra"],
30 cflags: ["-O2", "-Werror", "-Wall", "-Wextra"]
/external/compiler-rt/make/platform/
Dclang_linux.mk30 cflags=""; \
32 cflags="$$cflags $$flag"; \
34 $(1) $$cflags $(2) -o /dev/null > /dev/null 2> /dev/null ; \
/external/pdfium/skia/
DBUILD.gn152 cflags = [
349 cflags = [ "-Wno-deprecated-declarations" ]
358 cflags = [ "-mssse3" ]
374 cflags = [ "-msse4.1" ]
390 cflags = [ "-msse4.2" ]
406 cflags = [ "-mavx" ]
409 cflags = [ "/arch:AVX" ]
422 cflags = [
431 cflags = [ "/arch:AVX2" ]
443 cflags = []
[all …]
/external/piex/
Dpiex.gyp31 'cflags': [
55 'cflags': [
70 'cflags': [
79 'cflags': [
/external/autotest/client/site_tests/graphics_GpuReset/src/
DMakefile13 CCFLAGS += $(shell $(PKG_CONFIG) --cflags libdrm)
14 CCFLAGS += $(shell $(PKG_CONFIG) --cflags glib-2.0)
15 CCFLAGS += $(shell $(PKG_CONFIG) --cflags libudev)

12345678910>>...13