Home
last modified time | relevance | path

Searched +full:a +full:- +full:h (Results 1 – 25 of 1138) sorted by relevance

12345678910>>...46

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/libyui/libyui/
H A D0001-Fix-build-with-clang.patch3 Date: Tue, 24 Apr 2018 15:06:14 -0700
8 error: class 'YButtonBoxPrivate' was previously declared as a struct [-Werror,-Wmismatched-tags]
11 YTimezoneSelector.cc:35:9: error: private field 'dummy' is not used [-Werror,-Wunused-private-field]
15 Signed-off-by: Khem Raj <raj.khem@gmail.com>
16 ---
17 Upstream-Status: Submitted [https://github.com/libyui/libyui/pull/123]
19 src/YAlignment.h | 2 +-
20 src/YBarGraph.h | 2 +-
21 src/YBusyIndicator.h | 2 +-
22 src/YButtonBox.h | 4 ++--
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/
H A D0003-src-basic-missing.h-check-for-missing-strndupa.patch4 Subject: [PATCH 03/22] src/basic/missing.h: check for missing strndupa
6 include missing.h for definition of strndupa
8 Upstream-Status: Inappropriate [musl specific]
10 Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
13 Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
15 Signed-off-by: Scott Murray <scott.murray@konsulko.com>
16 Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
19 Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com>
21 Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
[all …]
H A D0017-Adjust-for-musl-headers.patch3 Date: Fri, 21 Jan 2022 22:19:37 -0800
6 Upstream-Status: Inappropriate [musl specific]
8 Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
12 ---
13 src/libsystemd-network/sd-dhcp6-client.c | 2 +-
14 src/network/netdev/bareudp.c | 2 +-
15 src/network/netdev/batadv.c | 2 +-
16 src/network/netdev/bond.c | 2 +-
17 src/network/netdev/bridge.c | 2 +-
[all …]
/openbmc/openbmc/poky/meta/recipes-core/systemd/systemd/
H A D0017-Adjust-for-musl-headers.patch3 Date: Fri, 21 Jan 2022 22:19:37 -0800
6 Upstream-Status: Inappropriate [musl specific]
8 Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
12 ---
13 src/basic/linux/ethtool.h | 3 ++-
14 src/libsystemd-network/sd-dhcp6-client.c | 2 +-
15 src/network/netdev/bareudp.c | 2 +-
16 src/network/netdev/batadv.c | 2 +-
17 src/network/netdev/bond.c | 2 +-
[all …]
H A D0025-adjust-header-inclusion-order-to-avoid-redeclaration.patch3 Date: Tue, 2 Jul 2024 23:23:57 -0700
6 Upstream-Status: Inappropriate [musl specific]
8 Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
9 ---
10 src/basic/parse-util.c | 3 ++-
11 src/libsystemd-network/ndisc-option.c | 6 +++---
12 src/libsystemd-network/sd-radv.c | 5 +++--
13 src/network/netdev/l2tp-tunnel.c | 9 ++++-----
14 src/network/netdev/l2tp-tunnel.h | 6 +++---
15 src/network/netdev/wireguard.c | 2 +-
[all …]
/openbmc/linux/crypto/
H A Dsm3.c1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * SM3 secure hash, as specified by OSCCA GM/T 0004-2012 SM3 and described
4 * at https://datatracker.ietf.org/doc/html/draft-sca-cfrg-sm3-02
7 * Copyright (C) 2017 Gilad Ben-Yossef <gilad@benyossef.com>
11 #include <linux/module.h>
12 #include <asm/unaligned.h>
13 #include <crypto/sm3.h>
35 * Transform the message X which consists of 16 32-bit-words. See
36 * GM/T 004-2012 for details.
38 #define R(i, a, b, c, d, e, f, g, h, t, w1, w2) \ argument
[all …]
/openbmc/linux/arch/x86/crypto/
H A Dsha512-avx2-asm.S2 # Implement fast SHA-512 with AVX2 instructions. (x86_64)
12 # This software is available to you under a choice of one of two
22 # - Redistributions of source code must retain the above
26 # - Redistributions in binary form must reproduce the above
33 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
42 # This code is described in an Intel White-Paper:
43 # "Fast SHA-512 Implementations on Intel Architecture Processors"
49 # This code schedules 1 blocks at a time, with 4 lanes per block
52 #include <linux/linkage.h>
53 #include <linux/cfi_types.h>
[all …]
H A Dsha256-avx2-asm.S2 # Implement fast SHA-256 with AVX2 instructions. (x86_64)
11 # This software is available to you under a choice of one of two
21 # - Redistributions of source code must retain the above
25 # - Redistributions in binary form must reproduce the above
32 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
41 # This code is described in an Intel White-Paper:
42 # "Fast SHA-256 Implementations on Intel Architecture Processors"
48 # This code schedules 2 blocks at a time, with 4 lanes per block
51 #include <linux/linkage.h>
52 #include <linux/cfi_types.h>
[all …]
H A Dsha256-avx-asm.S2 # Implement fast SHA-256 with AVX1 instructions. (x86_64)
11 # This software is available to you under a choice of one of two
21 # - Redistributions of source code must retain the above
25 # - Redistributions in binary form must reproduce the above
32 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
40 # This code is described in an Intel White-Paper:
41 # "Fast SHA-256 Implementations on Intel Architecture Processors"
47 # This code schedules 1 block at a time, with 4 lanes per block
50 #include <linux/linkage.h>
51 #include <linux/cfi_types.h>
[all …]
H A Dsha256-ssse3-asm.S2 # Implement fast SHA-256 with SSSE3 instructions. (x86_64)
11 # This software is available to you under a choice of one of two
21 # - Redistributions of source code must retain the above
25 # - Redistributions in binary form must reproduce the above
32 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
41 # This code is described in an Intel White-Paper:
42 # "Fast SHA-256 Implementations on Intel Architecture Processors"
49 #include <linux/linkage.h>
50 #include <linux/cfi_types.h>
58 # Add reg to mem using reg-mem add and store
[all …]
H A Dsm3-avx-asm_64.S1 /* SPDX-License-Identifier: GPL-2.0-or-later */
4 * specified in: https://datatracker.ietf.org/doc/html/draft-sca-cfrg-sm3-02
14 #include <linux/linkage.h>
15 #include <linux/cfi_types.h>
16 #include <asm/frame.h>
34 #define K1 -208106958 /* 0xf3988a32 */
35 #define K2 -416213915 /* 0xe7311465 */
36 #define K3 -832427829 /* 0xce6228cb */
37 #define K4 -1664855657 /* 0x9cc45197 */
40 #define K7 -433943364 /* 0xe6228cbc */
[all …]
/openbmc/linux/drivers/media/pci/zoran/
H A Dvideocodec.c1 // SPDX-License-Identifier: GPL-2.0-or-later
6 * bound to a master device.
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/types.h>
15 #include <linux/slab.h>
17 #include "videocodec.h"
39 struct codec_list *h = codeclist_top; in videocodec_attach() local
41 struct attached_list *a, *ptr; in videocodec_attach() local
[all …]
/openbmc/u-boot/lib/
H A Dsha256.c1 // SPDX-License-Identifier: GPL-2.0+
3 * FIPS-180-2 compliant SHA-256 implementation
5 * Copyright (C) 2001-2003 Christophe Devine
9 #include <common.h>
10 #include <linux/string.h>
12 #include <string.h>
14 #include <watchdog.h>
15 #include <u-boot/sha256.h>
24 * 32-bit integer manipulation macros (big endian)
45 ctx->total[0] = 0; in sha256_starts()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/canonical-multitouch/geis/
H A D0001-provide-function-declaration-with-prototypes.patch3 Date: Fri, 2 Sep 2022 16:57:51 -0700
6 Fixes build with clang-15+
8 Upstream-Status: Pending
9 Signed-off-by: Khem Raj <raj.khem@gmail.com>
10 ---
11 libgeis/backend/grail/geis_grail_window_grab.c | 2 +-
12 libgeis/backend/grail/geis_ugsubscription_store.c | 2 +-
13 libgeis/backend/grail/geis_ugsubscription_store.h | 2 +-
14 libgeis/backend/test_fixture/geis_backend_test_fixture.c | 4 ++--
15 libgeis/geis.c | 2 +-
[all …]
/openbmc/openbmc/poky/meta/recipes-extended/quota/quota/
H A D0001-Fix-building-on-musl.patch6 basename(3) is defined in libgen.h in MUSL. Include libgen.h where
9 Upstream-Status: Backport [https://sourceforge.net/p/linuxquota/code/ci/e73c5b48e12c3f02e532864a110…
10 Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
11 Signed-off-by: Jan Kara <jack@suse.cz>
12 ---
14 edquota.c | 11 ++++++-----
26 13 files changed, 18 insertions(+), 5 deletions(-)
28 diff --git a/convertquota.c b/convertquota.c
30 --- a/convertquota.c
32 @@ -14,6 +14,7 @@
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb/
H A D0001-include-missing-system-headers.patch3 Date: Fri, 2 Sep 2022 15:51:31 -0700
6 Upstream-Status: Pending
8 Signed-off-by: Khem Raj <raj.khem@gmail.com>
9 ---
13 mofc/backend_sfcb.c | 2 +-
17 trace.c | 3 ++-
18 trace.h | 3 ++-
19 9 files changed, 12 insertions(+), 3 deletions(-)
21 diff --git a/brokerEnc.c b/brokerEnc.c
23 --- a/brokerEnc.c
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/opensaf/opensaf/
H A D0001-Fix-build-with-fno-common.patch3 Date: Mon, 17 Aug 2020 00:00:00 -0700
4 Subject: [PATCH] Fix build with -fno-common
8 Upstream-Status: Pending
10 Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 ---
12 src/ckpt/agent/cpa_cb.h | 2 +-
13 src/ckpt/ckptd/cpd_init.h | 2 +-
14 src/evt/agent/eda.h | 2 +-
15 src/evt/evtd/eds.h | 2 +-
17 src/evt/evtd/eds_amf.h | 2 +-
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/include/nvif/
H A Ddevice.h1 /* SPDX-License-Identifier: MIT */
5 #include <nvif/object.h>
6 #include <nvif/cl0080.h>
7 #include <nvif/user.h>
27 #include <subdev/bios.h>
28 #include <subdev/fb.h>
29 #include <subdev/bar.h>
30 #include <subdev/gpio.h>
31 #include <subdev/clk.h>
32 #include <subdev/i2c.h>
[all …]
/openbmc/rest-dbus/resources/
H A Djquery.min.js2a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):fu… field in AnonymousClass46742d011301
4a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&… argument
5a,b,c,d,e)}m.Tween=Za,Za.prototype={constructor:Za,init:function(a,b,c,d,e,f){this.elem=a,this.pro… argument
H A Djstree.min.js1 /*! jsTree - v3.2.0 - 2015-08-06 - (MIT) */
2a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):"undefined"!=typeof mod… argument
3-children")[0]),r=b.children(".jstree-anchor")[0]===i.activeElement,b.remove();else if(c=!0,!d){if… argument
4-"+b),this.element[this.settings.core.themes.responsive?"addClass":"removeClass"]("jstree-"+b+"-re… argument
5a(b.target).closest(".jstree-node")[0]!==b.currentTarget)return!0;if("touchstart"===b.type&&(!this… argument
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/zsync/zsync-curl/
H A Dfixes.patch1 Upstream-Status: Submitted [https://github.com/probonopd/zsync-curl/pull/41]
2 Signed-off-by: Ross Burton <ross.burton@arm.com>
4 diff --git a/src/configure.ac b/src/configure.ac
6 --- a/src/configure.ac
8 @@ -9,7 +9,6 @@ AC_CONFIG_MACRO_DIR([autotools])
11 …AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip foreign check-news -Woverride -Wobsolete -Wportability -
12 -AM_MAINTAINER_MODE
14 dnl --- Check for programs
16 @@ -23,6 +22,7 @@ AS_IF([test "x$enable_profile" = "xyes"], [
17 ZS_CFLAGS="${ZS_CFLAGS} -pg" ])
[all …]
/openbmc/linux/tools/include/nolibc/
H A Dnolibc.h1 /* SPDX-License-Identifier: LGPL-2.1 OR MIT */
2 /* nolibc.h
3 * Copyright (C) 2017-2018 Willy Tarreau <w@1wt.eu>
7 * This file is designed to be used as a libc alternative for minimal programs
8 * with very limited requirements. It consists of a small number of syscall and
14 * - The lower level is the arch-specific syscall() definition, consisting in
17 * are castto a long stored in a register. These expressions always return
18 * the syscall's return value as a signed long value which is often either
19 * a pointer or the negated errno value.
21 * - The second level is mostly architecture-independent. It is made of
[all …]
/openbmc/qemu/tests/tcg/multiarch/
H A Dsha512.c7 * http://www.opensource.org/licenses/mit-license.php.
9 * SPDX-License-Identifier: MIT CC0-1.0
13 #include <stdint.h>
14 #include <stdlib.h>
15 #include <stdio.h>
16 #include <unistd.h>
17 #include <ctype.h>
18 #include <stdarg.h>
20 /* Required portions from endian.h */
23 * BSWAP_64 - reverse bytes in a constant uint64_t value.
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/bridge-utils/bridge-utils/
H A D0004-cleanup-includes.patch3 Date: Fri, 7 Jan 2022 08:44:19 -0800
7 Should resolve build issues for distros that need limits.h
10 Upstream-Status: Backport
11 [https://git.kernel.org/pub/scm/network/bridge/bridge-utils.git/commit/?h=main&id=1763c5b7f8f72d651…
13 Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
14 Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
15 ---
16 brctl/brctl.c | 1 -
17 brctl/brctl_cmd.c | 3 ++-
18 brctl/brctl_disp.c | 1 -
[all …]
/openbmc/linux/arch/s390/kernel/
H A Dcompat_linux.c1 // SPDX-License-Identifier: GPL-2.0
11 * Heavily inspired by the 32-bit Sparc compat code which is
18 #include <linux/kernel.h>
19 #include <linux/sched.h>
20 #include <linux/fs.h>
21 #include <linux/mm.h>
22 #include <linux/file.h>
23 #include <linux/signal.h>
24 #include <linux/resource.h>
25 #include <linux/times.h>
[all …]

12345678910>>...46