Searched refs:sType (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/dev/hptmv/ |
H A D | hptproc.c | 429 char *sType = NULL, *sStatus = NULL; in hpt_copy_array_info() local 438 sType = "RAID 1/0 "; in hpt_copy_array_info() 441 sType = "RAID 0 "; in hpt_copy_array_info() 447 sType = "RAID 1 "; in hpt_copy_array_info() 451 sType = "JBOD "; in hpt_copy_array_info() 455 sType = "RAID 5 "; in hpt_copy_array_info() 459 sType = "N/A "; in hpt_copy_array_info() 500 …hpt_copy_info(pinfo, "%2d %11s %-20s %5lldMB %-16s", nld, sType, pArray->u.array.ArrayName, pA… in hpt_copy_array_info()
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 122858 SQLITE_PRIVATE void sqlite3AddColumn(Parse *pParse, Token sName, Token sType){ 122882 if( sType.n>=16 122883 && sqlite3_strnicmp(sType.z+(sType.n-6),"always",6)==0 122885 sType.n -= 6; 122886 while( ALWAYS(sType.n>0) && sqlite3Isspace(sType.z[sType.n-1]) ) sType.n--; 122887 if( sType.n>=9 122888 && sqlite3_strnicmp(sType.z+(sType.n-9),"generated",9)==0 122890 sType.n -= 9; 122891 while( sType.n>0 && sqlite3Isspace(sType.z[sType.n-1]) ) sType.n--; 122898 if( sType.n>=3 ){ [all …]
|