Home
last modified time | relevance | path

Searched full:entries (Results 1 – 25 of 3199) sorted by relevance

12345678910>>...128

/openbmc/linux/drivers/net/ethernet/engleder/
Dtsnep_selftests.c
/openbmc/linux/tools/testing/selftests/netfilter/
Dnft_audit.sh
/openbmc/u-boot/arch/x86/cpu/qemu/
H A De820.c12 struct e820_entry *entries) in install_e820_map() argument
14 entries[0].addr = 0; in install_e820_map()
15 entries[0].size = ISA_START_ADDRESS; in install_e820_map()
16 entries[0].type = E820_RAM; in install_e820_map()
18 entries[1].addr = ISA_START_ADDRESS; in install_e820_map()
19 entries[1].size = ISA_END_ADDRESS - ISA_START_ADDRESS; in install_e820_map()
20 entries[1].type = E820_RESERVED; in install_e820_map()
27 entries[2].addr = ISA_END_ADDRESS; in install_e820_map()
28 entries[2].size = gd->relocaddr - TOTAL_MALLOC_LEN - ISA_END_ADDRESS; in install_e820_map()
29 entries[2].type = E820_RAM; in install_e820_map()
[all …]
/openbmc/u-boot/arch/x86/lib/
H A De820.c13 * Install a default e820 table with 4 entries as follows:
21 struct e820_entry *entries) in install_e820_map() argument
23 entries[0].addr = 0; in install_e820_map()
24 entries[0].size = ISA_START_ADDRESS; in install_e820_map()
25 entries[0].type = E820_RAM; in install_e820_map()
26 entries[1].addr = ISA_START_ADDRESS; in install_e820_map()
27 entries[1].size = ISA_END_ADDRESS - ISA_START_ADDRESS; in install_e820_map()
28 entries[1].type = E820_RESERVED; in install_e820_map()
29 entries[2].addr = ISA_END_ADDRESS; in install_e820_map()
30 entries[2].size = gd->ram_size - ISA_END_ADDRESS; in install_e820_map()
[all …]
/openbmc/linux/tools/lib/api/fd/
Darray.c
/openbmc/linux/drivers/gpu/drm/amd/pm/powerplay/hwmgr/
Dsmu_helper.c
Dhwmgr_ppt.h
Dvega10_processpptables.c
/openbmc/linux/tools/perf/util/
Dmem2node.c
Darm64-frame-pointer-unwind-support.c
Drb_resort.h
Dpstack.c
/openbmc/qemu/block/
H A Dqcow2-cache.c39 Qcow2CachedTable *entries; member
91 Qcow2CachedTable *t = &c->entries[i]; in can_clean_entry()
102 /* Skip the entries that we don't need to clean */ in qcow2_cache_clean_unused()
109 c->entries[i].offset = 0; in qcow2_cache_clean_unused()
110 c->entries[i].lru_counter = 0; in qcow2_cache_clean_unused()
137 c->entries = g_try_new0(Qcow2CachedTable, num_tables); in qcow2_cache_create()
141 if (!c->entries || !c->table_array) { in qcow2_cache_create()
143 g_free(c->entries); in qcow2_cache_create()
156 assert(c->entries[i].ref == 0); in qcow2_cache_destroy()
160 g_free(c->entries); in qcow2_cache_destroy()
[all …]
/openbmc/openbmc-test-automation/redfish/systems/LogServices/
H A Dtest_post_codes.robot2 Documentation Test suite to verify BIOS POST code log entries.
31 ... /redfish/v1/Systems/${SYSTEM_ID}/LogServices/PostCodes/Entries
49 ... /redfish/v1/Systems/${SYSTEM_ID}/LogServices/PostCodes/Entries
67 ... /redfish/v1/Systems/${SYSTEM_ID}/LogServices/PostCodes/Entries
78 [Setup] Populate PostCode Logs Incase No Prior Entries Available
91 [Documentation] Verify the post code log entries persist after BMC reboot.
93 [Setup] Populate PostCode Logs Incase No Prior Entries Available
99 ... /redfish/v1/Systems/${SYSTEM_ID}/LogServices/PostCodes/Entries
107 ... /redfish/v1/Systems/${SYSTEM_ID}/LogServices/PostCodes/Entries
113 [Documentation] Verify clear log action for post code entries.
[all …]
/openbmc/linux/
Dopengrok2.0.log
/openbmc/linux/tools/perf/tests/
Dfdarray.c
/openbmc/u-boot/arch/x86/lib/fsp/
H A Dfsp_dram.c65 struct e820_entry *entries) in install_e820_map() argument
76 entries[num_entries].addr = res_desc->phys_start; in install_e820_map()
77 entries[num_entries].size = res_desc->len; in install_e820_map()
80 entries[num_entries].type = E820_RAM; in install_e820_map()
82 entries[num_entries].type = E820_RESERVED; in install_e820_map()
90 entries[num_entries].addr = CONFIG_PCIE_ECAM_BASE; in install_e820_map()
91 entries[num_entries].size = CONFIG_PCIE_ECAM_SIZE; in install_e820_map()
92 entries[num_entries].type = E820_RESERVED; in install_e820_map()
100 entries[num_entries].addr = gd->start_addr_sp - CONFIG_STACK_SIZE; in install_e820_map()
101 entries[num_entries].size = gd->ram_top - gd->start_addr_sp + \ in install_e820_map()
[all …]
/openbmc/linux/Documentation/ABI/testing/
Dsysfs-firmware-efi-esrt
/openbmc/linux/arch/x86/include/asm/e820/
Dtypes.h
/openbmc/u-boot/tools/binman/
H A Dimage.py22 An image is comprised of a collection of entries each containing binary
63 """Expand out any entries which have calculated sub-entries
65 Some entries are expanded out at runtime, e.g. 'files', which produces
66 a section containing a list of files. Process these entries so that
74 When binman has completed packing the entries the offset and size of
83 """Allow entries to adjust the device tree
85 Some entries need to adjust the device tree for their purposes. This
96 """Handle entries that want to set the offset/size of other entries
99 of entries to update, it updates them.
104 """Pack all entries into the image"""
[all …]
/openbmc/qemu/util/
H A Dqdist.c21 dist->entries = g_new(struct qdist_entry, 1); in qdist_init()
28 g_free(dist->entries); in qdist_destroy()
57 entry = bsearch(&e, dist->entries, dist->n, sizeof(e), qdist_cmp); in qdist_add()
67 dist->entries = g_renew(struct qdist_entry, dist->entries, dist->size); in qdist_add()
70 entry = &dist->entries[dist->n - 1]; in qdist_add()
73 qsort(dist->entries, dist->n, sizeof(*entry), qdist_cmp); in qdist_add()
114 if (dist->entries[0].count) { in qdist_pr_internal()
123 min = dist->entries[0].count; in qdist_pr_internal()
126 struct qdist_entry *e = &dist->entries[i]; in qdist_pr_internal()
137 struct qdist_entry *e = &dist->entries[i]; in qdist_pr_internal()
[all …]
/openbmc/openbmc-tools/expectedJsonChecker/
H A DREADME.md3 A tool that cross checks an expected set of JSON entries, by a given index, with
4 a given input set of JSON entries. In addition, there's an ability to filter
5 expected entries by using logical operations against entries within another file
6 contain JSON entries. This filtering functionality on cross checking expected
7 entries with a set of input is optional
9 Expected entries that only want to be found within the input JSON should use a
16 entries within the BMC's enumerated sensor JSON output against an expected set
17 of entries for a specific machine. In addition, the expected set of entries are
18 different based on specific entries within inventory. So given a dump of a
20 expected set of entries that should be contained within the sensor data is
[all …]
/openbmc/intel-ipmi-oem/
H A Dgenerate-allowlist.py21 "Multiple entries with matching netfn/cmd found ({})".format(e)
79 entries = []
86 if any([e.match(item) for item in entries]):
90 entries.append(e)
91 entries.sort()
92 return entries
95 def output(entries, hppfile): argument
110 len(entries)
114 lines.extend([" {}".format(e) for e in entries])
126 entries = parse(config) variable
[all …]
/openbmc/linux/Documentation/core-api/
Dxarray.rst
/openbmc/qemu/target/xtensa/core-de233_fpu/
H A Dcore-matmap.h156 * entries, page sizes, which fields are writable or constant, etc.
168 * TLB way entries are virtually indexed.
177 * common encoding with PTE entries; the encoding is the index into
221 #define XCHAL_ITLB_SET0_ENTRIES_LOG2 2 /* log2(number of entries in this way) */
222 #define XCHAL_ITLB_SET0_ENTRIES 4 /* number of entries in this way (always a power of 2) */
229 2^PAGESZ_BITS entries in list, unsupported entries are zero */
242 #define XCHAL_ITLB_SET1_ENTRIES_LOG2 2 /* log2(number of entries in this way) */
243 #define XCHAL_ITLB_SET1_ENTRIES 4 /* number of entries in this way (always a power of 2) */
250 2^PAGESZ_BITS entries in list, unsupported entries are zero */
263 #define XCHAL_ITLB_SET2_ENTRIES_LOG2 2 /* log2(number of entries in this way) */
[all …]

12345678910>>...128