Home
last modified time | relevance | path

Searched refs:cnt (Results 1 – 25 of 38) sorted by relevance

12

/TwlSDK-5.5/build/demos/os/threadYield-1/src/
Dmain.c58 int cnt; variable
87 cnt = 0; in NitroMain()
95 cnt = 0; in NitroMain()
147 while (cnt<10) in proc1()
165 cnt++; in proc1()
176 while (cnt<10) in proc2()
194 cnt++; in proc2()
205 while (cnt<10) in proc3()
223 cnt++; in proc3()
/TwlSDK-5.5/build/libraries/ext/common/src/
Dext_keycontrol.c37 u16 cnt; in EXT_AutoKeys() local
39 cnt = absolute_cnt; in EXT_AutoKeys()
40 while (cnt >= sequence->count) in EXT_AutoKeys()
47 cnt -= sequence->count; in EXT_AutoKeys()
/TwlSDK-5.5/build/libraries/mi/common/src/
Dmi_wram.c51 void MI_SetWramBank(MIWram cnt) in MI_SetWramBank() argument
53 MIi_WRAM_ASSERT(cnt); in MI_SetWramBank()
54 reg_GX_VRAMCNT_WRAM = (u8)cnt; // safe byte access in MI_SetWramBank()
/TwlSDK-5.5/build/demos/wm/dataShare-Model/src/
Dkey.c42 if (!(pKey->cnt & (0x0001 << i))) in keyRead()
63 if (pKey->cnt & (0x0001 << i)) in keyRead()
70 pKey->cnt = r; in keyRead()
/TwlSDK-5.5/build/demos/wm/wep-1/src/
Dkey.c42 if (!(pKey->cnt & (0x0001 << i))) in keyRead()
63 if (pKey->cnt & (0x0001 << i)) in keyRead()
70 pKey->cnt = r; in keyRead()
/TwlSDK-5.5/build/demos.TWL/os/os_jump/src/
Dmain.c37 u16 cnt; // Unprocessed input value member
241 if (!(pKey->cnt & (0x0001 << i))) in ReadKey()
261 if (pKey->cnt & (0x0001 << i)) in ReadKey()
268 pKey->cnt = r; // Unprocessed key input in ReadKey()
/TwlSDK-5.5/build/demos/os/callTrace-2/src/
Dmain.c146 static int cnt = 0; in proc1() local
152 if (cnt++ == 3) in proc1()
173 static int cnt = 0; in proc2() local
179 if (cnt++ == 3) in proc2()
/TwlSDK-5.5/build/demos/spi/pm-1/src/
Dmain.c232 static int cnt = 0; in NitroMain() local
233 switch (cnt % 2) in NitroMain()
238 cnt++; in NitroMain()
244 cnt++; in NitroMain()
253 static int cnt = 0; in NitroMain() local
254 switch (cnt % 2) in NitroMain()
259 cnt++; in NitroMain()
265 cnt++; in NitroMain()
/TwlSDK-5.5/build/demos/wxc/simple-1/src/
Dmain.c43 u16 cnt; // Unprocessed input value member
277 if (!(pKey->cnt & (0x0001 << i))) in KeyRead()
297 if (pKey->cnt & (0x0001 << i)) in KeyRead()
303 pKey->cnt = r; // Unprocessed key input in KeyRead()
/TwlSDK-5.5/build/demos/wxc/wxc-dataShare/src/
Dmain.c60 u16 cnt; // Unprocessed input value member
422 if (!(pKey->cnt & (0x0001 << i))) in KeyRead()
442 if (pKey->cnt & (0x0001 << i)) in KeyRead()
448 pKey->cnt = r; // Unprocessed key input in KeyRead()
/TwlSDK-5.5/build/demos/spi/spiMonkey/src/
Dmain.c36 u16 cnt; // Unprocessed input value member
310 if (!(pKey->cnt & (0x0001 << i))) in KeyRead()
330 if (pKey->cnt & (0x0001 << i)) in KeyRead()
336 pKey->cnt = r; // Unprocessed key input in KeyRead()
/TwlSDK-5.5/build/demos/rtc/swclock-1/src/
Dmain.c56 u16 cnt; // Unprocessed input value member
267 if (!(pKey->cnt & (0x0001 << i))) in KeyRead()
287 if (pKey->cnt & (0x0001 << i)) in KeyRead()
293 pKey->cnt = r; // Unprocessed key input in KeyRead()
/TwlSDK-5.5/build/demos/wxc/unregister-1/src/
Dmain.c43 u16 cnt; // Unprocessed input value member
293 if (!(pKey->cnt & (0x0001 << i))) in KeyRead()
313 if (pKey->cnt & (0x0001 << i)) in KeyRead()
319 pKey->cnt = r; // Unprocessed key input in KeyRead()
/TwlSDK-5.5/build/demos/math/qsort/src/
Dmain.c224 static u32 cnt = 0; in NitroMain() local
263 cnt++; in NitroMain()
267 sum / cnt); in NitroMain()
/TwlSDK-5.5/build/demos/os/mutex-2/src/
Dmain.c114 int cnt = 0; in proc1() local
122 if (++cnt > 10) in proc1()
/TwlSDK-5.5/build/demos/wm/dataShare-Model/include/
Dkey.h26 u16 cnt; // Unprocessed input value member
/TwlSDK-5.5/build/demos/wm/wep-1/include/
Dkey.h26 u16 cnt; // Unprocessed input value member
/TwlSDK-5.5/build/demos/mb/multiboot-wfs/common/src/
Dutil.c172 if (!(pKey->cnt & bit)) in KeyRead()
187 else if ((pKey->cnt & bit) != 0) in KeyRead()
192 pKey->cnt = r; in KeyRead()
/TwlSDK-5.5/include/nitro/mi/
Dwram.h73 void MI_SetWramBank(MIWram cnt);
/TwlSDK-5.5/build/demos/cht/catch-1/src/
Dmain.c54 u16 cnt; // Unprocessed input value member
315 if (!(pKey->cnt & (0x0001 << i))) in KeyRead()
335 if (pKey->cnt & (0x0001 << i)) in KeyRead()
341 pKey->cnt = r; // Unprocessed key input in KeyRead()
/TwlSDK-5.5/build/demos/os/tick-1/src/
Dmain.c26 inline int ObjChar(u32 cnt, int shift) in ObjChar() argument
28 u32 d = (cnt >> shift) & 0xf; in ObjChar()
/TwlSDK-5.5/build/demos/os/sleep-1/src/
Dmain.c27 inline int ObjChar(u32 cnt, int shift) in ObjChar() argument
29 u32 d = (cnt >> shift) & 0xf; in ObjChar()
/TwlSDK-5.5/build/demos/wvr/switchover/src/
Dwireless_main.c47 u16 cnt; // Unprocessed input value member
549 if (!(pKey->cnt & (0x0001 << i))) in KeyRead()
569 if (pKey->cnt & (0x0001 << i)) in KeyRead()
575 pKey->cnt = r; // Unprocessed key input in KeyRead()
/TwlSDK-5.5/build/demos/wm/mp_simple-1/src/
Dmain.c63 u16 cnt; // Unprocessed input value member
503 if (!(pKey->cnt & (0x0001 << i))) in KeyRead()
523 if (pKey->cnt & (0x0001 << i)) in KeyRead()
529 pKey->cnt = r; // Unprocessed key input in KeyRead()
/TwlSDK-5.5/build/demos/wvr/simple/src/
Dmain.c46 u16 cnt; // Unprocessed input value member
521 if (!(pKey->cnt & (0x0001 << i))) in KeyRead()
541 if (pKey->cnt & (0x0001 << i)) in KeyRead()
547 pKey->cnt = r; // Unprocessed key input in KeyRead()

12