Searched refs:bp (Results 1 – 3 of 3) sorted by relevance
136 const uint8_t *bp = (const uint8_t *)p; in fdt16_ld() local138 return ((uint16_t)bp[0] << 8) | bp[1]; in fdt16_ld()143 const uint8_t *bp = (const uint8_t *)p; in fdt32_ld() local145 return ((uint32_t)bp[0] << 24) in fdt32_ld()146 | ((uint32_t)bp[1] << 16) in fdt32_ld()147 | ((uint32_t)bp[2] << 8) in fdt32_ld()148 | bp[3]; in fdt32_ld()153 uint8_t *bp = (uint8_t *)property; in fdt32_st() local155 bp[0] = value >> 24; in fdt32_st()156 bp[1] = (value >> 16) & 0xff; in fdt32_st()[all …]
61 const uint8_t *bp = (const uint8_t *)p; in dtb_ld16() local63 return ((uint16_t)bp[0] << 8) in dtb_ld16()64 | bp[1]; in dtb_ld16()69 const uint8_t *bp = (const uint8_t *)p; in dtb_ld32() local71 return ((uint32_t)bp[0] << 24) in dtb_ld32()72 | ((uint32_t)bp[1] << 16) in dtb_ld32()73 | ((uint32_t)bp[2] << 8) in dtb_ld32()74 | bp[3]; in dtb_ld32()79 const uint8_t *bp = (const uint8_t *)p; in dtb_ld64() local81 return ((uint64_t)bp[0] << 56) in dtb_ld64()[all …]
148 for bp in gdb.breakpoints():149 saved_states.append({'breakpoint': bp, 'enabled': bp.enabled})