Home | History | Annotate | Download | only in common

Lines Matching defs:source

36     const uint8_t *source;
44 source=(const uint8_t *)pArgs->source;
55 length=(int32_t)((const uint8_t *)pArgs->sourceLimit-source);
71 target[0]=source[0];
72 target[1]=source[1];
73 target[2]=source[2];
74 target[3]=source[3];
75 target[4]=source[4];
76 target[5]=source[5];
77 target[6]=source[6];
78 target[7]=source[7];
80 source+=8;
100 *target++=*source++;
105 pArgs->source=(const char *)source;
122 const uint8_t *source=(const uint8_t *)pArgs->source;
123 if(source<(const uint8_t *)pArgs->sourceLimit) {
124 pArgs->source=(const char *)(source+1);
125 return *source;
138 const UChar *source, *sourceLimit;
150 source=pArgs->source;
172 length=(int32_t)(sourceLimit-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++;
220 oredChars|=u=*source++;
226 source-=16;
261 while(targetCapacity>0 && (c=*source++)<=max) {
273 if(source<sourceLimit) {
275 UChar trail=*source;
277 ++source;
309 if(U_SUCCESS(*pErrorCode) && source<sourceLimit && target>=(uint8_t *)pArgs->targetLimit) {
315 pArgs->source=source;
326 const uint8_t *source, *sourceLimit;
335 source=(uint8_t *)pToUArgs->source;
342 if(c!=0 && source<sourceLimit) {
346 } else if(c>=0xc2 && c<=0xc3 && (t1=(uint8_t)(*source-0x80)) <= 0x3f) {
347 ++source;
363 * In the conversion loop compare source with sourceLimit only once
368 if(source<sourceLimit && U8_IS_LEAD(*(sourceLimit-1))) {
373 while(source<sourceLimit) {
375 b=*source++;
382 (t1=(uint8_t)(*source-0x80)) <= 0x3f
384 ++source;
389 pToUArgs->source=(char *)(source-1);
408 if(U_SUCCESS(*pErrorCode) && source<(sourceLimit=(uint8_t *)pToUArgs->sourceLimit)) {
409 utf8->toUnicodeStatus=utf8->toUBytes[0]=b=*source++;
415 pToUArgs->source=(char *)source;
472 const uint8_t *source, *sourceLimit;
482 source=(const uint8_t *)pArgs->source;
495 length=(int32_t)(sourceLimit-source);
507 oredChars=target[0]=source[0];
508 oredChars|=target[1]=source[1];
509 oredChars|=target[2]=source[2];
510 oredChars|=target[3]=source[3];
511 oredChars|=target[4]=source[4];
512 oredChars|=target[5]=source[5];
513 oredChars|=target[6]=source[6];
514 oredChars|=target[7]=source[7];
521 source+=8;
546 while(targetCapacity>0 && (c=*source++)<=0x7f) {
557 } else if(source<sourceLimit && target>=pArgs->targetLimit) {
572 pArgs->source=(const char *)source;
581 const uint8_t *source;
584 source=(const uint8_t *)pArgs->source;
585 if(source<(const uint8_t *)pArgs->sourceLimit) {
586 b=*source++;
587 pArgs->source=(const char *)source;
609 const uint8_t *source, *sourceLimit;
622 source=(const uint8_t *)pToUArgs->source;
631 length=(int32_t)(sourceLimit-source);
643 oredChars=*target++=*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++;
663 source-=16;
674 while(targetCapacity>0 && (c=*source)<=0x7f) {
675 ++source;
683 } else if(source<sourceLimit && target>=(const uint8_t *)pFromUArgs->targetLimit) {
689 pToUArgs->source=(const char *)source;