Home
last modified time | relevance | path

Searched refs:total (Results 1 – 14 of 14) sorted by relevance

/TwlSDK-5.1.0/include/nitro/mi/
Dcache.h59 #define MI_CACHE_BUFFER_WORKSIZE(page, total) \ argument
60 ((sizeof(MICachePage) + (page)) * (total))
/TwlSDK-5.1.0/build/libraries/mi/common/src/
Dmi_cache.c57 u32 total = length / (sizeof(MICachePage) + page); in MI_InitCache() local
59 MICachePage *inf = (MICachePage*)&buf[total * page]; in MI_InitCache()
60 cache->invalid_total += total; in MI_InitCache()
61 for (; total > 0; --total) in MI_InitCache()
/TwlSDK-5.1.0/build/demos/wm/wireless-all/src/
Dtest.c340 int current, total; in DrawFrame() local
341 if (WFS_GetCurrentDownloadProgress(&current, &total)) in DrawFrame()
344 PrintString(3, 21, PLTT_WHITE, "%8d / %d", current, total); in DrawFrame()
/TwlSDK-5.1.0/build/libraries/wfs/common/src/
Dwfs_format.c122 u32 total = count + mixed_overlay_count; in WFS_LoadTable() local
125 MI_StoreLE32(dst, total * sizeof(WFSFATFormat)); in WFS_LoadTable()
133 if (count >= total) in WFS_LoadTable()
Dwfs_client.c503 void WFS_GetClientReadProgress(WFSClientContext *context,int *current, int *total) in WFS_GetClientReadProgress() argument
505 WBT_GetDownloadProgress(context->wbt, context->block_id, 0, current, total); in WFS_GetClientReadProgress()
/TwlSDK-5.1.0/build/demos/mb/multiboot-wfs/child/src/
Dchild.c490 int current, total; in ModeChildOverlay() local
492 if (WFS_GetCurrentDownloadProgress(&current, &total)) in ModeChildOverlay()
494 PrintLine(2, 15, "progress %8d / %8d", current, total); in ModeChildOverlay()
/TwlSDK-5.1.0/build/libraries/wbt/common/src/
Dwbt_context.c203 pkt_bmp->total = (length + packet - 1) / packet; in WBTi_InitBitmap()
230 const u32 total = (u32)pkt_bmp->length; in WBTi_MergeBitmapIndex() local
231 u32 length = (u32)MATH_MIN(packet, total - offset); in WBTi_MergeBitmapIndex()
257 if (num >= pkt_bmp->total) in WBTi_FindBitmapIndex()
276 if (++num >= pkt_bmp->total) in WBTi_FindBitmapIndex()
1228 if (index >= pkt_bmp->total) in WBT_CallPacketRecvHook()
1232 __FUNCTION__, index, pkt_bmp->total); in WBT_CallPacketRecvHook()
1506 void WBT_GetDownloadProgress(const WBTContext *work, u32 id, int aid, int *count, int *total) in WBT_GetDownloadProgress() argument
1514 *total = pkt_bmp->total; in WBT_GetDownloadProgress()
1519 *total = 0; in WBT_GetDownloadProgress()
/TwlSDK-5.1.0/include/nitro/wfs/
Dclient.h229 void WFS_GetClientReadProgress(WFSClientContext *context, int *current, int *total);
/TwlSDK-5.1.0/build/libraries/fs/common/src/
Dfs_proc_default.c497 u32 total = p_info->total_len; in FSi_GetPathDefault() local
522 MI_CpuCopy8(entry.name, dst + total - len, len); in FSi_GetPathDefault()
523 total -= len; in FSi_GetPathDefault()
528 dst[total - 1] = '\0'; in FSi_GetPathDefault()
529 total -= 1; in FSi_GetPathDefault()
541 dst[total - 1] = '/'; in FSi_GetPathDefault()
542 total -= 1; in FSi_GetPathDefault()
549 MI_CpuCopy8(entry.name, dst + total - len, len); in FSi_GetPathDefault()
550 total -= len; in FSi_GetPathDefault()
558 SDK_ASSERT(pos == total); in FSi_GetPathDefault()
/TwlSDK-5.1.0/build/libraries/os/common/src/
Dos_alloc.c1154 long total = 0; in OS_CheckHeap() local
1186 total += cell->size; in OS_CheckHeap()
1187 OSi_CHECK(0 < total && total <= hd->size); in OS_CheckHeap()
1205 total += cell->size; in OS_CheckHeap()
1207 OSi_CHECK(0 < total && total <= hd->size); in OS_CheckHeap()
1214 OSi_CHECK(total == hd->size); in OS_CheckHeap()
/TwlSDK-5.1.0/include/nitro/wbt/
Dcontext.h184 s32 total; member
775 void WBT_GetDownloadProgress(const WBTContext * work, u32 id, int aid, int *current, int *total);
/TwlSDK-5.1.0/build/demos/wireless_shared/wfs/src/
Dwfs_common.c783 BOOL WFS_GetCurrentDownloadProgress(int *current, int *total) in WFS_GetCurrentDownloadProgress() argument
785 …return static_work->client && (WFS_GetClientReadProgress(static_work->client, current, total), TRU… in WFS_GetCurrentDownloadProgress()
/TwlSDK-5.1.0/data/cht_data/PictoChatSearcherSound/
DREADME.txt36 In Method #2, data that is not part of the game is being handled, so the total size increases a bit.
/TwlSDK-5.1.0/build/libraries/camera/ARM9.TWL/src/
Dcamera_api.c131 u8 total; // Number of final data (1 + subsequent commands *3) member
2494 cameraWork.total = (u8)((data & CAMERA_PXI_DATA_NUMS_MASK) >> CAMERA_PXI_DATA_NUMS_SHIFT); in CameraPxiCallback()
2522 if (cameraWork.current >= cameraWork.total-1) // There should be no > in CameraPxiCallback()