Home
last modified time | relevance | path

Searched full:new (Results 1 – 25 of 3242) sorted by relevance

12345678910>>...130

/openbmc/openbmc/poky/bitbake/lib/simplediff/
H A D__init__.py17 def diff(old, new): argument
27 new the new list of immutable, comparable values
32 the original old and/or new lists. The first part of the pair
60 # Find the largest substring common to old and new.
63 # We iterate over each value in the `new` list, calling the
66 # of `new[:inew]` (or unset when `old[i]` != `new[inew]`).
68 # At each stage of iteration, the new `overlap` (called
79 # of the same substring in the new list. `sub_length` is the length that
87 for inew, val in enumerate(new):
91 # `old[iold] == new[inew]`.
[all …]
/openbmc/u-boot/scripts/kconfig/tests/choice/
H A Doldask0_expected_stdout1 Enable loadable module support (MODULES) [Y/n/?] (NEW)
3 1. choice 0 (BOOL_CHOICE0) (NEW)
4 > 2. choice 1 (BOOL_CHOICE1) (NEW)
6 optional boolean choice [N/y/?] (NEW)
7 tristate choice [M/y/?] (NEW)
8 choice 0 (TRI_CHOICE0) [N/m/?] (NEW)
9 choice 1 (TRI_CHOICE1) [N/m/?] (NEW)
10 optional tristate choice [N/m/y/?] (NEW)
H A Doldask1_expected_stdout3 1. choice 0 (BOOL_CHOICE0) (NEW)
4 > 2. choice 1 (BOOL_CHOICE1) (NEW)
6 optional boolean choice [Y/n/?] (NEW)
9 2. choice 1 (OPT_BOOL_CHOICE1) (NEW)
12 1. choice 0 (TRI_CHOICE0) (NEW)
13 > 2. choice 1 (TRI_CHOICE1) (NEW)
/openbmc/u-boot/scripts/kconfig/tests/auto_submenu/
H A Dexpected_stdout1 A (A) [Y/n/?] (NEW)
2 A0 (A0) [Y/n/?] (NEW)
3 A1_0 (A0_0) [N/y/?] (NEW)
4 A1 (A1) [Y/n/?] (NEW)
6 > 1. A1_0 (A1_0) (NEW)
7 2. A1_1 (A1_1) (NEW)
9 B (B) [N/y/?] (NEW)
10 C (C) [N/y/?] (NEW)
/openbmc/qemu/host/include/generic/host/
H A Dstore-insert-al16.h.inc24 Int128Alias old, new;
31 new.s = int128_and(old.s, msk);
32 new.s = int128_or(new.s, val);
33 } while (!__atomic_compare_exchange_n(pu, &old.u, new.u, true,
36 Int128 old, new, cmp;
43 new = int128_and(old, msk);
44 new = int128_or(new, val);
45 old = atomic16_cmpxchg(ps, cmp, new);
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/
H A Dtest_project_config_page.py49 self.enter_text('#new-imagefs_types', imagefs_type)
70 self.enter_text('#new-imagefs_types', imagefs_type)
91 self.wait_until_visible('#new-imagefs_types')
101 element = self.driver.find_element(By.ID, 'new-imagefs_types')
103 self.wait_until_visible('#new-imagefs_types')
124 self.wait_until_visible('#new-dl_dir')
127 self.enter_text('#new-dl_dir', 'home/foo')
135 self.driver.find_element(By.ID, 'new-dl_dir').clear()
136 self.enter_text('#new-dl_dir', '/foo/bar a')
143 self.driver.find_element(By.ID,'new-dl_dir').clear()
[all …]
H A Dtest_new_project_page.py50 self.wait_until_visible('#new-project-name')
51 self.enter_text('#new-project-name', project_name)
58 # We should get redirected to the new project's page with the
64 "New project name not in new project notification")
67 "New project not found in database")
71 Should not be able to create a new project whose name is the same
82 self.wait_until_visible('#new-project-name')
84 self.enter_text('#new-project-name', project_name)
89 radio = self.driver.find_element(By.ID, 'type-new')
98 # Try and click it anyway, if it submits we'll have a new project in
[all …]
/openbmc/u-boot/test/overlay/
H A Dtest-fdt-overlay.dts29 /* Test that we add a new property */
38 /* Test that we add a new node (by phandle) */
43 new-node {
44 new-property;
49 /* Test that we add a new node (by path) */
54 new-node {
55 new-property;
64 local: new-local-node {
65 new-property;
91 new-sub-test-property;
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/functional/
H A Dtest_project_config.py55 self.enter_text('#new-imagefs_types', imagefs_type)
75 self.enter_text('#new-imagefs_types', imagefs_type)
101 self.wait_until_visible('#new-imagefs_types')
102 element = self.driver.find_element(By.ID, 'new-imagefs_types')
128 input_field = self.wait_until_visible('#new-dl_dir')
130 self.enter_text('#new-dl_dir', 'home/foo')
138 self.driver.find_element(By.ID, 'new-dl_dir').clear()
139 self.enter_text('#new-dl_dir', '/foo/bar a')
146 self.driver.find_element(By.ID,'new-dl_dir').clear()
147 self.enter_text('#new-dl_dir', '${TOPDIR}/down foo')
[all …]
/openbmc/qemu/rust/qemu-api-macros/src/
H A Dbits.rs16 TT::Group(Group::new(Delimiter::Parenthesis, ts)) in paren()
20 TT::Ident(Ident::new(s, Span::call_site())) in ident()
24 TT::Punct(Punct::new(ch, Spacing::Alone)) in punct()
42 return Err(Error::new(g.span(), "expected parenthesis")); in parse_primary()
46 return Err(Error::new(g.span(), "expected operand, found ')'")); in parse_primary()
48 let mut output = TokenStream::new(); in parse_primary()
52 return Err(Error::new(tok.span(), format!("unexpected token {tok}"))); in parse_primary()
58 let mut output = TokenStream::new(); in parse_primary()
61 TT::Punct(Punct::new(':', Spacing::Joint)), in parse_primary()
62 TT::Punct(Punct::new(':', Spacing::Joint)), in parse_primary()
[all …]
/openbmc/u-boot/scripts/dtc/
H A Dlivetree.c29 struct label *new; in add_label() local
32 for_each_label_withdel(*labels, new) in add_label()
33 if (streq(new->label, label)) { in add_label()
34 new->deleted = 0; in add_label()
38 new = xmalloc(sizeof(*new)); in add_label()
39 memset(new, 0, sizeof(*new)); in add_label()
40 new->label = label; in add_label()
41 new->next = *labels; in add_label()
42 *labels = new; in add_label()
55 struct property *new = xmalloc(sizeof(*new)); in build_property() local
[all …]
/openbmc/qemu/include/hw/nvram/
H A Dfw_cfg.h103 * @key: selector key value for new fw_cfg item
107 * Add a new fw_cfg item, available by selecting the given key, as a raw
116 * @key: selector key value for new fw_cfg item
119 * Add a new fw_cfg item, available by selecting the given key. The item
128 * @key: selector key value for new fw_cfg item
131 * Replace the fw_cfg item available by selecting the given key. The new
142 * @key: selector key value for new fw_cfg item
145 * Add a new fw_cfg item, available by selecting the given key. The item
154 * @key: selector key value for new fw_cfg item
157 * Replace the fw_cfg item available by selecting the given key. The new
[all …]
/openbmc/u-boot/doc/uImage.FIT/
H A Dcommand_syntax_extensions.txt1 Command syntax extensions for the new uImage format
6 With the introduction of the new uImage format, bootm command (and other
7 commands as well) have to understand new syntax of the arguments. This is
8 necessary in order to specify objects contained in the new uImage, on which
10 scenarios, and then introduces new argument syntax.
21 i.e., without passing the Flattened Device Tree (FDT), and new way, where the
36 New uImage:
120 New uImage argument syntax
123 New uImage support introduces two new forms for bootm arguments, with the
126 - new uImage sub-image specification
[all …]
/openbmc/openbmc/meta-security/recipes-ids/suricata/files/
H A DCVE-2024-38535_pre.patch67 let mut blocks = Vec::new();
71 + name: Rc::new(name.to_vec()),
72 + value: Rc::new(input.to_vec()),
78 let mut blocks = Vec::new();
127 + name: Rc::new(name.as_bytes().to_vec()),
128 + value: Rc::new(value.as_bytes().to_vec()),
136 - name: Vec::new(),
137 - value: Vec::new(),
138 + name: Rc::new(Vec::new()),
139 + value: Rc::new(Vec::new()),
[all …]
/openbmc/u-boot/drivers/ram/aspeed/
H A Dsdram_phy_ast2600.h118 #define MR0_CL_12 (BIT(4) | BIT(2)) /* new */
180 0x1e6e019c, // new address
187 0x1e6e01cc, // new address
193 0x1e6e0288, // new address
199 0x1e6e02f8, // new address
203 0x1e6e0300, // new address
206 0x1e6e0194, // new address
209 0x1e6e019c, // new address
216 0x1e6e0318, // new address
220 0x1e6e0198, // new address
[all …]
/openbmc/openbmc/poky/meta/lib/oe/
H A Duseradd.py34 … "--base-dir", metavar="BASE_DIR", help="base directory for the home directory of the new account")
35 parser.add_argument("-c", "--comment", metavar="COMMENT", help="GECOS field of the new account")
36 …parser.add_argument("-d", "--home-dir", metavar="HOME_DIR", help="home directory of the new accoun…
38 …dd_argument("-e", "--expiredate", metavar="EXPIRE_DATE", help="expiration date of the new account")
39 …ument("-f", "--inactive", metavar="INACTIVE", help="password inactivity period of the new account")
40 …argument("-g", "--gid", metavar="GROUP", help="name or ID of the primary group of the new account")
41 …rgument("-G", "--groups", metavar="GROUPS", help="list of supplementary groups of the new account")
49 …parser.add_argument("-p", "--password", metavar="PASSWORD", help="encrypted password of the new ac…
52 parser.add_argument("-s", "--shell", metavar="SHELL", help="login shell of the new account")
53 parser.add_argument("-u", "--uid", metavar="UID", help="user ID of the new account")
[all …]
/openbmc/pldm/libpldmresponder/test/
H A Dlibpldmresponder_base_test.cpp28 auto request = new (requestPayload.data()) pldm_msg; in TEST_F()
34 auto responsePtr = new (response.data()) pldm_msg; in TEST_F()
46 auto request = new (requestPayload.data()) pldm_msg; in TEST_F()
50 auto responsePtr = new (response.data()) pldm_msg; in TEST_F()
61 auto request = new (requestPayload.data()) pldm_msg; in TEST_F()
67 auto responsePtr = new (response.data()) pldm_msg; in TEST_F()
76 auto request = new (requestPayload.data()) pldm_msg; in TEST_F()
92 auto responsePtr = new (response.data()) pldm_msg; in TEST_F()
109 auto request = new (requestPayload.data()) pldm_msg; in TEST_F()
123 auto responsePtr = new (response.data()) pldm_msg; in TEST_F()
[all …]
/openbmc/qemu/target/s390x/tcg/
H A Dinsn-data.h.inc26 C(0x1a00, AR, RR_a, Z, r1, r2, new, r1_32, add, adds32)
27 C(0xb9f8, ARK, RRF_a, DO, r2, r3, new, r1_32, add, adds32)
28 C(0x5a00, A, RX_a, Z, r1, m2_32s, new, r1_32, add, adds32)
29 C(0xe35a, AY, RXY_a, LD, r1, m2_32s, new, r1_32, add, adds32)
35 F(0xb30a, AEBR, RRE, Z, e1, e2, new, e1, aeb, f32, IF_BFP)
36 F(0xb31a, ADBR, RRE, Z, f1, f2, new, f1, adb, f64, IF_BFP)
38 F(0xed0a, AEB, RXE, Z, e1, m2_32u, new, e1, aeb, f32, IF_BFP)
39 F(0xed1a, ADB, RXE, Z, f1, m2_64, new, f1, adb, f64, IF_BFP)
41 C(0xb9c8, AHHHR, RRF_a, HW, r2_sr32, r3_sr32, new, r1_32h, add, adds32)
42 C(0xb9d8, AHHLR, RRF_a, HW, r2_sr32, r3, new, r1_32h, add, adds32)
[all …]
/openbmc/qemu/linux-user/hppa/
H A Dcpu_loop.c32 abi_ulong new = env->gr[24]; in hppa_lws() local
44 new = tswap32(new); in hppa_lws()
45 ret = qatomic_cmpxchg((uint32_t *)g2h(cs, addr), old, new); in hppa_lws()
49 case 2: /* elf32 atomic "new" cmpxchg */ in hppa_lws()
54 if (((addr | old | new) & ((1 << size) - 1)) in hppa_lws()
57 || !access_ok(cs, VERIFY_READ, new, 1 << size)) { in hppa_lws()
65 new = *(uint8_t *)g2h(cs, new); in hppa_lws()
66 ret = qatomic_cmpxchg((uint8_t *)g2h(cs, addr), old, new); in hppa_lws()
71 new = *(uint16_t *)g2h(cs, new); in hppa_lws()
72 ret = qatomic_cmpxchg((uint16_t *)g2h(cs, addr), old, new); in hppa_lws()
[all …]
/openbmc/docs/designs/oem/ibm/
H A Dsystem-power-mode.md33 the OCC state changes to ACTIVE or the customer updates these new parameters at
61 The new code would be part of the openpower-occ-control repository. New code
64 - OCC poll response data showing a new state of Active (0x03)
73 When initiated, the new code will send a SET_MODE_AND_STATE command (0x20) to
81 of these, that new customer parameter will become current and the default value
96 New interfaces that were described in the requirements section will be
98 Redfish. API impact - Add Redfish support for new parameters as well as new user
102 Documentation impact - need to document new parameters Performance impact -
103 minimal, new code will only execute on OCC state change which should normally
104 happen once at boot time or when user changes parameters. The new code is only
/openbmc/u-boot/net/
H A Dchecksum.c36 unsigned add_ip_checksums(unsigned offset, unsigned sum, unsigned new) in add_ip_checksums() argument
41 new = ~new & 0xffff; in add_ip_checksums()
47 new = ((new >> 8) & 0xff) | ((new << 8) & 0xff00); in add_ip_checksums()
49 checksum = sum + new; in add_ip_checksums()
/openbmc/u-boot/tools/libfdt/
H A Dfdt_rw.c5 int fdt_remove_unused_strings(const void *old, void *new) in fdt_remove_unused_strings() argument
16 memcpy(new, old, size); in fdt_remove_unused_strings()
17 fdt_set_size_dt_strings(new, 0); in fdt_remove_unused_strings()
19 /* Add every property name back into the new string table */ in fdt_remove_unused_strings()
26 fdt_get_property_by_offset(new, offset, NULL); in fdt_remove_unused_strings()
28 ret = fdt_find_add_string_(new, str); in fdt_remove_unused_strings()
/openbmc/qemu/target/sparc/
H A Dtrace-events18 int_helper_set_softint(uint32_t softint) "new 0x%08x"
19 int_helper_clear_softint(uint32_t softint) "new 0x%08x"
20 int_helper_write_softint(uint32_t softint) "new 0x%08x"
23 sparc64_cpu_check_irqs_set_irq(unsigned int i, int old, int new) "Set CPU IRQ %d old=0x%x new=0x%x"
28 …e(uint32_t pstate_regs, uint32_t new_pstate_regs) "change_pstate: switching regs old=0x%x new=0x%x"
29 win_helper_no_switch_pstate(uint32_t new_pstate_regs) "change_pstate: regs new=0x%x (unchanged)"
30 win_helper_wrpil(uint32_t psrpil, uint32_t new_pil) "old=0x%x new=0x%x"
/openbmc/qemu/tests/tcg/hexagon/
H A Dtest_dotnew.S1 /* Purpose: test the .new operator while performing memory stores. */
12 memw(sp+#0) = r0.new
16 memw(sp+#4) = r1.new
20 memw(sp+#8) = r2.new
36 p0 = cmp.eq(r3, #2); if (p0.new) jump:t pass
/openbmc/qemu/tests/qemu-iotests/
H A D12148 echo '=== New refcount structures may not conflict with existing structures ==='
62 # which has precisely the required size so that the new refcount block allocated
68 # This should not happen, the new refcount structures may not conflict with
89 # new refcount structures at cluster index 65536 (which is the same as the
90 # cluster_index parameter in this case), allocating a new refcount block for
92 # Therefore, the new refcount structures may not be put at cluster_index
93 # (because new_block already describes that cluster, and the new structures try
100 echo '=== Allocating a new refcount block must not leave holes in the image ==='
113 # All 256 entries of the refcount block are used, so writing a new
114 # data cluster also allocates a new refcount block

12345678910>>...130