/openbmc/linux/rust/alloc/ |
H A D | slice.rs | 17 use core::borrow::{Borrow, BorrowMut}; 31 use crate::borrow::ToOwned; 713 let size = slice.iter().map(|slice| slice.borrow().len()).sum(); in concat() 716 result.extend_from_slice(v.borrow()) in concat() 733 let size = slice.iter().map(|v| v.borrow().len()).sum::<usize>() + slice.len() - 1; in join() 735 result.extend_from_slice(first.borrow()); in join() 739 result.extend_from_slice(v.borrow()) in join() 757 slice.iter().map(|v| v.borrow().len()).sum::<usize>() + sep.len() * (slice.len() - 1); in join() 759 result.extend_from_slice(first.borrow()); in join() 763 result.extend_from_slice(v.borrow()) in join() [all …]
|
H A D | boxed.rs | 153 use core::borrow; 174 use crate::borrow::Cow; 2061 impl<T: ?Sized, A: Allocator> borrow::Borrow<T> for Box<T, A> { 2062 fn borrow(&self) -> &T { in borrow() method 2068 impl<T: ?Sized, A: Allocator> borrow::BorrowMut<T> for Box<T, A> {
|
H A D | lib.rs | 245 pub mod borrow; module
|
/openbmc/qemu/target/hexagon/ |
H A D | fma_emu.c | 154 static Int128 int128_sub_borrow(Int128 a, Int128 b, int borrow) in int128_sub_borrow() argument 157 if (borrow != 0) { in int128_sub_borrow() 233 int borrow; in accum_sub() local 272 borrow = (b.round << 2) | (b.guard << 1) | b.sticky; in accum_sub() 273 ret.mant = int128_sub_borrow(a.mant, b.mant, (borrow != 0)); in accum_sub() 274 borrow = 0 - borrow; in accum_sub() 275 ret.guard = (borrow >> 2) & 1; in accum_sub() 276 ret.round = (borrow >> 1) & 1; in accum_sub() 277 ret.sticky = (borrow >> 0) & 1; in accum_sub()
|
H A D | attribs_def.h.inc | 72 DEF_ATTRIB(CVI_VS_3SRC, "This shift needs to borrow a source register", "", "")
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-grpcio/ |
H A D | 0001-crypto-use-_Generic-only-if-defined-__cplusplus.patch | 67 // CRYPTO_subc_* returns |x - y - borrow|, and sets |*out_borrow| to the borrow 68 // bit. |borrow| must be zero or one. 72 #define CRYPTO_GENERIC_SUBC(x, y, borrow, out_borrow) \
|
/openbmc/linux/rust/kernel/ |
H A D | types.rs | 38 unsafe fn borrow<'a>(ptr: *const core::ffi::c_void) -> Self::Borrowed<'a>; in borrow() method 58 unsafe fn borrow<'a>(ptr: *const core::ffi::c_void) -> &'a T { in borrow() method 80 unsafe fn borrow<'a>(_: *const core::ffi::c_void) -> Self::Borrowed<'a> {} in borrow() method
|
/openbmc/linux/arch/powerpc/boot/ |
H A D | devtree.c | 159 int i, borrow = 0; in sub_reg() local 162 int prev_borrow = borrow; in sub_reg() 163 borrow = reg[i] < sub[i] + prev_borrow; in sub_reg() 167 return !borrow; in sub_reg()
|
/openbmc/linux/crypto/ |
H A D | ecc.c | 335 u64 borrow = 0; in vli_sub() local 341 diff = left[i] - right[i] - borrow; in vli_sub() 343 borrow = (diff > left[i]); in vli_sub() 348 return borrow; in vli_sub() 356 u64 borrow = right; in vli_usub() local 362 diff = left[i] - borrow; in vli_usub() 364 borrow = (diff > left[i]); in vli_usub() 369 return borrow; in vli_usub() 533 u64 borrow = vli_sub(result, left, right, ndigits); in vli_mod_sub() local 539 if (borrow) in vli_mod_sub() [all …]
|
/openbmc/linux/Documentation/admin-guide/blockdev/ |
H A D | nbd.rst | 13 to borrow disk space from another computer.
|
/openbmc/linux/lib/crypto/mpi/ |
H A D | ec.c | 204 mpi_limb_t borrow; in ec_addm_25519() local 215 borrow = mpihelp_sub_n(wp, wp, ctx->p->d, wsize); in ec_addm_25519() 216 mpih_set_cond(n, ctx->p->d, wsize, (borrow != 0UL)); in ec_addm_25519() 226 mpi_limb_t borrow; in ec_subm_25519() local 236 borrow = mpihelp_sub_n(wp, up, vp, wsize); in ec_subm_25519() 237 mpih_set_cond(n, ctx->p->d, wsize, (borrow != 0UL)); in ec_subm_25519() 331 mpi_limb_t borrow; in ec_subm_448() local 341 borrow = mpihelp_sub_n(wp, up, vp, wsize); in ec_subm_448() 342 mpih_set_cond(n, ctx->p->d, wsize, (borrow != 0UL)); in ec_subm_448()
|
/openbmc/linux/rust/alloc/vec/ |
H A D | partial_eq.rs | 5 use crate::borrow::Cow;
|
H A D | mod.rs | 72 use crate::borrow::{Cow, ToOwned};
|
/openbmc/linux/arch/m68k/fpsp040/ |
H A D | srem_mod.S | 236 |..use the borrow of the previous compare 237 bcss R_LT_Y | ...borrow is set iff R < Y
|
/openbmc/linux/rust/kernel/sync/ |
H A D | arc.rs | 243 unsafe fn borrow<'a>(ptr: *const core::ffi::c_void) -> ArcBorrow<'a, T> { in borrow() method
|
/openbmc/linux/Documentation/arch/parisc/ |
H A D | registers.rst | 78 C/B (carry/borrow bits) used by C code
|
/openbmc/linux/arch/arm/nwfpe/ |
H A D | softfloat-macros | 399 2^128, so any borrow out (carry out) is lost. The result is broken into two 418 Subtraction is modulo 2^192, so any borrow out (carry out) is lost. The
|
/openbmc/openbmc/poky/meta/recipes-bsp/v86d/v86d/ |
H A D | Update-x86emu-from-X.org.patch | 15217 - /* calculate the borrow chain. See note at top */ 15223 + /* calculate the borrow chain. See note at top */ 15253 - /* calculate the borrow chain. See note at top */ 15254 + /* calculate the borrow chain. See note at top */ 15288 - /* calculate the borrow chain. See note at top */ 15294 + /* calculate the borrow chain. See note at top */ 15393 - /* calculate the borrow chain. See note at top */ 15400 + /* calculate the borrow chain. See note at top */ 15429 /* calculate the borrow chain. See note at top */ 15462 /* calculate the borrow chain. See note at top */ [all …]
|
/openbmc/docs/designs/ |
H A D | virtual-media.md | 93 > diskless - if you use an initrd) to borrow disk space from other computers.
|
/openbmc/qemu/target/riscv/insn_trans/ |
H A D | trans_rvi.c.inc | 188 /* borrow in to second word */
|
/openbmc/linux/Documentation/driver-api/ |
H A D | parport-lowlevel.rst | 641 driver to temporarily ``borrow`` it. ``parport_yield`` does not block;
|
/openbmc/qemu/tcg/s390x/ |
H A D | tcg-target.c.inc | 1439 * As above, but we're looking for borrow, or !carry. 1440 * The second insn computes d - d - borrow, or -1 for true
|
/openbmc/linux/arch/m68k/ifpsp060/src/ |
H A D | fplsp.S | 9559 #..use the borrow of the previous compare 9560 bcs.b R_LT_Y # borrow is set iff R < Y
|