Home
last modified time | relevance | path

Searched refs:up (Results 1 – 25 of 1713) sorted by relevance

12345678910>>...69

/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/
H A Dserial_scc.c77 volatile scc_uart_t *up; in mpc85xx_serial_init() local
85 up = (scc_uart_t *)&(cpm->im_dprambase[PROFF_SCC]); in mpc85xx_serial_init()
119 up->scc_genscc.scc_rbase = dpaddr; in mpc85xx_serial_init()
120 up->scc_genscc.scc_tbase = dpaddr+sizeof(cbd_t); in mpc85xx_serial_init()
121 up->scc_genscc.scc_rfcr = CPMFCR_EB; in mpc85xx_serial_init()
122 up->scc_genscc.scc_tfcr = CPMFCR_EB; in mpc85xx_serial_init()
123 up->scc_genscc.scc_mrblr = 1; in mpc85xx_serial_init()
124 up->scc_maxidl = 0; in mpc85xx_serial_init()
125 up->scc_brkcr = 1; in mpc85xx_serial_init()
126 up->scc_parec = 0; in mpc85xx_serial_init()
[all …]
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/
H A Drestapi.py39 up = urlparse(url)
41 if up.scheme == 'file':
42 return self.load_index_file(up, url, load)
44 if up.scheme == 'http' or up.scheme == 'https':
45 return self.load_index_web(up, url, load)
50 def load_index_file(self, up, url, load): argument
58 if not os.path.exists(up.path):
59 raise FileNotFoundError(up.path)
67 params = self.layerindex._parse_params(up.params)
72 index.config['DESCRIPTION'] = up.path
[all …]
/openbmc/phosphor-webui/app/common/styles/base/
H A Dfoundation.scss996 .small-up-1 > .column, .small-up-1 > .columns {
999 .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
1001 .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
1003 .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
1006 .small-up-2 > .column, .small-up-2 > .columns {
1009 .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
1011 .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
1013 .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
1016 .small-up-3 > .column, .small-up-3 > .columns {
1019 .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
[all …]
/openbmc/openbmc/meta-facebook/meta-yosemite4/recipes-phosphor/health/
H A Dphosphor-health-monitor_%.bbappend5 SRC_URI += "file://clean-up-filesystem \
6 file://clean-up-filesystem.service \
8 STORAGE_CRIT_TGT = "clean-up-filesystem.service"
15 clean-up-filesystem.service \
19 …install -m 0644 ${UNPACKDIR}/clean-up-filesystem.service ${D}${systemd_system_unitdir}/clean-up-fi…
21 install -m 0755 ${UNPACKDIR}/clean-up-filesystem ${D}${libexecdir}/${PN}/
/openbmc/openbmc/poky/meta-yocto-bsp/recipes-kernel/linux/files/
H A D0001-Revert-serial-8250_omap-Drop-pm_runtime_irq_safe.patch40 - /* Shallow idle state wake-up to an IO interrupt? */
47 if (up->dma) {
55 + serial8250_rpm_get(up);
60 schedule_delayed_work(&up->overrun_backoff, delay);
65 + serial8250_rpm_put(up);
73 + serial8250_rpm_get(up);
77 + serial8250_rpm_put(up);
85 + serial8250_rpm_put(up);
97 omap_serial_fill_features_erratas(&up, priv);
108 struct uart_8250_port *up = NULL;
[all …]
/openbmc/openbmc/meta-facebook/meta-yosemite4/recipes-phosphor/health/phosphor-health-monitor/
H A Dclean-up-filesystem.service2 Description=Clean up files that might full up filesystem
6 ExecStart=/usr/libexec/phosphor-health-monitor/clean-up-filesystem
7 SyslogIdentifier=clean-up-filesystem
/openbmc/openbmc/meta-ampere/meta-common/recipes-extended/rsyslog/rsyslog/
H A Drsyslog.logrotate3 # Keep up to four 64k files for ipmi_sel (256k total)
13 # Keep up to four 64k files for redfish (256k total)
23 # Keep up to 2 256k files for cpu console logs
34 # Keep up to 2 64k files for atf console logs
45 # Keep up to 2 64k files for secpro and mpro console logs
57 # Keep up to 2 64k files for Mt.Jade's scp console logs
/openbmc/qemu/tests/qemu-iotests/tests/
H A Dimage-fleecing.out3 --- Setting up images ---
11 --- Setting up Fleecing Graph ---
16 --- Setting up NBD Export ---
72 --- Setting up images ---
80 --- Setting up Fleecing Graph ---
86 --- Setting up NBD Export ---
142 --- Setting up images ---
150 --- Setting up Fleecing Graph ---
157 --- Setting up NBD Export ---
214 --- Setting up images ---
[all …]
/openbmc/u-boot/drivers/serial/
H A Dserial_mpc8xx.c84 smc_uart_t __iomem *up; in serial_mpc8xx_probe() local
91 up = (smc_uart_t __iomem *)&cp->cp_dparam[PROFF_SMC]; in serial_mpc8xx_probe()
93 out_be16(&up->smc_rpbase, 0); in serial_mpc8xx_probe()
129 out_be16(&up->smc_rbase, CPM_SERIAL_BASE); in serial_mpc8xx_probe()
130 out_be16(&up->smc_tbase, CPM_SERIAL_BASE + sizeof(cbd_t)); in serial_mpc8xx_probe()
131 out_8(&up->smc_rfcr, SMC_EB); in serial_mpc8xx_probe()
132 out_8(&up->smc_tfcr, SMC_EB); in serial_mpc8xx_probe()
152 out_be16(&up->smc_mrblr, CONFIG_SYS_SMC_RXBUFLEN); in serial_mpc8xx_probe()
153 out_be16(&up->smc_maxidl, CONFIG_SYS_MAXIDLE); in serial_mpc8xx_probe()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ifenslave/
H A Difenslave_2.14.bb14 … install -m 0755 -D ${S}/debian/ifenslave.if-pre-up ${D}${sysconfdir}/network/if-pre-up.d/ifenslave
16 install -m 0755 -D ${S}/debian/ifenslave.if-up ${D}${sysconfdir}/network/if-up.d/ifenslave
/openbmc/qemu/libdecnumber/
H A DdecNumber.c351 Unit *up; /* work pointer */ in decNumberFromUInt32() local
354 for (up=dn->lsu; uin>0; up++) { in decNumberFromUInt32()
355 *up=(Unit)(uin%(DECDPUNMAX+1)); in decNumberFromUInt32()
358 dn->digits=decGetDigits(dn->lsu, up-dn->lsu); in decNumberFromUInt32()
381 const Unit *up; /* .. */ in decNumberToInt32() local
383 up=dn->lsu; /* -> lsu */ in decNumberToInt32()
384 lo=*up; /* get 1 to 9 digits */ in decNumberToInt32()
389 up++; in decNumberToInt32()
391 for (d=DECDPUN; d<dn->digits; up++, d+=DECDPUN) hi+=*up*powers[d-1]; in decNumberToInt32()
417 const Unit *up; /* .. */ in decNumberToUInt32() local
[all …]
/openbmc/openbmc/meta-yadro/meta-vegman/recipes-yadro/fru/vegman-fru-handler/
H A Dbaseboard-fru-handler.sh22 local up=""
24 up=true
27 if [ "${up}" = true ]; then
31 if [ "${up}" = true ]; then
32 ip link set dev "${iface}" up ||:
/openbmc/openbmc/poky/meta/recipes-core/ifupdown/files/
H A Dtweak-ptest-script.patch33 >$dir/up-res-out.$test 2>$dir/up-res-err.$test || exitcode=$?
37 echo "====stderr===="; cat $dir/up-res-err.$test) > $dir/up-res.$test
48 … if diff -ub $dir/up.$test $dir/up-res.$test && diff -ub $dir/down.$test $dir/down-res.$test; then
/openbmc/qemu/tests/tcg/i386/
H A Dtest-i386-f2xm1.c6 long double arg, down, up; member
1133 !check_equal(ld_res, tests[i].up)) { in main()
1135 tests[i].arg, tests[i].down, tests[i].up, ld_res); in main()
H A Dtest-i386-fyl2xp1.c6 long double arg0, arg1, down, up; member
1148 !check_equal(ld_res, tests[i].up)) { in main()
1150 tests[i].arg0, tests[i].arg1, tests[i].down, tests[i].up, in main()
H A Dtest-i386-fpatan.c6 long double arg0, arg1, down, up; member
1063 !check_equal(ld_res, tests[i].up)) { in main()
1065 tests[i].arg0, tests[i].arg1, tests[i].down, tests[i].up, in main()
H A Dtest-i386-fyl2x.c6 long double arg0, arg1, down, up; member
1153 !check_equal(ld_res, tests[i].up)) { in main()
1155 tests[i].arg0, tests[i].arg1, tests[i].down, tests[i].up, in main()
/openbmc/u-boot/arch/arm/mach-imx/
H A Dimx_bootaux.c70 int ret, up; in do_bootaux() local
75 up = arch_auxiliary_core_check_up(0); in do_bootaux()
76 if (up) { in do_bootaux()
/openbmc/qemu/ui/
H A Dinput-legacy.c90 KeyValue **up = NULL; in qmp_send_key() local
100 up = g_realloc(up, sizeof(*up) * (count+1)); in qmp_send_key()
101 up[count] = copy_key_value(p->value); in qmp_send_key()
106 qemu_input_event_send_key(NULL, up[count], false); in qmp_send_key()
109 g_free(up); in qmp_send_key()
/openbmc/openbmc/meta-fii/meta-kudo/recipes-extended/rsyslog/rsyslog/
H A Drsyslog.logrotate3 # Keep up to four 64k files for ipmi_sel (256k total)
13 # Keep up to four 64k files for redfish (256k total)
23 # Keep up to two 2k files for gpio log (4k total)
/openbmc/openbmc/meta-fii/meta-mori/recipes-extended/rsyslog/rsyslog/
H A Drsyslog.logrotate3 # Keep up to four 64k files for ipmi_sel (256k total)
13 # Keep up to four 64k files for redfish (256k total)
23 # Keep up to two 2k files for gpio log (4k total)
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/squid/files/
H A Dsquid.nm4 up|down|vpn-up|vpn-down)
/openbmc/u-boot/doc/device-tree-bindings/rtc/
H A Dbrcm,brcmstb-waketimer.txt1 Broadcom STB wake-up Timer
3 The Broadcom STB wake-up timer provides a 27Mhz resolution timer, with the
4 ability to wake up the system from low-power suspend/standby modes.
/openbmc/openbmc/meta-bytedance/meta-g220a/recipes-network/network/static-mac-addr/
H A Dmac-check28 local up=$?
29 [[ $up -eq 0 ]] && ip link set dev "$iface" down
31 [[ $up -eq 0 ]] && ip link set dev "$iface" up
/openbmc/qemu/tests/rocker/
H A Dbridge-vlan34 # bring up bridge and ports
36 simp ssh tut sw1 --cmd "sudo ifconfig br0 up"
37 simp ssh tut sw1 --cmd "sudo ifconfig sw1p1 up"
38 simp ssh tut sw1 --cmd "sudo ifconfig sw1p2 up"
43 simp ssh tut h1 --cmd "sudo ifconfig sw1p1 up"
47 simp ssh tut h2 --cmd "sudo ifconfig sw1p1 up"

12345678910>>...69