Home | History | Annotate | Download | only in common

Lines Matching defs:source

395     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;
640 pArgs->source=source;
656 const UChar *source, *sourceLimit;
664 source=pArgs->source;
683 /* use only one loop counter variable, targetCapacity, not also source */
684 diff=(int32_t)(sourceLimit-source);
688 while(targetCapacity>0 && (c=*source)<0x3000) {
703 ++source;
710 while(source<sourceLimit) {
712 c=*source++;
730 if(source<sourceLimit) {
732 UChar trail=*source;
734 ++source;
869 pArgs->source=source;
959 const uint8_t *source, *sourceLimit;
973 source=(const uint8_t *)pArgs->source;
1003 diff=(int32_t)(sourceLimit-source);
1009 if(BOCU1_START_NEG_2<=(c=*source) && c<BOCU1_START_POS_2) {
1027 ++source;
1033 while(source<sourceLimit) {
1041 c=*source++;
1064 } else if(BOCU1_START_NEG_3<=c && c<BOCU1_START_POS_3 && source<sourceLimit) {
1074 c=decodeBocu1TrailByte(1, *source++);
1076 bytes[0]=source[-2];
1077 bytes[1]=source[-1];
1101 if(source>=sourceLimit) {
1105 c=bytes[byteIndex++]=*source++;
1165 pArgs->source=(const char *)source;
1182 const uint8_t *source, *sourceLimit;
1193 source=(const uint8_t *)pArgs->source;
1218 diff=(int32_t)(sourceLimit-source);
1224 if(BOCU1_START_NEG_2<=(c=*source) && c<BOCU1_START_POS_2) {
1240 ++source;
1245 while(source<sourceLimit) {
1252 c=*source++;
1271 } else if(BOCU1_START_NEG_3<=c && c<BOCU1_START_POS_3 && source<sourceLimit) {
1280 c=decodeBocu1TrailByte(1, *source++);
1282 bytes[0]=source[-2];
1283 bytes[1]=source[-1];
1306 if(source>=sourceLimit) {
1309 c=bytes[byteIndex++]=*source++;
1364 pArgs->source=(const char *)source;