FxRequestFromLookaside::operator new()

in src/framework/shared/core/fxrequest.cpp [3177:3189]


FxRequestFromLookaside::operator new(
    __in size_t Size,
    __in CfxDevice* Device,
    __in_opt PWDF_OBJECT_ATTRIBUTES Attributes
    )
{
    UNREFERENCED_PARAMETER(Size);

    //
    // Allocate out of a device specific lookaside list
    //
    return Device->AllocateRequestMemory(Attributes);
}