/openbmc/u-boot/api/ |
H A D | api_storage.c | 43 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 D | fbmon.c | 292 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 …]
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-bus-usb | 320 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/openbmc/poky/meta/recipes-devtools/gcc/gcc/ |
H A D | 0006-cpp-honor-sysroot.patch | 24 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/Documentation/userspace-api/netlink/ |
H A D | intro-specs.rst | 8 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 */
|
H A D | index.rst | 13 intro-specs 14 specs
|
H A D | specs.rst | 11 Netlink specs should be complete and not depend on any other spec 15 Internally kernel uses the YAML specs to generate: 22 YAML specifications can be found under ``Documentation/netlink/specs/`` 25 See :doc:`intro-specs` for a practical starting guide. 27 All specs must be licensed under 34 There are four schema levels for Netlink specs, from the simplest used
|
/openbmc/openbmc/poky/meta/recipes-core/picolibc/ |
H A D | picolibc-helloworld_git.bb | 24 # 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 D | picolibc_git.bb | 28 # Install GCC specs on libdir 32 FILES:${PN}-dev:append = " ${libdir}/*.specs ${libdir}/*.ld"
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | test_loader.c | 536 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 D | veristat.c | 48 * When specifying stat specs in comparison mode, user can use one of the 225 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 [all …]
|
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/u-boot/u-boot/corstone1000/ |
H A D | 0040-fix-runtime-capsule-update-flags-checks.patch | 23 + /* 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/openbmc/poky/meta/recipes-core/picolibc/picolibc/ |
H A D | avoid_polluting_cross_directories.patch | 3 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/qemu/block/ |
H A D | rbd.c | 561 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/ipmitool/ |
H A D | Makefile.am | 71 mkdir -p $(RPMDIR)/{BUILD,RPMS,SRPMS,SOURCES,SPECS,tmp} 72 cp control/ipmitool.spec $(RPMDIR)/SPECS 75 $(RPMDIR)/SPECS/ipmitool.spec
|
/openbmc/openbmc-tools/openbmctool/build-scripts/ |
H A D | Makefile | 42 for i in BUILD BUILDROOT RPMS SOURCES SPECS SRPMS; do mkdir -p $(RPMDIR)/$$i; done 43 cp openbmctool-rhel$(RHEL_VER).spec $(RPMDIR)/SPECS 46 …DIR)' --define "_version $(VER)" --define "_release $(REL)" -bb $(RPMDIR)/SPECS/openbmctool-rhel$(…
|
/openbmc/openbmc/poky/meta/recipes-graphics/xorg-lib/ |
H A D | xorg-lib-common.inc | 17 EXTRA_OECONF = "--disable-specs --without-groff --without-ps2pdf --without-fop" 23 --disable-specs --without-groff --without-ps2pdf --without-fop \
|
/openbmc/linux/drivers/net/ethernet/cisco/enic/ |
H A D | vnic_enet.h | 40 #define VENET_INTR_TYPE_MIN 0 /* Timer specs min interrupt spacing */ 41 #define VENET_INTR_TYPE_IDLE 1 /* Timer specs idle time before irq */
|
/openbmc/linux/tools/net/ynl/generated/ |
H A D | Makefile | 28 %-user.h: ../../../../Documentation/netlink/specs/%.yaml $(TOOL) 32 %-user.c: ../../../../Documentation/netlink/specs/%.yaml $(TOOL)
|
/openbmc/u-boot/doc/ |
H A D | README.mpc83xxads | 11 Reading specs from /usr/powerpc/lib/gcc/powerpc-linux/3.4.3/specs
|
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/ |
H A D | gcc-target.inc | 52 ${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/openbmc/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/libselinux/ |
H A D | 0001-libselinux-Do-not-define-gettid-if-glibc-2.30-is-use.patch | 13 …s -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -s…
|
/openbmc/linux/drivers/gpu/drm/etnaviv/ |
H A D | etnaviv_gpu.c | 186 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/linux/sound/pci/vx222/ |
H A D | vx222.c | 68 /* hw specs */ 80 /* hw specs */ 92 /* hw specs */
|
/openbmc/linux/drivers/gpu/drm/amd/display/dc/ |
H A D | dc_dsc.h | 96 /* TODO - Hardware/specs limitation should be owned by dc dsc and returned to DM, 98 * Hardware/specs limitation should not be writable by DM.
|