Home
last modified time | relevance | path

Searched refs:ver (Results 1 – 10 of 10) sorted by relevance

/CafeSDK-2.12.13-1/system/bin/tool/
Dhostdisplayversion21 fw_ver=`"$SDIO_BRIDGE_TOOLS/FSEmul" -ver | grep Firmware | awk '{ print $4 }'`
22 SDIO_BRIDGE_TOOLS_VER=`"$SDIO_BRIDGE_TOOLS/FSEmul" -ver | grep Software | awk '{ print $4 }'`
26 …fw_ver=`"$MION_BRIDGE_TOOLS/FSEmul" -ver -ip $BRIDGE_CURRENT_IP_ADDRESS | grep Firmware | awk '{ p…
27 …SDIO_BRIDGE_TOOLS_VER=`"$MION_BRIDGE_TOOLS/FSEmul" -ver -ip $BRIDGE_CURRENT_IP_ADDRESS | grep Soft…
28 …fpga_ver=`"$MION_BRIDGE_TOOLS/FSEmul" -ver -ip $BRIDGE_CURRENT_IP_ADDRESS | grep FPGA | awk '{ pri…
Dhostcheckversion56 …local fw_ver=`"$MION_BRIDGE_TOOLS/FSEmul" -ver -ip $BRIDGE_CURRENT_IP_ADDRESS | grep Firmware | tr…
57 …local sw_ver=`"$MION_BRIDGE_TOOLS/FSEmul" -ver -ip $BRIDGE_CURRENT_IP_ADDRESS | grep Software | tr…
60 local fw_ver=`"$SDIO_BRIDGE_TOOLS/FSEmul" -ver | grep Firmware | tr -d '\r\n' | cut -d' ' -f4`
61 local sw_ver=`"$SDIO_BRIDGE_TOOLS/FSEmul" -ver | grep Software | tr -d '\r\n' | cut -d' ' -f4`
Dhostdisplayversion.bat25 …for /F "usebackq tokens=1,3 delims=: " %%i IN (`"%SDIO_BRIDGE_TOOLS%\FSEmul" -ver -ip %BRIDGE_CURR…
32 …for /F "usebackq tokens=1,3 delims=: " %%i IN (`"%MION_BRIDGE_TOOLS%\FSEmul" -ver -ip %BRIDGE_CURR…
Dpreparehdd131 if [[ $IMGUPLOADERV == *ver.* ]]
Duploadimg.sh140 if [[ $IMGUPLOADERV == *ver.* ]]
Duploadimg_simultaneous.sh135 if [[ $IMGUPLOADERV == *ver.* ]]
/CafeSDK-2.12.13-1/system/src/lib/szfile/
DCpuArch.h128 UInt32 ver; member
144 #define x86cpuid_GetFamily(p) (((p)->ver >> 8) & 0xFF00F)
145 #define x86cpuid_GetModel(p) (((p)->ver >> 4) & 0xF00F)
146 #define x86cpuid_GetStepping(p) ((p)->ver & 0xF)
DCpuArch.c101 MyCPUID(1, &p->ver, &p->b, &p->c, &p->d); in x86cpuid_CheckAndRead()
/CafeSDK-2.12.13-1/
Dcafe.bat260 …%/system/include/sdk_ver.h") do if "%%i" == "#define" if "%%j" == "CAFE_OS_SDK_VERSION" set ver=%%k variable
261 if not "%ver%" == "" set SDK_VER=%ver:~0,-4%.%ver:~-4,-2%.%ver:~-2%
/CafeSDK-2.12.13-1/system/src/tool/cafex/
DCafeFunctions.cs9319 static string compute_ver_string(int ver) in compute_ver_string() argument
9321 string ver_str = (ver % 100).ToString(); in compute_ver_string()
9323 if (ver > 100) in compute_ver_string()
9325 ver_str = string.Format("{0}.{1}", (ver / 100) % 100, ver_str); in compute_ver_string()
9327 if (ver > 10000) in compute_ver_string()
9329 ver_str = string.Format("{0}.{1}", (ver / 10000) % 100, ver_str); in compute_ver_string()
9331 if (ver > 1000000) in compute_ver_string()
9333 ver_str = string.Format("{0}.{1}", (ver / 1000000) % 100, ver_str); in compute_ver_string()