Home
last modified time | relevance | path

Searched full:lp (Results 1 – 25 of 95) sorted by relevance

1234

/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/
H A Drdist-6.1.5-links.patch12 +void freelinkinfo(lp)
13 + struct linkbuf *lp;
15 + if (lp->pathname)
16 + free(lp->pathname);
17 + if (lp->src)
18 + free(lp->src);
19 + if (lp->target)
20 + free(lp->target);
21 + free(lp);
29 struct linkbuf *lp;
[all …]
H A Drdist-6.1.5-hardlink.patch9 lp->target = strdup(Tdest);
11 lp->target = NULL;
12 - if (!lp->pathname || !lp->src || !(Tdest && lp->target))
13 + if (!lp->pathname || !lp->src || (Tdest && !lp->target))
19 rname, lp->pathname, lp->src, lp->target);
21 - if (*lp->target == CNULL)
22 + if (lp->target == NULL || *lp->target == CNULL)
24 opts, lp->pathname, rname);
/openbmc/qemu/hw/input/
H A Dlasips2.c155 LASIPS2Port *lp = LASIPS2_PORT(opaque); in lasips2_reg_write() local
157 trace_lasips2_reg_write(size, lp->id, addr, in lasips2_reg_write()
162 lp->control = val; in lasips2_reg_write()
166 if (lp->control & LASIPS2_CONTROL_LOOPBACK) { in lasips2_reg_write()
167 lp->buf = val; in lasips2_reg_write()
168 lp->loopback_rbne = true; in lasips2_reg_write()
169 qemu_set_irq(lp->irq, 1); in lasips2_reg_write()
173 if (lp->id) { in lasips2_reg_write()
174 ps2_write_mouse(PS2_MOUSE_DEVICE(lp->ps2dev), val); in lasips2_reg_write()
176 ps2_write_keyboard(PS2_KBD_DEVICE(lp->ps2dev), val); in lasips2_reg_write()
[all …]
/openbmc/qemu/hw/mips/
H A Dloongson3_bootp.c113 void init_loongson_params(struct loongson_params *lp, void *p, in init_loongson_params() argument
118 lp->cpu_offset = cpu_to_le64((uintptr_t)p - (uintptr_t)lp); in init_loongson_params()
122 lp->memory_offset = cpu_to_le64((uintptr_t)p - (uintptr_t)lp); in init_loongson_params()
126 lp->system_offset = cpu_to_le64((uintptr_t)p - (uintptr_t)lp); in init_loongson_params()
130 lp->irq_offset = cpu_to_le64((uintptr_t)p - (uintptr_t)lp); in init_loongson_params()
134 lp->interface_offset = cpu_to_le64((uintptr_t)p - (uintptr_t)lp); in init_loongson_params()
138 lp->boarddev_table_offset = cpu_to_le64((uintptr_t)p - (uintptr_t)lp); in init_loongson_params()
142 lp->special_offset = cpu_to_le64((uintptr_t)p - (uintptr_t)lp); in init_loongson_params()
/openbmc/u-boot/fs/ubifs/
H A Dlprops.c188 struct ubifs_lprops *lp; in add_to_lpt_heap() local
190 lp = heap->arr[cpos]; in add_to_lpt_heap()
191 lp->flags &= ~LPROPS_CAT_MASK; in add_to_lpt_heap()
192 lp->flags |= LPROPS_UNCAT; in add_to_lpt_heap()
193 list_add(&lp->list, &c->uncat_list); in add_to_lpt_heap()
511 * @lp: LEB properties to change
526 const struct ubifs_lprops *lp, in ubifs_change_lp() argument
534 struct ubifs_lprops *lprops = (struct ubifs_lprops *)lp; in ubifs_change_lp()
658 const struct ubifs_lprops *lp; in ubifs_change_one_lp() local
662 lp = ubifs_lpt_lookup_dirty(c, lnum); in ubifs_change_one_lp()
[all …]
H A Dgc.c453 * @lp: describes the LEB to garbage collect
459 int ubifs_garbage_collect_leb(struct ubifs_info *c, struct ubifs_lprops *lp) in ubifs_garbage_collect_leb() argument
464 int err = 0, lnum = lp->lnum; in ubifs_garbage_collect_leb()
471 if (lp->free + lp->dirty == c->leb_size) { in ubifs_garbage_collect_leb()
473 dbg_gc("LEB %d is free, return it", lp->lnum); in ubifs_garbage_collect_leb()
474 ubifs_assert(!(lp->flags & LPROPS_INDEX)); in ubifs_garbage_collect_leb()
476 if (lp->free != c->leb_size) { in ubifs_garbage_collect_leb()
480 * which obsoletes something in 'lp->pnum'. in ubifs_garbage_collect_leb()
485 err = ubifs_change_one_lp(c, lp->lnum, c->leb_size, in ubifs_garbage_collect_leb()
490 err = ubifs_leb_unmap(c, lp->lnum); in ubifs_garbage_collect_leb()
[all …]
H A Dreplay.c92 const struct ubifs_lprops *lp; in set_bud_lprops() local
97 lp = ubifs_lpt_lookup_dirty(c, b->bud->lnum); in set_bud_lprops()
98 if (IS_ERR(lp)) { in set_bud_lprops()
99 err = PTR_ERR(lp); in set_bud_lprops()
103 dirty = lp->dirty; in set_bud_lprops()
104 if (b->bud->start == 0 && (lp->free != c->leb_size || lp->dirty != 0)) { in set_bud_lprops()
108 * property values should be @lp->free == @c->leb_size and in set_bud_lprops()
109 * @lp->dirty == 0, but that is not the case. The reason is that in set_bud_lprops()
125 lp->free, lp->dirty); in set_bud_lprops()
127 lp->free, lp->dirty); in set_bud_lprops()
[all …]
/openbmc/u-boot/drivers/net/
H A Dpcnet.c87 static pcnet_priv_t *lp; variable
334 if (lp == NULL) { in pcnet_init()
337 lp = (pcnet_priv_t *)addr; in pcnet_init()
340 sizeof(*lp->uc)); in pcnet_init()
341 flush_dcache_range(addr, addr + sizeof(*lp->uc)); in pcnet_init()
343 lp->uc = (struct pcnet_uncached_priv *)addr; in pcnet_init()
346 sizeof(*lp->rx_buf)); in pcnet_init()
347 flush_dcache_range(addr, addr + sizeof(*lp->rx_buf)); in pcnet_init()
348 lp->rx_buf = (void *)addr; in pcnet_init()
351 uc = lp->uc; in pcnet_init()
[all …]
/openbmc/u-boot/arch/nds32/cpu/n1213/ae3xx/
H A Dlowlevel_init.S84 move $r11, $lp
94 move $lp, $r11
100 move $r10, $lp
109 move $r11, $lp
122 move $lp, $r11
/openbmc/openbmc/meta-openembedded/meta-xfce/recipes-panel-plugins/pulseaudio/xfce4-pulseaudio-plugin/
H A D0001-Use-new-xfw_window_activate-signature-in-libwindowin.patch19 if (g_strcmp0 (player->player_label, xfw_window_get_name (lp->data)) == 0)
21 - xfw_window_activate (lp->data, g_get_monotonic_time () / 1000, NULL);
22 + xfw_window_activate (lp->data, NULL, g_get_monotonic_time () / 1000, NULL);
/openbmc/u-boot/arch/nds32/cpu/n1213/ag101/
H A Dlowlevel_init.S90 move $r11, $lp
163 move $lp, $r11
171 move $r10, $lp
182 move $r11, $lp
186 move $r0, $lp
260 move $lp, $r11
287 move $lp, $r11
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libxml/libxml-libxml-perl/
H A D0001-libxml-mm-Fix-function-prototypes-in-function-pointe.patch29 LocalProxyNodePtr lp = (LocalProxyNodePtr) payload;
30 ProxyNodePtr node = (ProxyNodePtr) lp->proxy;
48 LocalProxyNodePtr lp;
/openbmc/openbmc/meta-security/recipes-security/ecryptfs-utils/files/
H A Decryptfs-utils-CVE-2016-6224.patch11 at boot. (LP: #1597154)
37 + at boot. (LP: #1597154)
53 + # block device that follow the "/dev/foo0p1" pattern (LP: #1597154)
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/lprng/lprng/
H A D0001-checkpc-Do-not-define-Mail_fd-multiple-times.patch6 Its also defines in var.c via lp.h this is flagged when -fno-common is
10 …rs.o:/usr/src/debug/lprng/3.8.C-r0/build/src/../../lprng-3.8.C/src/include/lp.h:72: multiple defin…
/openbmc/u-boot/drivers/net/phy/
H A Dmeson-gxl.c19 * the link partner (LP) supports aneg but the LP never acked our base
22 * but it actually is not what the LP is advertising. It seems that we
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-printing/gutenprint/
H A Dgutenprint_5.3.4.bb44 chgrp lp ${D}${sysconfdir}/cups
61 # Pull in base-passwd for the lp user
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/vsftpd/files/
H A Dvsftpd.ftpusers6 lp
H A Dvsftpd.user_list11 lp
/openbmc/qemu/target/sparc/
H A Dasi.h190 #define ASI_CORE_AVAILABLE 0x41 /* (CMT) LP Available */
191 #define ASI_CORE_ENABLE_STAT 0x41 /* (CMT) LP Enable Status */
192 #define ASI_CORE_ENABLE 0x41 /* (CMT) LP Enable RW */
194 #define ASI_CORE_RUNNING_RW 0x41 /* (CMT) LP Running RW */
195 #define ASI_CORE_RUNNING_W1S 0x41 /* (CMT) LP Running Write-One Set */
196 #define ASI_CORE_RUNNING_W1C 0x41 /* (CMT) LP Running Write-One Clr */
197 #define ASI_CORE_RUNNING_STAT 0x41 /* (CMT) LP Running Status */
234 #define ASI_CORE_ID 0x63 /* (CMT) LP ID register */
/openbmc/u-boot/drivers/video/exynos/
H A Dexynos_mipi_dsi_lowlevel.h74 unsigned int lp);
76 unsigned int lp);
/openbmc/u-boot/arch/arm/mach-imx/mx7/
H A Dsnvs.c17 /* Ensure SNVS HPCOMR sets NPSWA_EN to allow unpriv access to SNVS LP */ in init_snvs()
/openbmc/u-boot/lib/lzma/
H A Dlzma.txt203 -lp{N}: set number of literal pos bits - [0, 4], default: 0
204 lp switch is intended for periodical data when period is
206 periodical data you can use lp=2. Often it's better to set lc0,
207 if you change lp switch.
304 0 1 Special LZMA properties (lc,lp, pb in encoded form)
330 state_size = (4 + (1.5 << (lc + lp))) KB
331 by default (lc=3, lp=0), state_size = 16 KB.
/openbmc/u-boot/include/linux/
H A Dmdio.h45 #define MDIO_AN_LPA 19 /* AN LP abilities (base page) */
245 #define MDIO_AN_10GBT_STAT_LPTRR 0x0200 /* LP training reset req. */
246 #define MDIO_AN_10GBT_STAT_LPLTABLE 0x0400 /* LP loop timing ability */
247 #define MDIO_AN_10GBT_STAT_LP10G 0x0800 /* LP is 10GBT capable */
253 /* EEE Supported/Advertisement/LP Advertisement registers.
/openbmc/u-boot/arch/nds32/cpu/n1213/
H A Dstart.S298 move $lp, $r0 /* offset of board_init_r() */
299 add $lp, $lp, $r9 /* real address of board_init_r() */
306 move $r15, $lp /* store function address into $r15 */
311 jr $lp /* jump to board_init_r() */
/openbmc/u-boot/arch/nds32/lib/
H A Dinterrupts.c76 "lp : %08lx gp : %08lx fp : %08lx\n", in show_regs()
77 regs->ipc, regs->sp, regs->lp, regs->gp, regs->fp); in show_regs()

1234