コード例 #1
0
ex_tcb_private_state * ExExeUtilHiveQueryTcb::allocatePstates(
     Lng32 &numElems,      // inout, desired/actual elements
     Lng32 &pstateLength)  // out, length of one element
{
  PstateAllocator<ExExeUtilHiveQueryPrivateState> pa;
  return pa.allocatePstates(this, numElems, pstateLength);
}
コード例 #2
0
ex_tcb_private_state *ExFastExtractTcb::allocatePstates(
  Lng32 &numElems,      // [IN/OUT] desired/actual elements
  Lng32 &pstateLength)  // [OUT] length of one element
{
  PstateAllocator<ExFastExtractPrivateState> pa;
  return pa.allocatePstates(this, numElems, pstateLength);
}
コード例 #3
0
ex_tcb_private_state * ex_sort_grby_tcb::allocatePstates(
     Lng32 &numElems,
     Lng32 &pstateLength)
{
  PstateAllocator<ex_sort_grby_private_state> pa;

  return pa.allocatePstates(this, numElems, pstateLength);
}