/third_party/python/Tools/i18n/ |
H A D | makelocalealias.py | 32 locale, alias = line.split() 49 lang, encoding = locale.split('.')[:2] 69 words = line.split() 77 lang, encoding = locale.split('.')[:2]
|
/third_party/python/Lib/ctypes/ |
H A D | _aix.py | 64 parts = libname.split(sep) 256 libpaths = libpaths.split(":") 261 path = line.split()[1] 263 libpaths.extend(path.split(":"))
|
H A D | util.py | 21 s, rest = sys.version[i:].split(" ", 1) 59 for directory in os.environ['PATH'].split(os.pathsep): 197 parts = libname.split(b".") 253 paths = os.fsdecode(line).split()[4] 258 for dir in paths.split(":"): 306 for d in libpath.split(':'):
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
H A D | PDBStringTableBuilder.cpp | 211 std::tie(SectionWriter, Writer) = Writer.split(sizeof(PDBStringTableHeader)); in commit() 216 Writer.split(Strings.calculateSerializedSize()); in commit() 220 std::tie(SectionWriter, Writer) = Writer.split(calculateHashTableSize()); in commit() 224 std::tie(SectionWriter, Writer) = Writer.split(sizeof(uint32_t)); in commit()
|
/third_party/skia/infra/bots/recipe_modules/builder_name_schema/ |
H A D | builder_name_schema.py | 141 split = builder_name.split(BUILDER_NAME_SEP) 174 _parse(0, split[0], split[1:])
|
/kernel/linux/linux-5.10/arch/x86/include/asm/ |
H A D | perf_event.h | 119 } split; member 132 } split; member 143 } split; member 159 } split; member 171 } split; member 183 } split; member
|
/kernel/linux/linux-5.10/scripts/ |
H A D | spdxcheck.py | 49 lid = l.split(':')[1].strip().upper() 56 exception = l.split(':')[1].strip().upper() 60 for lic in l.split(':')[1].upper().strip().replace(' ', '').replace('\t', '').split(','): 179 expr = line.split(':')[1].strip() 220 for p in path.strip('/').split('/'):
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | fldset.cpp | 70 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) in split() function 82 int32_t split = 0; in split() local 86 src.extractBetween(start, end, result[split++]); in split() 90 src.extractBetween(start, src.length(), result[split]); in split() 105 UnicodeString *dest = split(str, 0x002C /* ',' */, destCount); in parseFrom() 109 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc); in parseFrom()
|
/third_party/node/deps/v8/tools/ |
H A D | gen-postmortem-metadata.py | 489 entries = typestr.split(','); 492 entries = torque_typestr.split('\\') 496 entries = torque_fulldefstr.split('\\') 504 args = re.split('\s*,\s*', rest); 528 parts = usetype.split('_'); 607 args = re.split('\s*,\s*', rest);
|
/third_party/node/deps/npm/node_modules/cacache/lib/ |
H A D | verify.js | 128 const split = f.split(/[/\\]/) 129 const digest = split.slice(split.length - 3).join('') 130 const algo = split[split.length - 4]
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_extensions.py | 96 return '_'.join(self.name.split('_')[2:]) 104 return "".join([x.title() for x in self.name.split('_')[2:]]) 109 # we do not split the types into two, e.g. INT_32 128 replaced = list(map(replace, self.name.split('_'))) 133 return '_'.join(self.name_in_snake_uppercase().split('_')[2:]) 169 return self.name.split('_')[1] 332 (major, minor) = promotedto.split('_')[-2:]
|
/third_party/skia/tools/ |
H A D | compare_codereview.py | 98 and 'build-result' in attrs.get('class', '').split()): 263 first = result.split()[0] 292 for word in line.split(): 306 for line in string.split('\n'): 335 control_name = '[control %s]' % control_url.split('/')[-1] 336 roll_name = '[roll %s]' % roll_url.split('/')[-1]
|
/third_party/tzdata/ |
H A D | tzselect.ksh | 219 nlines = split(TZ_ZONE_TABLE, line, /\n/) 232 ncc = split(col1ccs, cc, /,/) 233 ncont = split(conts, cont, /,/) 248 nlines = split(TZ_COUNTRY_TABLE, line, /\n/) 277 nlines = split(TZ_COUNTRY_TABLE, line, /\n/) 345 nlines = split(TZ_ZONE_TABLE, line, /\n/) 351 ncc = split($1, cc, /,/) 359 ncc = split($1, cc, /,/) 360 split("", item_seen) 420 nlines = split(TZ_ZONETABTYPE_TABL [all...] |
H A D | zishrink.awk | 230 n = split(line, field) 264 split(rule_output_line[i], field) 275 n = split(rule_output_line[i], field) 289 zonelines = split(zonedef[zonename], zoneline, /\n/) 293 n = split(newline, field) 351 ndeps = split(deps, dep)
|
/kernel/linux/linux-5.10/block/ |
H A D | blk-merge.c | 179 * bvec_split_segs - verify whether or not a bvec should be split in the middle 192 * big to fit in a single segment and hence that it has to be split in the 223 /* tell the caller to split the bvec if it is too big to fit */ in bvec_split_segs() 228 * blk_bio_segment_split - split a bio in two bios 230 * @bio: [in] bio to be split 244 * split bio has finished. 263 goto split; in blk_bio_segment_split() 272 goto split; in blk_bio_segment_split() 281 split: in blk_bio_segment_split() 287 * __blk_queue_split - split 302 struct bio *split = NULL; __blk_queue_split() local [all...] |
/kernel/linux/linux-5.10/security/apparmor/ |
H A D | policy.c | 366 char *split; in __lookup_parent() local 370 for (split = strstr(hname, "//"); split;) { in __lookup_parent() 372 split - hname); in __lookup_parent() 376 hname = split + 2; in __lookup_parent() 377 split = strstr(hname, "//"); in __lookup_parent() 400 const char *split; in __lookupn_profile() local 402 for (split = strnstr(hname, "//", n); split; in __lookupn_profile() 403 split in __lookupn_profile() [all...] |
/test/testfwk/xdevice/src/xdevice/_core/command/ |
H A D | console.py | 432 subsystem_list = str(options.subsystems).split(";") 435 part_list = str(options.parts).split(";") 441 kit_list = str(options.kits_in_module).split(";") 452 para_list = args.split() 521 argument = self.argument_parser(history_command_inner.split()) 606 cls._report_helper(report_path.split(";"), tool_name) 612 key_value_pairs = str(combination_value).split(";") 614 key, value = key_value_pair.split(":", 1) 618 value_list = str(value).split(",") 643 for combine_value in options.testargs.split(";") [all...] |
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/ |
H A D | cpp_driver_lite.py | 48 test_item = test.split("#") 142 execute_dir = "/storage" + "/".join(bin_file.split("/")[0:-1]) 144 execute_dir = "/".join(bin_file.split("/")[0:-1]) 145 self.execute_bin = bin_file.split("/")[-1] 156 report_path = "/%s/%s/" % ("reports", self.execute_bin.split(".")[0]) 295 for xml_file in os.listdir(os.path.split(self.result)[0]): 298 if xml_file != os.path.split(self.result)[1]: 299 os.remove(os.path.join(os.path.split( 303 self.file_name = command.split(" ")[0].split("/")[ [all...] |
H A D | c_driver_lite.py | 84 request.root.source.source_file.strip()).split(".")[0] 147 self.jar_file.split(".")[0].lower() + '.log') 198 "\n".join(result.split("\n")[0:-1]), "\n")) 264 "\n".join(result.split("\n")[0:-1]), "\n")) 324 "\n".join(result.split("\n")[0:-1]), "\n")) 375 "\n".join(result.split("\n")[0:-1]), "\n")) 393 'burn_file', kit_info)[0].split("\\")[-1].split(".")[0] 414 'burn_file', kit_info)[0].split("\\")[-1].split(" [all...] |
/kernel/linux/linux-5.10/drivers/firewire/ |
H A D | nosy.c | 161 size_t split = end - buffer->head->data; in packet_buffer_get() local 163 if (copy_to_user(data, buffer->head->data, split)) in packet_buffer_get() 165 if (copy_to_user(data + split, buffer->data, length - split)) in packet_buffer_get() 167 buffer->head = (struct packet *) &buffer->data[length - split]; in packet_buffer_get() 200 size_t split = end - buffer->tail->data; in packet_buffer_put() local 202 memcpy(buffer->tail->data, data, split); in packet_buffer_put() 203 memcpy(buffer->data, data + split, length - split); in packet_buffer_put() 204 buffer->tail = (struct packet *) &buffer->data[length - split]; in packet_buffer_put() [all...] |
/kernel/linux/linux-5.10/fs/nfs/blocklayout/ |
H A D | extent_tree.c | 297 struct pnfs_block_extent *split; in ext_tree_insert() local 301 split = kmemdup(new, sizeof(*new), GFP_ATOMIC); in ext_tree_insert() 302 if (!split) { in ext_tree_insert() 307 split->be_length = be->be_f_offset - split->be_f_offset; in ext_tree_insert() 308 split->be_device = nfs4_get_deviceid(new->be_device); in ext_tree_insert() 309 __ext_tree_insert(root, split, true); in ext_tree_insert() 381 sector_t split) in ext_tree_split() 390 be->be_length = split - be->be_f_offset; in ext_tree_split() 392 new->be_f_offset = split; in ext_tree_split() 380 ext_tree_split(struct rb_root *root, struct pnfs_block_extent *be, sector_t split) ext_tree_split() argument [all...] |
/kernel/linux/linux-6.6/fs/nfs/blocklayout/ |
H A D | extent_tree.c | 297 struct pnfs_block_extent *split; in ext_tree_insert() local 301 split = kmemdup(new, sizeof(*new), GFP_ATOMIC); in ext_tree_insert() 302 if (!split) { in ext_tree_insert() 307 split->be_length = be->be_f_offset - split->be_f_offset; in ext_tree_insert() 308 split->be_device = nfs4_get_deviceid(new->be_device); in ext_tree_insert() 309 __ext_tree_insert(root, split, true); in ext_tree_insert() 381 sector_t split) in ext_tree_split() 390 be->be_length = split - be->be_f_offset; in ext_tree_split() 392 new->be_f_offset = split; in ext_tree_split() 380 ext_tree_split(struct rb_root *root, struct pnfs_block_extent *be, sector_t split) ext_tree_split() argument [all...] |
/kernel/linux/linux-6.6/drivers/firewire/ |
H A D | nosy.c | 161 size_t split = end - buffer->head->data; in packet_buffer_get() local 163 if (copy_to_user(data, buffer->head->data, split)) in packet_buffer_get() 165 if (copy_to_user(data + split, buffer->data, length - split)) in packet_buffer_get() 167 buffer->head = (struct packet *) &buffer->data[length - split]; in packet_buffer_get() 200 size_t split = end - buffer->tail->data; in packet_buffer_put() local 202 memcpy(buffer->tail->data, data, split); in packet_buffer_put() 203 memcpy(buffer->data, data + split, length - split); in packet_buffer_put() 204 buffer->tail = (struct packet *) &buffer->data[length - split]; in packet_buffer_put() [all...] |
/third_party/musl/src/malloc/oldmalloc/ |
H A D | malloc.c | 292 struct chunk *next, *split; in trim() local 297 split = (void *)((char *)self + n); in trim() 301 split->psize = n | C_INUSE; in trim() 302 split->csize = n1-n; in trim() 305 calculate_checksum(split, next); in trim() 316 bin_chunk(split, i); in trim() 468 struct chunk *split = (void *)((char *)self + n); in realloc() local 472 self->csize = split->psize = n | C_INUSE; in realloc() 473 split->csize = next->psize = n0-n | C_INUSE; in realloc() 478 __bin_chunk(split); in realloc() [all...] |
/third_party/musl/porting/liteos_a/user_debug/src/malloc/oldmalloc/ |
H A D | malloc.c | 280 struct chunk *next, *split; in trim() local 285 split = (void *)((char *)self + n); in trim() 287 split->psize = n | C_INUSE; in trim() 288 split->csize = n1-n; in trim() 290 calculate_checksum(split, next); in trim() 298 bin_chunk(split, i); in trim() 436 struct chunk *split = (void *)((char *)self + n); in realloc() local 438 self->csize = split->psize = n | C_INUSE; in realloc() 439 split->csize = next->psize = n0-n | C_INUSE; in realloc() 442 __bin_chunk(split); in realloc() [all...] |