예제 #1
0
파일: main.cpp 프로젝트: ICRAR/void
VD_DEFINE_TEST_WITH_PARAM(AnyMapSpeedTest, RunN) 
{
	RunN(GetParam());
	Base::RecordProperty("Iterations", GetIterationCount());
	Base::RecordProperty("InsertTime", GetInsertTime());
	Base::RecordProperty("RetrieveTime", GetRetrieveTime());
	Base::RecordProperty("ClearTime", GetClearTime());
}
예제 #2
0
파일: main.cpp 프로젝트: voidcycles/void
VD_DEFINE_TEST_WITH_PARAM(ParallelDelegateSpeedTest, RunN) 
{
	RunN(GetParam());
	RecordProperty("Iterations", GetIterationCount());
	RecordProperty("ConnectTime", GetConnectTime());
	RecordProperty("InvokeTime", GetInvokeTime());
	RecordProperty("DisconnectTime", GetDisconnectTime());
}
예제 #3
0
	void Pkcs5Kdf::DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt) const
	{
		DeriveKey (key, password, salt, GetIterationCount());
	}