Home | History | Annotate | Download | only in common

Lines Matching defs:source

34     const uint8_t *source;
42 source=(const uint8_t *)pArgs->source;
53 length=(int32_t)((const uint8_t *)pArgs->sourceLimit-source);
69 target[0]=source[0];
70 target[1]=source[1];
71 target[2]=source[2];
72 target[3]=source[3];
73 target[4]=source[4];
74 target[5]=source[5];
75 target[6]=source[6];
76 target[7]=source[7];
78 source+=8;
98 *target++=*source++;
103 pArgs->source=(const char *)source;
120 const uint8_t *source=(const uint8_t *)pArgs->source;
121 if(source<(const uint8_t *)pArgs->sourceLimit) {
122 pArgs->source=(const char *)(source+1);
123 return *source;
136 const UChar *source, *sourceLimit;
148 source=pArgs->source;
170 length=(int32_t)(sourceLimit-source);
188 oredChars=u=*source++;
190 oredChars|=u=*source++;
192 oredChars|=u=*source++;
194 oredChars|=u=*source++;
196 oredChars|=u=*source++;
198 oredChars|=u=*source++;
200 oredChars|=u=*source++;
202 oredChars|=u=*source++;
204 oredChars|=u=*source++;
206 oredChars|=u=*source++;
208 oredChars|=u=*source++;
210 oredChars|=u=*source++;
212 oredChars|=u=*source++;
214 oredChars|=u=*source++;
216 oredChars|=u=*source++;
218 oredChars|=u=*source++;
224 source-=16;
259 while(targetCapacity>0 && (c=*source++)<=max) {
271 if(source<sourceLimit) {
273 UChar trail=*source;
275 ++source;
307 if(U_SUCCESS(*pErrorCode) && source<sourceLimit && target>=(uint8_t *)pArgs->targetLimit) {
313 pArgs->source=source;
324 const uint8_t *source, *sourceLimit;
333 source=(uint8_t *)pToUArgs->source;
340 if(c!=0 && source<sourceLimit) {
344 } else if(c>=0xc2 && c<=0xc3 && (t1=(uint8_t)(*source-0x80)) <= 0x3f) {
345 ++source;
361 * In the conversion loop compare source with sourceLimit only once
366 if(source<sourceLimit && U8_IS_LEAD(*(sourceLimit-1))) {
371 while(source<sourceLimit) {
373 b=*source++;
380 (t1=(uint8_t)(*source-0x80)) <= 0x3f
382 ++source;
387 pToUArgs->source=(char *)(source-1);
406 if(U_SUCCESS(*pErrorCode) && source<(sourceLimit=(uint8_t *)pToUArgs->sourceLimit)) {
407 utf8->toUnicodeStatus=utf8->toUBytes[0]=b=*source++;
413 pToUArgs->source=(char *)source;
473 const uint8_t *source, *sourceLimit;
483 source=(const uint8_t *)pArgs->source;
496 length=(int32_t)(sourceLimit-source);
508 oredChars=target[0]=source[0];
509 oredChars|=target[1]=source[1];
510 oredChars|=target[2]=source[2];
511 oredChars|=target[3]=source[3];
512 oredChars|=target[4]=source[4];
513 oredChars|=target[5]=source[5];
514 oredChars|=target[6]=source[6];
515 oredChars|=target[7]=source[7];
522 source+=8;
547 source++)<=0x7f) {
558 } else if(source<sourceLimit && target>=pArgs->targetLimit) {
573 pArgs->source=(const char *)source;
582 const uint8_t *source;
585 source=(const uint8_t *)pArgs->source;
586 if(source<(const uint8_t *)pArgs->sourceLimit) {
587 b=*source++;
588 pArgs->source=(const char *)source;
610 const uint8_t *source, *sourceLimit;
623 source=(const uint8_t *)pToUArgs->source;
632 length=(int32_t)(sourceLimit-source);
644 oredChars=*target++=*source++;
645 oredChars|=*target++=*source++;
646 oredChars|=*target++=*source++;
647 oredChars|=*target++=*source++;
648 oredChars|=*target++=*source++;
649 oredChars|=*target++=*source++;
650 oredChars|=*target++=*source++;
651 oredChars|=*target++=*source++;
652 oredChars|=*target++=*source++;
653 oredChars|=*target++=*source++;
654 oredChars|=*target++=*source++;
655 oredChars|=*target++=*source++;
656 oredChars|=*target++=*source++;
657 oredChars|=*target++=*source++;
658 oredChars|=*target++=*source++;
659 oredChars|=*target++=*source++;
664 source-=16;
675 while(targetCapacity>0 && (c=*source)<=0x7f) {
676 ++source;
684 } else if(source<sourceLimit && target>=(const uint8_t *)pFromUArgs->targetLimit) {
690 pToUArgs->source=(const char *)source;