Home
last modified time | relevance | path

Searched full:split (Results 1 – 25 of 3353) sorted by relevance

12345678910>>...135

/openbmc/ipmitool/contrib/
H A Dcreate_webpage.sh71 split=($line)
73 file="$rrd_dir/$hostname-${split[0]}.rrd"
74 group=`echo "${split[2]} ${split[*]:10:6}" | tr ' .-' ___`
84 declare $group_unit="${split[2]}"
87 declare $group_title="${split[5]} / ${split[6]}"
90 …declare $group_thres="${split[10]},${split[11]},${split[12]},${split[13]},${split[14]},${split[15]…
94 DEF:var$i=\"$file\":var:AVERAGE LINE1:var$i#${color[${!group_color}]}:\"${split[0]}\""
112 split=(${!group_thres})
116 if [ -n "${split[0]}" ] ; then
117 if [ -n "${split[3]}" ] ; then
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/directfb/directfb/
H A Dconfigurefix.patch4split/directfb/usr/bin/dfblayer contains probably-redundant RPATH /usr/libWARNING: QA Issue: direc…
5 WARNING: QA Issue: directfb: /work/i586-poky-linux/directfb-1.4.15-r1/packages-split/directfb/usr/b…
6 WARNING: QA Issue: directfb: /work/i586-poky-linux/directfb-1.4.15-r1/packages-split/directfb/usr/b…
7 WARNING: QA Issue: directfb: /work/i586-poky-linux/directfb-1.4.15-r1/packages-split/directfb/usr/b…
8 WARNING: QA Issue: directfb: /work/i586-poky-linux/directfb-1.4.15-r1/packages-split/directfb/usr/b…
9 WARNING: QA Issue: directfb: /work/i586-poky-linux/directfb-1.4.15-r1/packages-split/directfb/usr/l…
10 WARNING: QA Issue: directfb: /work/i586-poky-linux/directfb-1.4.15-r1/packages-split/directfb/usr/l…
11 WARNING: QA Issue: directfb: /work/i586-poky-linux/directfb-1.4.15-r1/packages-split/directfb/usr/l…
12 WARNING: QA Issue: directfb: /work/i586-poky-linux/directfb-1.4.15-r1/packages-split/directfb/usr/l…
13 WARNING: QA Issue: directfb: /work/i586-poky-linux/directfb-1.4.15-r1/packages-split/directfb/usr/l…
[all …]
/openbmc/linux/drivers/media/dvb-core/
H A Ddvb_ringbuffer.c136 size_t split; in dvb_ringbuffer_read_user() local
138 split = (rbuf->pread + len > rbuf->size) ? rbuf->size - rbuf->pread : 0; in dvb_ringbuffer_read_user()
139 if (split > 0) { in dvb_ringbuffer_read_user()
140 if (copy_to_user(buf, rbuf->data+rbuf->pread, split)) in dvb_ringbuffer_read_user()
142 buf += split; in dvb_ringbuffer_read_user()
143 todo -= split; in dvb_ringbuffer_read_user()
162 size_t split; in dvb_ringbuffer_read() local
164 split = (rbuf->pread + len > rbuf->size) ? rbuf->size - rbuf->pread : 0; in dvb_ringbuffer_read()
165 if (split > 0) { in dvb_ringbuffer_read()
166 memcpy(buf, rbuf->data+rbuf->pread, split); in dvb_ringbuffer_read()
[all …]
/openbmc/linux/tools/testing/selftests/net/
H A Ddevlink_port_split.py12 # Test port split configuration using devlink-port lanes attribute.
15 # First, check that all the ports with 1 lane fail to split.
16 # Second, check that all the ports with more than 1 lane can be split
17 # to all valid configurations (e.g., split to 2, split to 4 etc.)
95 Get the $port split ability.
96 Return: split ability, true or false.
107 def split(k, port, should_fail=False): function
109 Split $port into $k ports.
110 If should_fail == True, the split should fail. Otherwise, should pass.
112 If the $port wasn't split, the array will be empty.
[all …]
/openbmc/linux/Documentation/devicetree/bindings/display/mediatek/
H A Dmediatek,split.yaml4 $id: http://devicetree.org/schemas/display/mediatek/mediatek,split.yaml#
7 title: Mediatek display split
14 Mediatek display split, namely SPLIT, is used to split stream to two
16 SPLIT device node must be siblings to the central MMSYS_CONFIG node.
25 - mediatek,mt8173-disp-split
27 - const: mediatek,mt6795-disp-split
28 - const: mediatek,mt8173-disp-split
43 - description: SPLIT Clock
62 split0: split@14018000 {
63 compatible = "mediatek,mt8173-disp-split";
/openbmc/linux/Documentation/mm/
H A Dsplit_page_table_lock.rst2 Split page table lock
8 scalability, split page table lock was introduced.
10 With split page table lock we have separate per-table lock to serialize
11 access to the table. At the moment we use split lock for PTE and PMD
36 Split page table lock for PTE tables is enabled compile-time if
38 If split lock is disabled, all tables are guarded by mm->page_table_lock.
40 Split page table lock for PMD tables is enabled, if it's enabled for PTE
43 Hugetlb and split page table lock
46 Hugetlb can support several page sizes. We use split lock only for PMD
52 takes pmd split lock for PMD_SIZE page, mm->page_table_lock
[all …]
/openbmc/linux/lib/
H A Dsg_split.c81 struct sg_splitter *split; in sg_split_phys() local
83 for (i = 0, split = splitters; i < nb_splits; i++, split++) { in sg_split_phys()
84 in_sg = split->in_sg0; in sg_split_phys()
85 out_sg = split->out_sg; in sg_split_phys()
86 for (j = 0; j < split->nents; j++, out_sg++) { in sg_split_phys()
89 out_sg->offset += split->skip_sg0; in sg_split_phys()
90 out_sg->length -= split->skip_sg0; in sg_split_phys()
98 out_sg[-1].length = split->length_last_sg; in sg_split_phys()
107 struct sg_splitter *split; in sg_split_mapped() local
109 for (i = 0, split = splitters; i < nb_splits; i++, split++) { in sg_split_mapped()
[all …]
/openbmc/linux/fs/btrfs/
H A Dextent_map.c703 * are split.
710 struct extent_map *split; in btrfs_drop_extent_map_range() local
734 * because we need to split those two extent maps at the boundaries. in btrfs_drop_extent_map_range()
736 split = alloc_extent_map(); in btrfs_drop_extent_map_range()
769 * In case we split the extent map, we want to preserve the in btrfs_drop_extent_map_range()
778 * split it, we can remove it directly. in btrfs_drop_extent_map_range()
787 if (!split) { in btrfs_drop_extent_map_range()
788 split = split2; in btrfs_drop_extent_map_range()
790 if (!split) in btrfs_drop_extent_map_range()
793 split->start = em->start; in btrfs_drop_extent_map_range()
[all …]
/openbmc/linux/fs/jfs/
H A Djfs_xtree.c96 uint split; member
109 struct xtsplit * split, struct btstack * btstack);
111 static int xtSplitPage(tid_t tid, struct inode *ip, struct xtsplit * split,
115 struct xtsplit * split, struct metapage ** rmpp);
227 int nsplit = 0; /* number of pages to split */ in xtSearch()
324 /* compute number of pages to split */ in xtSearch()
371 /* compute number of pages to split */ in xtSearch()
429 /* compute number of pages to split */ in xtSearch()
471 /* update number of pages to split */ in xtSearch()
524 struct xtsplit split; /* split information */ in xtInsert() local
[all …]
/openbmc/bmcweb/test/include/
H A Dstr_utility_test.cpp14 TEST(Split, PositiveTests) in TEST() argument
16 using bmcweb::split; in TEST()
18 split(vec, "xx-abc-xx-abb", '-'); in TEST()
22 split(vec, "", '-'); in TEST()
26 split(vec, "foo/", '/'); in TEST()
30 split(vec, "/bar", '/'); in TEST()
34 split(vec, "/", '/'); in TEST()
38 TEST(Split, Sensor) in TEST() argument
40 using bmcweb::split; in TEST()
42 split(vec, "/xyz/openbmc_project/sensors/unit/name", '/'); in TEST()
/openbmc/openbmc/meta-arm/meta-arm-toolchain/conf/distro/include/
H A Dexternal-arm-toolchain-versions.inc31 if version.split()[4] == '(Arm':
33 return version.split()[7].split(')')[0]
34 elif version.split()[4] == '(GNU':
37 return version.split()[10].split('-')[1]
38 elif version.split()[3] == '(GNU':
40 return version.split()[9].split('-')[1]
50 return version.split()[2]
74 return first_line.split()[2]
95 ver = int(s.split()[2])
110 return first_line.split()[-1]
[all …]
/openbmc/openbmc/poky/scripts/
H A Dopkg-query-helper.py40 pkg = line.split(": ")[1]
45 arch = line.split(": ")[1]
49 ver = line.split(": ")[1]
51 arch = line.split(": ")[1]
55 ver = line.split(": ")[1]
57 arch = line.split(": ")[1]
61 depval = line.split(": ")[1]
62 deps = depval.split(", ")
67 recval = line.split(": ")[1]
68 recs = recval.split(", ")
/openbmc/linux/tools/verification/dot2/
H A Dautomata.py54 line = dot_lines[cursor].split()
64 while self.__dot_lines[cursor].split()[0] != "{node":
70 while self.__dot_lines[cursor].split()[0] != "{node":
72 while self.__dot_lines[cursor].split()[0] == "{node":
87 while self.__dot_lines[cursor].split()[0] == "{node":
88 line = self.__dot_lines[cursor].split()
127 if self.__dot_lines[cursor].split()[1] == "->":
128 line = self.__dot_lines[cursor].split()
133 # so split them.
136 for i in event.split():
[all …]
/openbmc/linux/arch/powerpc/platforms/powernv/
H A Dsubcore.c30 * Split/unsplit procedure:
32 * A core can be in one of three states, unsplit, 2-way split, and 4-way split.
39 * 2-way split | 2
40 * 4-way split | 4
42 * The core is split along thread boundaries, the mapping between subcores and
52 * 2-way split:
59 * 4-way split:
70 * It is not possible to transition between either of the split states, the
74 * | | <----> | 2-way split |
78 * | | <----> | 4-way split |
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/mozjs/mozjs-115/
H A D0001-rewrite-cargo-host-linker-in-python3.patch39 + binary=os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]
44 + if os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[1:]:
45 … args=[os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]] + os.environ['MOZ_CARGO_WRAP_HOST_LD']…
47 + args=[os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]] + [os.environ['MOZ_CARGO_WRAP_HOST_…
49 + if os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[1:]:
50 … args=[os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]] + os.environ['MOZ_CARGO_WRAP_HOST_LD']…
52 + args=[os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]] + sys.argv[1:]
/openbmc/linux/fs/btrfs/tests/
H A Dextent-buffer-tests.c76 * space in this leaf to split the item without having to split the in test_btrfs_split_item()
81 test_err("split item failed %d", ret); in test_btrfs_split_item()
98 test_err("invalid len in the first split"); in test_btrfs_split_item()
107 "data in the buffer doesn't match what it should in the first split have='%.*s' want '%s'", in test_btrfs_split_item()
122 test_err("invalid len in the second split"); in test_btrfs_split_item()
131 "data in the buffer doesn't match what it should in the second split"); in test_btrfs_split_item()
140 test_err("second split item failed %d", ret); in test_btrfs_split_item()
153 test_err("invalid len in the first split"); in test_btrfs_split_item()
162 "data in the buffer doesn't match what it should in the third split"); in test_btrfs_split_item()
176 test_err("invalid len in the second split"); in test_btrfs_split_item()
[all …]
/openbmc/linux/tools/testing/selftests/tc-testing/tc-tests/qdiscs/
H A Dcake.json18 …+ bandwidth unlimited diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw …
41 …0-9]+ bandwidth 1Kbit diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw …
64 …ited autorate-ingress diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw …
87 …+ bandwidth unlimited diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 200us raw …
110 … bandwidth unlimited besteffort triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw …
133 …+ bandwidth unlimited diffserv8 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw …
156 …+ bandwidth unlimited diffserv4 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw …
179 …[0-9]+ bandwidth unlimited diffserv3 flowblind nonat nowash no-ack-filter split-gso rtt 100ms raw …
202 …cnt [0-9]+ bandwidth unlimited diffserv3 dsthost nat nowash no-ack-filter split-gso rtt 100ms raw …
225 …efcnt [0-9]+ bandwidth unlimited diffserv3 hosts nonat wash no-ack-filter split-gso rtt 100ms raw …
[all …]
/openbmc/qemu/scripts/oss-fuzz/
H A Dminimize_qtest_trace.py70 CRASH_TOKEN = " ".join(outs.splitlines()[-2].split()[0:3])
114 length = int(writes[0].split()[2], 16)
116 if length != int(writes[j].split()[2], 16):
119 step = int(writes[0].split()[1], 16) - int(writes[1].split()[1], 16)
121 if step != int(writes[j].split()[1], 16) - \
122 int(writes[j+1].split()[1], 16):
125 return (int(writes[0].split()[1], 16)+step, length)
159 suffix = newtrace[i].split()[0][-1]
161 addr = int(newtrace[i].split()[1], 16)
162 value = int(newtrace[i].split()[2], 16)
[all …]
/openbmc/linux/security/apparmor/
H A Dlib.c49 * aa_split_fqname - split a fqname into a profile and namespace name
55 * Split a namespace name from a profile name (see policy.c for naming
68 char *split = strchr(&name[1], ':'); in aa_split_fqname() local
70 if (split) { in aa_split_fqname()
72 *split++ = 0; in aa_split_fqname()
73 if (strncmp(split, "//", 2) == 0) in aa_split_fqname()
74 split += 2; in aa_split_fqname()
75 name = skip_spaces(split); in aa_split_fqname()
117 char *split = strnchr(&name[1], end - &name[1], ':'); in aa_splitn_fqname() local
121 if (split) { in aa_splitn_fqname()
[all …]
/openbmc/linux/drivers/virtio/
H A Dvirtio_ring.c189 * for split ring, it just contains last used index
200 /* Available for split ring */
201 struct vring_virtqueue_split split; member
440 * Split ring specific functions - *_split().
463 struct vring_desc_extra *extra = vq->split.desc_extra; in vring_unmap_one_split()
524 struct vring_desc_extra *extra = vring->split.desc_extra; in virtqueue_add_desc_split()
580 WARN_ON_ONCE(total_sg > vq->split.vring.num && !vq->indirect); in virtqueue_add_split()
591 desc = vq->split.vring.desc; in virtqueue_add_split()
647 vq->split.desc_extra[prev & (vq->split.vring.num - 1)].flags &= in virtqueue_add_split()
662 virtqueue_add_desc_split(_vq, vq->split.vring.desc, in virtqueue_add_split()
[all …]
/openbmc/u-boot/arch/arm/mach-zynqmp/
H A Dmp.c13 #define SPLIT 1 macro
216 set_r5_tcm_mode(SPLIT); in initialize_tcm()
217 set_r5_halt_mode(HALT, SPLIT); in initialize_tcm()
219 release_r5_reset(SPLIT); in initialize_tcm()
240 printf("<addr> <mode>-Start addr lockstep or split\n"); in cpu_release()
278 } else if (!strncmp(argv[1], "split", 5)) { in cpu_release()
279 printf("R5 split mode\n"); in cpu_release()
280 set_r5_reset(SPLIT); in cpu_release()
281 set_r5_tcm_mode(SPLIT); in cpu_release()
282 set_r5_halt_mode(HALT, SPLIT); in cpu_release()
[all …]
/openbmc/openbmc/poky/meta/lib/oe/
H A Dutils.py58 val1 = set(val1.split())
59 val2 = set(val2.split())
61 checkvalue = set(checkvalue.split())
80 val1 = set(d.getVar(variable1).split())
81 val2 = set(d.getVar(variable2).split())
99 return " ".join([x for x in str.split() if match(f, x, 0)])
103 return " ".join([x for x in str.split() if not match(f, x, 0)])
107 return " ".join(dep + ":" + task for dep in depends.split())
122 features = (d.getVar(var) or "").split()
123 backfill = (d.getVar(var+"_BACKFILL") or "").split()
[all …]
H A Dclassextend.py38 subs = name.split("/", 1)[1]
52 var = var.split()
65 var = var.split()
86 var = var.split()
116 for pkg in (self.d.getVar("PACKAGES").split() + [""]):
126 for pkg in (self.d.getVar("PACKAGES") or "").split():
128 self.pkgs_mapping.append([pkg.split(self.extname + "-")[1], pkg])
137 for pkg in (self.d.expand(pkgs) or "").split():
139 self.pkgs_mapping.append([pkg.split(self.extname + "-")[1], pkg])
/openbmc/openbmc/poky/meta/lib/oe/package_manager/
H A D__init__.py51 pkg = line.split(": ")[1]
53 arch = line.split(": ")[1]
55 ver = line.split(": ")[1]
57 filename = line.split(": ")[1]
61 depends = verregex.sub('', line.split(": ")[1])
62 for depend in depends.split(", "):
65 recommends = verregex.sub('', line.split(": ")[1])
66 for recommend in recommends.split(", "):
69 pkgarch = line.split(": ")[1]
71 provides = verregex.sub('', line.split(": ")[1])
[all …]
/openbmc/linux/Documentation/arch/x86/
H A Dbuslock.rst16 A split lock is any atomic operation whose operand crosses two cache lines.
20 A bus lock is acquired through either split locked access to writeback (WB)
29 mechanisms to detect split locks and bus locks.
31 #AC exception for split lock detection
34 Beginning with the Tremont Atom CPU split lock operations may raise an
35 Alignment Check (#AC) exception when a split lock operation is attempted.
51 |split_lock_detect=|#AC for split lock |#DB for bus lock |
60 | |split lock in parallel. | |
89 generating split lock and bus lock to block the hard real time code to
102 Disable checking for split lock and bus lock. This option can be useful if

12345678910>>...135