Searched refs:BUFFER_SIZE (Results 1 – 5 of 5) sorted by relevance
| /CTR-SDK-4.2.7-SampleDemos/cx/Compress/ |
| D | main.cpp | 22 static const size_t BUFFER_SIZE = 4096; variable 23 u8 s_InputData[BUFFER_SIZE]; 24 u8 s_CompressedData[BUFFER_SIZE]; 25 u8 s_UncompressedData[BUFFER_SIZE]; 81 InitializeBuffer(s_InputData, BUFFER_SIZE); in nnMain() 86 s_InputData, BUFFER_SIZE, s_CompressedData); in nnMain() 103 ret = VerifyData(s_InputData, s_UncompressedData, BUFFER_SIZE); in nnMain() 118 InitializeBuffer(s_InputData, BUFFER_SIZE); in nnMain() 123 s_InputData, BUFFER_SIZE, s_CompressedData, bit, s_Work.buffer); in nnMain() 140 ret = VerifyData(s_InputData, s_UncompressedData, BUFFER_SIZE); in nnMain() [all …]
|
| /CTR-SDK-4.2.7-SampleDemos/enc/ |
| D | enc_Main.cpp | 38 const u32 BUFFER_SIZE = 64; variable 49 u16 buffer16[BUFFER_SIZE]; in nnMain() 75 u8 buffer8[BUFFER_SIZE]; in nnMain()
|
| /CTR-SDK-4.2.7-SampleDemos/fs/Streaming/ |
| D | FsSampleStreamingReader.cpp | 32 bit8 m_pBuffers[2][BUFFER_SIZE] NN_ATTRIBUTE_ALIGN(4); 37 …uptr m_SendQueueBuffer[BUFFER_SIZE / MEMO_BUFFER_SIZE * 2 + 1]; // Because you must enter NULL f… 38 …uptr m_ReturnQueueBuffer[BUFFER_SIZE / MEMO_BUFFER_SIZE * 2 + 1]; // Because you must enter NULL f… 119 s32 readSize = (m_FileRestSize < BUFFER_SIZE) ? m_FileRestSize : BUFFER_SIZE; in RefillBuffer()
|
| D | FsSampleStreamingWriter.cpp | 32 bit8 m_pBuffers[2][BUFFER_SIZE] NN_ATTRIBUTE_ALIGN(4); 36 …uptr m_ReceiveQueueBuffer[BUFFER_SIZE / MEMO_BUFFER_SIZE * 2 + 1]; // Because you must enter NULL … 37 …uptr m_ReturnQueueBuffer[BUFFER_SIZE / MEMO_BUFFER_SIZE * 2 + 1]; // Because you must enter NULL … 112 for (int i = 0; i < BUFFER_SIZE / MEMO_BUFFER_SIZE; ++i) in CreatePacket() 186 uptr packet[BUFFER_SIZE / MEMO_BUFFER_SIZE]; in ThreadFunc()
|
| D | FsSampleStreaming.h | 79 const int BUFFER_SIZE = MEMO_BUFFER_SIZE * BUFFERING_FRAME_NUM; // Corresponds to y in the equation. variable
|