Searched refs:nChars (Results 1 – 4 of 4) sorted by relevance
/freebsd/stand/ficl/ |
H A D | tools.c | 743 int nChars = 0; in listWords() local 759 nChars += sprintf(pPad + nChars, "%s", cp); in listWords() 761 if (nChars > 70) in listWords() 763 pPad[nChars] = '\0'; in listWords() 764 nChars = 0; in listWords() 776 len = nCOLWIDTH - nChars % nCOLWIDTH; in listWords() 778 pPad[nChars++] = ' '; in listWords() 781 if (nChars > 70) in listWords() 783 pPad[nChars] = '\0'; in listWords() 784 nChars = 0; in listWords() [all …]
|
H A D | vm.c | 471 void vmPushTib(FICL_VM *pVM, char *text, FICL_INT nChars, TIB *pSaveTib) in vmPushTib() argument 479 pVM->tib.end = text + nChars; in vmPushTib()
|
H A D | ficl.h | 637 void vmPushTib (FICL_VM *pVM, char *text, FICL_INT nChars, TIB *pSaveTib); 971 int ficlExecC(FICL_VM *pVM, char *pText, FICL_INT nChars);
|
/freebsd/contrib/tcsh/ |
H A D | sh.hist.c | 437 generateHashes(int nChars, unsigned nWords, unsigned samples, unsigned *hashes, in generateHashes() argument 440 if (nChars < 1) in generateHashes() 443 Char *number = xmalloc((nChars+nWords)*sizeof(Char)); in generateHashes() 451 while (nWords >= 2 && nChars < (wBoundaries[nWords-2]+1) + 4) in generateHashes() 455 for (i = 0; i<nChars; i++) { in generateHashes() 470 number[nChars + w] = 0; /* terminate last word */ in generateHashes() 478 unsigned j = nChars-1 + w; in generateHashes() 504 samples, nChars, w+1, hashFcnName, (int)((sec/samples)*1e9), in generateHashes() 505 (int)((double)samples*nChars/sec/1e6)); in generateHashes()
|