Home
last modified time | relevance | path

Searched refs:cflags (Results 1 - 25 of 131) sorted by relevance

123456

/third_party/gn/build/
H A Dgen.py262 args_list, cflags=[], ldflags=[],
331 ' cflags = %s' % ' '.join(cflags),
391 cflags = os.environ.get('CFLAGS', '').split()
392 cflags += os.environ.get('CXXFLAGS', '').split()
406 cflags.extend(['-O0', '-g'])
412 cflags.extend(['-D_LIBCPP_DEBUG=1', '-D_GLIBCXX_DEBUG=1'])
414 cflags.append('-DNDEBUG')
415 cflags.append('-O3')
417 cflags
[all...]
/third_party/skia/gn/
H A Dgn_to_bp_utils.py47 def CleanupCFlags(cflags):
49 cflags = {s for s in cflags if s.startswith('-W')}
53 cflags = cflags.union([
63 cflags = cflags.union([
73 cflags = sorted(cflags)
74 cflags
[all...]
/third_party/node/deps/openssl/config/
H A Dgenerate_gypi.pl278 my @cflags = ();
279 push(@cflags, @{$config{'cflags'}});
280 push(@cflags, @{$config{'CFLAGS'}});
281 push(@cflags, $target{'cflags'});
282 push(@cflags, $target{'CFLAGS'});
286 @cflags = grep $_ ne '-Wa,--noexecstack', @cflags;
303 cflags
[all...]
/third_party/gn/src/gn/
H A Dconfig_values_extractors_unittest.cc34 // Add representative values: cflags (opaque, always copied) and include_dirs in TEST()
40 dep2_all.own_values().cflags().push_back("--dep2-all"); in TEST()
41 dep2_all.own_values().cflags().push_back("--dep2-all"); in TEST()
48 dep2_direct.own_values().cflags().push_back("--dep2-direct"); in TEST()
64 dep1_all_sub.own_values().cflags().push_back("--dep1-all-sub"); in TEST()
69 dep1_all.own_values().cflags().push_back("--dep1-all"); in TEST()
76 dep1_direct.own_values().cflags().push_back("--dep1-direct"); in TEST()
92 target_all.own_values().cflags().push_back("--target-all"); in TEST()
99 target_direct.own_values().cflags().push_back("--target-direct"); in TEST()
108 target_config.own_values().cflags() in TEST()
[all...]
/third_party/ninja/
H A Dconfigure.py317 cflags = ['/showIncludes', variable
339 cflags.append('/FS')
342 cflags += ['/Ox', '/DNDEBUG', '/GL']
345 cflags = ['-g', '-Wall', '-Wextra', variable
355 cflags += ['-D_GLIBCXX_DEBUG', '-D_GLIBCXX_DEBUG_PEDANTIC']
356 cflags.remove('-fno-rtti') # Needed for above pedanticness.
358 cflags += ['-O2', '-DNDEBUG']
365 cflags += ['-fdiagnostics-color']
369 cflags += ['-D_WIN32_WINNT=0x0601', '-D__USE_MINGW_ANSI_STDIO=1']
372 cflags
[all...]
/third_party/pcre2/pcre2/src/
H A Dpcre2posix.c208 regcomp(regex_t *preg, const char *pattern, int cflags)
210 return pcre2_regcomp(preg, pattern, cflags);
275 cflags compilation flags
282 pcre2_regcomp(regex_t *preg, const char *pattern, int cflags) in pcre2_regcomp() argument
290 patlen = ((cflags & REG_PEND) != 0)? (PCRE2_SIZE)(preg->re_endp - pattern) : in pcre2_regcomp()
293 if ((cflags & REG_ICASE) != 0) options |= PCRE2_CASELESS; in pcre2_regcomp()
294 if ((cflags & REG_NEWLINE) != 0) options |= PCRE2_MULTILINE; in pcre2_regcomp()
295 if ((cflags & REG_DOTALL) != 0) options |= PCRE2_DOTALL; in pcre2_regcomp()
296 if ((cflags & REG_NOSPEC) != 0) options |= PCRE2_LITERAL; in pcre2_regcomp()
297 if ((cflags in pcre2_regcomp()
[all...]
H A Dpcre2posix_test.c34 static int cflags[] = { variable
54 #define count (int)(sizeof(cflags)/sizeof(int))
134 int rc = regcomp(&re, pattern, cflags[i]); in main()
136 PRINTF("Pattern: %s flags=0x%02x\n", pattern, cflags[i]); in main()
/third_party/alsa-utils/topology/
H A Dtopology.c144 size_t config_size, int cflags) in load_topology()
148 *tplg = snd_tplg_create(cflags); in load_topology()
219 static int dump(const char *source_file, const char *output_file, int cflags, int sflags) in dump() argument
229 err = load_topology(&tplg, config, size, cflags); in dump()
311 static int compile(const char *source_file, const char *output_file, int cflags, in compile() argument
337 err = load_topology(&tplg, pconfig, size, cflags); in compile()
342 err = load_topology(&tplg, config, config_size, cflags); in compile()
360 int cflags, int dflags, int sflags) in decode()
370 tplg = snd_tplg_create(cflags); in decode()
442 int c, err, op = 'c', cflags in main() local
143 load_topology(snd_tplg_t **tplg, char *config, size_t config_size, int cflags) load_topology() argument
359 decode(const char *source_file, const char *output_file, int cflags, int dflags, int sflags) decode() argument
[all...]
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dcompile_commands_json.py49 cflags = xcode_settings.GetCflags(configuration_name)
53 cflags = configuration.get("cflags", [])
57 cflags_c = cflags + cflags_c
58 cflags_cc = cflags + cflags_cc
85 cflags = cflags_c if isc else cflags_cc
91 cflags,
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dcompile_commands_json.py49 cflags = xcode_settings.GetCflags(configuration_name)
53 cflags = configuration.get("cflags", [])
57 cflags_c = cflags + cflags_c
58 cflags_cc = cflags + cflags_cc
85 cflags = cflags_c if isc else cflags_cc
91 cflags,
/third_party/skia/tools/skqp/
H A Dgn_to_bp.py38 cflags: [
39 $cflags
144 cflags = strip_slashes(js['targets']['//:libskqp_app']['cflags']) variable
153 assert '-Weverything' not in cflags
163 cflags = gn_to_bp_utils.CleanupCFlags(cflags) variable
191 'cflags': bpfmt(8, cflags, False),
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbio_print.c102 int cflags; in _dopr() local
106 flags = currlen = cflags = min = 0; in _dopr()
184 cflags = DP_C_SHORT; in _dopr()
189 cflags = DP_C_LLONG; in _dopr()
192 cflags = DP_C_LONG; in _dopr()
197 cflags = DP_C_LLONG; in _dopr()
201 cflags = DP_C_LDOUBLE; in _dopr()
205 cflags = DP_C_SIZE; in _dopr()
217 switch (cflags) { in _dopr()
245 switch (cflags) { in _dopr()
[all...]
/third_party/openssl/crypto/bio/
H A Dbio_print.c102 int cflags; in _dopr() local
106 flags = currlen = cflags = min = 0; in _dopr()
184 cflags = DP_C_SHORT; in _dopr()
189 cflags = DP_C_LLONG; in _dopr()
192 cflags = DP_C_LONG; in _dopr()
197 cflags = DP_C_LLONG; in _dopr()
201 cflags = DP_C_LDOUBLE; in _dopr()
205 cflags = DP_C_SIZE; in _dopr()
217 switch (cflags) { in _dopr()
245 switch (cflags) { in _dopr()
[all...]
/third_party/vk-gl-cts/scripts/
H A Dcheck_build_sanity.py64 def makeCflagsArgs (cflags):
65 cflagsStr = " ".join(cflags)
68 def makeBuildArgs (target, cc, cpp, cflags):
69 return ["-DDEQP_TARGET=%s" % target, "-DCMAKE_C_COMPILER=%s" % cc, "-DCMAKE_CXX_COMPILER=%s" % cpp] + makeCflagsArgs(cflags)
76 def __init__ (self, target, buildType, cc, cpp, cflags):
81 self.cflags = cflags
87 args = makeBuildArgs(self.target, self.cc, self.cpp, self.cflags)
/third_party/node/deps/openssl/openssl/apps/
H A Dversion.c46 int cflags = 0, version = 0, date = 0, options = 0, platform = 0, dir = 0; in version_main() local
76 dirty = cflags = 1; in version_main()
94 seed = options = cflags = version = date = platform in version_main()
121 if (cflags) in version_main()
/third_party/openssl/apps/
H A Dversion.c46 int cflags = 0, version = 0, date = 0, options = 0, platform = 0, dir = 0; in version_main() local
76 dirty = cflags = 1; in version_main()
94 seed = options = cflags = version = date = platform in version_main()
121 if (cflags) in version_main()
/third_party/python/Lib/distutils/
H A Dsysconfig.py214 (cc, cxx, cflags, ccshared, ldshared, shlib_suffix, ar, ar_flags) = \
238 cflags = cflags + ' ' + os.environ['CFLAGS']
242 cflags = cflags + ' ' + os.environ['CPPFLAGS']
251 cc_cmd = cc + ' ' + cflags
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/
H A DMakefile17 TEST_WK := $(shell pkg-config --silence-errors --cflags webkitgtk-3.0)
20 GTKCFLAGS := $(shell pkg-config --cflags gtk+-3.0 webkit2gtk-4.0)
24 GTKCFLAGS := $(shell pkg-config --cflags gtk+-3.0 webkitgtk-3.0)
66 CFLAGS += $(shell xml2-config --cflags)
/third_party/node/tools/gyp/pylib/gyp/
H A Dxcode_emulation.py578 cflags = []
582 cflags.append("-isysroot %s" % sdk_root)
585 cflags.append("-I%s" % self.header_map_path)
588 cflags.append("-Wconstant-conversion")
591 cflags.append("-funsigned-char")
594 cflags.append("-fasm-blocks")
598 cflags.append("-mdynamic-no-pic")
606 cflags.append("-mpascal-strings")
608 self._Appendf(cflags, "GCC_OPTIMIZATION_LEVEL", "-O%s", default="s")
613 cflags
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dxcode_emulation.py578 cflags = []
582 cflags.append("-isysroot %s" % sdk_root)
585 cflags.append("-I%s" % self.header_map_path)
588 cflags.append("-Wconstant-conversion")
591 cflags.append("-funsigned-char")
594 cflags.append("-fasm-blocks")
598 cflags.append("-mdynamic-no-pic")
606 cflags.append("-mpascal-strings")
608 self._Appendf(cflags, "GCC_OPTIMIZATION_LEVEL", "-O%s", default="s")
613 cflags
[all...]
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/
H A Dconfig.pm549 cflags => [ qw(-arch armv6 -arch armv7) ],
557 cflags => [ "-arch ${MACHINE}" ],
567 %config = ( cflags => [ '-mcpu=ev5' ],
570 %config = ( cflags => [ '-mcpu=ev56' ],
573 %config = ( cflags => [ '-mcpu=ev6' ],
597 %config = ( cflags => [ '-m32' ],
671 cflags => [ "-mschedule=$CPUSCHEDULE", "-march=$CPUARCH" ],
678 cflags => [ '-march=armv7-a' ],
841 cflags => [ '-march=armv7-a' ],
/third_party/openssl/util/perl/OpenSSL/
H A Dconfig.pm541 cflags => [ qw(-arch armv6 -arch armv7) ],
549 cflags => [ "-arch ${MACHINE}" ],
559 %config = ( cflags => [ '-mcpu=ev5' ],
562 %config = ( cflags => [ '-mcpu=ev56' ],
565 %config = ( cflags => [ '-mcpu=ev6' ],
589 %config = ( cflags => [ '-m32' ],
663 cflags => [ "-mschedule=$CPUSCHEDULE", "-march=$CPUARCH" ],
670 cflags => [ '-march=armv7-a' ],
833 cflags => [ '-march=armv7-a' ],
/third_party/skia/third_party/externals/imgui/examples/example_sdl_opengl2/
H A DMakefile37 CXXFLAGS += `sdl2-config --cflags`
46 CXXFLAGS += `sdl2-config --cflags`
55 CXXFLAGS += `pkg-config --cflags sdl2`
/third_party/skia/third_party/externals/imgui/examples/example_sdl_opengl3/
H A DMakefile49 CXXFLAGS += `sdl2-config --cflags`
58 CXXFLAGS += `sdl2-config --cflags`
67 CXXFLAGS += `pkg-config --cflags sdl2`
/third_party/skia/third_party/externals/imgui/examples/example_sdl_sdlrenderer/
H A DMakefile37 CXXFLAGS += `sdl2-config --cflags`
46 CXXFLAGS += `sdl2-config --cflags`
55 CXXFLAGS += `pkg-config --cflags sdl2`

Completed in 14 milliseconds

123456