Home
last modified time | relevance | path

Searched refs:OP_NEW (Results 1 – 25 of 89) sorted by relevance

1234

/dports/devel/raknet/raknet-3.9.2_10,1/Source/
H A DRakNetworkFactory.cpp24 RakPeerInterface* RakNetworkFactory::GetRakPeerInterface( void ) {return RakNet::OP_NEW<RakPeer>( _… in GetRakPeerInterface()
28 ConsoleServer* RakNetworkFactory::GetConsoleServer( void ) {return RakNet::OP_NEW<ConsoleServer>( _… in GetConsoleServer()
33 ReplicaManager* RakNetworkFactory::GetReplicaManager( void ) {return RakNet::OP_NEW<ReplicaManager>… in GetReplicaManager()
38 LogCommandParser* RakNetworkFactory::GetLogCommandParser( void ) {return RakNet::OP_NEW<LogCommandP… in GetLogCommandParser()
41 …PacketConsoleLogger* RakNetworkFactory::GetPacketConsoleLogger( void ) {return RakNet::OP_NEW<Pack… in GetPacketConsoleLogger()
47 PacketLogger* RakNetworkFactory::GetPacketLogger( void ) {return RakNet::OP_NEW<PacketLogger>( __FI… in GetPacketLogger()
49 PacketFileLogger* RakNetworkFactory::GetPacketFileLogger( void ) {return RakNet::OP_NEW<PacketFileL… in GetPacketFileLogger()
59 RakNetTransport* RakNetworkFactory::GetRakNetTransport( void ) {return RakNet::OP_NEW<RakNetTranspo… in GetRakNetTransport()
64 TelnetTransport* RakNetworkFactory::GetTelnetTransport( void ) {return RakNet::OP_NEW<TelnetTranspo… in GetTelnetTransport()
69 Router* RakNetworkFactory::GetRouter( void ) {return RakNet::OP_NEW<Router>( __FILE__, __LINE__ );} in GetRouter()
[all …]
H A DDS_LinkedList.h269 this->root = RakNet::OP_NEW<typename LinkedList::node>( __FILE__, __LINE__ );
283 this->root = RakNet::OP_NEW<typename LinkedList::node>( __FILE__, __LINE__ );
303 this->position = RakNet::OP_NEW<typename LinkedList::node>( __FILE__, __LINE__ );
375 this->root = RakNet::OP_NEW<typename LinkedList::node>( __FILE__, __LINE__ ); in LinkedList()
389 this->root = RakNet::OP_NEW<typename LinkedList::node>( __FILE__, __LINE__ ); in LinkedList()
407 this->position = RakNet::OP_NEW<typename LinkedList::node>( __FILE__, __LINE__ ); in LinkedList()
459 this->root = RakNet::OP_NEW<typename CircularLinkedList::node>( __FILE__, __LINE__ ); in CircularLinkedList()
623 this->root = RakNet::OP_NEW<typename CircularLinkedList::node>( __FILE__, __LINE__ ); in Insert()
662 new_node = RakNet::OP_NEW<typename CircularLinkedList::node>( __FILE__, __LINE__ ); in Insert()
700 this->root = RakNet::OP_NEW<typename CircularLinkedList::node>( __FILE__, __LINE__ ); in Add()
[all …]
H A DSingleProducerConsumer.h95 readPointer = RakNet::OP_NEW<DataPlusPtr>( __FILE__, __LINE__ ); in SingleProducerConsumer()
97 readPointer->next = RakNet::OP_NEW<DataPlusPtr>( __FILE__, __LINE__ ); in SingleProducerConsumer()
105 readPointer->next = RakNet::OP_NEW<DataPlusPtr>( __FILE__, __LINE__ ); in SingleProducerConsumer()
135 writeAheadPointer->next=RakNet::OP_NEW<DataPlusPtr>(__FILE__, __LINE__); in WriteLock()
H A DRakNetSmartPtr.h40 reference = RakNet::OP_NEW<ReferenceCounter>(__FILE__,__LINE__); in RakNetSmartPtr()
96 reference = RakNet::OP_NEW<ReferenceCounter>(__FILE__,__LINE__); in Clone()
99 ptr=RakNet::OP_NEW<T>(__FILE__,__LINE__); in Clone()
H A DStringCompressor.cpp30 instance = RakNet::OP_NEW<StringCompressor>( __FILE__, __LINE__ ); in AddReference()
317 …HuffmanEncodingTree *huffmanEncodingTree = RakNet::OP_NEW<HuffmanEncodingTree>( __FILE__, __LINE__… in StringCompressor()
345 huffmanEncodingTree = RakNet::OP_NEW<HuffmanEncodingTree>( __FILE__, __LINE__ ); in GenerateTreeFromStrings()
H A DDS_Table.cpp17 input->cells.Insert(RakNet::OP_NEW<Table::Cell>(__FILE__, __LINE__), __FILE__, __LINE__ ); in ExtendRows()
338 newRow = RakNet::OP_NEW<Row>( __FILE__, __LINE__ ); in AddRow()
346 newRow->cells.Insert( RakNet::OP_NEW<Table::Cell>(__FILE__, __LINE__), __FILE__, __LINE__ ); in AddRow()
351 Row *newRow = RakNet::OP_NEW<Row>( __FILE__, __LINE__ ); in AddRow()
358 c = RakNet::OP_NEW<Table::Cell>(__FILE__, __LINE__); in AddRow()
363 newRow->cells.Insert(RakNet::OP_NEW<Table::Cell>(__FILE__, __LINE__), __FILE__, __LINE__ ); in AddRow()
370 Row *newRow = RakNet::OP_NEW<Row>( __FILE__, __LINE__ ); in AddRow()
380 Table::Cell *c = RakNet::OP_NEW<Table::Cell>( __FILE__, __LINE__ ); in AddRow()
386 newRow->cells.Insert(RakNet::OP_NEW<Table::Cell>(__FILE__, __LINE__), __FILE__, __LINE__); in AddRow()
393 Row *newRow = RakNet::OP_NEW<Row>( __FILE__, __LINE__ ); in AddRowColumns()
[all …]
H A DRPCMap.cpp79 node = RakNet::OP_NEW<RPCNode>( __FILE__, __LINE__ ); in AddIdentifierWithFunction()
121 node = RakNet::OP_NEW<RPCNode>( __FILE__, __LINE__ ); in AddIdentifierAtIndex()
H A DDS_BinarySearchTree.h687 root = RakNet::OP_NEW<typename BinarySearchTree::node>( file, line ); in Add()
688 root->item = RakNet::OP_NEW<BinarySearchTreeType>( file, line ); in Add()
711 current->left = RakNet::OP_NEW<typename BinarySearchTree::node>( file, line ); in Add()
712 current->left->item = RakNet::OP_NEW<BinarySearchTreeType>( file, line ); in Add()
733 current->right = RakNet::OP_NEW<typename BinarySearchTree::node>( file, line ); in Add()
734 current->right->item = RakNet::OP_NEW<BinarySearchTreeType>( file, line ); in Add()
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/g++.dg/warn/
H A DWarray-bounds-10.C11 #define OP_NEW(n) operator new (n) macro
13 T *p = (T*) OP_NEW (n); \
43 #undef OP_NEW in warn_op_array_new()
44 #define OP_NEW(n) operator new[] (n) in warn_op_array_new() macro
H A DWarray-bounds-11.C13 #define OP_NEW(n) operator new (n, std::nothrow) macro
15 T *p = (T*) OP_NEW (n); \
45 #undef OP_NEW in warn_op_array_new()
46 #define OP_NEW(n) operator new[] (n, std::nothrow) in warn_op_array_new() macro
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/testsuite/g++.dg/warn/
H A DWarray-bounds-10.C11 #define OP_NEW(n) operator new (n) macro
13 T *p = (T*) OP_NEW (n); \
43 #undef OP_NEW in warn_op_array_new()
44 #define OP_NEW(n) operator new[] (n) in warn_op_array_new() macro
H A DWarray-bounds-11.C13 #define OP_NEW(n) operator new (n, std::nothrow) macro
15 T *p = (T*) OP_NEW (n); \
45 #undef OP_NEW in warn_op_array_new()
46 #define OP_NEW(n) operator new[] (n, std::nothrow) in warn_op_array_new() macro
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/g++.dg/warn/
H A DWarray-bounds-10.C11 #define OP_NEW(n) operator new (n) macro
13 T *p = (T*) OP_NEW (n); \
43 #undef OP_NEW in warn_op_array_new()
44 #define OP_NEW(n) operator new[] (n) in warn_op_array_new() macro
H A DWarray-bounds-11.C13 #define OP_NEW(n) operator new (n, std::nothrow) macro
15 T *p = (T*) OP_NEW (n); \
45 #undef OP_NEW in warn_op_array_new()
46 #define OP_NEW(n) operator new[] (n, std::nothrow) in warn_op_array_new() macro
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/g++.dg/warn/
H A DWarray-bounds-10.C11 #define OP_NEW(n) operator new (n) macro
13 T *p = (T*) OP_NEW (n); \
43 #undef OP_NEW in warn_op_array_new()
44 #define OP_NEW(n) operator new[] (n) in warn_op_array_new() macro
H A DWarray-bounds-11.C30 #define OP_NEW(n) operator new (n, std::nothrow) macro
32 T *p = (T*) OP_NEW (n); \
62 #undef OP_NEW in warn_op_array_new()
63 #define OP_NEW(n) operator new[] (n, std::nothrow) in warn_op_array_new() macro
/dports/www/thundersnarf/thundersnarf/protected/yii114/framework/gii/
H A DCCodeFile.php21 const OP_NEW='new'; define in CCodeFile
55 $this->operation=is_dir($path) ? self::OP_SKIP : self::OP_NEW;
57 $this->operation=self::OP_NEW;
82 if($this->operation===self::OP_NEW)
H A DCCodeModel.php216 return $this->answers===null && $file->operation===CCodeFile::OP_NEW
252 else if($file->operation===CCodeFile::OP_NEW && $this->confirmed($file))
/dports/www/limesurvey/limesurvey/framework/gii/
H A DCCodeFile.php23 const OP_NEW='new'; define in CCodeFile
57 $this->operation=is_dir($path) ? self::OP_SKIP : self::OP_NEW;
59 $this->operation=self::OP_NEW;
84 if($this->operation===self::OP_NEW)
H A DCCodeModel.php298 return $this->answers===null && $file->operation===CCodeFile::OP_NEW
335 elseif($file->operation===CCodeFile::OP_NEW && $this->confirmed($file))
/dports/mail/isync/isync-1.4.4/src/
H A Dsync.h31 #define OP_NEW (1<<0) macro
35 #define OP_MASK_TYPE (OP_NEW|OP_RENEW|OP_DELETE|OP_FLAGS) /* asserted in the target ops */
/dports/devel/raknet/raknet-3.9.2_10,1/DependentExtensions/Lobby2/
H A DLobby2Message.h725 PendingInvite() {binaryData=RakNet::OP_NEW<BinaryDataBlock>(__FILE__,__LINE__);} in PendingInvite()
751 EmailResult() {binaryData=RakNet::OP_NEW<BinaryDataBlock>(__FILE__,__LINE__);} in EmailResult()
777 SubmittedMatch() {binaryData=RakNet::OP_NEW<BinaryDataBlock>(__FILE__,__LINE__);} in SubmittedMatch()
790 ClanInfo() {binaryData=RakNet::OP_NEW<BinaryDataBlock>(__FILE__,__LINE__);} in ClanInfo()
888 System_CreateTitle() {binaryData=RakNet::OP_NEW<BinaryDataBlock>(__FILE__,__LINE__);} in System_CreateTitle()
1552 Friends_SendInvite() {binaryData=RakNet::OP_NEW<BinaryDataBlock>(__FILE__,__LINE__);} in Friends_SendInvite()
1662 Friends_Remove() {binaryData=RakNet::OP_NEW<BinaryDataBlock>(__FILE__,__LINE__);} in Friends_Remove()
1744 Emails_Send() {binaryData=RakNet::OP_NEW<BinaryDataBlock>(__FILE__,__LINE__);} in Emails_Send()
2033 Clans_Create() {binaryData=RakNet::OP_NEW<BinaryDataBlock>(__FILE__,__LINE__);} in Clans_Create()
2231 Clans_Leave() {binaryData=RakNet::OP_NEW<BinaryDataBlock>(__FILE__,__LINE__);} in Clans_Leave()
[all …]
/dports/devel/raknet/raknet-3.9.2_10,1/Samples/Lobby2Server_PGSQL/
H A DLobby2Message_PGSQL_CustomizationExample.h83 return RakNet::OP_NEW<Platform_Startup_Overridden>(__FILE__, __LINE__); in Alloc()
85 return RakNet::OP_NEW<MyCustomMessage>(__FILE__, __LINE__); in Alloc()
/dports/devel/raknet/raknet-3.9.2_10,1/Samples/PHPDirectoryServer2/
H A Dmain.cpp474 tcp = RakNet::OP_NEW<TCPInterface>(__FILE__,__LINE__); in main()
475 httpConnection = RakNet::OP_NEW<HTTPConnection>(__FILE__,__LINE__); in main()
476 phpDirectoryServer2 = RakNet::OP_NEW<PHPDirectoryServer2>(__FILE__,__LINE__); in main()
/dports/devel/raknet/raknet-3.9.2_10,1/Samples/AutopatcherClientGFx3.0/
H A DAutopatcherClientGFx3Impl.cpp114 autopatcherClient=RakNet::OP_NEW<AutopatcherClient>(__FILE__,__LINE__); in Init()
115 fileListTransfer=RakNet::OP_NEW<FileListTransfer>(__FILE__,__LINE__); in Init()
116 packetizedTCP=RakNet::OP_NEW<PacketizedTCP>(__FILE__,__LINE__); in Init()

1234