Home
last modified time | relevance | path

Searched refs:nName (Results 1 – 9 of 9) sorted by relevance

/freebsd/stand/ficl/
H A Dtools.c124 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 Ddict.c254 pFW->nName = (char)len; in dictAppendWord2()
676 if (pFW->nName > 0) in dictUnsmudge()
814 if ( (pFW->nName == si.count) in hashLookup()
H A Dprefix.c95 n = pFW->nName; in ficlParsePrefix()
H A Dficl.h531 FICL_COUNT nName; /* Number of chars in word name */ member
H A Dwords.c2879 PUSHUNS(pFW->nName); in toName()
/freebsd/stand/ficl/softwords/
H A Dficlclass.fr15 c-byte obj: .nName
24 my=[ .nName get ]
/freebsd/contrib/sqlite3/
H A Dshell.c12208 int nName = 0; /* Size of zName in bytes */ in zipfileStep() local
12236 nName = sqlite3_value_bytes(pName); in zipfileStep()
12291 if( nName>0 && zName[nName-1]=='/' ){ in zipfileStep()
12297 if( nName==0 || zName[nName-1]!='/' ){ in zipfileStep()
12303 nName = (int)strlen(zName); in zipfileStep()
12305 while( nName>1 && zName[nName-2]=='/' ) nName--; in zipfileStep()
12320 e.cds.nFile = (u16)nName; in zipfileStep()
17357 size_t nName; in vfstrace_register() local
17362 nName = strlen(zTraceName); in vfstrace_register()
17363 nByte = sizeof(*pNew) + sizeof(*pInfo) + nName + 1; in vfstrace_register()
[all …]
H A Dsqlite3.c25379 u8 nName; /* Length of the name */ member
25758 if( aXformType[i].nName==n in parseModifier()
37313 int nName, /* Bytes of text in zName */ in sqlite3VListAdd() argument
37320 nInt = nName/4 + 3; in sqlite3VListAdd()
37337 memcpy(z, zName, nName); in sqlite3VListAdd()
37338 z[nName] = 0; in sqlite3VListAdd()
37363 SQLITE_PRIVATE int sqlite3VListNameToNum(VList *pIn, const char *zName, int nName){ in sqlite3VListNameToNum() argument
37370 if( strncmp(z,zName,nName)==0 && z[nName]==0 ) return pIn[i]; in sqlite3VListNameToNum()
39799 int nName; /* Length of the zCanonicalName[] string */ member
39876 if( pCandidate->nName==n in vxworksFindFileId()
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c542 int nName = strlen30(zName); in findSqlFunc() local
543 pNew = (SqlFunc*)Tcl_Alloc( sizeof(*pNew) + nName + 1 ); in findSqlFunc()
545 memcpy(pNew->zName, zName, nName+1); in findSqlFunc()