Home
last modified time | relevance | path

Searched +full:c +full:- +full:version +full:- +full:name (Results 1 – 25 of 1040) sorted by relevance

12345678910>>...42

/linux/scripts/
H A Dcc-version.sh2 # SPDX-License-Identifier: GPL-2.0
4 # Print the C compiler name and its version in a 5 or 6-digit form.
5 # Also, perform the minimum version check.
7 set -e
9 # Print the C compiler name and some version components.
12 cat <<- EOF | "$@" -E -P -x c - 2>/dev/null
23 # Convert the version string x.y.z to a canonical 5 or 6-digit form.
27 set -- $1
33 set -- $(get_c_compiler_info "$@")
35 name=$1
[all …]
H A Das-version.sh2 # SPDX-License-Identifier: GPL-2.0-only
4 # Print the assembler name and its version in a 5 or 6-digit form.
5 # Also, perform the minimum version check.
6 # (If it is the integrated assembler, return 0 as the version, and
7 # skip the version check.)
9 set -e
11 # Convert the version string x.y.z to a canonical 5 or 6-digit form.
15 set -- $1
21 echo $((10000 * $1 + 100 * ${2:-0} + ${3:-0}))
24 # Clang fails to handle -Wa,--version unless -fno-integrated-as is given.
[all …]
H A DKconfig.include1 # SPDX-License-Identifier: GPL-2.0-only
14 # $(if-success,<command>,<then>,<else>)
16 if-success = $(shell,{ $(1); } >/dev/null 2>&1 && echo "$(2)" || echo "$(3)")
20 success = $(if-success,$(1),y,n)
24 failure = $(if-success,$(1),n,y)
26 # $(cc-option,<flag>)
28 cc-option = $(success,trap "rm -rf .tmp_$$" EXIT; mkdir .tmp_$$; $(CC) -Werror $(CLANG_FLAGS) $(1)
30 # $(ld-option,<flag>)
32 ld-option = $(success,$(LD) -v $(1))
34 # $(as-instr,<instr>)
[all …]
H A Dld-version.sh2 # SPDX-License-Identifier: GPL-2.0
4 # Print the linker name and its version in a 5 or 6-digit form.
5 # Also, perform the minimum version check.
7 set -e
9 # Convert the version string x.y.z to a canonical 5 or 6-digit form.
13 set -- $1
19 echo $((10000 * $1 + 100 * ${2:-0} + ${3:-0}))
24 # Get the first line of the --version output.
27 set -- $(LC_ALL=C "$@" --version)
31 set -- $1
[all …]
H A Dver_linux1 #!/usr/bin/awk -f
2 # SPDX-License-Identifier: GPL-2.0
9 usage = "If some fields are empty or look unusual you may have an old version.\n"
13 system("uname -a")
16 vernum = "[0-9]+([.]?[0-9]+)+"
17 libc = "libc[.]so[.][0-9]+$"
18 libcpp = "(libg|stdc)[+]+[.]so([.][0-
61 function version(cmd, ver) { global() function
[all...]
/linux/tools/tracing/rtla/
H A DMakefile.rtla1 # SPDX-License-Identifier: GPL-2.0-only
3 define allow-override
10 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
11 $(call allow-override,AR,$(CROSS_COMPILE)ar)
12 $(call allow-override,STRIP,$(CROSS_COMPILE)strip)
13 $(call allow-override,PKG_CONFIG,pkg-config)
14 $(call allow-override,LD_SO_CONF_PATH,/etc/ld.so.conf.d/)
15 $(call allow-override,LDCONFIG,ldconfig)
18 FOPTS := -flto=auto -ffat-lto-objects -fexceptions -fstack-protector-strong \
19 -fasynchronous-unwind-tables -fstack-clash-protection
[all …]
/linux/drivers/mtd/parsers/
H A Dqcomsmempart.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2020, Linaro Ltd.
28 * struct smem_flash_pentry - SMEM Flash partition entry
29 * @name: Name of the partition
35 char name[SMEM_FLASH_PTABLE_NAME_SIZE]; member
42 * struct smem_flash_ptable - SMEM Flash partition table
45 * @version: Partition table version
52 __le32 version; member
66 char *name, *c; in parse_qcomsmem_part() local
69 && mtd->type == MTD_NORFLASH) { in parse_qcomsmem_part()
[all …]
/linux/scripts/gendwarfksyms/
H A Dtypes.c1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2024 Google LLC
33 if (entry->owned) in type_list_free()
34 free(entry->owned); in type_list_free()
49 entry->str = s; in type_list_append()
50 entry->owned = owned; in type_list_append()
51 list_add_tail(&entry->list, list); in type_list_append()
53 return strlen(entry->str); in type_list_append()
61 if (entry->str) in type_list_write()
62 checkp(fputs(entry->str, file)); in type_list_write()
[all …]
/linux/fs/jffs2/
H A Dsummary.h2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2004 Ferenc Havasi <havasi@inf.u-szeged.hu>,
5 * Zoltan Sogor <weth@inf.u-szeged.hu>,
6 * Patrik Kluba <pajko@halom.u-szeged.hu>,
49 jint32_t version; /* inode version */ member
60 jint32_t version; /* dirent version */ member
62 uint8_t nsize; /* dirent name size */
64 uint8_t name[]; /* dirent name */ member
71 jint32_t version; /* version number */ member
104 jint32_t version; /* inode version */ member
[all …]
H A Dsummary.c2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2004 Ferenc Havasi <havasi@inf.u-szeged.hu>,
5 * Zoltan Sogor <weth@inf.u-szeged.hu>,
6 * Patrik Kluba <pajko@halom.u-szeged.hu>,
26 int jffs2_sum_init(struct jffs2_sb_info *c) in jffs2_sum_init() argument
28 uint32_t sum_size = min_t(uint32_t, c->sector_size, MAX_SUMMARY_SIZE); in jffs2_sum_init()
30 c->summary = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL); in jffs2_sum_init()
32 if (!c->summary) { in jffs2_sum_init()
34 return -ENOMEM; in jffs2_sum_init()
37 c->summary->sum_buf = kmalloc(sum_size, GFP_KERNEL); in jffs2_sum_init()
[all …]
H A Dwrite.c2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2001-2007 Red Hat, Inc.
23 int jffs2_do_new_inode(struct jffs2_sb_info *c, struct jffs2_inode_info *f, in jffs2_do_new_inode() argument
30 return -ENOMEM; in jffs2_do_new_inode()
35 f->inocache = ic; in jffs2_do_new_inode()
36 f->inocache->pino_nlink = 1; /* Will be overwritten shortly for directories */ in jffs2_do_new_inode()
37 f->inocache->nodes = (struct jffs2_raw_node_ref *)f->inocache; in jffs2_do_new_inode()
38 f->inocache->state = INO_STATE_PRESENT; in jffs2_do_new_inode()
40 jffs2_add_ino_cache(c, f->inocache); in jffs2_do_new_inode()
41 jffs2_dbg(1, "%s(): Assigned ino# %d\n", __func__, f->inocache->ino); in jffs2_do_new_inode()
[all …]
/linux/tools/testing/selftests/vDSO/
H A Dvdso_test_abi.c1 // SPDX-License-Identifier: GPL-2.0
3 * vdso_full_test.c: Sample code to test all the timers.
4 * Copyright (c) 2019 Arm Ltd.
7 * gcc -std=gnu99 vdso_full_test.c parse_vdso.c
26 static const char *version; variable
27 static const char **name; variable
60 (vdso_gettimeofday_t)vdso_sym(version, name[0]); in vdso_test_gettimeofday()
63 ksft_print_msg("Couldn't find %s\n", name[0]); in vdso_test_gettimeofday()
64 ksft_test_result_skip("%s\n", name[0]); in vdso_test_gettimeofday()
74 ksft_test_result_pass("%s\n", name[0]); in vdso_test_gettimeofday()
[all …]
/linux/net/9p/
H A Dclient.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
6 * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
39 * - a little lazy - parse all client options
54 {Opt_version, "version=%s"},
60 return clnt->proto_versio in p9_is_proto_dotl()
109 int version = -EINVAL; get_protocol_version() local
226 p9_fcall_init(struct p9_client * c,struct p9_fcall * fc,int alloc_msize) p9_fcall_init() argument
278 p9_tag_alloc(struct p9_client * c,int8_t type,uint t_size,uint r_size,const char * fmt,va_list ap) p9_tag_alloc() argument
358 p9_tag_lookup(struct p9_client * c,u16 tag) p9_tag_lookup() argument
391 p9_tag_remove(struct p9_client * c,struct p9_req_t * r) p9_tag_remove() argument
402 p9_req_put(struct p9_client * c,struct p9_req_t * r) p9_req_put() argument
423 p9_tag_cleanup(struct p9_client * c) p9_tag_cleanup() argument
445 p9_client_cb(struct p9_client * c,struct p9_req_t * req,int status) p9_client_cb() argument
522 p9_check_errors(struct p9_client * c,struct p9_req_t * req) p9_check_errors() argument
597 p9_client_flush(struct p9_client * c,struct p9_req_t * oldreq) p9_client_flush() argument
625 p9_client_prepare_req(struct p9_client * c,int8_t type,uint t_size,uint r_size,const char * fmt,va_list ap) p9_client_prepare_req() argument
674 p9_client_rpc(struct p9_client * c,int8_t type,const char * fmt,...) p9_client_rpc() argument
778 p9_client_zc_rpc(struct p9_client * c,int8_t type,struct iov_iter * uidata,struct iov_iter * uodata,int inlen,int olen,int in_hdrlen,const char * fmt,...) p9_client_zc_rpc() argument
910 p9_client_version(struct p9_client * c) p9_client_version() argument
914 char *version = NULL; p9_client_version() local
1274 p9_client_create_dotl(struct p9_fid * ofid,const char * name,u32 flags,u32 mode,kgid_t gid,struct p9_qid * qid) p9_client_create_dotl() argument
1318 p9_client_fcreate(struct p9_fid * fid,const char * name,u32 perm,int mode,char * extension) p9_client_fcreate() argument
1361 p9_client_symlink(struct p9_fid * dfid,const char * name,const char * symtgt,kgid_t gid,struct p9_qid * qid) p9_client_symlink() argument
1502 p9_client_unlinkat(struct p9_fid * dfid,const char * name,int flags) p9_client_unlinkat() argument
1979 p9_client_rename(struct p9_fid * fid,struct p9_fid * newdirfid,const char * name) p9_client_rename() argument
2081 p9_client_xattrcreate(struct p9_fid * fid,const char * name,u64 attr_size,int flags) p9_client_xattrcreate() argument
2172 p9_client_mknod_dotl(struct p9_fid * fid,const char * name,int mode,dev_t rdev,kgid_t gid,struct p9_qid * qid) p9_client_mknod_dotl() argument
2202 p9_client_mkdir_dotl(struct p9_fid * fid,const char * name,int mode,kgid_t gid,struct p9_qid * qid) p9_client_mkdir_dotl() argument
[all...]
/linux/tools/accounting/
H A Dgetdelays.c1 // SPDX-License-Identifier: GPL-2.0
2 /* getdelays.c
4 * Utility to get per-pid and per-tgid delay accounting statistics
7 * Copyright (C) Shailabh Nagar, IBM Corp. 2005
8 * Copyright (C) Balbir Singh, IBM Corp. 2006
9 * Copyright (c) Jay Lan, SGI. 2006
12 * gcc -I/usr/src/linux/include getdelays.c -o getdelays
38 #define GENLMSG_PAYLOAD(glh) (NLMSG_PAYLOAD(glh, 0) - GENL_HDRLEN)
40 #define NLA_PAYLOAD(len) (len - NLA_HDRLEN)
49 char name[100]; variable
[all …]
/linux/Documentation/userspace-api/media/mediactl/
H A Dmedia-ioc-device-info.rst1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
2 .. c:namespace:: MC
10 Name chapter
13 MEDIA_IOC_DEVICE_INFO - Query device information
18 .. c:macro:: MEDIA_IOC_DEVICE_INFO
26 File descriptor returned by :c:func:`open()`.
29 Pointer to struct :c:type:`media_device_info`.
36 a struct :c:type:`media_device_info`. The driver
40 .. c:type:: media_device_info
44 .. flat-table:: struct media_device_info
[all …]
/linux/Documentation/userspace-api/media/v4l/
H A Dvidioc-querycap.rst1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
2 .. c:namespace:: V4L
10 Name chapter
13 VIDIOC_QUERYCAP - Query device capabilities
18 .. c:macro:: VIDIOC_QUERYCAP
26 File descriptor returned by :c:func:`open()`.
29 Pointer to struct :c:type:`v4l2_capability`.
37 pointer to a struct :c:type:`v4l2_capability` which is
41 .. c:type:: v4l2_capability
47 .. flat-table:: struct v4l2_capability
[all …]
/linux/fs/ocfs2/
H A Dstack_user.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * stack_user.c
7 * Copyright (C) 2007 Oracle. All rights reserved.
30 * character followed by a two hex digit version number. Currently the
31 * only things supported is T01, for "Text-base version 0x01". Next, the
32 * client writes the version they would like to use, including the newline.
33 * Thus, the protocol tag is 'T01\n'. If the version tag written is
34 * unknown, -EINVAL is returned. Once the negotiation is complete, the
40 * SETN<space><8-char-hex-nodenum><newline>
49 * SETV<space><2-char-hex-major><space><2-char-hex-minor><newline>
[all …]
/linux/fs/affs/
H A DChanges1 (Note: I consider version numbers as cheap. That means
7 -----------
9 - Doesn't work on the alpha. The only 64/32-bit
14 Alas, I've got no alpha to debug. :-(
16 - The partition checker (drivers/block/genhd.c)
20 - The feature to automatically make the fs clean
24 - When a file is truncated to a size that is not
29 Please direct bug reports to: zippel@linux-m68k.org
31 Version 3.20
32 ------------
[all …]
/linux/drivers/md/
H A Ddm-ioctl.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
4 * Copyright (C) 2004 - 2006 Red Hat, Inc. All rights reserved.
9 #include "dm-core.h"
10 #include "dm-ima.h"
19 #include <linux/dm-ioctl.h>
28 #define DM_DRIVER_EMAIL "dm-devel@lists.linux.dev"
39 *---------------------------------------------------------------
41 * name or uuid.
42 *---------------------------------------------------------------
[all …]
/linux/tools/perf/pmu-events/
H A DREADME9 tree tools/perf/pmu-events/arch/foo.
11 - Regular files with '.json' extension in the name are assumed to be
14 - The CSV file that maps a specific CPU to its set of PMU events is to
17 - Directories are traversed, but all other files are ignored.
19 - To reduce JSON event duplication per architecture, platform JSONs may
26 such as Pipelining, Cache, Memory, Floating-point etc. All events for a topic
27 should be placed in a separate JSON file - where the file name identifies
28 the topic. Eg: "Floating-point.json".
33 $ ls tools/perf/pmu-events/arch/x86/silvermont
34 cache.json memory.json virtual-memory.json
[all …]
/linux/fs/9p/
H A Dcache.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2009 by Abhishek Kulkarni <adkulkar@umail.iu.edu>
23 char *name, *p; in v9fs_cache_session_get_cookie() local
25 name = kasprintf(GFP_KERNEL, "9p,%s,%s", in v9fs_cache_session_get_cookie()
26 dev_name, v9ses->cachetag ?: v9ses->aname); in v9fs_cache_session_get_cookie()
27 if (!name) in v9fs_cache_session_get_cookie()
28 return -ENOMEM; in v9fs_cache_session_get_cookie()
30 for (p = name; *p; p++) in v9fs_cache_session_get_cookie()
34 vcookie = fscache_acquire_volume(name, NULL, NULL, 0); in v9fs_cache_session_get_cookie()
36 v9ses, vcookie, name); in v9fs_cache_session_get_cookie()
[all …]
/linux/arch/arm/boot/dts/nvidia/
H A Dtegra30-cardhu.dtsi1 // SPDX-License-Identifier: GPL-2.0
2 #include <dt-bindings/input/input.h>
3 #include <dt-bindings/thermal/thermal.h>
5 #include "tegra30-cpu-opp.dtsi"
6 #include "tegra30-cpu-opp-microvolt.dtsi"
9 * This file contains common DT entry for all fab version of Cardhu.
10 * There is multiple fab version of Cardhu starting from A01 to A07.
11 * Cardhu fab version A01 and A03 are not supported. Cardhu fab version
13 * Cardhu fab version A04. The Cardhu fab version A05, A06, A07 are
14 * compatible with fab version A04. Based on Cardhu fab version, the
[all …]
/linux/sound/firewire/tascam/
H A Dtascam.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * tascam.c - a part of driver for TASCAM FireWire series
5 * Copyright (c) 2015 Takashi Sakamoto
11 MODULE_AUTHOR("Takashi Sakamoto <o-takashi@sakamocchi.jp>");
16 .name = "FW-188
50 u8 c; identify_model() local
[all...]
/linux/drivers/soc/qcom/
H A Dwcnss_ctrl.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2016, Linaro Ltd.
4 * Copyright (c) 2015, Sony Mobile Communications Inc.
27 * struct wcnss_ctrl - driver context
64 * struct wcnss_msg_hdr - common packet header for requests and responses
74 * struct wcnss_version_resp - version request response
80 u8 version; member
85 * struct wcnss_download_nv_req - firmware fragment request
101 * struct wcnss_download_nv_resp - firmware download response
111 * wcnss_ctrl_smd_callback() - handler from SMD responses
[all …]
/linux/Documentation/userspace-api/netlink/
H A Dgenetlink-legacy.rst1 .. SPDX-License-Identifier: BSD-3-Clause
9 the ``genetlink-legacy`` protocol level.
15 -------
19 version subsection
22 Generic Netlink family version, default is 1.
24 ``version`` has historically been used to introduce family changes
26 are generally not allowed ``version`` is very rarely used.
29 --------------------
31 New Netlink families should use ``multi-attr`` to define arrays.
35 For reference the ``multi-attr`` array may look like this::
[all …]

12345678910>>...42