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 | 124479 SQLITE_PRIVATE void sqlite3AddColumn(Parse *pParse, Token sName, Token sType){ 124502 if( sType.n>=16 124503 && sqlite3_strnicmp(sType.z+(sType.n-6),"always",6)==0 124505 sType.n -= 6; 124506 while( ALWAYS(sType.n>0) && sqlite3Isspace(sType.z[sType.n-1]) ) sType.n--; 124507 if( sType.n>=9 124508 && sqlite3_strnicmp(sType.z+(sType.n-9),"generated",9)==0 124510 sType.n -= 9; 124511 while( sType.n>0 && sqlite3Isspace(sType.z[sType.n-1]) ) sType.n--; 124518 if( sType.n>=3 ){ [all …]
|