Home
last modified time | relevance | path

Searched full:c (Results 1 – 25 of 17444) sorted by relevance

12345678910>>...698

/kernel/liteos_m/testsuites/sample/kernel/queue/
DBUILD.gn1 # Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
2 # Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
34 "It_los_queue.c",
35 "It_los_queue_001.c",
36 "It_los_queue_002.c",
37 "It_los_queue_003.c",
38 "It_los_queue_004.c",
39 "It_los_queue_005.c",
40 "It_los_queue_006.c",
41 "It_los_queue_007.c",
[all …]
/kernel/liteos_a/testsuites/kernel/sample/kernel_base/core/
DBUILD.gn1 # Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
2 # Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
34 "swtmr/It_los_swtmr.c",
35 "swtmr/full/It_los_swtmr_001.c",
36 "swtmr/full/It_los_swtmr_002.c",
37 "swtmr/full/It_los_swtmr_003.c",
38 "swtmr/full/It_los_swtmr_005.c",
39 "swtmr/full/It_los_swtmr_006.c",
40 "swtmr/full/It_los_swtmr_007.c",
41 "swtmr/full/It_los_swtmr_008.c",
[all …]
/kernel/liteos_m/testsuites/sample/kernel/task/
DBUILD.gn1 # Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
2 # Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
34 "It_los_task.c",
35 "It_los_task_001.c",
36 "It_los_task_002.c",
37 "It_los_task_003.c",
38 "It_los_task_004.c",
39 "It_los_task_005.c",
40 "It_los_task_006.c",
41 "It_los_task_007.c",
[all …]
/kernel/liteos_m/testsuites/sample/kernel/swtmr/
DBUILD.gn1 # Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
2 # Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
34 "It_los_swtmr.c",
35 "It_los_swtmr_001.c",
36 "It_los_swtmr_002.c",
37 "It_los_swtmr_003.c",
38 "It_los_swtmr_004.c",
39 "It_los_swtmr_005.c",
40 "It_los_swtmr_006.c",
41 "It_los_swtmr_007.c",
[all …]
/kernel/liteos_m/testsuites/sample/posix/
DBUILD.gn1 # Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
33 "mqueue/It_posix_queue.c",
34 "mqueue/It_posix_queue_001.c",
35 "mqueue/It_posix_queue_002.c",
36 "mqueue/It_posix_queue_003.c",
37 "mqueue/It_posix_queue_004.c",
38 "mqueue/It_posix_queue_005.c",
39 "mqueue/It_posix_queue_006.c",
40 "mqueue/It_posix_queue_007.c",
41 "mqueue/It_posix_queue_008.c",
[all …]
/kernel/linux/linux-5.10/fs/ubifs/
Dmaster.c5 * Copyright (C) 2006-2008 Nokia Corporation.
17 * @c: UBIFS file-system description object
24 int ubifs_compare_master_node(struct ubifs_info *c, void *m1, void *m2) in ubifs_compare_master_node() argument
52 * @c: UBIFS file-system description object
64 static int mst_node_check_hash(const struct ubifs_info *c, in mst_node_check_hash() argument
71 crypto_shash_tfm_digest(c->hash_tfm, node + sizeof(struct ubifs_ch), in mst_node_check_hash()
75 if (ubifs_check_hash(c, expected, calc)) in mst_node_check_hash()
83 * @c: UBIFS file-system description object
90 static int scan_for_master(struct ubifs_info *c) in scan_for_master() argument
98 sleb = ubifs_scan(c, lnum, 0, c->sbuf, 1); in scan_for_master()
[all …]
Dsuper.c5 * Copyright (C) 2006-2008 Nokia Corporation.
65 * @c: UBIFS file-system description object
73 static int validate_inode(struct ubifs_info *c, const struct inode *inode) in validate_inode() argument
78 if (inode->i_size > c->max_inode_sz) { in validate_inode()
79 ubifs_err(c, "inode is too large (%lld)", in validate_inode()
85 ubifs_err(c, "unknown compression type %d", ui->compr_type); in validate_inode()
98 if (!ubifs_compr_present(c, ui->compr_type)) { in validate_inode()
99 ubifs_warn(c, "inode %lu uses '%s' compression, but it was not compiled in", in validate_inode()
100 inode->i_ino, ubifs_compr_name(c, ui->compr_type)); in validate_inode()
103 err = dbg_check_dir(c, inode); in validate_inode()
[all …]
Dsb.c5 * Copyright (C) 2006-2008 Nokia Corporation.
54 static int get_default_compressor(struct ubifs_info *c) in get_default_compressor() argument
56 if (ubifs_compr_present(c, UBIFS_COMPR_LZO)) in get_default_compressor()
59 if (ubifs_compr_present(c, UBIFS_COMPR_ZLIB)) in get_default_compressor()
67 * @c: UBIFS file-system description object
72 static int create_default_filesystem(struct ubifs_info *c) in create_default_filesystem() argument
91 /* Some functions called from here depend on the @c->key_len filed */ in create_default_filesystem()
92 c->key_len = UBIFS_SK_LEN; in create_default_filesystem()
98 if (c->leb_cnt < 0x7FFFFFFF / DEFAULT_JNL_PERCENT) in create_default_filesystem()
100 jnl_lebs = c->leb_cnt * DEFAULT_JNL_PERCENT / 100; in create_default_filesystem()
[all …]
Dlpt_commit.c5 * Copyright (C) 2006-2008 Nokia Corporation.
21 static int dbg_populate_lsave(struct ubifs_info *c);
25 * @c: UBIFS file-system description object
30 static struct ubifs_cnode *first_dirty_cnode(const struct ubifs_info *c, struct ubifs_nnode *nnode) in first_dirty_cnode() argument
32 ubifs_assert(c, nnode); in first_dirty_cnode()
56 * @c: UBIFS file-system description object
61 static struct ubifs_cnode *next_dirty_cnode(const struct ubifs_info *c, struct ubifs_cnode *cnode) in next_dirty_cnode() argument
66 ubifs_assert(c, cnode); in next_dirty_cnode()
76 return first_dirty_cnode(c, (struct ubifs_nnode *)cnode); in next_dirty_cnode()
84 * @c: UBIFS file-system description object
[all …]
/kernel/linux/linux-6.6/fs/ubifs/
Dmaster.c5 * Copyright (C) 2006-2008 Nokia Corporation.
17 * @c: UBIFS file-system description object
24 int ubifs_compare_master_node(struct ubifs_info *c, void *m1, void *m2) in ubifs_compare_master_node() argument
52 * @c: UBIFS file-system description object
64 static int mst_node_check_hash(const struct ubifs_info *c, in mst_node_check_hash() argument
71 crypto_shash_tfm_digest(c->hash_tfm, node + sizeof(struct ubifs_ch), in mst_node_check_hash()
75 if (ubifs_check_hash(c, expected, calc)) in mst_node_check_hash()
83 * @c: UBIFS file-system description object
90 static int scan_for_master(struct ubifs_info *c) in scan_for_master() argument
98 sleb = ubifs_scan(c, lnum, 0, c->sbuf, 1); in scan_for_master()
[all …]
Dsuper.c5 * Copyright (C) 2006-2008 Nokia Corporation.
65 * @c: UBIFS file-system description object
73 static int validate_inode(struct ubifs_info *c, const struct inode *inode) in validate_inode() argument
78 if (inode->i_size > c->max_inode_sz) { in validate_inode()
79 ubifs_err(c, "inode is too large (%lld)", in validate_inode()
85 ubifs_err(c, "unknown compression type %d", ui->compr_type); in validate_inode()
98 if (!ubifs_compr_present(c, ui->compr_type)) { in validate_inode()
99 ubifs_warn(c, "inode %lu uses '%s' compression, but it was not compiled in", in validate_inode()
100 inode->i_ino, ubifs_compr_name(c, ui->compr_type)); in validate_inode()
103 err = dbg_check_dir(c, inode); in validate_inode()
[all …]
Dsb.c5 * Copyright (C) 2006-2008 Nokia Corporation.
54 static int get_default_compressor(struct ubifs_info *c) in get_default_compressor() argument
56 if (ubifs_compr_present(c, UBIFS_COMPR_ZSTD)) in get_default_compressor()
59 if (ubifs_compr_present(c, UBIFS_COMPR_LZO)) in get_default_compressor()
62 if (ubifs_compr_present(c, UBIFS_COMPR_ZLIB)) in get_default_compressor()
70 * @c: UBIFS file-system description object
75 static int create_default_filesystem(struct ubifs_info *c) in create_default_filesystem() argument
94 /* Some functions called from here depend on the @c->key_len filed */ in create_default_filesystem()
95 c->key_len = UBIFS_SK_LEN; in create_default_filesystem()
101 if (c->leb_cnt < 0x7FFFFFFF / DEFAULT_JNL_PERCENT) in create_default_filesystem()
[all …]
Dlpt_commit.c5 * Copyright (C) 2006-2008 Nokia Corporation.
21 static int dbg_populate_lsave(struct ubifs_info *c);
25 * @c: UBIFS file-system description object
30 static struct ubifs_cnode *first_dirty_cnode(const struct ubifs_info *c, struct ubifs_nnode *nnode) in first_dirty_cnode() argument
32 ubifs_assert(c, nnode); in first_dirty_cnode()
56 * @c: UBIFS file-system description object
61 static struct ubifs_cnode *next_dirty_cnode(const struct ubifs_info *c, struct ubifs_cnode *cnode) in next_dirty_cnode() argument
66 ubifs_assert(c, cnode); in next_dirty_cnode()
76 return first_dirty_cnode(c, (struct ubifs_nnode *)cnode); in next_dirty_cnode()
84 * @c: UBIFS file-system description object
[all …]
/kernel/linux/linux-6.6/Documentation/admin-guide/media/
Dipu3_rcb.svg9C 5.519531 -1.15625 6.15625 -1.316406 6.59375 -1.640625 C 7.039062 -1.960938 7.265625 -2.441406 7.…
12C 6.4375 -9.5 7.398438 -9.109375 8.078125 -8.328125 C 8.753906 -7.546875 9.09375 -6.363281 9.09375…
15C 2.015625 -9.160156 2.609375 -9.273438 3.203125 -9.359375 C 3.796875 -9.441406 4.351562 -9.484375…
18C 7.015625 -2.644531 6.878906 -2.914062 6.609375 -3.125 C 6.335938 -3.34375 6 -3.53125 5.59375 -3.…
21C 9.203125 -3.910156 9.097656 -3.25 8.890625 -2.65625 C 8.679688 -2.0625 8.390625 -1.550781 8.0156…
24C 3.503906 -9.25 4.878906 -9.484375 6.265625 -9.484375 C 6.691406 -9.484375 7.097656 -9.460938 7.4…
33C 3.878906 0.09375 3.644531 0.0859375 3.375 0.078125 C 3.113281 0.0664062 2.847656 0.0507812 2.578…
36C 9.203125 -5.054688 9.054688 -4.082031 8.765625 -3.28125 C 8.484375 -2.476562 8.09375 -1.828125 7…
39C 8.84375 -0.203125 8.4375 -0.0859375 7.875 0.046875 C 7.320312 0.191406 6.664062 0.265625 5.90625…
42C 8.734375 -0.253906 8.234375 -0.0625 7.703125 0.0625 C 7.179688 0.195312 6.617188 0.265625 6.0156…
[all …]
/kernel/linux/linux-5.10/Documentation/admin-guide/media/
Dipu3_rcb.svg9C 5.519531 -1.15625 6.15625 -1.316406 6.59375 -1.640625 C 7.039062 -1.960938 7.265625 -2.441406 7.…
12C 6.4375 -9.5 7.398438 -9.109375 8.078125 -8.328125 C 8.753906 -7.546875 9.09375 -6.363281 9.09375…
15C 2.015625 -9.160156 2.609375 -9.273438 3.203125 -9.359375 C 3.796875 -9.441406 4.351562 -9.484375…
18C 7.015625 -2.644531 6.878906 -2.914062 6.609375 -3.125 C 6.335938 -3.34375 6 -3.53125 5.59375 -3.…
21C 9.203125 -3.910156 9.097656 -3.25 8.890625 -2.65625 C 8.679688 -2.0625 8.390625 -1.550781 8.0156…
24C 3.503906 -9.25 4.878906 -9.484375 6.265625 -9.484375 C 6.691406 -9.484375 7.097656 -9.460938 7.4…
33C 3.878906 0.09375 3.644531 0.0859375 3.375 0.078125 C 3.113281 0.0664062 2.847656 0.0507812 2.578…
36C 9.203125 -5.054688 9.054688 -4.082031 8.765625 -3.28125 C 8.484375 -2.476562 8.09375 -1.828125 7…
39C 8.84375 -0.203125 8.4375 -0.0859375 7.875 0.046875 C 7.320312 0.191406 6.664062 0.265625 5.90625…
42C 8.734375 -0.253906 8.234375 -0.0625 7.703125 0.0625 C 7.179688 0.195312 6.617188 0.265625 6.0156…
[all …]
/kernel/linux/linux-5.10/Documentation/userspace-api/media/
Dconf_nitpick.py23 ("c:func", "clock_gettime"),
24 ("c:func", "close"),
25 ("c:func", "container_of"),
26 ("c:func", "copy_from_user"),
27 ("c:func", "copy_to_user"),
28 ("c:func", "determine_valid_ioctls"),
29 ("c:func", "ERR_PTR"),
30 ("c:func", "i2c_new_client_device"),
31 ("c:func", "ioctl"),
32 ("c:func", "IS_ERR"),
[all …]
/kernel/linux/linux-6.6/Documentation/userspace-api/media/
Dconf_nitpick.py23 ("c:func", "clock_gettime"),
24 ("c:func", "close"),
25 ("c:func", "container_of"),
26 ("c:func", "copy_from_user"),
27 ("c:func", "copy_to_user"),
28 ("c:func", "determine_valid_ioctls"),
29 ("c:func", "ERR_PTR"),
30 ("c:func", "i2c_new_client_device"),
31 ("c:func", "ioctl"),
32 ("c:func", "IS_ERR"),
[all …]
/kernel/linux/linux-6.6/tools/power/cpupower/po/
Dcs.po4 # Copyright (C) 2007 kavol
23 #: utils/idle_monitor/nhm_idle.c:36
27 #: utils/idle_monitor/nhm_idle.c:43
31 #: utils/idle_monitor/nhm_idle.c:51
35 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70
39 #: utils/idle_monitor/snb_idle.c:33
43 #: utils/idle_monitor/snb_idle.c:40
47 #: utils/idle_monitor/snb_idle.c:47
51 #: utils/idle_monitor/amd_fam14h_idle.c:56
55 #: utils/idle_monitor/amd_fam14h_idle.c:63
[all …]
Dpt.po2 # Copyright (C) 2008 THE cpufrequtils'S COPYRIGHT HOLDER
18 #: utils/idle_monitor/nhm_idle.c:36
22 #: utils/idle_monitor/nhm_idle.c:43
26 #: utils/idle_monitor/nhm_idle.c:51
30 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70
34 #: utils/idle_monitor/snb_idle.c:33
38 #: utils/idle_monitor/snb_idle.c:40
42 #: utils/idle_monitor/snb_idle.c:47
46 #: utils/idle_monitor/amd_fam14h_idle.c:56
50 #: utils/idle_monitor/amd_fam14h_idle.c:63
[all …]
Dit.po2 # Copyright (C) 2004-2009
20 #: utils/idle_monitor/nhm_idle.c:36
24 #: utils/idle_monitor/nhm_idle.c:43
28 #: utils/idle_monitor/nhm_idle.c:51
32 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70
36 #: utils/idle_monitor/snb_idle.c:33
40 #: utils/idle_monitor/snb_idle.c:40
44 #: utils/idle_monitor/snb_idle.c:47
48 #: utils/idle_monitor/amd_fam14h_idle.c:56
52 #: utils/idle_monitor/amd_fam14h_idle.c:63
[all …]
Dfr.po2 # Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER
20 #: utils/idle_monitor/nhm_idle.c:36
24 #: utils/idle_monitor/nhm_idle.c:43
28 #: utils/idle_monitor/nhm_idle.c:51
32 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70
36 #: utils/idle_monitor/snb_idle.c:33
40 #: utils/idle_monitor/snb_idle.c:40
44 #: utils/idle_monitor/snb_idle.c:47
48 #: utils/idle_monitor/amd_fam14h_idle.c:56
52 #: utils/idle_monitor/amd_fam14h_idle.c:63
[all …]
/kernel/linux/linux-5.10/tools/power/cpupower/po/
Dcs.po4 # Copyright (C) 2007 kavol
23 #: utils/idle_monitor/nhm_idle.c:36
27 #: utils/idle_monitor/nhm_idle.c:43
31 #: utils/idle_monitor/nhm_idle.c:51
35 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70
39 #: utils/idle_monitor/snb_idle.c:33
43 #: utils/idle_monitor/snb_idle.c:40
47 #: utils/idle_monitor/snb_idle.c:47
51 #: utils/idle_monitor/amd_fam14h_idle.c:56
55 #: utils/idle_monitor/amd_fam14h_idle.c:63
[all …]
Dpt.po2 # Copyright (C) 2008 THE cpufrequtils'S COPYRIGHT HOLDER
18 #: utils/idle_monitor/nhm_idle.c:36
22 #: utils/idle_monitor/nhm_idle.c:43
26 #: utils/idle_monitor/nhm_idle.c:51
30 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70
34 #: utils/idle_monitor/snb_idle.c:33
38 #: utils/idle_monitor/snb_idle.c:40
42 #: utils/idle_monitor/snb_idle.c:47
46 #: utils/idle_monitor/amd_fam14h_idle.c:56
50 #: utils/idle_monitor/amd_fam14h_idle.c:63
[all …]
Dit.po2 # Copyright (C) 2004-2009
20 #: utils/idle_monitor/nhm_idle.c:36
24 #: utils/idle_monitor/nhm_idle.c:43
28 #: utils/idle_monitor/nhm_idle.c:51
32 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70
36 #: utils/idle_monitor/snb_idle.c:33
40 #: utils/idle_monitor/snb_idle.c:40
44 #: utils/idle_monitor/snb_idle.c:47
48 #: utils/idle_monitor/amd_fam14h_idle.c:56
52 #: utils/idle_monitor/amd_fam14h_idle.c:63
[all …]
Dfr.po2 # Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER
20 #: utils/idle_monitor/nhm_idle.c:36
24 #: utils/idle_monitor/nhm_idle.c:43
28 #: utils/idle_monitor/nhm_idle.c:51
32 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70
36 #: utils/idle_monitor/snb_idle.c:33
40 #: utils/idle_monitor/snb_idle.c:40
44 #: utils/idle_monitor/snb_idle.c:47
48 #: utils/idle_monitor/amd_fam14h_idle.c:56
52 #: utils/idle_monitor/amd_fam14h_idle.c:63
[all …]

12345678910>>...698