/third_party/mesa3d/bin/ |
H A D | symbols-check.py | 39 fields = line.split() 62 fields = line.split() 77 symbol_name = symbol_name[1:].split('@')[0] 123 line = line.split('#')[0] 133 fields = line.split()
|
/third_party/node/deps/v8/tools/generate_shim_headers/ |
H A D | generate_shim_headers.py | 77 include_after) = header_spec.split(';', 2) 88 key, value = define.split('=', 1) 96 for header in include_before.split(':'): 106 for header in include_after.split(':'): 111 key, value = define.split('=', 1)
|
/third_party/node/deps/npm/lib/utils/ |
H A D | format-search-stream.js | 71 pkg.date = data.date.toISOString().split('T')[0] // remove time 98 ).split('\n').map(line => line.slice(0, maxWidth)).join('\n') 116 // just a normal string, do the split/map thing 119 output = output.toLowerCase().split(arg.toLowerCase()).map(piece => { 130 output = output.split(String.fromCharCode(i)).join(`\u001B[${colors[i - 1]}`) 132 return output.split('\u0000').join('\u001B[0m').trim()
|
/kernel/linux/linux-5.10/arch/x86/kvm/vmx/ |
H A D | pmu_intel.c | 351 pmu->version = eax.split.version_id; in intel_pmu_refresh() 357 pmu->nr_arch_gp_counters = min_t(int, eax.split.num_counters, in intel_pmu_refresh() 359 eax.split.bit_width = min_t(int, eax.split.bit_width, x86_pmu.bit_width_gp); in intel_pmu_refresh() 360 pmu->counter_bitmask[KVM_PMC_GP] = ((u64)1 << eax.split.bit_width) - 1; in intel_pmu_refresh() 361 eax.split.mask_length = min_t(int, eax.split.mask_length, x86_pmu.events_mask_len); in intel_pmu_refresh() 363 ((1ull << eax.split.mask_length) - 1); in intel_pmu_refresh() 369 min_t(int, edx.split.num_counters_fixed, in intel_pmu_refresh() 371 edx.split in intel_pmu_refresh() [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | tags.py | 106 interpreters, abis, platforms = tag.split("-") 107 for interpreter in interpreters.split("."): 108 for abi in abis.split("."): 109 for platform_ in platforms.split("."): 247 parts = ext_suffix.split(".") 254 abi = "cp" + soabi.split("-")[1] 257 abi = soabi.split("-")[0] 259 abi = "-".join(soabi.split("-")[:2]) 261 abi = "-".join(soabi.split("-")[:3]) 396 version = cast("MacVersion", tuple(map(int, version_str.split(" [all...] |
/third_party/node/deps/v8/tools/ |
H A D | find-commit-for-patch.py | 40 words = line.split() 45 hashes = line.split()[1] 46 old_hash = hashes.split("..")[0] 65 _, _, actual_hash, filename = line.split()
|
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
H A D | test-assembly.py | 29 b = [int(x, base=16) for x in s.split(' ')] 69 cases = f.read().split('\n') 73 (machine, assembly) = case.split(' ') 77 cases = f.read().split('\n')
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | gen-emoji-table.py | 25 rang, typ = [s.strip() for s in line.split('#')[0].split(';')[:2]] 27 rang = [int(s, 16) for s in rang.split('..')] 89 line = line.split(" ")
|
H A D | gen-arabic-table.py | 32 fields = [x.strip () for x in line.split (';')] 36 uu = fields[0].split ('..') 56 fields = [x.strip () for x in line.split (';')] 70 short = ''.join(x[0] for x in value.split('_')[2:]) 163 fields = [x.strip () for x in line.split (';')] 167 items = fields[5].split (' ')
|
/third_party/skia/infra/bots/buildstats/ |
H A D | buildstats_cpp.py | 32 props = propstr.split(' ') 36 keys = keystr.split(' ') 61 for section_row in sections.strip().split('\n'): 63 parts = section_row.split(',')
|
/third_party/ffmpeg/libavcodec/ |
H A D | mss4.c | 325 int i, j, k, mode, split; in mss4_decode_image_block() local 350 split = 0; in mss4_decode_image_block() 358 split = get_bits(gb, 4); in mss4_decode_image_block() 365 if (mode == 1 && i == split) { in mss4_decode_image_block() 380 split = get_bits(gb, 4); in mss4_decode_image_block() 381 if (split >= prev_split) in mss4_decode_image_block() 382 split++; in mss4_decode_image_block() 383 prev_split = split; in mss4_decode_image_block() 385 split = prev_split; in mss4_decode_image_block() 387 if (split) { in mss4_decode_image_block() [all...] |
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_ldm.c | 89 * Registers in the splits array all the split points found in the first 291 BYTE const* const split = ip + splits[n] - minMatchLength; in ZSTD_ldm_fillHashTable() local 292 U64 const xxhash = xxh64(split, minMatchLength, 0); in ZSTD_ldm_fillHashTable() 296 entry.offset = (U32)(split - base); in ZSTD_ldm_fillHashTable() 369 BYTE const* const split = ip + splits[n] - minMatchLength; in ZSTD_ldm_generateSequences_internal() local 370 U64 const xxhash = xxh64(split, minMatchLength, 0); in ZSTD_ldm_generateSequences_internal() 373 candidates[n].split = split; in ZSTD_ldm_generateSequences_internal() 384 BYTE const* const split = candidates[n].split; in ZSTD_ldm_generateSequences_internal() local [all...] |
/third_party/elfutils/libdw/ |
H A D | dwarf_die_addr_die.c | 56 Dwarf *split = __libdw_find_split_dbg_addr (dbg, addr); in dwarf_die_addr_die() local 57 if (split != NULL) in dwarf_die_addr_die() 58 cu = __libdw_findcu_addr (split, addr); in dwarf_die_addr_die()
|
/third_party/node/tools/ |
H A D | getnodeversion.py | 8 major = line.split()[2] 10 minor = line.split()[2] 12 patch = line.split()[2]
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | opt_array_splitting.cpp | 28 * split it apart into its elements, making it more amenable to other 53 this->split = true; in variable_entry() 66 /** Whether this array should be split or not. */ 67 bool split; member in __anon7202::opt_array_splitting::variable_entry 87 * variables that could be split by looking to see if they are arrays 137 /* If the array hasn't been sized yet, we can't split it. After in get_variable_entry() 151 * ends up being split up into: in get_variable_entry() 210 /* Allow whole-array assignments on the LHS. We can split those in visit() 218 * (see the visit_continue_with_parent below), so we can't split in visit() 222 entry->split in visit() [all...] |
/third_party/unity/auto/ |
H A D | parse_output.rb | 107 test_name = test_suite_name.split(@path_delim) 110 base_name = test_name[test_name.size - 1].split('.')[0] 125 array = line.split(',') 146 reason_array = array[2].split(':') 161 reason_array = array[2].split(':') 201 array2 = test_name.split(' ') 229 array2 = test_name.split(' ') 301 line_array = line.split(':') 303 # If we were able to split the line then we can look to see if any of our target words
|
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | file.c | 515 * [start, end]. Existing extents are split as required. 521 struct extent_map *split = NULL; in btrfs_drop_extent_cache() local 541 if (!split) in btrfs_drop_extent_cache() 542 split = alloc_extent_map(); in btrfs_drop_extent_cache() 545 if (!split || !split2) in btrfs_drop_extent_cache() 577 split->start = em->start; in btrfs_drop_extent_cache() 578 split->len = start - em->start; in btrfs_drop_extent_cache() 581 split->orig_start = em->orig_start; in btrfs_drop_extent_cache() 582 split->block_start = em->block_start; in btrfs_drop_extent_cache() 585 split in btrfs_drop_extent_cache() 1086 u64 split; btrfs_mark_extent_written() local [all...] |
/test/testfwk/developer_test/src/core/ |
H A D | utils.py | 28 _, fullname = os.path.split(file)
91 board_info_list = product_form.split("_")
134 out_name = json_info.get("out_path").split("out")[1].strip("/")
169 strs = line.replace('\n', '').split('=')
196 suitename = filename.split("FuzzTest")[0]
209 return True if len(product_form.split("_")) >= 3 else False
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | egd_tables.py | 157 name = line.split()[0] 179 split = line.split() 180 name = split[0] 181 value = int(split[1], 0) 191 packets.append(line.split()[0])
|
/third_party/skia/samplecode/ |
H A D | SampleCusp.cpp | 33 static SkPath cusp(const SkPoint P[4], SkPoint PP[7], bool& split, int speed, SkScalar phase) { in cusp() argument 43 split = false; in cusp() 48 split = true; in cusp() 144 bool split; variable 145 path = cusp(pts, pp, split, 8000, .125); 154 if (split) {
|
/third_party/python/Lib/encodings/ |
H A D | idna.py | 160 labels = result.split(b'.') 169 labels = dots.split(input) 202 labels = input.split(b".") 225 labels = dots.split(input) 261 labels = dots.split(input) 265 labels = input.split(".")
|
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/tools/ |
H A D | cpuhotplug_report_proc_interrupts | 32 foreach my $line (split /\n/, $content) { 37 @cpus = split /\s+/, $line; 39 my @items = split /\s+/, $line;
|
/third_party/skia/infra/bots/assets/win_toolchain/ |
H A D | create.py | 58 split = dirname.split(os.path.sep) 60 if ign in split:
|
/third_party/node/deps/npm/node_modules/debug/src/ |
H A D | common.js | 170 const split = (typeof namespaces === 'string' ? namespaces : '').split(/[\s,]+/); 171 const len = split.length; 174 if (!split[i]) { 179 namespaces = split[i].replace(/\*/g, '.*?');
|
/third_party/skia/src/core/ |
H A D | SkPoint.cpp | 13 std::string split(depth, '\t'); in dump() 14 desc += split + "\n SkPoint:{ \n"; in dump() 15 desc += split + "\t fX: " + std::to_string(fX) + "\n"; in dump() 16 desc += split + "\t fY: " + std::to_string(fY) + "\n"; in dump() 17 desc += split + "}\n"; in dump()
|