Home
last modified time | relevance | path

Searched refs:bp (Results 1 – 3 of 3) sorted by relevance

/scripts/dtc/libfdt/
Dlibfdt.h136 const uint8_t *bp = (const uint8_t *)p; in fdt16_ld() local
138 return ((uint16_t)bp[0] << 8) | bp[1]; in fdt16_ld()
143 const uint8_t *bp = (const uint8_t *)p; in fdt32_ld() local
145 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() local
155 bp[0] = value >> 24; in fdt32_st()
156 bp[1] = (value >> 16) & 0xff; in fdt32_st()
[all …]
/scripts/dtc/
Ddtc.h61 const uint8_t *bp = (const uint8_t *)p; in dtb_ld16() local
63 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() local
71 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() local
81 return ((uint64_t)bp[0] << 56) in dtb_ld64()
[all …]
/scripts/gdb/linux/
Dsymbols.py148 for bp in gdb.breakpoints():
149 saved_states.append({'breakpoint': bp, 'enabled': bp.enabled})