Home | History | Annotate | Download | only in common

Lines Matching defs:source

393     const UChar *source, *sourceLimit;
406 source=pArgs->source;
430 /* use only one loop counter variable, targetCapacity, not also source */
431 diff=(int32_t)(sourceLimit-source);
435 while(targetCapacity>0 && (c=*source)<0x3000) {
442 ++source;
450 ++source;
462 while(source<sourceLimit) {
464 c=*source++;
486 if(source<sourceLimit) {
488 UChar trail=*source;
490 ++source;
631 pArgs->source=source;
647 const UChar *source, *sourceLimit;
655 source=pArgs->source;
674 /* use only one loop counter variable, targetCapacity, not also source */
675 diff=(int32_t)(sourceLimit-source);
679 while(targetCapacity>0 && (c=*source)<0x3000) {
694 ++source;
701 while(source<sourceLimit) {
703 c=*source++;
721 if(source<sourceLimit) {
723 UChar trail=*source;
725 ++source;
852 pArgs->source=source;
942 const uint8_t *source, *sourceLimit;
956 source=(const uint8_t *)pArgs->source;
986 diff=(int32_t)(sourceLimit-source);
992 if(BOCU1_START_NEG_2<=(c=*source) && c<BOCU1_START_POS_2) {
1010 ++source;
1016 while(source<sourceLimit) {
1024 c=*source++;
1047 } else if(BOCU1_START_NEG_3<=c && c<BOCU1_START_POS_3 && source<sourceLimit) {
1057 c=decodeBocu1TrailByte(1, *source++);
1059 bytes[0]=source[-2];
1060 bytes[1]=source[-1];
1084 if(source>=sourceLimit) {
1088 c=bytes[byteIndex++]=*source++;
1148 pArgs->source=(const char *)source;
1165 const uint8_t *source, *sourceLimit;
1178 source=(const uint8_t *)pArgs->source;
1203 diff=(int32_t)(sourceLimit-source);
1209 if(BOCU1_START_NEG_2<=(c=*source) && c<BOCU1_START_POS_2) {
1225 ++source;
1230 while(source<sourceLimit) {
1237 c=*source++;
1256 } else if(BOCU1_START_NEG_3<=c && c<BOCU1_START_POS_3 && source<sourceLimit) {
1265 c=decodeBocu1TrailByte(1, *source++);
1267 bytes[0]=source[-2];
1268 bytes[1]=source[-1];
1291 if(source>=sourceLimit) {
1294 c=bytes[byteIndex++]=*source++;
1349 pArgs->source=(const char *)source;