Home
last modified time | relevance | path

Searched refs:stream (Results 1 – 8 of 8) sorted by relevance

/CTR-SDK-4.2.5/include/nn/font/
Dfont_CharStrmReader.h66 void Set(const char* stream) in Set() argument
68 NN_POINTER_ASSERT(stream); in Set()
72 mCharStrm = stream; in Set()
79 void Set(const wchar_t* stream) in Set() argument
81 NN_ALIGN_ASSERT(stream, 2); in Set()
82 NN_POINTER_ASSERT(stream); in Set()
84 mCharStrm = stream; in Set()
Dfont_ArchiveFont.h114 const void* stream,
Dfont_PackedFont.h173 const void* stream,
Dfont_ArchiveFontBase.h118 const void* stream,
/CTR-SDK-4.2.5/sources/libraries/cx/
Dcx_StreamingUncompression.cpp635 u32 stream; member
651 context->stream <<= 8; in BitReader_Read()
652 context->stream += *context->srcp; in BitReader_Read()
658 value = (s32)( (context->stream >> (context->stream_len - bits)) & ((1 << bits) - 1) ); in BitReader_Read()
677 stock = (u8)( context->stream >> 24 ); in BitReader_ReadEx()
679 context->stream <<= 8; in BitReader_ReadEx()
680 context->stream += *context->srcp; in BitReader_ReadEx()
685 value = context->stream; in BitReader_ReadEx()
719 context->stream = 0; in InitUncompContextLH()
755 BitReader stream; in ReadUncompLH() local
[all …]
Dcx_SecureUncompression.cpp754 u32 stream; member
764 context->stream = 0; in BitReader_Init()
780 context->stream = context->srcp[context->cnt++]; in BitReader_Read()
783 bit = (s8)( (context->stream >> (context->stream_len - 1)) & 0x1 ); in BitReader_Read()
910 BitReader stream; in SecureUncompressLH() local
962 BitReader_Init( &stream, pSrc, srcSize - ((u32)pSrc - (u32)srcp) ); in SecureUncompressLH()
971 s8 bit = BitReader_Read( &stream ); in SecureUncompressLH()
1004 s8 bit = BitReader_Read( &stream ); in SecureUncompressLH()
1034 val |= BitReader_Read( &stream ); in SecureUncompressLH()
1057 if ( stream.srcSize - stream.cnt > 32 ) in SecureUncompressLH()
Dcx_Uncompression.cpp438 u32 stream; member
447 context->stream = 0; in BitReader_Init()
457 context->stream = context->srcp[context->cnt++]; in BitReader_Read()
460 bit = (u8)( (context->stream >> (context->stream_len - 1)) & 0x1 ); in BitReader_Read()
504 BitReader stream; in UncompressLH() local
524 BitReader_Init( &stream, pSrc ); in UncompressLH()
533 u8 bit = BitReader_Read( &stream ); in UncompressLH()
562 u8 bit = BitReader_Read( &stream ); in UncompressLH()
587 val |= BitReader_Read( &stream ); in UncompressLH()
/CTR-SDK-4.2.5/include/nn/cx/
Dcx_StreamingUncompression.h98 u32 stream; // member