Lines Matching defs:nBytes
638 unsigned short int nBytes;
1154 unsigned short int nBytes;
1155 register unsigned char *r = (unsigned char *)&nBytes;
1191 nBytes = 5; break;
1194 nBytes = 3; break;
1201 nBytes = 2; break;
1204 if (l < 32) {nBytes = 6; break;}
1205 if (l < 48) {nBytes = 4; break;}
1206 if (l-128 < 32) {nBytes = 6; break;}
1207 if (l-128 < 48) {nBytes = 4; break;}
1211 nBytes = *(buf+1);
1212 nBytes += 2;
1217 nBytes += 3;
1222 nBytes += 3;
1234 nBytes *= 4;
1236 nBytes *= 2;
1238 nBytes *= 4;
1239 nBytes += 4;
1242 default: nBytes = 1; /* unassigned */
1244 return(nBytes);
1533 unsigned short int nBytes;
1537 /* write nBytes */
1538 nBytes = (ctxt->nameEncoding == dps_strings) ? bos->length + len :
1540 DPSWriteData(ctxt, (char *)&nBytes, 2);
1543 unsigned int nBytes;
1546 /* write nBytes */
1547 nBytes = (ctxt->nameEncoding == dps_strings) ? bos->length + len :
1549 DPSWriteData(ctxt, (char *)&nBytes, 4);