| /kernel/linux/linux-5.10/arch/arm/mach-omap2/ |
| D | pmic-cpcap.c | 21 * omap_cpcap_vsel_to_vdc - convert CPCAP VSEL value to microvolts DC 22 * @vsel: CPCAP VSEL value to convert 35 * omap_cpcap_uv_to_vsel - convert microvolts DC to CPCAP VSEL value 36 * @uv: microvolts DC to convert 85 * omap_max8952_vsel_to_vdc - convert MAX8952 VSEL value to microvolts DC 86 * @vsel: MAX8952 VSEL value to convert 99 * omap_max8952_uv_to_vsel - convert microvolts DC to MAX8952 VSEL value 100 * @uv: microvolts DC to convert 132 * omap_fan5355_vsel_to_vdc - convert FAN535503 VSEL value to microvolts DC 133 * @vsel: FAN535503 VSEL value to convert [all …]
|
| /kernel/linux/linux-6.6/arch/arm/mach-omap2/ |
| D | pmic-cpcap.c | 21 * omap_cpcap_vsel_to_vdc - convert CPCAP VSEL value to microvolts DC 22 * @vsel: CPCAP VSEL value to convert 35 * omap_cpcap_uv_to_vsel - convert microvolts DC to CPCAP VSEL value 36 * @uv: microvolts DC to convert 85 * omap_max8952_vsel_to_vdc - convert MAX8952 VSEL value to microvolts DC 86 * @vsel: MAX8952 VSEL value to convert 99 * omap_max8952_uv_to_vsel - convert microvolts DC to MAX8952 VSEL value 100 * @uv: microvolts DC to convert 132 * omap_fan5355_vsel_to_vdc - convert FAN535503 VSEL value to microvolts DC 133 * @vsel: FAN535503 VSEL value to convert [all …]
|
| /kernel/linux/linux-6.6/tools/perf/Documentation/ |
| D | perf-data.txt | 19 convert:: 21 It's possible to set data-convert debug variable to get debug messages from conversion, 23 perf --debug data-convert data convert ... 25 OPTIONS for 'convert' 34 Convert time to wall clock time. 48 Convert all events, including non-sample events (comm, fork, ...), to output. 49 Default is off, only convert samples.
|
| /kernel/linux/linux-5.10/tools/perf/Documentation/ |
| D | perf-data.txt | 19 convert:: 21 It's possible to set data-convert debug variable to get debug messages from conversion, 23 perf --debug data-convert data convert ... 25 OPTIONS for 'convert' 31 Convert time to wall clock time. 45 Convert all events, including non-sample events (comm, fork, ...), to output. 46 Default is off, only convert samples.
|
| /kernel/linux/linux-5.10/fs/ntfs/ |
| D | time.h | 19 * utc2ntfs - convert Linux UTC time to NTFS time 20 * @ts: Linux UTC time to convert to NTFS time 22 * Convert the Linux UTC time @ts to its corresponding NTFS time and return 37 * Convert the seconds to 100ns intervals, add the nano-seconds in utc2ntfs() 47 * Get the current time from the Linux kernel, convert it to its corresponding 59 * ntfs2utc - convert NTFS time to Linux time 60 * @time: NTFS time (little endian) to convert to Linux UTC 62 * Convert the little endian NTFS time @time to its corresponding Linux UTC 81 * Convert the time to 1-second intervals and the remainder to in ntfs2utc()
|
| /kernel/linux/linux-6.6/fs/ntfs/ |
| D | time.h | 19 * utc2ntfs - convert Linux UTC time to NTFS time 20 * @ts: Linux UTC time to convert to NTFS time 22 * Convert the Linux UTC time @ts to its corresponding NTFS time and return 37 * Convert the seconds to 100ns intervals, add the nano-seconds in utc2ntfs() 47 * Get the current time from the Linux kernel, convert it to its corresponding 59 * ntfs2utc - convert NTFS time to Linux time 60 * @time: NTFS time (little endian) to convert to Linux UTC 62 * Convert the little endian NTFS time @time to its corresponding Linux UTC 81 * Convert the time to 1-second intervals and the remainder to in ntfs2utc()
|
| /kernel/linux/linux-5.10/security/selinux/ss/ |
| D | sidtab.c | 44 s->convert = NULL; in sidtab_init() 269 struct sidtab_convert_params *convert; in sidtab_context_to_sid() local 295 convert = s->convert; in sidtab_context_to_sid() 316 * if we are building a new sidtab, we need to convert the context in sidtab_context_to_sid() 319 if (convert) { in sidtab_context_to_sid() 321 dst_convert = sidtab_do_lookup(convert->target, count, 1); in sidtab_context_to_sid() 327 rc = convert->func(context, &dst_convert->context, in sidtab_context_to_sid() 328 convert->args, GFP_ATOMIC); in sidtab_context_to_sid() 335 convert->target->count = count + 1; in sidtab_context_to_sid() 337 hash_add_rcu(convert->target->context_to_sid, in sidtab_context_to_sid() [all …]
|
| /kernel/linux/linux-5.10/fs/xfs/libxfs/ |
| D | xfs_dir2.h | 27 * Convert inode mode to directory entry filetype 104 * Convert dataptr to byte in file space 113 * Convert byte in file space to dataptr. It had better be aligned. 122 * Convert byte in space to (DB) block 131 * Convert dataptr to a block number 140 * Convert byte in space to offset in a block 149 * Convert dataptr to a byte offset in a block 158 * Convert block and offset to byte in space 168 * Convert block (DB) to block (dablk) 177 * Convert byte in space to (DA) block [all …]
|
| /kernel/linux/linux-5.10/tools/perf/tests/ |
| D | bitmap.c | 45 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1")); in test__bitmap_print() 46 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1,5")); in test__bitmap_print() 47 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1,3,5,7,9,11,13,15,17,19,21-40")); in test__bitmap_print() 48 TEST_ASSERT_VAL("failed to convert map", test_bitmap("2-5")); in test__bitmap_print() 49 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1,3-6,8-10,24,35-37")); in test__bitmap_print() 50 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1,3-6,8-10,24,35-37")); in test__bitmap_print() 51 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1-10,12-20,22-30,32-40")); in test__bitmap_print()
|
| D | cpumap.c | 114 TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1")); in test__cpu_map_print() 115 TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1,5")); in test__cpu_map_print() 116 TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1,3,5,7,9,11,13,15,17,19,21-40")); in test__cpu_map_print() 117 TEST_ASSERT_VAL("failed to convert map", cpu_map_print("2-5")); in test__cpu_map_print() 118 TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1,3-6,8-10,24,35-37")); in test__cpu_map_print() 119 TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1,3-6,8-10,24,35-37")); in test__cpu_map_print() 120 TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1-10,12-20,22-30,32-40")); in test__cpu_map_print()
|
| /kernel/linux/linux-5.10/fs/ocfs2/dlm/ |
| D | dlmconvert.c | 122 mlog(ML_ERROR, "attempted to convert a lock with a lock " in __dlmconvert_master() 128 /* must be on grant queue to convert */ in __dlmconvert_master() 130 mlog(ML_ERROR, "attempted to convert a lock not on grant " in __dlmconvert_master() 139 /* EX + LKM_VALBLK + convert == set lvb */ in __dlmconvert_master() 195 mlog(0, "doing in-place convert for nonlocal lock\n"); in __dlmconvert_master() 212 mlog(0, "failed to convert NOQUEUE lock %.*s from " in __dlmconvert_master() 283 mlog(0, "last convert request returned DLM_RECOVERING, but " in dlmconvert_remote() 295 /* move lock to local convert queue */ in dlmconvert_remote() 325 * DLM_RECOVERING and retry convert */ in dlmconvert_remote() 332 "to granted list, retry convert.\n", in dlmconvert_remote() [all …]
|
| /kernel/linux/linux-6.6/fs/ocfs2/dlm/ |
| D | dlmconvert.c | 120 mlog(ML_ERROR, "attempted to convert a lock with a lock " in __dlmconvert_master() 126 /* must be on grant queue to convert */ in __dlmconvert_master() 128 mlog(ML_ERROR, "attempted to convert a lock not on grant " in __dlmconvert_master() 137 /* EX + LKM_VALBLK + convert == set lvb */ in __dlmconvert_master() 193 mlog(0, "doing in-place convert for nonlocal lock\n"); in __dlmconvert_master() 210 mlog(0, "failed to convert NOQUEUE lock %.*s from " in __dlmconvert_master() 281 mlog(0, "last convert request returned DLM_RECOVERING, but " in dlmconvert_remote() 293 /* move lock to local convert queue */ in dlmconvert_remote() 323 * DLM_RECOVERING and retry convert */ in dlmconvert_remote() 330 "to granted list, retry convert.\n", in dlmconvert_remote() [all …]
|
| /kernel/linux/linux-6.6/tools/perf/tests/ |
| D | bitmap.c | 45 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1")); in test__bitmap_print() 46 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1,5")); in test__bitmap_print() 47 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1,3,5,7,9,11,13,15,17,19,21-40")); in test__bitmap_print() 48 TEST_ASSERT_VAL("failed to convert map", test_bitmap("2-5")); in test__bitmap_print() 49 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1,3-6,8-10,24,35-37")); in test__bitmap_print() 50 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1,3-6,8-10,24,35-37")); in test__bitmap_print() 51 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1-10,12-20,22-30,32-40")); in test__bitmap_print()
|
| /kernel/linux/linux-6.6/fs/xfs/libxfs/ |
| D | xfs_dir2.h | 27 * Convert inode mode to directory entry filetype 104 * Convert dataptr to byte in file space 113 * Convert byte in file space to dataptr. It had better be aligned. 122 * Convert byte in space to (DB) block 131 * Convert dataptr to a block number 140 * Convert byte in space to offset in a block 149 * Convert dataptr to a byte offset in a block 158 * Convert block and offset to byte in space 168 * Convert block (DB) to block (dablk) 177 * Convert byte in space to (DA) block [all …]
|
| /kernel/linux/linux-6.6/security/selinux/ss/ |
| D | sidtab.c | 45 s->convert = NULL; in sidtab_init() 270 struct sidtab_convert_params *convert; in sidtab_context_to_sid() local 316 * if we are building a new sidtab, we need to convert the context in sidtab_context_to_sid() 319 convert = s->convert; in sidtab_context_to_sid() 320 if (convert) { in sidtab_context_to_sid() 321 struct sidtab *target = convert->target; in sidtab_context_to_sid() 330 rc = services_convert_context(convert->args, in sidtab_context_to_sid() 378 struct sidtab_convert_params *convert) in sidtab_convert_tree() argument 395 convert); in sidtab_convert_tree() 409 rc = services_convert_context(convert->args, in sidtab_convert_tree() [all …]
|
| /kernel/linux/linux-6.6/tools/perf/ |
| D | builtin-data.c | 8 #include "data-convert.h" 24 static const char * const data_subcommands[] = { "convert", NULL }; 27 "perf data convert [<options>]", 41 OPT_STRING(0, "to-json", &to_json, NULL, "Convert to JSON format"), 43 OPT_STRING(0, "to-ctf", &to_ctf, NULL, "Convert to CTF format"), 44 OPT_BOOLEAN(0, "tod", &opts.tod, "Convert time to wall clock time"), 47 OPT_BOOLEAN(0, "all", &opts.all, "Convert all events"), 96 { "convert", "converts data file between formats", cmd_data_convert },
|
| /kernel/linux/linux-5.10/tools/perf/ |
| D | builtin-data.c | 9 #include "data-convert.h" 10 #include "data-convert-bt.h" 29 static const char * const data_subcommands[] = { "convert", NULL }; 52 "perf data convert [<options>]", 67 OPT_STRING(0, "to-ctf", &to_ctf, NULL, "Convert to CTF format"), in cmd_data_convert() 68 OPT_BOOLEAN(0, "tod", &opts.tod, "Convert time to wall clock time"), in cmd_data_convert() 71 OPT_BOOLEAN(0, "all", &opts.all, "Convert all events"), in cmd_data_convert() 100 { "convert", "converts data file between formats", cmd_data_convert },
|
| /kernel/linux/linux-5.10/drivers/net/ethernet/huawei/hinic/ |
| D | hinic_common.c | 14 * hinic_cpu_to_be32 - convert data to big endian 32 bit format 15 * @data: the data to convert 16 * @len: length of data to convert 32 * hinic_be32_to_cpu - convert data from big endian 32 bit format 33 * @data: the data to convert 34 * @len: length of data to convert
|
| /kernel/linux/linux-6.6/drivers/net/ethernet/huawei/hinic/ |
| D | hinic_common.c | 14 * hinic_cpu_to_be32 - convert data to big endian 32 bit format 15 * @data: the data to convert 16 * @len: length of data to convert 32 * hinic_be32_to_cpu - convert data from big endian 32 bit format 33 * @data: the data to convert 34 * @len: length of data to convert
|
| /kernel/linux/linux-6.6/Documentation/sphinx/ |
| D | kfigure.py | 34 For conversion to PDF, ``rsvg-convert(1)`` of librsvg 39 - ``convert(1)``: ImageMagick (https://www.imagemagick.org) 119 # ImageMagick' convert(1) support 122 # librsvg's rsvg-convert(1) support 182 convert_cmd = which('convert') 183 rsvg_convert_cmd = which('rsvg-convert') 213 kernellog.verbose(app, "use convert(1) from: " + convert_cmd) 216 "Neither inkscape(1) nor convert(1) found.\n" 222 kernellog.verbose(app, "use rsvg-convert(1) from: " + rsvg_convert_cmd) 223 kernellog.verbose(app, "use 'dot -Tsvg' and rsvg-convert(1) for DOT -> PDF conversion") [all …]
|
| /kernel/linux/linux-6.6/kernel/time/ |
| D | time.c | 369 * jiffies_to_msecs - Convert jiffies to milliseconds 395 * jiffies_to_usecs - Convert jiffies to microseconds 422 * @year0: year to convert 423 * @mon0: month to convert 424 * @day: day to convert 425 * @hour: hour to convert 426 * @min: minute to convert 427 * @sec: second to convert 518 * ns_to_timespec64 - Convert nanoseconds to timespec64 546 * __msecs_to_jiffies: - convert milliseconds to jiffies [all …]
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/sound/ |
| D | simple-card.yaml | 65 convert-rate: 66 description: CPU to Codec rate convert. 69 convert-channels: 187 "^simple-audio-card,convert-rate$": 188 $ref: "#/definitions/convert-rate" 189 "^simple-audio-card,convert-channels$": 190 $ref: "#/definitions/convert-channels" 224 convert-rate: 225 $ref: "#/definitions/convert-rate" 226 convert-channels: [all …]
|
| /kernel/liteos_m/testsuites/unittest/posix/src/stdlib/ |
| D | atoi_test.c | 70 * @tc.name : convert string to integer 87 * @tc.name : convert string to integer 104 * @tc.name : convert string to integer 122 * @tc.name : convert string to integer 139 * @tc.name : convert string to integer 157 * @tc.name : convert string to integer 174 * @tc.name : convert string to integer 191 * @tc.name : convert string to integer 208 * @tc.name : convert string to integer 226 * @tc.name : convert string to integer
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/sound/ |
| D | audio-graph-port.yaml | 18 convert-rate: 20 convert-channels: 22 convert-sample-format: 71 convert-rate: 73 convert-channels: 75 convert-sample-format:
|
| /kernel/linux/linux-5.10/drivers/media/usb/pvrusb2/ |
| D | pvrusb2-ctrl.h | 69 /* Convert a given mask/val to a custom symbolic value */ 75 /* Convert a symbolic value to a mask/value pair */ 80 /* Convert a given mask/val to a symbolic value */ 86 /* Convert a symbolic value to a mask/value pair */ 91 /* Convert a given mask/val to a symbolic value - must already be
|