/openbmc/linux/arch/parisc/kernel/ |
H A D | alternative.c | 48 u32 *from, replacement; in apply_alternatives() local 55 replacement = entry->replacement; in apply_alternatives() 63 index, cond, len, from, replacement); in apply_alternatives() 70 if (replacement == INSN_PxTLB) { in apply_alternatives() 71 replacement = *from; in apply_alternatives() 73 replacement |= (1 << 10); /* set el bit */ in apply_alternatives() 80 if (replacement == INSN_NOP && len > 1) in apply_alternatives() 81 replacement = 0xe8000002 + (len-2)*8; /* "b,n .+8" */ in apply_alternatives() 84 index, cond, len, replacement, from, from); in apply_alternatives() 90 source = (u32 *)((ulong)&entry->replacement + entry->replacement); in apply_alternatives() [all …]
|
/openbmc/linux/include/kunit/ |
H A D | static_stub.h | 26 * KUNIT_STATIC_STUB_REDIRECT() - call a replacement 'static stub' if one exists 32 * kunit_activate_static_stub() to pass a replacement function in. The 33 * replacement function will be called by KUNIT_STATIC_STUB_REDIRECT(), which 61 typeof(&real_fn_name) replacement; \ 67 replacement = kunit_hooks.get_static_stub_address(current_test, \ 70 if (unlikely(replacement)) \ 71 return replacement(args); \ 108 * real_fn, not any previously-configured replacement.
|
/openbmc/linux/arch/parisc/include/asm/ |
H A D | alternative.h | 27 u32 replacement; /* replacement instruction or code */ member 36 #define ALTERNATIVE(cond, replacement) "!0:" \ argument 41 ".word " __stringify(replacement) " !" \ 47 #define ALTERNATIVE(from, to, cond, replacement)\ argument 52 .word replacement ! \
|
/openbmc/qemu/scripts/codeconverter/codeconverter/ |
H A D | patching.py | 33 # replacement string for file.original_content[start:end] 34 replacement: str 95 def sub(self, original: str, replacement: str) -> str: 103 return original.replace(self.group(0), replacement) 109 def replacement(self) -> Optional[str]: member in FileMatch 110 """Return replacement text for pattern, to use new code conventions""" 113 def make_patch(self, replacement: str) -> 'Patch': 115 return Patch(self.start(), self.end(), replacement) 117 def make_subpatch(self, start: int, end: int, replacement: str) -> 'Patch': 118 return Patch(self.start() + start, self.start() + end, replacement) [all …]
|
/openbmc/linux/Documentation/dev-tools/kunit/api/ |
H A D | functionredirection.rst | 40 function) to another function (the "replacement" function). 43 is running, and if a replacement function is available. If so, that function is 65 2. Write one or more replacement functions. 87 the real function, and the replacement function. You can call this several 88 times with different replacement functions to swap out implementations of the 102 the replacement function instead. Such calls may be buried deep in the 126 It's also possible to use these replacement functions to test to see if a
|
/openbmc/linux/arch/loongarch/include/asm/ |
H A D | alternative.h | 14 s32 replace_offset; /* offset to replacement instruction */ 15 u16 feature; /* feature bit set for replacement */ 50 * Pad the second replacement alternative with additional NOPs if it is 51 * additionally longer than the first replacement alternative. 65 " .byte " alt_rlen(num) "\n" /* replacement len */ 67 #define ALTINSTR_REPLACEMENT(newinstr, feature, num) /* replacement */ \
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/mozjs/mozjs-115/ |
H A D | 0001-build-do-not-use-autoconf-s-config.sub-to-canonicali.patch | 30 - for check_suffix, replacement in munging.items(): 33 - triplet = triplet[: -len(suffix)] + replacement 37 - assert result.endswith(replacement) 38 - result = result[: -len(replacement)] + suffix
|
/openbmc/dbus-sensors/src/tests/ |
H A D | test_MCTPReactor.cpp | 227 auto replacement = std::make_shared<MockMCTPDevice>(); in TEST() local 228 EXPECT_CALL(*replacement, describe()) in TEST() 229 .WillRepeatedly(testing::Return("mock device: replacement")); in TEST() 230 EXPECT_CALL(*replacement, setup(testing::_)) in TEST() 232 EXPECT_CALL(*replacement, remove()).WillOnce(testing::Invoke([&]() { in TEST() 239 .WillOnce(testing::Return(replacement)) in TEST() 240 .WillOnce(testing::Return(replacement)); in TEST() 243 reactor->manageMCTPDevice("/test", replacement); in TEST() 248 EXPECT_TRUE(testing::Mock::VerifyAndClearExpectations(replacement.get())); in TEST()
|
/openbmc/linux/arch/loongarch/kernel/ |
H A D | alternative.c | 187 union loongarch_instruction *instr, *replacement; in apply_alternatives() local 204 replacement = (void *)&a->replace_offset + a->replace_offset; in apply_alternatives() 216 replacement, a->replacementlen); in apply_alternatives() 223 replacement, a->replacementlen); in apply_alternatives() 226 DUMP_WORDS(replacement, nr_repl, "%px: rpl_insn: ", replacement); in apply_alternatives() 228 copy_alt_insns(insnbuf, instr, replacement, nr_repl); in apply_alternatives()
|
/openbmc/openbmc/poky/meta/recipes-devtools/file/ |
H A D | file_5.45.bb | 11 DEPENDS = "file-replacement-native" 12 DEPENDS:class-native = "bzip2-replacement-native" 58 PROVIDES:append:class-native = " file-replacement-native" 60 # depends on file-replacement-native.
|
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/ |
H A D | gcc-common.inc | 121 replacement=${1} 127 sed -i "s@${STAGING_DIR_TARGET}@$replacement@g" ${B}/gcc/configargs.h 128 sed -i "s@${STAGING_DIR_HOST}@/$replacement@g" ${B}/gcc/configargs.h 133 replacement=${2} 139 sed -i "s@$stagingdir@$replacement@g" ${B}/gcc/checksum-options
|
/openbmc/linux/arch/s390/kernel/ |
H A D | alternative.c | 24 u8 *instr, *replacement; in __apply_alternatives() local 32 replacement = (u8 *)&a->repl_offset + a->repl_offset; in __apply_alternatives() 43 s390_kernel_write(instr, replacement, a->instrlen); in __apply_alternatives()
|
/openbmc/linux/drivers/dma-buf/ |
H A D | dma-fence-chain.c | 42 struct dma_fence *prev, *replacement, *tmp; in dma_fence_chain_walk() local 57 replacement = dma_fence_chain_get_prev(prev_chain); in dma_fence_chain_walk() 62 replacement = NULL; in dma_fence_chain_walk() 66 RCU_INITIALIZER(replacement))); in dma_fence_chain_walk() 70 dma_fence_put(replacement); in dma_fence_chain_walk()
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
H A D | python3-smbus2_0.5.0.bb | 1 SUMMARY = "Drop-in replacement for smbus-cffi/smbus-python in pure Python" 2 DESCRIPTION = "smbus2 is a drop-in replacement for smbus-cffi/smbus-python in pure Python"
|
/openbmc/docs/designs/management-console/ |
H A D | Authorities_List_Management.md | 17 use case requires bulk replacement (see the ReplaceAll interface below) 31 2. Bulk Replacement: given a PEM file with multiple root certificates, it will 40 5. Atomic: Bulk Installation and Bulk Replacement are atomic; that is, if there
|
/openbmc/linux/drivers/md/ |
H A D | raid10.c | 469 rdev = conf->mirrors[dev].replacement; in raid10_end_write_request() 480 /* Never record new bad blocks to replacement, in raid10_end_write_request() 778 rdev = rcu_dereference(conf->mirrors[disk].replacement); in read_balance() 783 * Read replacement first to prevent reading both rdev in read_balance() 784 * and replacement as NULL during replacement replace in read_balance() 1270 struct bio *bio, bool replacement, in raid10_write_one_disk() argument 1282 if (replacement) { in raid10_write_one_disk() 1283 rdev = conf->mirrors[devnum].replacement; in raid10_write_one_disk() 1285 /* Replacement just got moved to main 'rdev' */ in raid10_write_one_disk() 1293 if (replacement) in raid10_write_one_disk() [all …]
|
H A D | raid10.h | 19 struct md_rdev *rdev, *replacement; member 91 * replacement device. 143 * We sometimes need an extra bio to write to the replacement.
|
/openbmc/linux/arch/x86/include/asm/ |
H A D | alternative.h | 35 * separate table which is a pure address list without replacement ptr 75 s32 repl_offset; /* offset to replacement instruction */ 79 u32 cpuid: 16; /* CPUID bit set for replacement */ 178 * Pad the second replacement alternative with additional NOPs if it is 179 * additionally longer than the first replacement alternative. 204 " .byte " alt_rlen(num) "\n" /* replacement len */ 206 #define ALTINSTR_REPLACEMENT(newinstr, num) /* replacement */ \ 207 "# ALT: replacement " #num "\n" \
|
/openbmc/qemu/docs/about/ |
H A D | removed-features.rst | 42 There is no replacement, the ``-tdf`` option has just been ignored since the 86 The ``-balloon none`` option was a no-op and has no replacement. 176 with *memory-backend-ram* backend as replacement for parameter ``mem`` 356 and removed without a replacement. 626 Removed with no replacement. 631 Removed with no replacement. 671 for more than 10 years. Removed with no replacement. 690 Block migration has been removed. For a replacement, see "QMP 707 Removed with no replacement. 763 No replacement. The ``change vnc password`` and ``change DEVICE MEDIUM`` [all …]
|
/openbmc/linux/drivers/hid/ |
H A D | hid-uclogic-params.h | 211 * Pointer to the common part of the replacement report descriptor, 217 * Size of the common part of the replacement report descriptor. 241 /* Pointer to the replacement report descriptor. NULL if none. */ 244 * Size of the replacement report descriptor. 262 /* Get a replacement report descriptor for a tablet's interface. */
|
/openbmc/linux/tools/testing/selftests/drivers/net/mlxsw/ |
H A D | rif_mac_profiles_occ.sh | 70 log_test "RIF MAC profile replacement" 118 # MAC replacement should fail because all the MAC profiles are in use 124 log_test "RIF MAC profile shared replacement"
|
/openbmc/linux/arch/arm64/include/asm/ |
H A D | alternative.h | 15 s32 alt_offset; /* offset to replacement instruction */ 16 u16 cpucap; /* cpucap bit set for replacement */
|
/openbmc/linux/include/linux/crush/ |
H A D | crush.h | 144 * Replacement weights for each item in a bucket. The size of the 157 * Replacement weights and ids for a given straw2 bucket, for 161 * replacement weights found at __weight_set[N]__ are used instead of 185 * Replacement weights and ids for each bucket in the crushmap. The 199 struct crush_choose_arg *args; /*!< replacement for each bucket
|
/openbmc/linux/arch/sparc/include/asm/ |
H A D | contregs.h | 21 #define AC_M_TSUTRCR 0x1000 /* s TLB Replacement Ctrl Reg */ 25 #define AC_M_TRCR 0x1400 /* hv TLB Replacement Control Reg */
|
/openbmc/linux/arch/s390/include/asm/ |
H A D | alternative.h | 13 s32 repl_offset; /* offset to replacement instruction */ 14 u16 facility; /* facility bit set for replacement */ 59 #define ALTINSTR_REPLACEMENT(altinstr, num) /* replacement */ \
|