ExpAllocateLowLevelTable

_HANDLE_TABLE_ENTRY *__stdcall ExpAllocateLowLevelTable(_HANDLE_TABLE *HandleTable, _EXHANDLE LeafHandleValue){
  _HANDLE_TABLE_ENTRY *result; 

  result = (_HANDLE_TABLE_ENTRY *)ExpAllocateTablePagedPoolNoZero(HandleTable->QuotaProcess, 0x1000ui64);
  if( result )
  {
    result->LowValue = 0i64;
    result->LeafHandleValue = LeafHandleValue;
  }
  return result;
}

Referenced by:

ExpAllocateHandleTable
ExpAllocateHandleTableEntrySlow
ExpAllocateMidLevelTable