Lines Matching defs:B
29 Block *B = reinterpret_cast<Block *>(V.get());
30 if (B->isInitialized())
31 B->invokeDtor();
88 auto *B = new (Memory.get()) Block(Ctx.getEvalID(), D, /*isStatic=*/false);
89 B->invokeCtor();
92 InlineDescriptor &Desc = *reinterpret_cast<InlineDescriptor *>(B->rawData());
232 Block *B = getLocal(I);
233 S.Stk.push<Pointer>(B, sizeof(InlineDescriptor));
244 Block *B = getLocal(I);
245 S.Stk.push<T>(*reinterpret_cast<T *>(B->data()));
256 Block *B = getLocal(I);
257 *reinterpret_cast<T *>(B->data()) = S.Stk.pop<T>();
258 InlineDescriptor &Desc = *reinterpret_cast<InlineDescriptor *>(B->rawData());
269 Block *B = getLocal(Local.Offset);
270 S.deallocate(B);