Home
last modified time | relevance | path

Searched refs:idx (Results 1 – 3 of 3) sorted by relevance

/CafeSDK-2.12.13-1/system/src/lib/demo/
DdemoCapture.c82 u32 i, j, idx, leftByte, numLoop; in _DEMODumpSerial() local
90 idx = 0; in _DEMODumpSerial()
101 ch = data[3*idx] >> 2; in _DEMODumpSerial()
104 ch = ((data[3*idx] << 4) & 060) | ((data[3*idx+1] >> 4) & 017); in _DEMODumpSerial()
107 ch = ((data[3*idx+1] << 2) & 074) | ((data[3*idx+2] >> 6) & 03); in _DEMODumpSerial()
110 ch = data[3*idx+2] & 077; in _DEMODumpSerial()
113 idx++; in _DEMODumpSerial()
128 ch = data[3*idx] >> 2; in _DEMODumpSerial()
131 ch = ((data[3*idx] << 4) & 060) | ((data[3*idx+1] >> 4) & 017); in _DEMODumpSerial()
134 ch = ((data[3*idx+1] << 2) & 074) | ((data[3*idx+2] >> 6) & 03); in _DEMODumpSerial()
[all …]
/CafeSDK-2.12.13-1/system/src/tool/gfx/projects/gshCompile/
DgshCompile.cpp498 for (u32 idx = 0; idx < numVaryings; idx++) in DeleteSOVaryings() local
500 delete[] (pSOVaryings[idx]); in DeleteSOVaryings()
/CafeSDK-2.12.13-1/system/src/tool/cafex/
DCafeFunctions.cs6786 for (int idx = 0; idx < args.Length; idx++) in setbootmode()
6788 if (args[idx] == "-noreflash") //uses the update command with devkitmsg in setbootmode()
6795 else if (args[idx] == "-reflash") //uses the reflash command with devkitmsg in setbootmode()
6802 else if (args[idx] == "-production" || args[idx] == "-P") in setbootmode()
6815 else if (args[idx] == "-quick" || args[idx] == "-Q") in setbootmode()
6820 else if (args[idx] == "-h") in setbootmode()
6826 else if (args[idx] == "-mixed") in setbootmode()
6848 if (!ArgumentChecks.IsArgumentValidSetting(args, idx)) in setbootmode()
6854 if (args[idx] != "NAND" && args[idx] != "PCFS") in setbootmode()
6856 … Console.WriteLine("cafex setbootmode error: {0} is not a valid boot mode!", args[idx]); in setbootmode()
[all …]