| /openbmc/u-boot/arch/riscv/include/asm/ |
| H A D | string.h | 29 #define memset(_p, _v, _n) \ argument 30 (typeof(_p) (p) = (_p); \ 43 #define memzero(_p, _n) \ argument 44 (typeof(_p) (p) = (_p); \
|
| /openbmc/openbmc/poky/bitbake/lib/bs4/ |
| H A D | diagnose.py | 107 def _p(self, s): member in AnnouncingParser 111 self._p("%s START" % name) 114 self._p("%s END" % name) 117 self._p("%s DATA" % data) 120 self._p("%s CHARREF" % name) 123 self._p("%s ENTITYREF" % name) 126 self._p("%s COMMENT" % data) 129 self._p("%s DECL" % data) 132 self._p("%s UNKNOWN-DECL" % data) 135 self._p("%s PI" % data)
|
| /openbmc/u-boot/include/ |
| H A D | atf_common.h | 23 #define SET_PARAM_HEAD(_p, _type, _ver, _attr) do { \ argument 24 (_p)->h.type = (uint8_t)(_type); \ 25 (_p)->h.version = (uint8_t)(_ver); \ 26 (_p)->h.size = (uint16_t)sizeof(*_p); \ 27 (_p)->h.attr = (uint32_t)(_attr) ; \
|
| /openbmc/qemu/include/qemu/ |
| H A D | bswap.h | 391 static inline void stn_## END ## _p(void *ptr, int sz, uint64_t v) \ 398 stw_ ## END ## _p(ptr, v); \ 401 stl_ ## END ## _p(ptr, v); \ 404 stq_ ## END ## _p(ptr, v); \ 410 static inline uint64_t ldn_## END ## _p(const void *ptr, int sz) \ 416 return lduw_ ## END ## _p(ptr); \ 418 return (uint32_t)ldl_ ## END ## _p(ptr); \ 420 return ldq_ ## END ## _p(ptr); \
|
| /openbmc/phosphor-hwmon/ |
| H A D | hwmonio.cpp | 117 _p(path), _intf(intf) in HwmonIO() 125 auto fullPath = sysfs::make_sysfs_path(_p, type, id, sensor); in read() 184 auto fullPath = sysfs::make_sysfs_path(_p, type, id, sensor); in write() 230 return _p; in path()
|
| H A D | hwmonio.hpp | 133 std::string _p; member in hwmonio::HwmonIO
|
| /openbmc/u-boot/lib/ |
| H A D | bch.c | 92 #define GF_M(_p) (CONFIG_BCH_CONST_M) argument 93 #define GF_T(_p) (CONFIG_BCH_CONST_T) argument 94 #define GF_N(_p) ((1 << (CONFIG_BCH_CONST_M))-1) argument 96 #define GF_M(_p) ((_p)->m) argument 97 #define GF_T(_p) ((_p)->t) argument 98 #define GF_N(_p) ((_p)->n) argument 101 #define BCH_ECC_WORDS(_p) DIV_ROUND_UP(GF_M(_p)*GF_T(_p), 32) argument 102 #define BCH_ECC_BYTES(_p) DIV_ROUND_UP(GF_M(_p)*GF_T(_p), 8) argument 987 #define find_poly_roots(_p, _k, _elp, _loc) chien_search(_p, len, _elp, _loc) argument
|
| /openbmc/qemu/bsd-user/ |
| H A D | qemu.h | 314 __builtin_choose_expr(sizeof(*(hptr)) == 2, stw_##e##_p, \ 315 __builtin_choose_expr(sizeof(*(hptr)) == 4, stl_##e##_p, \ 316 __builtin_choose_expr(sizeof(*(hptr)) == 8, stq_##e##_p, abort)))) \ 326 __builtin_choose_expr(sizeof(*(hptr)) == 2, lduw_##e##_p, \ 327 __builtin_choose_expr(sizeof(*(hptr)) == 4, ldl_##e##_p, \ 328 __builtin_choose_expr(sizeof(*(hptr)) == 8, ldq_##e##_p, abort)))) \
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | iotests.py | 379 self._p = subprocess.Popen(self.args, stdin=subprocess.PIPE, 383 out = self._p.stdout.read(9) 387 out += self._p.stdout.read() 388 self._p.wait(timeout=1) 392 self._p.communicate('q\n') 400 c = self._p.stdout.read(1) 416 self._p.stdin.write(cmd + '\n') 417 self._p.stdin.flush() 426 _p: 'Optional[subprocess.Popen[bytes]]' = None variable in QemuStorageDaemon 443 self._p = subprocess.Popen(all_args) [all …]
|
| /openbmc/qemu/target/riscv/ |
| H A D | cpu_cfg.h | 50 static inline bool has_ ## ext ## _p(const RISCVCPUConfig *cfg) \
|
| /openbmc/u-boot/drivers/clk/mvebu/ |
| H A D | armada-37xx-periph.c | 138 #define CLK_GATE_DIV(_n, _d, _r, _s, _m, _t, _p) \ argument 141 .parent_name = _p, \ 151 #define CLK_GATE(_n, _d, _p) \ argument 154 .parent_name = _p, \
|
| /openbmc/qemu/include/exec/ |
| H A D | memory_ldst_cached.h.inc | 25 glue(glue(ld, size), glue(ENDIANNESS, _p)) 72 glue(glue(st, size), glue(ENDIANNESS, _p))
|
| /openbmc/u-boot/arch/x86/include/asm/ |
| H A D | io.h | 158 __OUT1(s##_p,x) __OUT2(s,s1,"w") __FULL_SLOW_DOWN_IO : : "a" (value), "Nd" (port));} 168 __IN1(s##_p) __IN2(s,s1,"w") __FULL_SLOW_DOWN_IO : "=a" (_v) : "Nd" (port) ,##i ); return _v; }
|
| /openbmc/u-boot/arch/arm/include/asm/arch-imx8m/ |
| H A D | clock.h | 636 #define DRAM_BYPASS_ROOT_CONFIG(_rate, _m, _p, _s, _k) \ argument 640 .alt_pre_div = (_p), \
|
| /openbmc/u-boot/arch/mips/include/asm/ |
| H A D | io.h | 341 __BUILD_IOPORT_SINGLE(bus, bwlq, type, _p) in BUILDIO_MEM()
|
| /openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/uefi/files/ |
| H A D | 0001-BootLogoLib-align-logo-coords-to-be-even.patch | 244 z*NJ}j(v*Jw;*_p^Z%RLW{@Zl>)-C$y%YUPfKZkMuKBdop=t+9{l_}l4af4pF{%?By
|