Home
last modified time | relevance | path

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

/optee_os/core/lib/libfdt/include/
H A Dlibfdt.h129 const uint8_t *bp = (const uint8_t *)p; in fdt32_ld() local
131 return ((uint32_t)bp[0] << 24) in fdt32_ld()
132 | ((uint32_t)bp[1] << 16) in fdt32_ld()
133 | ((uint32_t)bp[2] << 8) in fdt32_ld()
134 | bp[3]; in fdt32_ld()
139 uint8_t *bp = property; in fdt32_st() local
141 bp[0] = value >> 24; in fdt32_st()
142 bp[1] = (value >> 16) & 0xff; in fdt32_st()
143 bp[2] = (value >> 8) & 0xff; in fdt32_st()
144 bp[3] = value & 0xff; in fdt32_st()
[all …]
/optee_os/lib/libutils/isoc/
H A Dbget.c1454 static char *bp = NULL; /* Our initial buffer pool */ variable
1594 if (((char *) buf) == bp) {
1598 bp = NULL;
1661 bp = mymalloc(ExpIncr); in bget_main_test()
1662 assert(bp != NULL); in bget_main_test()
1663 bpool((void *) bp, (bufsize) ExpIncr); in bget_main_test()
1665 bp = mymalloc(PoolSize); in bget_main_test()
1666 assert(bp != NULL); in bget_main_test()
1667 bpool((void *) bp, (bufsize) PoolSize, &mypoolset); in bget_main_test()
1672 V bpoolv((void *) bp); in bget_main_test()
[all …]
H A Dbget_malloc.c425 #define BPOOL_FOREACH(ctx, iterator, bp) \ argument
427 bpool_foreach((ctx),(iterator), (bp));)
/optee_os/core/arch/arm/
H A Darm.mk268 bp-core-opt := $(call cc-option,-mbranch-protection=pac-ret+leaf)
272 bp-core-opt := $(call cc-option,-mbranch-protection=bti)
276 bp-core-opt := $(call cc-option,-mbranch-protection=pac-ret+leaf+bti)
280 ifeq (,$(bp-core-opt))
283 core-platform-cflags += $(bp-core-opt)
402 bp-ta-opt := $(call cc-option,-mbranch-protection=pac-ret+leaf)
406 bp-ta-opt := $(call cc-option,-mbranch-protection=bti)
410 bp-ta-opt := $(call cc-option,-mbranch-protection=pac-ret+leaf+bti)
414 ifeq (,$(bp-ta-opt))
417 ta_arm64-platform-cflags += $(bp-ta-opt)
/optee_os/
H A DMAINTAINERS261 R: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> [@prabhakarlad]
262 R: Biju Das <biju.das.jz@bp.renesas.com> [@bijucdas]
/optee_os/ta/pkcs11/src/
H A Dpkcs11_attributes.c223 uint32_t const *bp, in set_mandatory_boolprops() argument
230 rc = pkcs11_import_object_boolprop(out, temp, bp[n]); in set_mandatory_boolprops()