Home
last modified time | relevance | path

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

/CafeSDK-2.12.13/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/system/src/tool/gfx/projects/gshCompile/
DgshCompile.cpp491 for (u32 idx = 0; idx < numVaryings; idx++) in DeleteSOVaryings() local
493 delete[] (pSOVaryings[idx]); in DeleteSOVaryings()
/CafeSDK-2.12.13/system/src/tool/cafex/
DCafeFunctions.cs6512 for (int idx = 0; idx < args.Length; idx++) in setbootmode()
6514 if (args[idx] == "-noreflash") //uses the update command with devkitmsg in setbootmode()
6521 else if (args[idx] == "-reflash") //uses the reflash command with devkitmsg in setbootmode()
6528 else if (args[idx] == "-production" || args[idx] == "-P") in setbootmode()
6541 else if (args[idx] == "-quick" || args[idx] == "-Q") in setbootmode()
6546 else if (args[idx] == "-h") in setbootmode()
6552 else if (args[idx] == "-mixed") in setbootmode()
6574 if (!ArgumentChecks.IsArgumentValidSetting(args, idx)) in setbootmode()
6579 target = args[idx]; in setbootmode()