Searched refs:split (Results 26 - 50 of 211) sorted by relevance

123456789

/linux-master/Documentation/sphinx/
H A Dkerneldoc.py84 export_file_patterns = str(self.options.get('export')).split()
87 export_file_patterns = str(self.options.get('internal')).split()
91 identifiers = self.options.get('identifiers').split()
99 no_identifiers = self.options.get('no-identifiers').split()
H A Dkernel_abi.py101 for l in lines.split("\n"):
110 for line in lines.split("\n"):
/linux-master/tools/perf/scripts/python/
H A Dmem-phys-addr.py34 m = re.split('-|:',j,2)
87 m = re.split('-|:',j,2)
/linux-master/tools/hv/
H A Dlsvmbus72 chn_vp_mapping, key=lambda c: int(c.split(':')[0]))
76 (c.split(':')[0], c.split(':')[1]) for c in chn_vp_mapping
/linux-master/arch/x86/events/amd/
H A Duncore.c69 } split; member in union:amd_uncore_info
394 return info->split.cid;
401 return info->split.gid;
408 return info->split.num_pmcs;
639 info.split.aux_data = 0;
640 info.split.num_pmcs = NUM_COUNTERS_NB;
641 info.split.gid = 0;
642 info.split.cid = topology_die_id(cpu);
646 info.split.num_pmcs = ebx.split
[all...]
/linux-master/arch/x86/include/asm/
H A Dperf_event.h155 } split; member in union:cpuid10_eax
168 } split; member in union:cpuid10_ebx
179 } split; member in union:cpuid10_edx
203 } split; member in union:cpuid28_eax
215 } split; member in union:cpuid28_ebx
230 } split; member in union:cpuid28_ecx
248 } split; member in union:cpuid_0x80000022_ebx
/linux-master/Documentation/driver-api/media/drivers/ccs/
H A Dmk-ccs-regs202 $args = [split /,\s*/, $args];
214 my @l = split "\n", $_;
290 my ($bit, $addr) = split /\t+/;
295 my @a = split /\s+/;
306 my ($enum, $addr) = split /\s+/;
310 my ($arg, $min, $max, $elsize, @discontig) = split /\s+/;
344 my ($lim, $offset) = split /,/, $d->[0];
372 my ($first_discontig) = split /,/, $da->{discontig}->[0];
400 my ($name, $addr, @flags) = split /\t+/, $_;
/linux-master/security/apparmor/include/
H A Dlib.h28 * split individual debug cases out in preparation for finer grained
161 char *split; local
164 for (split = strstr(hname, "//"); split; split = strstr(hname, "//"))
165 hname = split + 2;
/linux-master/security/apparmor/
H A Dpolicy.c448 char *split; local
452 for (split = strstr(hname, "//"); split;) {
454 split - hname);
458 hname = split + 2;
459 split = strstr(hname, "//");
483 char *split; local
490 for (split = strstr(hname, "//"); split;) {
493 split
531 const char *split; local
[all...]
/linux-master/arch/x86/kvm/vmx/
H A Dpmu_intel.c479 pmu->version = eax.split.version_id;
483 pmu->nr_arch_gp_counters = min_t(int, eax.split.num_counters,
485 eax.split.bit_width = min_t(int, eax.split.bit_width,
487 pmu->counter_bitmask[KVM_PMC_GP] = ((u64)1 << eax.split.bit_width) - 1;
488 eax.split.mask_length = min_t(int, eax.split.mask_length,
491 ((1ull << eax.split.mask_length) - 1);
496 pmu->nr_arch_fixed_counters = min_t(int, edx.split.num_counters_fixed,
498 edx.split
[all...]
/linux-master/tools/testing/selftests/kvm/lib/aarch64/
H A Dgic.c103 void gic_set_eoi_split(bool split) argument
106 gic_common_ops->gic_set_eoi_split(split);
/linux-master/lib/zstd/compress/
H A Dzstd_ldm.c89 * Registers in the splits array all the split points found in the first
291 BYTE const* const split = ip + splits[n] - minMatchLength; local
292 U64 const xxhash = xxh64(split, minMatchLength, 0);
296 entry.offset = (U32)(split - base);
369 BYTE const* const split = ip + splits[n] - minMatchLength; local
370 U64 const xxhash = xxh64(split, minMatchLength, 0);
373 candidates[n].split = split;
384 BYTE const* const split = candidates[n].split; local
[all...]
/linux-master/tools/perf/util/
H A Dsetup.py8 cc_tokens = cc.split()
61 cflags = getenv('CFLAGS', '').split()
/linux-master/drivers/md/dm-vdo/indexer/
H A Dvolume-index.c319 struct split_config *split)
325 split->hook_config = *config;
326 split->hook_geometry = *config->geometry;
327 split->hook_config.geometry = &split->hook_geometry;
328 split->non_hook_config = *config;
329 split->non_hook_geometry = *config->geometry;
330 split->non_hook_config.geometry = &split->non_hook_geometry;
338 split
318 split_configuration(const struct uds_configuration *config, struct split_config *split) argument
351 struct split_config split; local
1226 struct split_config split; local
[all...]
/linux-master/lib/
H A Dbuild_OID_registry53 my @components = split(/[.]/, $oid);
93 my @components = split(/[.]/, $oids[$i]);
/linux-master/sound/usb/line6/
H A Dmidibuf.c49 int line6_midibuf_init(struct midi_buffer *this, int size, int split) argument
57 this->split = split;
213 if (!this->split)
/linux-master/scripts/dtc/
H A Dof_unittest_expect21 (undef, $script_name) = split(/^.*\//, $0);
38 ($expect_next, $type) = split(/<</, $expect);
39 ($type) = split(/>>/, $type);
268 ($timestamp, $null) = split(/]/, $line);
/linux-master/tools/cgroup/
H A Dmemcg_shrinker.py31 items = line.split(' ')
/linux-master/tools/testing/selftests/hid/tests/
H A Dconftest.py69 for line in p.stdout.split("\n"):
/linux-master/fs/bcachefs/
H A Dio_write_types.h27 unsigned split:1,
/linux-master/drivers/gpu/drm/ci/xfails/
H A Dupdate-xfails.py14 return re.split(r" \d+/\d+", job_name)[0]
27 unit_test_name, unit_test_result = unit_test.strip().split(",")
99 xfails[job_name][job_id] = xfails[job_name][job_id].strip().split("\n")
104 path_components = parsed_url.path.strip("/").split("/")
/linux-master/scripts/
H A Dshow_delta48 # split on closing bracket
49 (time_str, rest) = string.split(line[1:],']',1)
H A Dcheckkconfigsymbols.py147 split = args.diff.split("..")
148 commit_a = split[0]
149 commit_b = split[1]
200 commit = commit.split(" ", 1)
241 return [x for x in commits.split("\n") if x]
447 line = line.split("#")[0] # ignore comments
/linux-master/scripts/gdb/linux/
H A Dvmalloc.py43 gdb.write(" %s" % str(v['caller']).split(' ')[-1])
/linux-master/arch/x86/events/zhaoxin/
H A Dcore.c522 if (eax.split.mask_length < ARCH_PERFMON_EVENTS_COUNT - 1)
525 version = eax.split.version_id;
533 x86_pmu.num_counters = eax.split.num_counters;
534 x86_pmu.cntval_bits = eax.split.bit_width;
535 x86_pmu.cntval_mask = (1ULL << eax.split.bit_width) - 1;
537 x86_pmu.events_mask_len = eax.split.mask_length;
539 x86_pmu.num_counters_fixed = edx.split.num_counters_fixed;

Completed in 396 milliseconds

123456789