Home
last modified time | relevance | path

Searched +full:0 +full:- +full:9 +full:a +full:- +full:z (Results 1 – 25 of 1026) sorted by relevance

12345678910>>...42

/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/uefi/files/
H A D0001-BootLogoLib-align-logo-coords-to-be-even.patch9 Synchronous Exception at 0x00000101FB943E48
10 PC 0x0101FB943E48 (0x0101FB93F000+0x00004E48) [ 0] QemuVideoDxe.dll
11 PC 0x0101FB943314 (0x0101FB93F000+0x00004314) [ 0] QemuVideoDxe.dll
12 PC 0x0101FB92F798 (0x0101FB92D000+0x00002798) [ 1] ConSplitterDxe.dll
13 PC 0x0101FBA96BC4 (0x0101FBA8E000+0x00008BC4) [ 2] BdsDxe.dll
14 PC 0x0101FF7FDF50 (0x0101FF7F3000+0x0000AF50) [ 3] DxeCore.dll
17 even. And if coords are odd then they are bumped a bit to make things
20 Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
22 This is a temporary workaround for an alignment problem in EDK2/qemu, see the
23 discussion at https://mail.gnu.org/archive/html/qemu-devel/2024-06/msg02964.html.
[all …]
/openbmc/openbmc/poky/scripts/
H A Doe-git-proxy3 # oe-git-proxy is a simple tool to be via GIT_PROXY_COMMAND. It uses socat
7 # It uses NO_PROXY to skip using the proxy for a comma delimited list of
17 # SPDX-License-Identifier: GPL-2.0-only
23 set -f
25 if [ $# -lt 2 -o "$1" = '--help' -o "$1" = '-h' ] ; then
26 echo 'oe-git-proxy: error: the following arguments are required: host port'
27 echo 'Usage: oe-git-proxy host port'
29 echo 'OpenEmbedded git-proxy - a simple tool to be used via GIT_PROXY_COMMAND.'
32 echo 'It uses NO_PROXY to skip using the proxy for a comma delimited list'
41 echo ' -h, --help show this help message and exit'
[all …]
/openbmc/linux/Documentation/devicetree/bindings/iio/
H A Dmount-matrix.txt2 * is the definition of +/- values practical or counterintuitive?
5 * should we have HOWTO engineer a correct matrix for a new device (without comparing to a different…
12 The mounting matrix is a device tree property used to orient any device
13 that produce three-dimensional data in relation to the world where it is
17 reference into the device frame of reference using a translation matrix as
20 The typical usecase is that where a component has an internal representation
21 of the (x,y,z) triplets, such as different registers to read these coordinates,
22 and thus implying that the component should be mounted in a certain orientation
25 For example a device with some kind of screen, where the user is supposed to
28 reference to (x,y,z) orientation, with (x,y) corresponding to these axes on the
[all …]
/openbmc/linux/crypto/
H A Dmd5.c27 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04,
28 0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e,
32 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument
33 #define F2(x, y, z) F1(z, x, y) argument
34 #define F3(x, y, z) (x ^ y ^ z) argument
35 #define F4(x, y, z) (y ^ (x | ~z)) argument
37 #define MD5STEP(f, w, x, y, z, in, s) \ argument
38 (w += f(x, y, z) + in, w = (w<<s | w>>(32-s)) + x)
42 u32 a, b, c, d; in md5_transform() local
44 a = hash[0]; in md5_transform()
[all …]
H A Dmd4.c11 * Copyright (c) Andrew Tridgell 1997-1998.
44 x &= 0xFFFFFFFF; in lshift()
45 return ((x << s) & 0xFFFFFFFF) | (x >> (32 - s)); in lshift()
48 static inline u32 F(u32 x, u32 y, u32 z) in F() argument
50 return (x & y) | ((~x) & z); in F()
53 static inline u32 G(u32 x, u32 y, u32 z) in G() argument
55 return (x & y) | (x & z) | (y & z); in G()
58 static inline u32 H(u32 x, u32 y, u32 z) in H() argument
60 return x ^ y ^ z; in H()
63 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument
[all …]
/openbmc/webui-vue/tests/unit/__snapshots__/
H A DAppHeader.spec.js.snap6 id="page-header"
8 <a
9 class="link-skip-nav btn btn-light"
10 href="#main-content"
15 </a>
17 <b-navbar
18 aria-label="appHeader.applicationHeader"
21 <b-button
22 aria-hidden="true"
23 class="nav-trigger"
[all …]
/openbmc/linux/fs/smb/common/
H A Dcifs_md4.c1 // SPDX-License-Identifier: GPL-2.0
12 * Copyright (c) Andrew Tridgell 1997-1998.
31 x &= 0xFFFFFFFF; in lshift()
32 return ((x << s) & 0xFFFFFFFF) | (x >> (32 - s)); in lshift()
35 static inline u32 F(u32 x, u32 y, u32 z) in F() argument
37 return (x & y) | ((~x) & z); in F()
40 static inline u32 G(u32 x, u32 y, u32 z) in G() argument
42 return (x & y) | (x & z) | (y & z); in G()
45 static inline u32 H(u32 x, u32 y, u32 z) in H() argument
47 return x ^ y ^ z; in H()
[all …]
/openbmc/u-boot/lib/
H A Dmd5.c3 * (fs/cifs/md5.c) into U-Boot by Bartlomiej Sieka <tur@semihalf.com>.
7 * This code implements the MD5 message-digest algorithm.
17 * To compute the message digest of a chunk of bytes, declare an
20 * will fill a supplied 16-byte array with the digest.
34 #include <u-boot/md5.h>
40 * Note: this code is harmless on little-endian machines.
48 ((unsigned) buf[1] << 8 | buf[0]); in byteReverse()
51 } while (--longs); in byteReverse()
55 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
61 ctx->buf[0] = 0x67452301; in MD5Init()
[all …]
/openbmc/linux/tools/testing/selftests/ftrace/test.d/trigger/
H A Dtrigger-hist.tc2 # SPDX-License-Identifier: GPL-2.0
3 # description: event trigger - test histogram trigger
46 grep '{ call_site: \[[0-9a-f][0-9a-f]*\] [_a-zA-Z][_a-zA-Z]* *}' events/kmem/kmalloc/hist > /dev/nu…
51 echo "Test histogram with sym-offset modifier"
53 echo 'hist:keys=call_site.sym-offset' > events/kmem/kmalloc/trigger
55 grep '{ call_site: \[[0-9a-f][0-9a-f]*\] [_a-zA-Z][_a-zA-Z]*+0x[0-9a-f][0-9a-f]*' events/kmem/kmall…
56 fail "sym-offset modifier on kmalloc call_site did not work"
66 while [ $# -gt 1 ]; do
67 [ $1 -gt $2 ] && return 1
70 return 0
[all …]
/openbmc/openbmc/meta-raspberrypi/recipes-graphics/userland/files/
H A D0003-wayland-Add-Wayland-example.patch6 ---
7 Upstream-Status: Pending
23 diff --git a/host_applications/linux/apps/hello_pi/CMakeLists.txt b/host_applications/linux/apps/he…
25 --- a/host_applications/linux/apps/hello_pi/CMakeLists.txt
27 @@ -25,6 +25,7 @@ add_subdirectory(hello_encode)
35 diff --git a/host_applications/linux/apps/hello_pi/Makefile b/host_applications/linux/apps/hello_pi…
37 --- a/host_applications/linux/apps/hello_pi/Makefile
39 @@ -24,6 +24,7 @@ apps: libs/ilclient/libilclient.a libs/vgfont/libvgfont.a libs/revision/librevis
40 $(MAKE) -C hello_teapot
41 $(MAKE) -C hello_fft
[all …]
/openbmc/linux/tools/testing/selftests/tc-testing/tc-tests/actions/
H A Dsimple.json12 0,
17 "cmdUnderTest": "$TC actions add action simple sdata \"A triumph\" index 60",
18 "expExitCode": "0",
20 "matchPattern": "action order [0-9]*: Simple <A triumph>.*index 60 ref",
36 0,
42 "expExitCode": "0",
44 "matchPattern": "action order [0-9]*: Simple <Not changed>.*index 60 ref",
60 0,
69 "matchPattern": "action order [0-9]*: Simple <Jamaica>.*ref",
70 "matchCount": "0",
[all …]
/openbmc/linux/scripts/
H A Drust_is_available.sh2 # SPDX-License-Identifier: GPL-2.0
4 # Tests whether a suitable Rust toolchain is available.
6 set -e
8 min_tool_version=$(dirname $0)/min-tool-version.sh
10 # Convert the version string x.y.z to a canonical up-to-7-digits form.
13 # instances in other version scripts) to give a bit more space to
14 # `rustc` since it will reach 1.100.0 in late 2026.
18 set -- $1
22 # Print a reference to the Quick Start guide in the documentation.
26 echo >&2 "*** Please see Documentation/rust/quick-start.rst for details"
[all …]
/openbmc/openbmc/poky/meta/recipes-support/libgcrypt/files/
H A D0001-libgcrypt-fix-m4-file-for-oe-core.patch3 Date: Tue, 29 Oct 2019 14:08:32 -0400
4 Subject: [PATCH] libgcrypt: fix m4 file for oe-core
6 Modify libgcrypt pkgconfig specifically for oe-core. Changes
7 are based on a previous patch from RP, using wiggle to
11 Upstream-Status: Inappropriate [oe-specific]
13 Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
15 ---
16 src/libgcrypt.m4 | 90 +++---------------------------------------------
17 1 file changed, 4 insertions(+), 86 deletions(-)
19 diff --git a/src/libgcrypt.m4 b/src/libgcrypt.m4
[all …]
/openbmc/openbmc/poky/meta/recipes-support/libksba/libksba/
H A Dksba-add-pkgconfig-support.patch6 Upstream-Status: Denied
12 Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
13 ---
14 src/ksba.m4 | 93 +++--------------------------------------------------
15 1 file changed, 5 insertions(+), 88 deletions(-)
17 diff --git a/src/ksba.m4 b/src/ksba.m4
19 --- a/src/ksba.m4
21 @@ -107,39 +107,7 @@ dnl this features allows to prevent build against newer versions of libksba
22 dnl with a changed API.
25 -[ AC_REQUIRE([AC_CANONICAL_HOST])dnl
[all …]
/openbmc/linux/tools/memory-model/Documentation/
H A Dlitmus-tests.txt1 Linux-Kernel Memory Model Litmus Tests
4 This file describes the LKMM litmus-test format by example, describes
6 versions of this material appeared in a number of LWN articles, including:
9 A formal kernel memory-ordering model (part 2)
20 tool, please see tools/memory-model/README.
23 Copy-Pasta
27 existing litmus test than it is to create one from scratch. A number
30 tools/memory-model/litmus-tests/
31 Documentation/litmus-tests/
40 The -l and -L arguments to "git grep" can be quite helpful in identifying
[all …]
/openbmc/openbmc/poky/meta/recipes-support/gnupg/gnupg/
H A D0002-use-pkgconfig-instead-of-npth-config.patch6 Upstream-Status: Inappropriate [openembedded specific]
8 Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
12 ---
13 m4/npth.m4 | 53 ++++++++---------------------------------------------
14 1 file changed, 8 insertions(+), 45 deletions(-)
16 diff --git a/m4/npth.m4 b/m4/npth.m4
17 index 619ed89..0cb354d 100644
18 --- a/m4/npth.m4
20 @@ -19,25 +19,10 @@ AC_DEFUN([_AM_PATH_NPTH_CONFIG],
[all …]
/openbmc/linux/arch/powerpc/boot/
H A Dwrapper2 # SPDX-License-Identifier: GPL-2.0-only
6 # This script takes a kernel binary and optionally an initrd image
7 # and/or a device-tree blob, and creates a bootable zImage for a
11 # -o zImage specify output file
12 # -p platform specify platform (links in $platform.o)
13 # -i initrd specify initrd file
14 # -d devtree specify device-tree blob
15 # -s tree.dts specify device-tree source file (needs dtc installed)
16 # -e esm_blob specify ESM blob for secure images
17 # -c cache $kernel.strip.gz (use if present & newer, else make)
[all …]
/openbmc/openbmc/poky/meta/recipes-support/libassuan/libassuan/
H A Dlibassuan-add-pkgconfig-support.patch1 From 9d28122b7e7ae3f17364e1ab97355cf5eaf14cb8 Mon Sep 17 00:00:00 2001
3 Date: Wed, 7 Aug 2024 11:36:26 -0400
6 Upstream-Status: Denied
7 Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
8 Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
11 Signed-off-by: Armin Kuster <akuster@mvista.com>
16 Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
17 ---
18 src/libassuan.m4 | 82 ++----------------------------------------------
19 1 file changed, 3 insertions(+), 79 deletions(-)
[all …]
/openbmc/openbmc/poky/meta/recipes-support/gpgme/gpgme/
H A D0001-Revert-build-Make-gpgme.m4-use-gpgrt-config-with-.pc.patch4 Subject: [PATCH] Revert "build: Make gpgme.m4 use gpgrt-config with *.pc."
8 The oe-core does not support gpgrt-config, so revert it
10 Upstream-Status: Inappropriate [oe-core specific]
12 Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
13 ---
14 src/gpgme.m4 | 54 ++++++++--------------------------------------------
15 1 file changed, 8 insertions(+), 46 deletions(-)
17 diff --git a/src/gpgme.m4 b/src/gpgme.m4
19 --- a/src/gpgme.m4
21 @@ -122,24 +122,10 @@ AC_REQUIRE([_AM_PATH_GPGRT_CONFIG])dnl
[all …]
/openbmc/linux/tools/testing/selftests/rcutorture/bin/
H A Dkvm-test-1-run-qemu.sh2 # SPDX-License-Identifier: GPL-2.0+
4 # Carry out a kvm-based run for the specified qemu-cmd file, which might
5 # have been generated by --build-only kvm.sh run.
7 # Usage: kvm-test-1-run-qemu.sh qemu-cmd-dir
9 # qemu-cmd-dir provides the directory containing qemu-cmd file.
11 # "ds" is the top-level date-stamped directory and "scenario"
13 # must have been made by the caller. The shell-command comments
14 # at the end of the qemu-cmd file are not optional.
20 T="`mktemp -d ${TMPDIR-/tmp}/kvm-test-1-run-qemu.sh.XXXXXX`"
21 trap 'rm -rf $T' 0
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/manual/
H A Dabat.patch2 diff --git a/glxgears_check.sh b/glxgears_check.sh
4 --- a/glxgears_check.sh
6 @@ -31,7 +31,7 @@ else
10 - XPID=$( ps ax | awk '{print $1, $5}' | grep glxgears | awk '{print $1}')
12 if [ ! -z "$XPID" ]; then
13 kill -9 $XPID >/dev/null 2>&1
15 diff --git a/x_close.sh b/x_close.sh
17 --- a/x_close.sh
19 @@ -22,7 +22,7 @@
23 -XPID=$( ps ax | awk '{print $1, $5}' | egrep "X$|Xorg$" | awk '{print $1}')
[all …]
/openbmc/qemu/tests/docker/dockerfiles/
H A Ddebian-bootstrap.pre17 if [ -z $FAKEROOT ]; then
23 if [ -z "${DEB_ARCH}" ]; then
29 if [ -z "${DEB_TYPE}" ]; then
30 echo "Please set DEB_TYPE to a Debian archive name (e.g. testing)" >&2
36 if [ -z "${DEB_VARIANT}" ]; then
40 if [ -z "${DEB_URL}" ]; then
46 # - DEBOOTSTRAP_DIR pointing at a development checkout
47 # - PATH for the debootstrap script (installed)
53 if [ -z $DEBOOTSTRAP_DIR ]; then
56 if [ -z $DEBOOTSTRAP ]; then
[all …]
/openbmc/qemu/qobject/
H A Djson-lexer.c10 * See the COPYING.LIB file in the top-level directory.
15 #include "json-parser-int.h"
28 * begin-array = ws %x5B ws ; [ left square bracket
29 * begin-object = ws %x7B ws ; { left curly bracket
30 * end-array = ws %x5D ws ; ] right square bracket
31 * end-object = ws %x7D ws ; } right curly bracket
32 * name-separator = ws %x3A ws ; : colon
33 * value-separator = ws %x2C ws ; , comma
49 * [This lexer accepts [a-z]+, and leaves rejecting unknown literal
55 * decimal-point = %x2E ; .
[all …]
/openbmc/openbmc/poky/meta/recipes-support/pinentry/pinentry-1.3.1/
H A Dlibassuan_pkgconf.patch6 Convert to pkg-config support to match changes done to
9 Upstream-Status: Inappropriate [OE specific]
11 Signed-off-by: Armin Kuster <akuster@mvista.com>
12 ---
13 configure.ac | 4 +--
14 m4/libassuan.m4 | 94 ++++---------------------------------------------
15 2 files changed, 9 insertions(+), 89 deletions(-)
17 diff --git a/configure.ac b/configure.ac
19 --- a/configure.ac
21 @@ -264,8 +264,8 @@ if test "$have_libassuan" = "yes"; then
[all …]
/openbmc/qemu/pc-bios/
HDu-boot.e500 ... -f A v q * q 3 x4 j-=m ld \c Qkkbal 0e N b l ...

12345678910>>...42