• Home
  • Raw
  • Download

Lines Matching defs:p

8 void LoopThread_Construct(CLoopThread *p)  in LoopThread_Construct()
15 void LoopThread_Close(CLoopThread *p) in LoopThread_Close()
24 CLoopThread *p = (CLoopThread *)pp; in LoopThreadFunc() local
37 WRes LoopThread_Create(CLoopThread *p) in LoopThread_Create()
45 WRes LoopThread_StopAndWait(CLoopThread *p) in LoopThread_StopAndWait()
53 WRes LoopThread_StartSubThread(CLoopThread *p) { return Event_Set(&p->startEvent); } in LoopThread_StartSubThread()
54 WRes LoopThread_WaitSubThread(CLoopThread *p) { return Event_Wait(&p->finishedEvent); } in LoopThread_WaitSubThread()
56 static SRes Progress(ICompressProgress *p, UInt64 inSize, UInt64 outSize) in Progress()
61 static void MtProgress_Init(CMtProgress *p, ICompressProgress *progress) in MtProgress_Init()
71 static void MtProgress_Reinit(CMtProgress *p, unsigned index) in MtProgress_Reinit()
80 SRes MtProgress_Set(CMtProgress *p, unsigned index, UInt64 inSize, UInt64 outSize) in MtProgress_Set()
93 static void MtProgress_SetError(CMtProgress *p, SRes res) in MtProgress_SetError()
101 static void MtCoder_SetError(CMtCoder* p, SRes res) in MtCoder_SetError()
111 void CMtThread_Construct(CMtThread *p, CMtCoder *mtCoder) in CMtThread_Construct()
123 static void CMtThread_CloseEvents(CMtThread *p) in CMtThread_CloseEvents()
129 static void CMtThread_Destruct(CMtThread *p) in CMtThread_Destruct()
154 static SRes CMtThread_Prepare(CMtThread *p) in CMtThread_Prepare()
185 #define GET_NEXT_THREAD(p) &p->mtCoder->threads[p->index == p->mtCoder->numThreads - 1 ? 0 : p->in… argument
187 static SRes MtThread_Process(CMtThread *p, Bool *stop) in MtThread_Process()
228 CMtThread *p = (CMtThread *)pp; in ThreadFunc() local
249 void MtCoder_Construct(CMtCoder* p) in MtCoder_Construct()
263 void MtCoder_Destruct(CMtCoder* p) in MtCoder_Destruct()
272 SRes MtCoder_Code(CMtCoder *p) in MtCoder_Code()