Home
last modified time | relevance | path

Searched refs:state (Results 1 – 21 of 21) sorted by relevance

/CafeSDK-2.12.13-1/system/src/lib/szfile/
D7zDec.c130 CLzmaDec state; in SzDecodeLzma() local
133 LzmaDec_Construct(&state); in SzDecodeLzma()
134 RINOK(LzmaDec_AllocateProbs(&state, coder->Props.data, (unsigned)coder->Props.size, allocMain)); in SzDecodeLzma()
135 state.dic = outBuffer; in SzDecodeLzma()
136 state.dicBufSize = outSize; in SzDecodeLzma()
137 LzmaDec_Init(&state); in SzDecodeLzma()
150 SizeT inProcessed = (SizeT)lookahead, dicPos = state.dicPos; in SzDecodeLzma()
152 res = LzmaDec_DecodeToDic(&state, outSize, inBuf, &inProcessed, LZMA_FINISH_END, &status); in SzDecodeLzma()
157 if (state.dicPos == state.dicBufSize || (inProcessed == 0 && dicPos == state.dicPos)) in SzDecodeLzma()
159 if (state.dicBufSize != outSize || lookahead != 0 || in SzDecodeLzma()
[all …]
/CafeSDK-2.12.13-1/system/include/cafe/mp/
DMPTasks.h50 u32 state; member
68 u32 state; member
82 volatile u32 state; member
92 volatile u32 state; member
/CafeSDK-2.12.13-1/system/include/cafe/
Dseq.h47 u32 state; // state of track member
58 u32 state; // stop, run, run looped, pause member
102 void SEQSetState (SEQSEQUENCE *sequence, u32 state);
Dmic.h83 int MICSetState(mic_handle_t h_mic, mic_state_t state, unsigned int value);
84 int MICGetState(mic_handle_t h_mic, mic_state_t state, unsigned int* p_value);
Dusb_mic.h116 int USBMICSetState(usb_mic_handle_t h_mic, usb_mic_state_t state, unsigned int value);
117 int USBMICGetState(usb_mic_handle_t h_mic, usb_mic_state_t state, unsigned int* p_value);
Duac.h117 int UACSetState(usb_mic_handle_t h_mic, usb_mic_state_t state, unsigned int value);
118 int UACGetState(usb_mic_handle_t h_mic, usb_mic_state_t state, unsigned int* p_value);
Duhs_cos.h53 UhsCosClientState state; member
Dfs.h264 FSVolumeState state,
305 FSVolumeState state; member
Dax.h586 u32 state; // mirrored from the underlying state member
679 void AXSetVoiceState (AXVPB *p, u16 state);
871 void AXSetMultiVoiceState (AXMVPB *mv, u16 state);
/CafeSDK-2.12.13-1/system/include/
DLzmaDec.h61 unsigned state; member
137 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
138 void LzmaDec_Free(CLzmaDec *state, ISzAlloc *alloc);
DLzma2Dec.h20 int state; member
Dzlib.h95 struct internal_state FAR *state; /* not visible by applications */ member
/CafeSDK-2.12.13-1/system/include/cafe/camera/
Dcamera.h284 int CAMGetState(CAMHandle hCam, CAM_STATE state, int *pVal);
294 int CAMGetStateInfo(CAMHandle hCam, CAM_STATE state, CAMStateInfo *pInfo);
303 int CAMSetState(CAMHandle hCam, CAM_STATE state, int *pVal);
/CafeSDK-2.12.13-1/system/include/cafe/os/
DOSEvent.h35 BOOL state; member
DOSAlarm.h74 OSAlarmState state; member
DOSThread.h168 u8 state; // OS_THREAD_STATE_* member
/CafeSDK-2.12.13-1/system/src/lib/gx2ut/
Dgx2utClear.cpp825 hiStencilInfo.state[0].function = GX2_COMPARE_ALWAYS; in GX2UTInvalidateHiStencilRect()
826 hiStencilInfo.state[0].reference = 0; in GX2UTInvalidateHiStencilRect()
827 hiStencilInfo.state[0].mask = 0xFF; in GX2UTInvalidateHiStencilRect()
828 hiStencilInfo.state[0].enable = GX2_FALSE; in GX2UTInvalidateHiStencilRect()
829 hiStencilInfo.state[1].function = GX2_COMPARE_ALWAYS; in GX2UTInvalidateHiStencilRect()
830 hiStencilInfo.state[1].reference = 0; in GX2UTInvalidateHiStencilRect()
831 hiStencilInfo.state[1].mask = 0xFF; in GX2UTInvalidateHiStencilRect()
832 hiStencilInfo.state[1].enable = GX2_FALSE; in GX2UTInvalidateHiStencilRect()
/CafeSDK-2.12.13-1/system/include/cafe/gx2/
Dgx2Surface.h249 GX2HiStencilState state[GX2_NUM_HISTENCIL_STATES]; member
411 hiStencilInfo->state[0] = *state0; in GX2InitHiStencilInfo()
414 hiStencilInfo->state[1] = *state1; in GX2InitHiStencilInfo()
Dgx2RenderState.h227 void GX2API GX2SetSpecialState(GX2SpecialState state,
/CafeSDK-2.12.13-1/system/include/cafe/kernel/
DKernelOSContext.h91 u16 state; // OR-ed OS_CONTEXT_STATE_* member
/CafeSDK-2.12.13-1/system/src/lib/demo/
DdemoFS.c32 FSVolumeState state, in stateChangeCallback() argument
37 OSReport("Volume state of client 0x%08x changed to %d\n", pClient, state); in stateChangeCallback()