Home
last modified time | relevance | path

Searched refs:specs (Results 1 – 25 of 119) sorted by relevance

12345

/openbmc/u-boot/api/
H A Dapi_storage.c43 static struct stor_spec specs[ENUM_MAX] = { { 0, 0, 0, 0, NULL }, }; variable
52 specs[ENUM_IDE].max_dev = CONFIG_SYS_IDE_MAXDEVICE; in dev_stor_init()
53 specs[ENUM_IDE].enum_started = 0; in dev_stor_init()
54 specs[ENUM_IDE].enum_ended = 0; in dev_stor_init()
55 specs[ENUM_IDE].type = DEV_TYP_STOR | DT_STOR_IDE; in dev_stor_init()
56 specs[ENUM_IDE].name = "ide"; in dev_stor_init()
59 specs[ENUM_MMC].max_dev = CONFIG_SYS_MMC_MAX_DEVICE; in dev_stor_init()
60 specs[ENUM_MMC].enum_started = 0; in dev_stor_init()
61 specs[ENUM_MMC].enum_ended = 0; in dev_stor_init()
62 specs[ENUM_MMC].type = DEV_TYP_STOR | DT_STOR_MMC; in dev_stor_init()
[all …]
/openbmc/linux/drivers/video/fbdev/core/
H A Dfbmon.c292 static void parse_vendor_block(unsigned char *block, struct fb_monspecs *specs) in parse_vendor_block() argument
294 specs->manufacturer[0] = ((block[0] & 0x7c) >> 2) + '@'; in parse_vendor_block()
295 specs->manufacturer[1] = ((block[0] & 0x03) << 3) + in parse_vendor_block()
297 specs->manufacturer[2] = (block[1] & 0x1f) + '@'; in parse_vendor_block()
298 specs->manufacturer[3] = 0; in parse_vendor_block()
299 specs->model = block[2] + (block[3] << 8); in parse_vendor_block()
300 specs->serial = block[4] + (block[5] << 8) + in parse_vendor_block()
302 specs->year = block[9] + 1990; in parse_vendor_block()
303 specs->week = block[8]; in parse_vendor_block()
304 DPRINTK(" Manufacturer: %s\n", specs->manufacturer); in parse_vendor_block()
[all …]
H A Dmodedb.c1142 const struct fb_videomode *fb_find_best_display(const struct fb_monspecs *specs, in fb_find_best_display() argument
1168 if (specs->misc & FB_MISC_1ST_DETAIL) { in fb_find_best_display()
1174 if (specs->max_x && specs->max_y) { in fb_find_best_display()
1178 var.xres = (specs->max_x * 7200)/254; in fb_find_best_display()
1179 var.yres = (specs->max_y * 7200)/254; in fb_find_best_display()
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/
H A D0006-cpp-honor-sysroot.patch24 gcc/cp/lang-specs.h | 2 +-
28 diff --git a/gcc/cp/lang-specs.h b/gcc/cp/lang-specs.h
30 --- a/gcc/cp/lang-specs.h
31 +++ b/gcc/cp/lang-specs.h
/openbmc/linux/tools/testing/selftests/bpf/
H A Dtest_loader.c536 struct test_spec *specs, in run_subtest() argument
570 spec_iter = &specs[i++]; in run_subtest()
647 struct test_spec *specs = NULL; in process_subtest() local
666 specs = calloc(nr_progs, sizeof(struct test_spec)); in process_subtest()
667 if (!ASSERT_OK_PTR(specs, "Can't alloc specs array")) in process_subtest()
673 err = parse_test_spec(tester, obj, prog, &specs[i++]); in process_subtest()
681 struct test_spec *spec = &specs[i++]; in process_subtest()
688 specs, spec, false); in process_subtest()
691 specs, spec, true); in process_subtest()
696 free_test_spec(&specs[i]); in process_subtest()
[all …]
H A Dveristat.c225 static int parse_stats(const char *stats_str, struct stat_specs *specs);
722 static int parse_stat(const char *stat_name, struct stat_specs *specs) in parse_stat() argument
729 if (specs->spec_cnt >= ARRAY_SIZE(specs->ids)) { in parse_stat()
730 fprintf(stderr, "Can't specify more than %zd stats\n", ARRAY_SIZE(specs->ids)); in parse_stat()
745 specs->ids[specs->spec_cnt] = id; in parse_stat()
746 specs->variants[specs->spec_cnt] = var; in parse_stat()
747 specs->asc[specs->spec_cnt] = has_order ? is_asc : stat_defs[id].asc_by_default; in parse_stat()
748 specs->spec_cnt++; in parse_stat()
753 static int parse_stats(const char *stats_str, struct stat_specs *specs) in parse_stats() argument
763 err = parse_stat(next, specs); in parse_stats()
[all …]
/openbmc/openbmc/poky/meta/recipes-core/picolibc/
H A Dpicolibc-helloworld_git.bb24 # use a custom linker script, the GCC specs provided by picolibc
27 …${LDFLAGS} --verbose -T${S}/hello-world/${PICOLIBC_LINKERSCRIPT} -specs=picolibc.specs --oslib=sem…
H A Dpicolibc_git.bb28 # Install GCC specs on libdir
32 FILES:${PN}-dev:append = " ${libdir}/*.specs ${libdir}/*.ld"
/openbmc/linux/Documentation/userspace-api/netlink/
H A Dindex.rst13 intro-specs
14 specs
H A Dintro-specs.rst8 specifications. For more detailed description of the specs see :doc:`specs`.
26 YAML specs can be found under ``Documentation/netlink/specs/``.
30 $ ./tools/net/ynl/cli.py --spec Documentation/netlink/specs/ethtool.yaml \
67 /* Documentation/netlink/specs/fou.yaml */
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/u-boot/u-boot/corstone1000/
H A D0040-fix-runtime-capsule-update-flags-checks.patch23 + /* According to UEFI specs when the flag is CAPSULE_FLAGS_PERSIST_ACROSS_RESET,
31 + /*According to UEFI specs a capsule which has the CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE
41 + /* According to UEFI specs, a capsule which has the CAPSULE_FLAGS_INITIATE_RESET
/openbmc/qemu/block/
H A Drbd.c561 rbd_encryption_spec_t *specs; in qemu_rbd_encryption_load2() local
572 specs = g_new0(rbd_encryption_spec_t, encrypt_count); in qemu_rbd_encryption_load2()
578 specs[i].format = RBD_ENCRYPTION_FORMAT_LUKS1; in qemu_rbd_encryption_load2()
581 specs[i].opts = luks_opts; in qemu_rbd_encryption_load2()
582 specs[i].opts_size = sizeof(*luks_opts); in qemu_rbd_encryption_load2()
593 specs[i].format = RBD_ENCRYPTION_FORMAT_LUKS2; in qemu_rbd_encryption_load2()
596 specs[i].opts = luks2_opts; in qemu_rbd_encryption_load2()
597 specs[i].opts_size = sizeof(*luks2_opts); in qemu_rbd_encryption_load2()
608 specs[i].format = RBD_ENCRYPTION_FORMAT_LUKS; in qemu_rbd_encryption_load2()
611 specs[i].opts = luks_any_opts; in qemu_rbd_encryption_load2()
[all …]
/openbmc/openbmc/poky/meta/recipes-graphics/xorg-lib/
H A Dxorg-lib-common.inc17 EXTRA_OECONF = "--disable-specs --without-groff --without-ps2pdf --without-fop"
23 --disable-specs --without-groff --without-ps2pdf --without-fop \
/openbmc/openbmc/poky/meta/recipes-core/picolibc/picolibc/
H A Davoid_polluting_cross_directories.patch3 Picolibc uses its own specs file: picolibc.specs to facilitate compilation, this
4 needs to be passed down to GCC via the -specs argument.
6 Using this specs file overrides some of the default options our toolchain was
/openbmc/linux/tools/net/ynl/generated/
H A DMakefile28 %-user.h: ../../../../Documentation/netlink/specs/%.yaml $(TOOL)
32 %-user.c: ../../../../Documentation/netlink/specs/%.yaml $(TOOL)
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-bus-usb320 See USB specs for its meaning.
326 See USB specs for its meaning.
342 See USB specs for its meaning.
348 See USB specs for its meaning.
354 See USB specs for its meaning.
360 See USB specs for its meaning.
366 See USB specs for its meaning.
372 See USB specs for its meaning.
378 See USB specs for its meaning.
384 See USB specs for its meaning.
[all …]
/openbmc/linux/drivers/gpu/drm/etnaviv/
H A Detnaviv_gpu.c186 u32 specs[4]; in etnaviv_hw_specs() local
189 specs[0] = gpu_read(gpu, VIVS_HI_CHIP_SPECS); in etnaviv_hw_specs()
190 specs[1] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_2); in etnaviv_hw_specs()
191 specs[2] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_3); in etnaviv_hw_specs()
192 specs[3] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_4); in etnaviv_hw_specs()
194 gpu->identity.stream_count = etnaviv_field(specs[0], in etnaviv_hw_specs()
196 gpu->identity.register_max = etnaviv_field(specs[0], in etnaviv_hw_specs()
198 gpu->identity.thread_count = etnaviv_field(specs[0], in etnaviv_hw_specs()
200 gpu->identity.vertex_cache_size = etnaviv_field(specs[0], in etnaviv_hw_specs()
202 gpu->identity.shader_core_count = etnaviv_field(specs[0], in etnaviv_hw_specs()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/libselinux/
H A D0001-libselinux-Do-not-define-gettid-if-glibc-2.30-is-use.patch13 …s -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -s…
/openbmc/linux/drivers/video/fbdev/
H A Dtdfxfb.c1346 struct fb_monspecs *specs) in tdfxfb_probe_i2c_connector() argument
1355 fb_edid_to_monspecs(edid, specs); in tdfxfb_probe_i2c_connector()
1377 struct fb_monspecs *specs; in tdfxfb_probe() local
1483 specs = &info->monspecs; in tdfxfb_probe()
1488 err = tdfxfb_probe_i2c_connector(default_par, specs); in tdfxfb_probe()
1491 if (specs->modedb == NULL) in tdfxfb_probe()
1496 fb_videomode_to_modelist(specs->modedb, in tdfxfb_probe()
1497 specs->modedb_len, in tdfxfb_probe()
1499 m = fb_find_best_display(specs, &info->modelist); in tdfxfb_probe()
1516 specs->modedb, specs->modedb_len, in tdfxfb_probe()
[all …]
/openbmc/u-boot/doc/
H A DREADME.mpc83xxads11 Reading specs from /usr/powerpc/lib/gcc/powerpc-linux/3.4.3/specs
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/
H A Dgcc-target.inc52 ${gcclibdir}/${TARGET_SYS}/${BINV}/specs \
159 # Hack around specs file assumptions
160 …gcc/${TARGET_SYS}/${BINV}/specs && sed -i -e '/^*cross_compile:$/ { n; s/1/0/; }' ${D}${libdir}/gc…
/openbmc/linux/drivers/pmdomain/imx/
H A Dscu-pd.c316 struct of_phandle_args specs; in imx_sc_pd_get_console_rsrc() local
324 0, &specs); in imx_sc_pd_get_console_rsrc()
328 imx_con_rsrc = specs.args[0]; in imx_sc_pd_get_console_rsrc()
/openbmc/qemu/docs/
H A Dindex.rst19 specs/index
/openbmc/u-boot/board/theobroma-systems/puma_rk3399/
H A DMAINTAINERS9 W: https://www.theobroma-systems.com/rk3399-q7/tech-specs
/openbmc/u-boot/board/theobroma-systems/lion_rk3368/
H A DMAINTAINERS9 W: https://www.theobroma-systems.com/rk3368-uq7/tech-specs

12345