Searched refs:OPERANDS_SIZE (Results 1 – 1 of 1) sorted by relevance
2882 constexpr size_t OPERANDS_SIZE = sizeof(DynamicOperands); in New() local2883 static_assert((OPERANDS_SIZE % alignof(InstType)) == 0); in New()2884 …auto data = reinterpret_cast<uintptr_t>(allocator->Alloc(OPERANDS_SIZE + sizeof(InstType), DEFAULT… in New()2886 …auto inst = new (reinterpret_cast<void *>(data + OPERANDS_SIZE)) InstType(std::forward<Args>(args)… in New()2891 constexpr size_t OPERANDS_SIZE = sizeof(Operands<InstType::INPUT_COUNT>); in New() local2893 static_assert((OPERANDS_SIZE % alignof(InstType)) == 0); in New()2894 …auto data = reinterpret_cast<uintptr_t>(allocator->Alloc(OPERANDS_SIZE + sizeof(InstType), ALIGNME… in New()2896 …auto inst = new (reinterpret_cast<void *>(data + OPERANDS_SIZE)) InstType(std::forward<Args>(args)… in New()