Home
last modified time | relevance | path

Searched refs:split (Results 3001 - 3025 of 3334) sorted by relevance

1...<<121122123124125126127128129130>>...134

/third_party/python/Lib/unittest/
H A Dcase.py497 return doc.strip().split("\n")[0].strip() if doc else None
1443 return doc and doc.split("\n")[0].strip() or None
/third_party/rust/crates/serde/serde/src/de/
H A Dvalue.rs1150 Some(private::Pair::split(kv)) in next_pair()
1707 fn split(self) -> (Self::First, Self::Second); in split() functions
1713 fn split(self) -> (A, B) { in split() functions
/third_party/vk-gl-cts/modules/gles2/scripts/
H A Dgenutil.py46 lines = text.split("\n")
96 repl = "\n".join(["%s%s" % (ws, line) for line in value.split("\n")])
/kernel/linux/linux-5.10/mm/
H A Dksm.c2142 bool split; in cmp_and_merge_page() local
2156 split = PageTransCompound(page) in cmp_and_merge_page()
2184 } else if (split) { in cmp_and_merge_page()
2188 * compound page. We will split the page now, but no in cmp_and_merge_page()
/kernel/linux/linux-5.10/ipc/
H A Dshm.c534 if (sfd->vm_ops->split) in shm_split()
535 return sfd->vm_ops->split(vma, addr); in shm_split()
677 .split = shm_split,
/kernel/linux/linux-5.10/drivers/net/xen-netback/
H A Dnetback.c51 /* Provide an option to disable split event channels at load time as
403 bool split = false; in xenvif_get_requests() local
420 split = true; in xenvif_get_requests()
430 if (!split) in xenvif_get_requests()
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn21/
H A Ddcn21_resource.c802 int split[MAX_PIPES] = { 0 }; in dcn21_fast_validate_bw() local
845 vlevel = dcn20_validate_apply_pipe_split_flags(dc, context, vlevel, split, NULL); in dcn21_fast_validate_bw()
893 /* Skip 2nd half of already split pipe */ in dcn21_fast_validate_bw()
897 if (split[i] == 2) { in dcn21_fast_validate_bw()
899 /* pipe not split previously needs split */ in dcn21_fast_validate_bw()
/kernel/linux/linux-6.6/drivers/net/xen-netback/
H A Dnetback.c51 /* Provide an option to disable split event channels at load time as
403 bool split = false; in xenvif_get_requests() local
420 split = true; in xenvif_get_requests()
430 if (!split) in xenvif_get_requests()
/kernel/linux/linux-6.6/sound/isa/
H A Des18xx.c763 int split = 0; in snd_es18xx_interrupt() local
765 split = snd_es18xx_mixer_read(chip, 0x64) & 0x80; in snd_es18xx_interrupt()
771 if (!split) { in snd_es18xx_interrupt()
/third_party/ffmpeg/libavutil/x86/
H A Dtx_float.asm30 ; avx512 split-radix
509 ; Perform a single even/odd split radix combination with loads and stores
566 ; Perform a single even/odd split radix combination with loads, deinterleaves and
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DULocale.java1187 String [] variants = parser.getVariant().split("_"); in canonicalize()
1286 .split(" "); in canonicalize()
3701 String[] uattributes = getKeywordValue(key).split("[-_]"); in extensions()
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dmake.py1018 dir = os.path.split(out)[0]
1141 (rule_source_dirname, rule_source_basename) = os.path.split(rule_source)
1272 filename = os.path.split(path)[1]
/third_party/node/test/fixtures/wpt/resources/
H A Dtestharness.js4261 output_location = assert.stack.split("\n", 1)[0].replace(/@?\w+:\/\/[^ "\/]+(?::\d+)?/g, " ");
4381 var components = input.split(substitution_re);
4520 var lines = stack.split("\n");
4678 var components = name.split(".");
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dmake.py1027 dir = os.path.split(out)[0]
1150 (rule_source_dirname, rule_source_basename) = os.path.split(rule_source)
1281 filename = os.path.split(path)[1]
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_indirect_draw.c751 nir_ssa_def *split = in get_invocation() local
759 nir_ishl(b, max_instance, split)), in get_invocation()
760 nir_ior(b, nir_ishl(b, split, nir_imm_int(b, 22)), in get_invocation()
/third_party/python/Lib/idlelib/
H A Dpyshell.py699 lines = source.split("\n")
903 self.prompt_last_line = self.sys_ps1.split('\n')[-1]
1329 lines = s.split('\n')
H A Deditor.py393 insertpt = int(self.text.index("iomark").split(".")[1])
401 lineat = int(self.text.index("insert").split('.')[1])
445 line, column = self.text.index(INSERT).split('.')
/third_party/python/Lib/collections/
H A D__init__.py375 field_names = field_names.replace(',', ' ').split()
1546 def split(self, sep=None, maxsplit=-1): member in UserString
1547 return self.data.split(sep, maxsplit)
/third_party/python/Lib/
H A Dsubprocess.py721 parts = ver.split(maxsplit=1)
726 version = tuple(map(int, parts[1].split('.')))
1926 errpipe_data.split(b':', 2))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DCommandLine.cpp481 std::pair<StringRef, StringRef> SplitArg = Arg.split('='); in LookupNearestOption()
522 // it does, we have to split up the value into multiple values. in CommaSeparateAndAddOccurrence()
646 /// see if this is a prefix or grouped option. If so, split arg into output an
1413 std::pair<StringRef, StringRef> Split = HelpStr.split('\n'); in printHelpStr()
1416 Split = Split.second.split('\n'); in printHelpStr()
/third_party/python/Lib/test/
H A Dtest_float.py735 lhs, rhs = map(str.strip, line.split('->'))
736 fmt, arg = lhs.split()
766 with open(os.path.join(os.path.split(__file__)[0],
H A Dtest_embed.py583 key, value = opt.split('=', 1)
689 paths = pythonpath_env.split(os.path.pathsep)
1575 self.assertEqual(Py_GetPath().split(os.path.pathsep),
/kernel/linux/linux-5.10/block/
H A Dbfq-iosched.c1255 * burst, or finally has just been split, then there is in bfq_handle_burst()
2746 * to enjoy weight raising if split soon. in bfq_bfqq_save_state()
4906 * bust_size--because of a split, but the current in bfq_put_queue()
4908 * (see comments on the case of a split in in bfq_put_queue()
6017 bool split, bool is_sync, in bfq_get_bfqq_handle_split()
6033 if (split && is_sync) { in bfq_get_bfqq_handle_split()
6125 bool bfqq_already_existing = false, split = false; in bfq_init_rq() local
6159 split = true; in bfq_init_rq()
6181 * addition, if the queue has also just been split, we have to in bfq_init_rq()
6186 if (split) { in bfq_init_rq()
6014 bfq_get_bfqq_handle_split(struct bfq_data *bfqd, struct bfq_io_cq *bic, struct bio *bio, bool split, bool is_sync, bool *new_queue) bfq_get_bfqq_handle_split() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlxsw/
H A Dcore.c3124 u8 slot_index, u32 port_number, bool split, in __mlxsw_core_port_init()
3137 attrs.split = split; in __mlxsw_core_port_init()
3174 u8 slot_index, u32 port_number, bool split, in mlxsw_core_port_init()
3184 port_number, split, split_port_subnumber, in mlxsw_core_port_init()
3122 __mlxsw_core_port_init(struct mlxsw_core *mlxsw_core, u16 local_port, enum devlink_port_flavour flavour, u8 slot_index, u32 port_number, bool split, u32 split_port_subnumber, bool splittable, u32 lanes, const unsigned char *switch_id, unsigned char switch_id_len) __mlxsw_core_port_init() argument
3173 mlxsw_core_port_init(struct mlxsw_core *mlxsw_core, u16 local_port, u8 slot_index, u32 port_number, bool split, u32 split_port_subnumber, bool splittable, u32 lanes, const unsigned char *switch_id, unsigned char switch_id_len) mlxsw_core_port_init() argument
/third_party/mesa3d/src/amd/compiler/
H A Daco_spill.cpp1499 Instruction* split{create_instruction<Pseudo_instruction>(aco_opcode::p_split_vector, in spill_vgpr()
1501 split->operands[0] = Operand(temp); in spill_vgpr()
1503 split->definitions[i] = bld.def(v1); in spill_vgpr()
1504 bld.insert(split); in spill_vgpr()
1506 Temp elem = split->definitions[i].getTemp(); in spill_vgpr()

Completed in 79 milliseconds

1...<<121122123124125126127128129130>>...134