Home
last modified time | relevance | path

Searched refs:split (Results 276 - 300 of 3414) sorted by relevance

1...<<11121314151617181920>>...137

/kernel/linux/linux-6.6/arch/x86/events/zhaoxin/
H A Dcore.c522 if (eax.split.mask_length < ARCH_PERFMON_EVENTS_COUNT - 1) in zhaoxin_pmu_init()
525 version = eax.split.version_id; in zhaoxin_pmu_init()
533 x86_pmu.num_counters = eax.split.num_counters; in zhaoxin_pmu_init()
534 x86_pmu.cntval_bits = eax.split.bit_width; in zhaoxin_pmu_init()
535 x86_pmu.cntval_mask = (1ULL << eax.split.bit_width) - 1; in zhaoxin_pmu_init()
537 x86_pmu.events_mask_len = eax.split.mask_length; in zhaoxin_pmu_init()
539 x86_pmu.num_counters_fixed = edx.split.num_counters_fixed; in zhaoxin_pmu_init()
/kernel/linux/linux-6.6/scripts/
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
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_merge_regs.c55 * register allocation we may have to split the live interval.
120 value.offset += instr->split.off * reg_elem_size(value.reg); in chase_copies()
378 struct ir3_instruction *split) in aggressive_coalesce_split()
380 try_merge_defs(live, split->srcs[0]->def, split->dsts[0], in aggressive_coalesce_split()
381 split->split.off * reg_elem_size(split->dsts[0])); in aggressive_coalesce_split()
559 /* Second pass: aggressively coalesce parallelcopy, split, collect */ in ir3_merge_regs()
377 aggressive_coalesce_split(struct ir3_liveness *live, struct ir3_instruction *split) aggressive_coalesce_split() argument
/base/security/selinux_adapter/scripts/selinux_check/
H A Dcheck_baseline.py47 elem_list = sub_string.split(' ')
91 elem_list = sub_string.split(' ')
104 elem_list = sub_string.split(' ')
114 elem_list = sub_string.split(' ')
123 elem_list = sub_string.split(' ')
/kernel/linux/linux-5.10/scripts/
H A Dbpf_helpers_doc.py52 args = capture.group(4).split(', ')
388 for line in re.sub('\n$', '', helper.desc, count=1).split('\n'):
393 for line in helper.ret.rstrip().split('\n'):
543 for line in re.sub('\n$', '', helper.desc, count=1).split('\n'):
549 for line in helper.ret.rstrip().split('\n'):
/test/testfwk/developer_test/src/core/testcase/
H A Dtestcase_manager.py61 testsuit_list = testsuit.split(',')
73 temp_list = suitfile_subpath.split(os.sep)
225 command_list = options.current_raw_cmd.split(" ")
269 testsuit_list = options.testsuit.split(";")
323 testsuit_list = options.testsuit.split(";")
/third_party/libsnd/Octave/
H A Dsndfile.cc377 std::vector <std::string> split ; in format_of_str() local
379 str_split (fmt, "-", split) ; in format_of_str()
381 if (split.size () != 2) in format_of_str()
384 int major_fmt = major_format_of_hash (split.at (0)) ; in format_of_str()
388 int minor_fmt = minor_format_of_hash (split.at (1)) ; in format_of_str()
/third_party/markupsafe/
H A D__init__.py122 def split( # type: ignore[override] member in Markup
125 return [self.__class__(v) for v in super().split(sep, maxsplit)]
127 split.__doc__ = str.split.__doc__
196 value = " ".join(value.split())
/third_party/mbedtls/tests/scripts/
H A Danalyze_outcomes.py80 ret_val = subprocess.run(shell_command.split(), check=False).returncode
141 (full_test_suite, test_string) = suite_case.split(';')
142 test_suite = full_test_suite.split('.')[0] # retrieve main part of test suite name
173 (_platform, component, suite, case, result, _cause) = line.split(';')
675 tasks_list = re.split(r'[, ]+', options.specified_tasks)
/third_party/node/tools/gyp/tools/
H A Dpretty_vcproj.py145 path_list = value.split(";")
169 sorted_list = sorted(value.split(";"))
226 return FixFilenames(vsprops.split(";"), os.path.dirname(filename))
302 (key, value) = argv[i].split("=")
316 vsprops.strip().split(";"), os.path.dirname(argv[1])
/third_party/node/deps/npm/node_modules/hosted-git-info/lib/
H A Dhosts.js53 let [, user, project, type, committish] = url.pathname.split('/', 5)
85 let [, user, project, aux] = url.pathname.split('/', 4)
118 const segments = path.split('/')
166 let [, user, project, aux] = url.pathname.split('/', 4)
204 let [, user, project, aux] = url.pathname.split('/', 4)
/third_party/ltp/testcases/network/nfsv4/acl/
H A Drandom_gen.py79 splitedline = line.split(':')
91 tmp = u.split('\n')
102 splitedline = line.split(':');
120 splitedline = line.split(':');
134 splitedline = line.split(':');
/third_party/python/Lib/test/
H A Dtest_shlex.py140 self.data = [x.split("|")[:-1]
142 self.posix_data = [x.split("|")[:-1]
151 l = shlex.split(data[i][0], comments=comments)
168 shlex.split(None)
257 """Test that tokens are split with types as expected."""
358 resplit = shlex.split(joined)
370 if not getattr(shlex, "split", None):
/third_party/rust/crates/version_check/src/
H A Dlib.rs99 let mut components = last_line.trim().split(" "); in version_and_date_from_rustc_version()
110 let split = |s: &str| s.splitn(2, ":").nth(1).map(|s| s.trim().to_string()); in version_and_date_from_rustc_verbose_version()
111 match line.trim().split(" ").nth(0) { in version_and_date_from_rustc_verbose_version()
117 Some("release:") => version = split(line), in version_and_date_from_rustc_verbose_version()
119 Some("commit-date:") => date = split(line), in version_and_date_from_rustc_verbose_version()
304 let allow_features = rustflags.split(delim) in supports_feature()
310 return Some(allow_features.split(',').any(|f| f.trim() == feature)); in supports_feature()
/third_party/ffmpeg/libavcodec/
H A Dmss2.c69 int split = (n << 1) - range; in arith2_get_scaled_value() local
71 if (value > split) in arith2_get_scaled_value()
72 return split + (value - split >> 1); in arith2_get_scaled_value()
80 int split = (n << 1) - range; in arith2_rescale_interval() local
82 if (high > split) in arith2_rescale_interval()
83 c->high = split + (high - split << 1); in arith2_rescale_interval()
89 if (low > split) in arith2_rescale_interval()
90 c->low += split in arith2_rescale_interval()
[all...]
/third_party/python/Tools/stringbench/
H A Dstringbench.py497 #### Same for split(s, 1)
499 @bench('("A"*1000).split("A", 1)', "early match, single character", 1000)
503 s1_split = s1.split
507 @bench('("A"*1000).split("B", 1)', "no match, single character", 1000)
511 s1_split = s1.split
516 @bench('("AB"*1000).split("AB", 1)', "early match, two characters", 1000)
520 s1_split = s1.split
524 @bench('("AB"*1000).split("BC", 1)', "no match, two characters", 1000)
528 s1_split = s1.split
532 @bench('("AB"*300+"C").split("B
[all...]
/kernel/linux/linux-5.10/tools/perf/scripts/python/
H A Dnet_dropmonitor.py28 loc = int(line.split()[0], 16)
29 name = line.split()[2]
/kernel/linux/linux-6.6/tools/perf/scripts/python/
H A Dnet_dropmonitor.py28 loc = int(line.split()[0], 16)
29 name = line.split()[2]
/test/xts/tools/build/
H A Dtest_package_select.py37 selected_subsystem = dep.split('=')[1]
40 for item in selected_subsystem.split(','):
/third_party/mesa3d/docs/_exts/
H A Dformatting.py10 envvar, t, default = sig.split(" ", 2)
22 opcode, desc = sig.split("-", 1)
/third_party/jerryscript/tests/jerry/
H A Dregression-test-issue-786.js22 try { Array.prototype.join(String.prototype.split) } catch (err) { }
24 try { isNaN.apply(Date.prototype.toISOString, String.prototype.split) } catch (err) { }
/third_party/node/test/parallel/
H A Dtest-inspect-publish-uid.js17 const hasHttp = argValue.split(',').includes('http');
18 const hasStderr = argValue.split(',').includes('stderr');
/third_party/node/deps/v8/tools/
H A Dobjdump-v848 pieces = line.split(None, 3)
70 addr = int(line.split()[0], 0)
/third_party/python/Tools/c-analyzer/c_parser/parser/
H A D_regexes.py103 _KEYWORD = ''.join(_KEYWORD.split())
140 _STORAGE = 'auto register static extern'.split()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dcheck-includes.py7 HBHEADERS = [os.path.basename (x) for x in os.getenv ('HBHEADERS', '').split ()] or \
9 HBSOURCES = [os.path.basename (x) for x in os.getenv ('HBSOURCES', '').split ()] or \

Completed in 16 milliseconds

1...<<11121314151617181920>>...137