Searched +full:- +full:- +full:disable +full:- +full:malloc +full:- +full:trim (Results 1 – 14 of 14) sorted by relevance
/openbmc/u-boot/include/ |
H A D | malloc.h | 2 A version of malloc/free/realloc written by Doug Lea and released to the 8 Note: There may be an updated version of this malloc obtainable at 9 ftp://g.oswego.edu/pub/misc/malloc.c 12 * Why use this malloc? 14 This is not the fastest, most space-conserving, most portable, or 15 most tunable malloc ever written. However it is among the fastest 16 while also being among the most space-conserving, portable and tunable. 17 Consistent balance across these factors results in a good general-purpose 18 allocator. For a high-level description, see 19 http://g.oswego.edu/dl/html/malloc.html [all …]
|
/openbmc/qemu/scripts/ |
H A D | meson-buildoptions.sh | 1 # This file is generated by meson-buildoptions.py, do not edit! 3 printf "%s\n" ' --audio-drv-list=CHOICES Set audio driver list [default] (choices: alsa/co' 6 printf "%s\n" ' --bindir=VALUE Executable directory [bin]' 7 printf "%s\n" ' --block-drv-ro-whitelist=VALUE' 8 printf "%s\n" ' set block driver read-only whitelist (by default' 9 printf "%s\n" ' affects only QEMU, not tools like qemu-img)' 10 printf "%s\n" ' --block-drv-rw-whitelist=VALUE' 11 printf "%s\n" ' set block driver read-write whitelist (by default' 12 printf "%s\n" ' affects only QEMU, not tools like qemu-img)' 13 printf "%s\n" ' --datadir=VALUE Data file directory [share]' [all …]
|
/openbmc/u-boot/common/ |
H A D | dlmalloc.src | 1 /* ---------- To make a malloc.h, start cutting here ------------ */ 4 A version of malloc/free/realloc written by Doug Lea and released to the 10 Note: There may be an updated version of this malloc obtainable at 11 ftp://g.oswego.edu/pub/misc/malloc.c 14 * Why use this malloc? 16 This is not the fastest, most space-conserving, most portable, or 17 most tunable malloc ever written. However it is among the fastest 18 while also being among the most space-conserving, portable and tunable. 19 Consistent balance across these factors results in a good general-purpose 20 allocator. For a high-level description, see [all …]
|
/openbmc/linux/mm/ |
H A D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 33 compress them into a dynamically allocated RAM-based memory pool. 62 swapped out again, it will be re-compressed. 190 linux-mm@kvack.org and the zswap maintainers. 208 zsmalloc is a slab-based memory allocator designed to store 223 int "Maximum number of physical pages per-zspage" 256 If you cannot migrate to SLUB, please contact linux-mm@kvack.org 305 can usually only damage objects in the same cache. To disable 325 sanity-checking than others. This option is most effective with 339 Try running: slabinfo -DA [all …]
|
/openbmc/qemu/ |
H A D | meson.build | 10 meson.add_postconf_script(find_program('scripts/symlink-install-tree.py')) 23 config_host = keyval.load(meson.current_build_dir() / 'config-host.mak') 30 tmpdir = meson.current_build_dir() / 'meson-private/temp' 61 have_linux_user = have_linux_user or target.endswith('linux-user') 62 have_bsd_user = have_bsd_user or target.endswith('bsd-user') 63 have_system = have_system or target.endswith('-softmmu') 107 …dgen.version() + ' is unsupported. You can install a new version with "cargo install bindgen-cli"') 114 message('To use Rust you can install a new version with "cargo install bindgen-cli"') 132 # instead. QEMU --enable-modules depends on this because the SystemTap 135 add_global_arguments('-DSTAP_SDT_V2', [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | highlight.pack.js | 2 …-highlight";for(o=o.split(/\s+/),n=0,r=o.length;r>n;n++)if(i=o[n],a(i)||w(i))return i}function o(e…
|
/openbmc/u-boot/drivers/usb/gadget/ |
H A D | ether.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 * ether.c -- Ethernet gadget driver, with CDC and non-CDC options 5 * Copyright (C) 2003-2005,2008 David Brownell 6 * Copyright (C) 2003-2004 Robert Schwebel, Benedikt Spranger 20 #include <malloc.h> 29 #include <dm/uclass-internal.h> 30 #include <dm/device-internal.h> 41 * Ethernet gadget driver -- with CDC and non-CDC options 47 * this USB-IF standard as its open-systems interoperability solution; 51 * TLA-soup. "CDC ACM" (Abstract Control Model) is for modems, and a new [all …]
|
/openbmc/openbmc/meta-raspberrypi/recipes-multimedia/rpidistro-ffmpeg/files/ |
H A D | 0001-ffmpeg-5.1.4-rpi_24.patch | 2 Upstream-Status: Inappropriate 4 RPI-Distro repo clones original ffmpeg and applies patches to enable 7 --- a/configure 9 @@ -205,6 +205,7 @@ External library support: 10 --disable-bzlib disable bzlib [autodetect] 11 --disable-coreimage disable Apple CoreImage framework [autodetect] 12 --enable-chromaprint enable audio fingerprinting with chromaprint [no] 13 + --disable-epoxy disable epoxy [autodetect] 14 --enable-frei0r enable frei0r video filtering [no] 15 --enable-gcrypt enable gcrypt, needed for rtmp(t)e support [all …]
|
/openbmc/openbmc/meta-raspberrypi/dynamic-layers/multimedia-layer/recipes-multimedia/rpidistro-vlc/files/ |
H A D | 0004-mmal_20.patch | 1 Upstream-Status: Inappropriate 3 RPI-Distro repo forks original vlc and applies patches 6 --- a/configure.ac 8 @@ -3478,6 +3478,9 @@ dnl 10 AS_HELP_STRING([--enable-mmal], 11 [Multi-Media Abstraction Layer (MMAL) hardware plugin (default enable)])) 13 + AS_HELP_STRING([--enable-mmal-avcodec], 14 + [Use MMAL enabled avcodec libs (default disable)])) 17 LDFLAGS="${LDFLAGS} -L/opt/vc/lib -lvchostif" 18 @@ -3488,7 +3491,7 @@ if test "${enable_mmal}" != "no"; then [all …]
|
/openbmc/linux/tools/lib/bpf/ |
H A D | libbpf.c | 1 // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) 6 * Copyright (C) 2013-2015 Alexei Starovoitov <ast@kernel.org> 65 * compilation if user enables corresponding warning. Disable it explicitly. 67 #pragma GCC diagnostic ignored "-Wformat-nonliteral" 260 if (err != -EPERM || geteuid() != 0) in pr_perm_msg() 277 pr_warn("permission error while running as root; try raising 'ulimit -l'? current value: %s\n", in pr_perm_msg() 293 fd = -1; \ 304 /* as of v1.0 libbpf_set_strict_mode() is a no-op */ in libbpf_set_strict_mode() 350 /* stored as sec_def->cookie for all libbpf-supported SEC()s */ 369 /* BPF program support non-linear XDP buffer */ [all …]
|
/openbmc/linux/net/core/ |
H A D | skbuff.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 6 * Florian La Roche <rzsfl@rz.uni-sb.de> 19 * Ray VanTassle : Fixed --skb->lock in free 136 * drop_reasons_register_subsys - register another drop reason subsystem 155 * drop_reasons_unregister_subsys - unregister a drop reason subsystem 174 * skb_panic - private function for out-of-line support 180 * Out-of-line support for skb_put() and skb_push(). 189 msg, addr, skb->len, sz, skb->head, skb->data, in skb_panic() 190 (unsigned long)skb->tail, (unsigned long)skb->end, in skb_panic() 191 skb->dev ? skb->dev->name : "<NULL>"); in skb_panic() [all …]
|
/openbmc/linux/include/uapi/linux/ |
H A D | bpf.h | 1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com 21 #define BPF_DW 0x18 /* double word (64-bit) */ 23 #define BPF_ATOMIC 0xc0 /* atomic memory ops - op type in immediate */ 24 #define BPF_XADD 0xc0 /* exclusive add - legacy name */ 32 #define BPF_TO_LE 0x00 /* convert to little-endian */ 33 #define BPF_TO_BE 0x08 /* convert to big-endian */ 51 #define BPF_CMPXCHG (0xf0 | BPF_FETCH) /* atomic compare-and-write */ 69 /* BPF has 10 general purpose 64-bit registers and stack frame. */ 111 BPF_CGROUP_ITER_DESCENDANTS_PRE, /* walk descendants in pre-order. */ [all …]
|
/openbmc/linux/tools/include/uapi/linux/ |
H A D | bpf.h | 1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com 21 #define BPF_DW 0x18 /* double word (64-bit) */ 23 #define BPF_ATOMIC 0xc0 /* atomic memory ops - op type in immediate */ 24 #define BPF_XADD 0xc0 /* exclusive add - legacy name */ 32 #define BPF_TO_LE 0x00 /* convert to little-endian */ 33 #define BPF_TO_BE 0x08 /* convert to big-endian */ 51 #define BPF_CMPXCHG (0xf0 | BPF_FETCH) /* atomic compare-and-write */ 69 /* BPF has 10 general purpose 64-bit registers and stack frame. */ 111 BPF_CGROUP_ITER_DESCENDANTS_PRE, /* walk descendants in pre-order. */ [all …]
|
/openbmc/linux/ |
H A D | opengrok1.0.log | 1 2024-12-28 20:07:11.902-0600 FINER t583 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/linux',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/linux/drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c' 2 2024-12-28 20:07:11.913-0600 FINEST t583 Statistics.logIt: Added: '/openbmc/linux/drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c' (CAnalyzer) (took 116 ms) 3 2024-12-28 20:07:11.899-0600 FINER t593 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/linux',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/linux/tools/testing/selftests/powerpc/tm/tm-signa [all...] |