Lines Matching refs:pAllocator

25     CFX_BinaryBuf(IFX_Allocator* pAllocator = NULL);

27 CFX_BinaryBuf(FX_STRSIZE size, IFX_Allocator* pAllocator = NULL);
94 CFX_ByteTextBuf(IFX_Allocator* pAllocator = NULL) : CFX_BinaryBuf(pAllocator) {}
122 CFX_WideTextBuf(IFX_Allocator* pAllocator = NULL) : CFX_BinaryBuf(pAllocator) {}
163 CFX_ArchiveSaver(IFX_Allocator* pAllocator = NULL) : m_SavingBuf(pAllocator), m_pStream(NULL) {}
238 IFX_BufferArchive(FX_STRSIZE size, IFX_Allocator* pAllocator = NULL);
272 CFX_FileBufferArchive(FX_STRSIZE size = 32768, IFX_Allocator* pAllocator = NULL);
304 CFX_UTF8Decoder(IFX_Allocator* pAllocator = NULL) : m_Buffer(pAllocator)
340 CFX_UTF8Encoder(IFX_Allocator* pAllocator = NULL) : m_Buffer(pAllocator)
378 CFX_BasicArray(int unit_size, IFX_Allocator* pAllocator = NULL);
412 CFX_ArrayTemplate(IFX_Allocator* pAllocator = NULL) : CFX_BasicArray(sizeof(TYPE), pAllocator) {}
579 CFX_ObjectArray(IFX_Allocator* pAllocator = NULL) : CFX_BasicArray(sizeof(ObjectClass), pAllocator) {}
696 CFX_BaseSegmentedArray(int unit_size = 1, int segment_units = 512, int index_size = 8, IFX_Allocator* pAllocator = NULL);
750 CFX_SegmentedArray(int segment_units, int index_size = 8, IFX_Allocator* pAllocator = NULL)
751 : CFX_BaseSegmentedArray(sizeof(ElementType), segment_units, index_size, pAllocator)
768 CFX_FixedBufGrow(IFX_Allocator* pAllocator = NULL)
769 : m_pAllocator(pAllocator)
772 CFX_FixedBufGrow(int data_size, IFX_Allocator* pAllocator = NULL)
773 : m_pAllocator(pAllocator)
813 CFX_TempBuf(int size, IFX_Allocator* pAllocator = NULL) : m_pAllocator(pAllocator)
850 CFX_MapPtrToPtr(int nBlockSize = 10, IFX_Allocator* pAllocator = NULL);
921 CFX_MapPtrTemplate(IFX_Allocator* pAllocator = NULL) : CFX_MapPtrToPtr(10, pAllocator) {}
961 CFX_CMapDWordToDWord(IFX_Allocator* pAllocator = NULL) : m_Buffer(pAllocator) {}
992 CFX_MapByteStringToPtr(int nBlockSize = 10, IFX_Allocator* pAllocator = NULL);
1063 CFX_CMapByteStringToPtr(IFX_Allocator* pAllocator = NULL);
1102 CFX_PtrList(int nBlockSize = 10, IFX_Allocator* pAllocator = NULL);
1208 CFX_PrivateData(IFX_Allocator* pAllocator = NULL) : m_DataList(pAllocator) {}
1498 CFX_SortListArray(IFX_Allocator* pAllocator = NULL) : m_CurList(0), m_DataLists(pAllocator) {}
1508 IFX_Allocator* pAllocator = m_DataLists.m_pAllocator;
1512 FX_Allocator_Free(pAllocator, list.data);
1524 IFX_Allocator* pAllocator = m_DataLists.m_pAllocator;
1528 list.data = FX_Allocator_Alloc(pAllocator, FX_BYTE, temp_count * unit);