| /openbmc/u-boot/tools/ |
| H A D | zynqmpbif.c | 55 char *(*parse)(char *line, struct bif_entry *bf); 61 int (*add)(struct bif_entry *bf); 110 static char *parse_dest_cpu(char *line, struct bif_entry *bf) in parse_dest_cpu() argument 116 bf->dest_cpu = i << PART_ATTR_DEST_CPU_SHIFT; in parse_dest_cpu() 126 bf->dest_cpu = i << PART_ATTR_DEST_CPU_SHIFT; in parse_dest_cpu() 135 static char *parse_el(char *line, struct bif_entry *bf) in parse_el() argument 142 bf->exp_lvl = i; in parse_el() 150 static char *parse_load(char *line, struct bif_entry *bf) in parse_load() argument 154 bf->load = strtoll(line, &endptr, 0); in parse_load() 159 static char *parse_entry(char *line, struct bif_entry *bf) in parse_entry() argument [all …]
|
| /openbmc/qemu/block/ |
| H A D | parallels-ext.c | 127 ParallelsDirtyBitmapFeature bf; in parallels_load_bitmap() local 134 if (data_size < sizeof(bf)) { in parallels_load_bitmap() 137 data_size, sizeof(bf)); in parallels_load_bitmap() 140 memcpy(&bf, data, sizeof(bf)); in parallels_load_bitmap() 141 bf.size = le64_to_cpu(bf.size); in parallels_load_bitmap() 142 bf.granularity = le32_to_cpu(bf.granularity) << BDRV_SECTOR_BITS; in parallels_load_bitmap() 143 bf.l1_size = le32_to_cpu(bf.l1_size); in parallels_load_bitmap() 144 data += sizeof(bf); in parallels_load_bitmap() 145 data_size -= sizeof(bf); in parallels_load_bitmap() 147 if (bf.size != bs->total_sectors) { in parallels_load_bitmap() [all …]
|
| /openbmc/bmcweb/include/ |
| H A D | security_headers.hpp | 11 using bf = boost::beast::http::field; in addSecurityHeaders() typedef 15 res.addHeader(bf::strict_transport_security, "max-age=31536000; " in addSecurityHeaders() 18 res.addHeader(bf::pragma, "no-cache"); in addSecurityHeaders() 20 if (res.getHeaderValue(bf::cache_control).empty()) in addSecurityHeaders() 22 res.addHeader(bf::cache_control, "no-store, max-age=0"); in addSecurityHeaders() 29 res.addHeader(bf::x_frame_options, "DENY"); in addSecurityHeaders()
|
| /openbmc/ipmitool/include/ipmitool/ |
| H A D | ipmi_firewall.h | 99 static inline int bit_test(const unsigned char * bf, int n) { in bit_test() argument 100 return !!(bf[n>>3]&(1<<(n%8))); in bit_test() 102 static inline void bit_set(unsigned char * bf, int n, int v) { in bit_set() argument 103 bf[n>>3] = (bf[n>>3] & ~(1<<(n%8))) | ((v?1:0)<<(n%8)); in bit_set()
|
| /openbmc/ipmitool/lib/ |
| H A D | ipmi_mc.c | 181 struct bitfield_data * bf; in printf_mc_usage() local 190 for (bf = mc_enables_bf; bf->name != NULL; bf++) { in printf_mc_usage() 191 lprintf(LOG_NOTICE, " %-20s %s", bf->name, bf->desc); in printf_mc_usage() 251 struct bitfield_data * bf; in ipmi_mc_get_enables() local 268 for (bf = mc_enables_bf; bf->name != NULL; bf++) { in ipmi_mc_get_enables() 269 printf("%-40s : %sabled\n", bf->desc, in ipmi_mc_get_enables() 270 rsp->data[0] & bf->mask ? "en" : "dis"); in ipmi_mc_get_enables() 290 struct bitfield_data * bf; in ipmi_mc_set_enables() local 321 for (bf = mc_enables_bf; bf->name != NULL; bf++) { in ipmi_mc_set_enables() 322 int nl = strlen(bf->name); in ipmi_mc_set_enables() [all …]
|
| /openbmc/u-boot/drivers/gpio/ |
| H A D | mscc_sgpio.c | 42 #define __M(bf) GENMASK((bf).end, (bf).beg) argument 43 #define __F(bf, x) (__M(bf) & ((x) << (bf).beg)) argument 44 #define __X(bf, x) (((x) >> (bf).beg) & GENMASK(((bf).end - (bf).beg), 0)) argument
|
| /openbmc/u-boot/scripts/kconfig/ |
| H A D | kxgettext.c | 12 static char *escape(const char* text, char *bf, int len) in escape() argument 14 char *bfp = bf; in escape() 60 return bf; in escape() 153 char bf[16384]; in message__add() local 154 char *escaped = escape(msg, bf, sizeof(bf)); in message__add()
|
| /openbmc/smbios-mdr/tools/ |
| H A D | sst-compare-redfish-os.py | 118 for bf in redfish_config["BaseSpeedPrioritySettings"]: 119 if not actual_hp_p1 or bf["BaseSpeedMHz"] > actual_hp_p1: 120 actual_hp_p1 = bf["BaseSpeedMHz"] 121 actual_hp_cores = set(bf["CoreIDs"]) 122 if not actual_lp_p1 or bf["BaseSpeedMHz"] < actual_lp_p1: 123 actual_lp_p1 = bf["BaseSpeedMHz"]
|
| H A D | sst-info.sh | 131 echo "$0 (show|set-config|set-bf) [ARGS...]" 135 echo "set-bf cpuN val - Set SST-BF enablement for cpuN to val (boolean)"
|
| /openbmc/u-boot/lib/ |
| H A D | tiny-printf.c | 17 char *bf; /* Digit buffer */ member 27 *info->bf++ = c; in out() 235 info->bf = buf; in _vprintf() 236 p = info->bf; in _vprintf() 301 *info->bf = 0; in _vprintf() 302 info->bf = p; in _vprintf() 303 while (*info->bf++ && width > 0) in _vprintf()
|
| /openbmc/bmcweb/http/ |
| H A D | websocket_impl.hpp | 79 using bf = boost::beast::http::field; in start() typedef 81 req.getHeaderValue(bf::sec_websocket_protocol)}; in start() 103 m.insert(bf::sec_websocket_protocol, protocolHeader); in start() 106 m.insert(bf::strict_transport_security, in start() 110 m.insert(bf::pragma, "no-cache"); in start() 111 m.insert(bf::cache_control, "no-Store,no-Cache"); in start()
|
| /openbmc/u-boot/arch/sh/lib/ |
| H A D | start.S | 36 bf 2b 45 bf 3b
|
| H A D | udivsi3_i4i.S | 47 bf udiv_le128 49 bf udiv_ge64k 174 bf div_le128 178 bf/s div_ge64k 239 bf div_le128_neg 243 bf/s div_ge64k_neg
|
| H A D | udivsi3_i4i-Os.S | 33 bf/s large_divisor 120 bf/s sdiv_large_divisor
|
| H A D | udiv_qrnnd.S | 56 bf/s 1b
|
| H A D | udivsi3.S | 30 bf/s large_divisor
|
| /openbmc/u-boot/board/renesas/r7780mp/ |
| H A D | lowlevel_init.S | 75 bf repeat0 118 bf repeat1 238 bf repeat2
|
| /openbmc/u-boot/arch/sh/include/asm/ |
| H A D | macro.h | 33 bf/s 1b
|
| /openbmc/u-boot/board/renesas/sh7763rdp/ |
| H A D | lowlevel_init.S | 106 bf delay_loop_60 146 bf delay_loop_200
|
| /openbmc/openbmc/meta-phosphor/recipes-connectivity/openssl/ |
| H A D | openssl_%.bbappend | 11 no-bf \
|
| /openbmc/qemu/target/ppc/translate/ |
| H A D | dfp-impl.c.inc | 34 gen_helper_##NAME(cpu_crf[a->bf], \ 46 gen_helper_##NAME(cpu_crf[a->bf], \ 58 gen_helper_##NAME(cpu_crf[a->bf], \
|
| /openbmc/pldm/libpldmresponder/ |
| H A D | pdr_state_effecter.hpp | 133 bitfield8_t* bf = reinterpret_cast<bitfield8_t*>(start + index); in generateStateEffecterPDR() local 134 bf->byte |= 1 << bit; in generateStateEffecterPDR()
|
| H A D | pdr_state_sensor.hpp | 145 bitfield8_t* bf = reinterpret_cast<bitfield8_t*>(start + index); in generateStateSensorPDR() local 146 bf->byte |= 1 << bit; in generateStateSensorPDR()
|
| /openbmc/openbmc/meta-raspberrypi/recipes-graphics/userland/files/ |
| H A D | 0006-zero-out-wl-buffers-in-egl_surface_free.patch | 16 index 42350bf..1f923d9 100644
|
| /openbmc/u-boot/board/ms7750se/ |
| H A D | lowlevel_init.S | 88 bf 1b
|