Searched refs:nName (Results 1 – 9 of 9) sorted by relevance
/freebsd/stand/ficl/ |
H A D | tools.c | 124 if ((pFW->nName <= 0) || (pFW->name[pFW->nName] != '\0')) in isAFiclWord() 127 if (strlen(pFW->name) != pFW->nName) in isAFiclWord() 218 pLit->nName, pLit->name, (unsigned long)c.u); in seeColon() 277 sprintf(cp, "%.*s", pFW->nName, pFW->name); in seeColon() 312 sprintf(pVM->pad, ": %.*s", pFW->nName, pFW->name); in seeXT() 346 sprintf(pVM->pad, "%.*s is a primitive", pFW->nName, pFW->name); in seeXT() 517 sprintf(pVM->pad, "next: %.*s", pFW->nName, pFW->name); in stepBreak() 755 if (wp->nName == 0) /* ignore :noname defs */ in listWords()
|
H A D | dict.c | 254 pFW->nName = (char)len; in dictAppendWord2() 676 if (pFW->nName > 0) in dictUnsmudge() 814 if ( (pFW->nName == si.count) in hashLookup()
|
H A D | prefix.c | 95 n = pFW->nName; in ficlParsePrefix()
|
H A D | ficl.h | 531 FICL_COUNT nName; /* Number of chars in word name */ member
|
H A D | words.c | 2879 PUSHUNS(pFW->nName); in toName()
|
/freebsd/stand/ficl/softwords/ |
H A D | ficlclass.fr | 15 c-byte obj: .nName 24 my=[ .nName get ]
|
/freebsd/contrib/sqlite3/tea/generic/ |
H A D | tclsqlite3.c | 498 int nName = strlen30(zName); in findSqlFunc() local 499 pNew = (SqlFunc*)Tcl_Alloc( sizeof(*pNew) + nName + 1 ); in findSqlFunc() 501 memcpy(pNew->zName, zName, nName+1); in findSqlFunc()
|
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 11369 int nName = 0; /* Size of zName in bytes */ in zipfileStep() local 11397 nName = sqlite3_value_bytes(pName); in zipfileStep() 11452 if( nName>0 && zName[nName-1]=='/' ){ in zipfileStep() 11458 if( nName==0 || zName[nName-1]!='/' ){ in zipfileStep() 11464 nName = (int)strlen(zName); in zipfileStep() 11466 while( nName>1 && zName[nName-2]=='/' ) nName--; in zipfileStep() 11481 e.cds.nFile = (u16)nName; in zipfileStep() 17523 int nName = recoverStrlen(zName); in recoverAddTable() local 17529 nByte += sizeof(RecoverTable) + nCol*sizeof(RecoverColumn) + nName+1; in recoverAddTable() 17541 memcpy(csr, zName, nName); in recoverAddTable() [all …]
|
H A D | sqlite3.c | 24880 u8 nName; /* Length of the name */ member 25259 if( aXformType[i].nName==n in parseModifier() 36732 int nName, /* Bytes of text in zName */ in sqlite3VListAdd() argument 36739 nInt = nName/4 + 3; in sqlite3VListAdd() 36756 memcpy(z, zName, nName); in sqlite3VListAdd() 36757 z[nName] = 0; in sqlite3VListAdd() 36782 SQLITE_PRIVATE int sqlite3VListNameToNum(VList *pIn, const char *zName, int nName){ in sqlite3VListNameToNum() argument 36789 if( strncmp(z,zName,nName)==0 && z[nName]==0 ) return pIn[i]; in sqlite3VListNameToNum() 39313 int nName; /* Length of the zCanonicalName[] string */ 39390 if( pCandidate->nName==n [all …]
|