Home | History | Annotate | Download | only in common

Lines Matching refs:tokenCount

265     uint16_t token, tokenCount=*tokens++, bufferPos=0;
274 if((uint8_t)';'>=tokenCount || tokens[(uint8_t)';']==(uint16_t)(-1)) {
299 if(c>=tokenCount) {
323 if ((uint8_t)';'>=tokenCount || tokens[(uint8_t)';']==(uint16_t)(-1)) {
358 uint16_t token, tokenCount=*tokens++;
368 if((uint8_t)';'>=tokenCount || tokens[(uint8_t)';']==(uint16_t)(-1)) {
393 if(c>=tokenCount) {
421 if ((uint8_t)';'>=tokenCount || tokens[(uint8_t)';']==(uint16_t)(-1)) {
1320 calcNameSetLength(const uint16_t *tokens, uint16_t tokenCount, const uint8_t *tokenStrings, int8_t *tokenLengths,
1328 if(c>=tokenCount) {
1369 uint16_t tokenCount=*tokens++;
1379 tokenLengths=(int8_t *)uprv_malloc(tokenCount);
1381 uprv_memset(tokenLengths, 0, tokenCount);
1403 length=calcNameSetLength(tokens, tokenCount, tokenStrings, tokenLengths, gNameSet, &line, lineLimit);
1412 length=calcNameSetLength(tokens, tokenCount, tokenStrings, tokenLengths, gNameSet, &line, lineLimit);
1421 /*length=calcNameSetLength(tokens, tokenCount, tokenStrings, tokenLengths, gISOCommentSet, &line, lineLimit);*/
1785 int16_t tokens[], uint16_t tokenCount,
1805 if(tokenCount>256) {
1806 tokenCount=256;
1810 for(i=1; i<tokenCount; ++i) {
1828 for(i=j=1; i<tokenCount; ++i) {
1840 * leave mappings at tokenCount and above unset if tokenCount<256
1917 uint16_t tokenCount;
1939 /* read and swap the tokenCount */
1940 tokenCount=ds->readUInt16(*p);
1946 if(tokenCount<=512) {
1947 count=tokenCount;
1955 tokens[i]=0; /* fill the rest of the tokens array if tokenCount<512 */
1957 makeTokenMap(ds, tokens, tokenCount, map, pErrorCode);
1958 makeTokenMap(ds, tokens+256, (uint16_t)(tokenCount>256 ? tokenCount-256 : 0), trailMap, pErrorCode);
1967 temp=(uint16_t *)uprv_malloc(tokenCount*2);
1970 tokenCount);
1976 for(i=0; i<tokenCount && i<256; ++i) {
1981 for(; i<tokenCount; ++i) {
1986 uprv_memcpy(q, temp, tokenCount*2);