| /TwlSDK-5.4/build/demos/math/dgt-2/src/ |
| D | main.c | 159 OSTick start, end; in CompareDigestSpeed() local 181 start = OS_GetTick(); in CompareDigestSpeed() 184 OS_Printf("%lld us/MB\n", OS_TicksToMicroSeconds(end - start)); in CompareDigestSpeed() 187 start = OS_GetTick(); in CompareDigestSpeed() 190 OS_Printf("%lld us/MB\n", OS_TicksToMicroSeconds(end - start)); in CompareDigestSpeed() 193 start = OS_GetTick(); in CompareDigestSpeed() 196 OS_Printf("%lld us/MB\n", OS_TicksToMicroSeconds(end - start)); in CompareDigestSpeed() 199 start = OS_GetTick(); in CompareDigestSpeed() 202 OS_Printf("%lld us/MB\n", OS_TicksToMicroSeconds(end - start)); in CompareDigestSpeed() 205 start = OS_GetTick(); in CompareDigestSpeed() [all …]
|
| /TwlSDK-5.4/build/demos/crypto/rc4-2/src/ |
| D | main.c | 181 OSTick start, end; in CompareRC4Speed() local 194 start = OS_GetTick(); in CompareRC4Speed() 197 OS_Printf("%lld us/MB\n", OS_TicksToMicroSeconds(end - start)); in CompareRC4Speed() 200 start = OS_GetTick(); in CompareRC4Speed() 203 OS_Printf("%lld us/MB\n", OS_TicksToMicroSeconds(end - start)); in CompareRC4Speed() 215 start = OS_GetTick(); in CompareRC4Speed() 218 OS_Printf("%lld us/MB\n", OS_TicksToMicroSeconds(end - start)); in CompareRC4Speed() 221 start = OS_GetTick(); in CompareRC4Speed() 224 OS_Printf("%lld us/MB\n", OS_TicksToMicroSeconds(end - start)); in CompareRC4Speed()
|
| /TwlSDK-5.4/build/tools/makelcf.TWL/ |
| D | createlcf.c | 46 static int ForeachObjects(tObject ** ptrObject, tObject * start, int n); 51 static void PutTokenBuffer(int start, int end); 123 static char *GetObjectParam(const char *str, char start, char end) in GetObjectParam() argument 125 int pos_start = GetCharPos(str, start); in GetObjectParam() 424 static int ForeachObjects(tObject ** ptrObject, tObject * start, int n) in ForeachObjects() argument 437 while (start) in ForeachObjects() 439 if (isObjectOK(start, section, filter)) in ForeachObjects() 441 *ptrObject = start; in ForeachObjects() 445 start = start->next; in ForeachObjects() 455 static int ForeachObjectsForce(tObject ** ptrObject, tObject * start, int n) in ForeachObjectsForce() argument [all …]
|
| /TwlSDK-5.4/tools/bin/ |
| D | conv2svnFormat.pl | 56 my $start = $line; 59 $start =~ s/.*Copyright ([0-9]+).*\n/$1/; 60 if ($start >= $now) 66 $line =~ s/Copyright [0-9\-,]+/Copyright $start/;
|
| /TwlSDK-5.4/build/libraries/wxc/ARM9/src/ |
| D | wxc_scheduler.c | 50 p->start = 0; in WXCi_InitScheduler() 88 if (p->pattern == p->start) in WXCi_UpdateScheduler() 91 p->start = (int)(OS_GetTick() % WXC_SCHEDULER_PATTERN_MAX); in WXCi_UpdateScheduler() 92 p->pattern = p->start; in WXCi_UpdateScheduler()
|
| /TwlSDK-5.4/build/tools/makelcf/ |
| D | createlcf.c | 115 static int ForeachObjects(tObject ** ptrObject, tObject * start, tForeachStatus * fep, int n); 120 static void PutTokenBuffer(int start, int end); 183 static char *GetObjectParam(const char *str, char start, char end) in GetObjectParam() argument 185 int pos_start = GetCharPos(str, start); in GetObjectParam() 474 static int ForeachObjects(tObject ** ptrObject, tObject * start, tForeachStatus* fep, int n) in ForeachObjects() argument 489 while (start) in ForeachObjects() 491 if (isObjectOK(start, section, filter)) in ForeachObjects() 493 *ptrObject = start; in ForeachObjects() 495 fep->isLast = (start->next ? FALSE : TRUE); in ForeachObjects() 500 start = start->next; in ForeachObjects() [all …]
|
| /TwlSDK-5.4/build/libraries/os/common/src/ |
| D | os_alloc.c | 311 static BOOL DLOverlap(Cell * list, void *start, void *end) in DLOverlap() argument 317 if (RangeOverlap(cell, (char *)cell + cell->size, start, end)) in DLOverlap() 501 void *start = (void *)TRUNC(*rstart, ALIGNMENT); in OS_AllocFixed() local 511 SDK_TASSERTMSG(start < end, OS_ERR_ALLOCFIXED_INVRANGE); in OS_AllocFixed() 512 …SDK_TASSERTMSG(RangeSubset(start, end, heapInfo->arenaStart, heapInfo->arenaEnd), OS_ERR_ALLOCFIXE… in OS_AllocFixed() 523 if (DLOverlap(hd->allocated, start, end)) in OS_AllocFixed() 526 OS_TPrintf("OS_AllocFixed: Warning - failed to allocate from %p to %p\n", start, end); in OS_AllocFixed() 555 if ((char *)cellEnd <= (char *)start) in OS_AllocFixed() 565 …if (InRange(cell, (char *)start - HEADERSIZE, end) && InRange((char *)cellEnd, start, (char *)end … in OS_AllocFixed() 567 if ((char *)cell < (char *)start) in OS_AllocFixed() [all …]
|
| D | os_alarm.c | 212 fire = alarm->start; in OSi_InsertAlarm() 213 if (alarm->start < tick) in OSi_InsertAlarm() 215 fire += alarm->period * ((tick - alarm->start) / alarm->period + 1); in OSi_InsertAlarm() 322 void OS_SetPeriodicAlarm(OSAlarm *alarm, OSTick start, OSTick period, OSAlarmHandler handler, in OS_SetPeriodicAlarm() argument 344 alarm->start = start; in OS_SetPeriodicAlarm()
|
| /TwlSDK-5.4/build/demos/math/fft-1/src/ |
| D | main.c | 198 OSTick start, end; in FFTTest() local 211 start = OS_GetTick(); in FFTTest() 216 OS_Printf("%lld us, ", OS_TicksToMicroSeconds(end - start)); in FFTTest() 227 start = OS_GetTick(); in FFTTest() 232 OS_Printf("%lld us, ", OS_TicksToMicroSeconds(end - start)); in FFTTest() 244 start = OS_GetTick(); in FFTTest() 249 OS_Printf("%lld us, ", OS_TicksToMicroSeconds(end - start)); in FFTTest() 260 start = OS_GetTick(); in FFTTest() 265 OS_Printf("%lld us, ", OS_TicksToMicroSeconds(end - start)); in FFTTest() 276 start = OS_GetTick(); in FFTTest() [all …]
|
| /TwlSDK-5.4/include/twl/hw/ARM9/ |
| D | ioreg_PAD.h | 95 #define REG_PAD_KEYINPUT_FIELD( l, r, down, up, left, right, start, sel, b, a ) \ argument 103 ((u32)(start) << REG_PAD_KEYINPUT_START_SHIFT) | \ 161 #define REG_PAD_KEYCNT_FIELD( logic, intr, l, r, down, up, left, right, start, sel, b, a ) \ argument 171 ((u32)(start) << REG_PAD_KEYCNT_START_SHIFT) | \
|
| /TwlSDK-5.4/include/nitro/hw/ARM9/ |
| D | ioreg_PAD.h | 95 #define REG_PAD_KEYINPUT_FIELD( l, r, down, up, left, right, start, sel, b, a ) \ argument 103 ((u32)(start) << REG_PAD_KEYINPUT_START_SHIFT) | \ 161 #define REG_PAD_KEYCNT_FIELD( logic, intr, l, r, down, up, left, right, start, sel, b, a ) \ argument 171 ((u32)(start) << REG_PAD_KEYCNT_START_SHIFT) | \
|
| /TwlSDK-5.4/include/nitro/os/common/ |
| D | alarm.h | 51 OSTick start; member 138 void OS_SetPeriodicAlarm(OSAlarm *alarm, OSTick start, OSTick period, OSAlarmHandler handler,
|
| D | alloc.h | 83 extern OSHeapHandle OS_CreateHeap(OSArenaId id, void *start, void *end); 129 extern void OS_AddToHeap(OSArenaId id, OSHeapHandle heap, void *start, void *end); 340 extern void OS_ClearHeap(OSArenaId id, OSHeapHandle heap, void *start, void *end);
|
| /TwlSDK-5.4/build/demos/prc/characterRecognition-2/src/ |
| D | main.c | 346 OSTick start, end, initPatternTime, recognizeTime_Light, in NitroMain() local 393 start = OS_GetTick(); in NitroMain() 399 initPatternTime = end - start; in NitroMain() 406 initPatternTime = end - start; in NitroMain() 423 start = OS_GetTick(); in NitroMain() 429 recognizeTime_Light = end - start; in NitroMain() 435 start = OS_GetTick(); in NitroMain() 442 recognizeTime_Standard = end - start; in NitroMain() 448 start = OS_GetTick(); in NitroMain() 454 recognizeTime_Fine = end - start; in NitroMain() [all …]
|
| /TwlSDK-5.4/build/libraries/el/common/src/ |
| D | loader_subset.c | 70 static BOOL ELi_CheckBufRest( ELDesc* elElfDesc, ELObject* MYObject, void* start, u32 size); 81 static void ELi_AddVeneerEntry( ELVeneer** start, ELVeneer* VenEnt); 82 static BOOL ELi_RemoveVenEntry( ELVeneer** start, ELVeneer* VenEnt); 83 static ELVeneer* ELi_GetVenEntry( ELVeneer** start, u32 data); 149 static BOOL ELi_CheckBufRest( ELDesc* elElfDesc, ELObject* MYObject, void* start, u32 size) in ELi_CheckBufRest() argument 151 if( ((u32)start + size) > (MYObject->buf_limit_addr)) { in ELi_CheckBufRest() 165 void* ELi_CopyVeneerToBuffer( ELDesc* elElfDesc, ELObject* MYObject, u32 start, u32 data, s32 thres… in ELi_CopyVeneerToBuffer() argument 178 if( ELi_IsFar( start, elVenEnt->adr, threshold) == FALSE) { in ELi_CopyVeneerToBuffer() 230 void* ELi_CopyV4tVeneerToBuffer( ELDesc* elElfDesc, ELObject* MYObject, u32 start, u32 data, s32 th… in ELi_CopyV4tVeneerToBuffer() argument 242 if( ELi_IsFar( start, elVenEnt->adr, threshold) == FALSE) { in ELi_CopyV4tVeneerToBuffer() [all …]
|
| /TwlSDK-5.4/include/nitro/snd/ARM9/ |
| D | interface.h | 133 void SND_InvalidateSeqData(const void *start, const void *end); 134 void SND_InvalidateBankData(const void *start, const void *end); 135 void SND_InvalidateWaveData(const void *start, const void *end);
|
| /TwlSDK-5.4/include/nitro/wxc/ |
| D | scheduler.h | 42 int start; member
|
| /TwlSDK-5.4/build/libraries/el/common/include/ |
| D | loader_subset.h | 30 void* ELi_CopyVeneerToBuffer( ELDesc* elElfDesc, ELObject* MYObject, u32 start, u32 data, s32 thres… 39 void* ELi_CopyV4tVeneerToBuffer( ELDesc* elElfDesc, ELObject* MYObject, u32 start, u32 data, s32 th…
|
| /TwlSDK-5.4/build/libraries/snd/ARM9/src/ |
| D | snd_interface.c | 340 void SND_InvalidateSeqData(const void *start, const void *end) in SND_InvalidateSeqData() argument 342 PushCommand(SND_COMMAND_INVALIDATE_SEQ, start, end, 0, 0); in SND_InvalidateSeqData() 345 void SND_InvalidateBankData(const void *start, const void *end) in SND_InvalidateBankData() argument 347 PushCommand(SND_COMMAND_INVALIDATE_BANK, start, end, 0, 0); in SND_InvalidateBankData() 350 void SND_InvalidateWaveData(const void *start, const void *end) in SND_InvalidateWaveData() argument 352 PushCommand(SND_COMMAND_INVALIDATE_WAVE, start, end, 0, 0); in SND_InvalidateWaveData()
|
| /TwlSDK-5.4/include/nitro/snd/common/ |
| D | seq.h | 175 void SND_InvalidateSeq(const void *start, const void *end); 176 void SND_InvalidateBank(const void *start, const void *end);
|
| /TwlSDK-5.4/build/demos/wbt/wbt-1/src/ |
| D | text.c | 114 tb->start = tb->cur = alloc_line_buf(); in init_text_buf() 229 tb->start = tmp; in m_putchar() 262 tb->cur = tb->start; in m_putchar() 305 lb = tb->start; in text_buf_to_vram()
|
| /TwlSDK-5.4/build/demos/wxc/unregister-1/src/ |
| D | text.c | 111 tb->start = tb->cur = alloc_line_buf(); in init_text_buf() 188 tb->start = tmp; in m_putchar() 221 tb->cur = tb->start; in m_putchar() 300 lb = tb->start; in text_buf_to_vram()
|
| /TwlSDK-5.4/build/demos/wbt/wbt-1/include/ |
| D | text.h | 44 LINE_BUF *start; member
|
| /TwlSDK-5.4/build/demos/wxc/unregister-1/include/ |
| D | text.h | 44 LINE_BUF *start; member
|
| /TwlSDK-5.4/build/libraries/mi/common.TWL/src/ |
| D | mi_sharedWram.c | 406 void MIi_SetWramMap_A( u32 start, u32 end, MIWramImage image ) in MIi_SetWramMap_A() argument 411 SDK_ASSERT( (start & 0xffff) == 0 && 0x03000000 <= start && start <= 0x03ff0000); in MIi_SetWramMap_A() 415 | ((start-0x03000000) >> (16 - REG_MI_MBK6_WA_SADDR_SHIFT)) in MIi_SetWramMap_A() 437 void MIi_SetWramMap_B( u32 start, u32 end, MIWramImage image ) in MIi_SetWramMap_B() argument 439 SDK_ASSERT( (start & 0x7fff) == 0 && 0x03000000 <= start && start <= 0x03ff8000); in MIi_SetWramMap_B() 443 | ((start-0x03000000) >> (16 - REG_MI_MBK7_WB_SADDR_SHIFT)) in MIi_SetWramMap_B() 465 void MIi_SetWramMap_C( u32 start, u32 end, MIWramImage image ) in MIi_SetWramMap_C() argument 467 SDK_ASSERT( (start & 0x7fff) == 0 && 0x03000000 <= start && start <= 0x03ff8000); in MIi_SetWramMap_C() 471 | ((start-0x03000000) >> (16 - REG_MI_MBK8_WC_SADDR_SHIFT)) in MIi_SetWramMap_C()
|