Home | History | Annotate | Download | only in common

Lines Matching refs:tokenCount

240     uint16_t token, tokenCount=*tokens++, bufferPos=0;
249 if((uint8_t)';'>=tokenCount || tokens[(uint8_t)';']==(uint16_t)(-1)) {
274 if(c>=tokenCount) {
298 if ((uint8_t)';'>=tokenCount || tokens[(uint8_t)';']==(uint16_t)(-1)) {
333 uint16_t token, tokenCount=*tokens++;
343 if((uint8_t)';'>=tokenCount || tokens[(uint8_t)';']==(uint16_t)(-1)) {
368 if(c>=tokenCount) {
396 if ((uint8_t)';'>=tokenCount || tokens[(uint8_t)';']==(uint16_t)(-1)) {
1295 calcNameSetLength(const uint16_t *tokens, uint16_t tokenCount, const uint8_t *tokenStrings, int8_t *tokenLengths,
1303 if(c>=tokenCount) {
1344 uint16_t tokenCount=*tokens++;
1354 tokenLengths=(int8_t *)uprv_malloc(tokenCount);
1356 uprv_memset(tokenLengths, 0, tokenCount);
1378 length=calcNameSetLength(tokens, tokenCount, tokenStrings, tokenLengths, gNameSet, &line, lineLimit);
1387 length=calcNameSetLength(tokens, tokenCount, tokenStrings, tokenLengths, gNameSet, &line, lineLimit);
1396 /*length=calcNameSetLength(tokens, tokenCount, tokenStrings, tokenLengths, gISOCommentSet, &line, lineLimit);*/
1765 int16_t tokens[], uint16_t tokenCount,
1785 if(tokenCount>256) {
1786 tokenCount=256;
1790 for(i=1; i<tokenCount; ++i) {
1808 for(i=j=1; i<tokenCount; ++i) {
1820 * leave mappings at tokenCount and above unset if tokenCount<256
1897 uint16_t tokenCount;
1919 /* read and swap the tokenCount */
1920 tokenCount=ds->readUInt16(*p);
1926 if(tokenCount<=512) {
1927 count=tokenCount;
1935 tokens[i]=0; /* fill the rest of the tokens array if tokenCount<512 */
1937 makeTokenMap(ds, tokens, tokenCount, map, pErrorCode);
1938 makeTokenMap(ds, tokens+256, (uint16_t)(tokenCount>256 ? tokenCount-256 : 0), trailMap, pErrorCode);
1947 temp=(uint16_t *)uprv_malloc(tokenCount*2);
1950 tokenCount);
1956 for(i=0; i<tokenCount && i<256; ++i) {
1961 for(; i<tokenCount; ++i) {
1966 uprv_memcpy(q, temp, tokenCount*2);