Home
last modified time | relevance | path

Searched +full:gas +full:- +full:preprocessor (Results 1 – 25 of 29) sorted by relevance

12

/third_party/openh264/
Dmeson.build43 '-Wno-non-virtual-dtor',
44 '-Wno-class-memaccess',
45 '-Wno-strict-aliasing'])
55 cpp_lib = '-lstdc++'
69 asm_args += ['-DX86_32', '-DHAVE_AVX2']
70 add_project_arguments('-DHAVE_AVX2', language: 'cpp')
71 add_project_arguments('-DHAVE_AVX2', '-DX86_ASM', '-DX86_32_ASM', language: 'c')
75 asm_args += ['-DUNIX64', '-DHAVE_AVX2']
76 add_project_arguments('-DHAVE_AVX2', language: 'cpp')
77 add_project_arguments('-DHAVE_AVX2', '-DX86_ASM', language: 'c')
[all …]
DREADME.md6 ----------------
7 - Constrained Baseline Profile up to Level 5.2 (Max frame size is 36864 macro-blocks)
8 - Arbitrary resolution, not constrained to multiples of 16x16
9 - Rate control with adaptive quantization, or constant quantization
10 - Slice options: 1 slice per frame, N slices per frame, N macroblocks per slice, or N bytes per sli…
11 - Multiple threads automatically used for multiple slices
12 - Temporal scalability up to 4 layers in a dyadic hierarchy
13 - Simulcast AVC up to 4 resolutions from a single input
14 - Spatial simulcast up to 4 resolutions from a single input
15 - Long Term Reference (LTR) frames
[all …]
/third_party/libjpeg-turbo/
D.travis.yml5 - /^[0-9]+\.[0-9]+\.[0-9]+/
6 - /^jpeg-.*/
10 - os: linux
14 - docker
15 - os: osx
18 - os: linux
22 CFLAGS_RELWITHDEBINFO="-O1 -g -fsanitize=address,undefined -fno-omit-frame-pointer"
23 CMAKE_FLAGS="-DENABLE_SHARED=0"
29 - nasm
30 - os: linux
[all …]
/third_party/ffmpeg/doc/
Dplatform.texi1 \input texinfo @c -*- texinfo -*-
2 @documentencoding UTF-8
13 @chapter Unix-like
17 make sure your compiler really uses the required version of gas
21 $(gcc -print-prog-name=as) --version
25 hard-coded path to gas. In the worst case pass @code{--disable-asm}
32 @code{--enable-pic} during FFmpeg configure) and add the following option
36 -Wl,-Bsymbolic
40 pass the correct linking flag (e.g. @code{-pie}) to @code{--extra-ldexeflags}.
50 standard Solaris Make will not work. When building with a non-c99 front-end
[all …]
/third_party/openh264/build/
Dplatform-mingw_nt.mk7 SHLDFLAGS = -Wl,--out-implib,$(EXTRA_LIBRARY)
8 CFLAGS += -MMD -MP
12 ASMFLAGS += -f win64
13 ASMFLAGS_PLATFORM = -DWIN64
15 ASMFLAGS += -f win32 -DPREFIX
19 CCAS = gas-preprocessor.pl -as-type clang -force-thumb -- $(CC)
20 CCASFLAGS = -DHAVE_NEON -mimplicit-it=always
Dmsvc-common.mk4 ASMFLAGS += -f win64
5 ASMFLAGS_PLATFORM = -DWIN64
7 ASMFLAGS += -f win32 -DPREFIX
12 CCAS = gas-preprocessor.pl -as-type armasm -force-thumb -- armasm
13 CCASFLAGS = -nologo -DHAVE_NEON -ignore 4509
19 CXX_O=-Fo$@
22 CCAS = clang-cl
23 CCASFLAGS = -nologo -DHAVE_NEON_AARCH64 --target=arm64-windows
27 # -D_VARIADIC_MAX=10 is required to fix building gtest on MSVC 2012, but
30 # -DGTEST_HAS_TR1_TUPLE=0 instead, but we prefer this version since it
[all …]
/third_party/vk-gl-cts/framework/delibs/cmake/
DCFlags.cmake1 #-------------------------------------------------------------------------
3 # ----------------------------
11 # http://www.apache.org/licenses/LICENSE-2.0
19 #-------------------------------------------------------------------------
37 add_definitions("-DDE_COVERAGE_BUILD")
38 set(TARGET_FLAGS "-fprofile-arcs -ftest-coverage")
39 set(LINK_FLAGS "${LINK_FLAGS} -lgcov")
42 # \note Remove -Wno-sign-conversion for more warnings
43 …set(WARNING_FLAGS "-Wall -Wextra -Wno-long-long -Wshadow -Wundef -Wconversion -Wno-sign-conversi…
45 set(CMAKE_C_FLAGS "${TARGET_FLAGS} ${WARNING_FLAGS} ${CMAKE_C_FLAGS} -std=c99 -pedantic ")
[all …]
/third_party/ffmpeg/
Dconfigure5 # Copyright (c) 2000-2002 Fabrice Bellard
6 # Copyright (c) 2005-2008 Diego Biurrun
7 # Copyright (c) 2005-2008 Mans Rullgard
32 if test "0$FF_CONF_EXEC" -lt 1; then
36 if test "0$FF_CONF_EXEC" -lt 2; then
40 if test "0$FF_CONF_EXEC" -lt 3; then
45 echo "This configure script requires a POSIX-compatible shell"
48 echo "Instead, install a working POSIX-compatible shell."
50 if test "$BASH_VERSION" = '2.04.0(1)-release'; then
57 test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
DAsmLexer.cpp1 //===- AsmLexer.cpp - Lexer for Assembly Files ----------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
50 /// ReturnError - Set the error to the specified string at the specified
55 return AsmToken(AsmToken::Error, StringRef(Loc, CurPtr - Loc)); in ReturnError()
72 if (*CurPtr == '-' || *CurPtr == '+') in LexFloatLiteral()
79 if (*CurPtr == '-' || *CurPtr == '+') in LexFloatLiteral()
87 StringRef(TokStart, CurPtr - TokStart)); in LexFloatLiteral()
90 /// LexHexFloatLiteral matches essentially (.[0-9a-fA-F]*)?[pP][+-]?[0-9a-fA-F]+
[all …]
DAsmParser.cpp1 //===- AsmParser.cpp - Parser for Assembly Files --------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
78 "asm-macro-max-nesting-depth", cl::init(20), cl::Hidden,
178 /// Are we parsing ms-style inline assembly?
521 /// Maps directive name --> DirectiveKind enum, for
534 /// Maps Codeview def_range types --> CVDefRangeType enum, for
652 // Macro-like directives
677 // .print <double-quotes-string>
[all …]
/third_party/musl/
Dconfigure13 --srcdir=DIR source directory [detected]
16 --prefix=PREFIX main installation prefix [/usr/local/musl]
17 --exec-prefix=EPREFIX installation prefix for executable files [PREFIX]
20 --bindir=DIR user executables [EPREFIX/bin]
21 --libdir=DIR library files for the linker [PREFIX/lib]
22 --includedir=DIR include files for the C compiler [PREFIX/include]
23 --syslibdir=DIR location for the dynamic linker [/lib]
26 --target=TARGET configure to run on target TARGET [detected]
27 --host=HOST same as --target
28 --build=BUILD build system type; used only to infer cross-compiling
[all …]
/third_party/icu/tools/multi/c/patch/
D3_05 # Copyright (c) 2008-2009 IBM Corp. and Others. All Rights Reserved
8 diff -ru 3_0.orig/icu/source/config/mh-darwin 3_0/icu/source/config/mh-darwin
9 --- 3_0.orig/icu/source/config/mh-darwin 2008-10-20 14:57:52.000000000 -0700
10 +++ 3_0/icu/source/config/mh-darwin 2008-10-20 15:57:28.000000000 -0700
11 @@ -15,6 +15,8 @@
13 GEN_DEPS.c= $(CC) -E -MMD $(DEFS) $(CPPFLAGS)
14 GEN_DEPS.cc= $(CXX) -E -MMD $(DEFS) $(CPPFLAGS)
19 COMPILE.c= $(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS) -fno-common -c
22 diff -ru 3_0.orig/icu/source/configure 3_0/icu/source/configure
23 --- 3_0.orig/icu/source/configure 2008-10-20 14:58:10.000000000 -0700
[all …]
D3_25 # Copyright (c) 2008-2009 IBM Corp. and Others. All Rights Reserved
6 --- 3_2.orig/icu/source/config/mh-darwin 2008-10-20 14:57:52.000000000 -0700
7 +++ 3_2/icu/source/config/mh-darwin 2008-10-20 15:57:28.000000000 -0700
8 @@ -13,8 +13,8 @@
9 LD_FLAGS += -headerpad_max_install_names
12 -GEN_DEPS.c= $(CC) -E -MMD $(DEFS) $(CPPFLAGS)
13 -GEN_DEPS.cc= $(CXX) -E -MMD $(DEFS) $(CPPFLAGS)
18 COMPILE.c= $(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS) -fno-common -c
21 diff -ru 3_0.orig/icu/source/configure 3_0/icu/source/configure
22 --- 3_2.orig/icu/source/configure
[all …]
/third_party/icu/icu4c/source/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
5 # Report bugs to <http://icu-project.org/bugs>.
10 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
15 ## -------------------- ##
17 ## -------------------- ##
21 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
24 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
26 alias -g '${1+"$@"}'='"$@"'
29 case `(set -o) 2>/dev/null` in #(
31 set -o posix ;; #(
[all …]
/third_party/skia/third_party/externals/icu/source/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
5 # Report bugs to <http://icu-project.org/bugs>.
10 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
15 ## -------------------- ##
17 ## -------------------- ##
21 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
24 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
26 alias -g '${1+"$@"}'='"$@"'
29 case `(set -o) 2>/dev/null` in #(
31 set -o posix ;; #(
[all …]
/third_party/libffi/
DChangeLog3 Date: Sat Nov 23 10:24:58 2019 -0500
9 Date: Sat Nov 23 09:42:04 2019 -0500
15 Date: Sat Nov 23 09:00:14 2019 -0500
21 Date: Sat Nov 23 08:48:53 2019 -0500
27 Date: Sat Nov 23 07:49:58 2019 -0500
33 Date: Sat Nov 23 07:44:26 2019 -0500
39 Date: Fri Nov 22 19:49:38 2019 -0500
45 Date: Fri Nov 22 19:27:34 2019 -0500
52 Date: Fri Nov 22 18:55:36 2019 -0500
58 Date: Fri Nov 22 18:54:30 2019 -0500
[all …]
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
27 case `(set -o) 2>/dev/null` in #(
29 set -o posix ;; #(
45 if test -z "$BASH_VERSION$ZSH_VERSION" \
[all …]
DChangeLog.old7 From the old ChangeLog.libffi-3.1 file...
9 2014-03-16 Josh Triplett <josh@joshtriplett.org>
11 * ChangeLog: Archive to ChangeLog.libffi-3.1 and delete. Future
15 2014-03-16 Josh Triplett <josh@joshtriplett.org>
17 Add support for stdcall, thiscall, and fastcall on non-Windows
18 x86-32.
22 code compiled with -mrtd which effectively makes stdcall the
26 non-Windows x86-32 platforms, as non-default calling conventions.
28 * Makefile.am: Compile in src/x86/win32.S on non-Windows x86-32.
30 FFI_FASTCALL on non-Windows x86-32. Increase trampoline size to
[all …]
/third_party/gstreamer/gst_libav/
DChangeLog3 2022-06-15 23:36:18 +0100 Tim-Philipp Müller <tim@centricular.com>
7 * gst-libav.doap:
11 2022-06-15 23:36:10 +0100 Tim-Philipp Müller <tim@centricular.com>
16 2022-05-03 00:39:09 +0100 Tim-Philipp Müller <tim@centricular.com>
20 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2347>
24 2022-05-02 23:29:25 +0100 Tim-Philipp Müller <tim@centricular.com>
29 * gst-libav.doap:
33 2022-05-02 23:29:19 +0100 Tim-Philipp Müller <tim@centricular.com>
38 2022-04-15 16:38:46 +0200 Guillaume Desmottes <guillaume.desmottes@onestream.live>
44 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2217>
[all …]
/third_party/python/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
27 case `(set -o) 2>/dev/null` in #(
29 set -o posix ;; #(
45 if test -z "$BASH_VERSION$ZSH_VERSION" \
[all …]
/third_party/skia/third_party/externals/libpng/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
5 # Report bugs to <png-mng-implement@lists.sourceforge.net>.
8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
27 case `(set -o) 2>/dev/null` in #(
29 set -o posix ;; #(
[all …]
DCHANGES1 CHANGES - changes for libpng
4 initial work-in-progress release
68 added png_read_update_info() - updates info structure with transformations
79 fixed some bugs (16-bit, 4-bit interlaced, etc.)
103 Changed warning/error callback functions to fix bug - this means you
115 in pngconf.h) - if nobody uses this, it may disappear in the future.
129 libpng will use the zlib CRC routines by (compile-time) default
130 Changed DOS small/medium model memory support - needs zlib 1.04 (Tim Wegner)
139 of nearly identical error messages (will simplify multi-lingual
141 Try to get ready for unknown-chunk callback functions:
[all …]
/third_party/skia/third_party/externals/microhttpd/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
27 case `(set -o) 2>/dev/null` in #(
29 set -o posix ;; #(
45 if test -z "$BASH_VERSION$ZSH_VERSION" \
[all …]
/third_party/libevdev/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
8 # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
14 ## -------------------- ##
16 ## -------------------- ##
25 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
27 alias -g '${1+"$@"}'='"$@"'
30 case `(set -o) 2>/dev/null` in #(
32 set -o posix ;; #(
46 # Quoting is to prevent editors from complaining about space-tab.
56 # Ensure predictable behavior from utilities with locale-dependent output.
[all …]
/third_party/node/deps/cares/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
3 # Generated by GNU Autoconf 2.71 for c-ares 1.19.1.
5 # Report bugs to <c-ares mailing list: http://lists.haxx.se/listinfo/c-ares>.
8 # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
15 ## -------------------------------- ##
17 ## -------------------------------- ##
62 # Try built-in echo, and fail.
73 (`test -n "$xc_tst_str" >/dev/null 2>&1`) && xc_tst_str='success'
89 (`test -n "$PATH" >/dev/null 2>&1`) && xc_tst_str='success'
122 | sed -e 's:unknown:success:' 2>/dev/null`
[all …]

12