MCPcopy Create free account
hub / github.com/coreboot/coreboot / region_create

Function region_create

src/commonlib/include/commonlib/region.h:99–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97 }
98
99static inline struct region region_create(size_t offset, size_t size)
100{
101 assert(offset + size - 1 >= offset);
102 return (struct region){ .offset = offset, .size = size };
103}
104
105static inline enum cb_err region_create_untrusted(
106 struct region *r, unsigned long long offset, unsigned long long size)

Callers 13

fmap_locate_areaFunction · 0.85
winbond_bpbits_to_regionFunction · 0.85
report_fspt_outputFunction · 0.85
report_fsp_outputFunction · 0.85
smm_create_mapFunction · 0.85
smm_load_moduleFunction · 0.85
write_ddr_informationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected