Lines Matching refs:source

38     const uint8_t *source;
46 source=(const uint8_t *)pArgs->source;
57 length=(int32_t)((const uint8_t *)pArgs->sourceLimit-source);
73 target[0]=source[0];
74 target[1]=source[1];
75 target[2]=source[2];
76 target[3]=source[3];
77 target[4]=source[4];
78 target[5]=source[5];
79 target[6]=source[6];
80 target[7]=source[7];
82 source+=8;
102 *target++=*source++;
107 pArgs->source=(const char *)source;
124 const uint8_t *source=(const uint8_t *)pArgs->source;
125 if(source<(const uint8_t *)pArgs->sourceLimit) {
126 pArgs->source=(const char *)(source+1);
127 return *source;
140 const char16_t *source, *sourceLimit;
152 source=pArgs->source;
174 length=(int32_t)(sourceLimit-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++;
222 oredChars|=u=*source++;
228 source-=16;
263 while(targetCapacity>0 && (c=*source++)<=max) {
275 if(source<sourceLimit) {
277 char16_t trail=*source;
279 ++source;
311 if(U_SUCCESS(*pErrorCode) && source<sourceLimit && target>=(uint8_t *)pArgs->targetLimit) {
317 pArgs->source=source;
328 const uint8_t *source, *sourceLimit;
337 source=(uint8_t *)pToUArgs->source;
348 if(c!=0 && source<sourceLimit) {
352 } else if(c>=0xc2 && c<=0xc3 && (t1=(uint8_t)(*source-0x80)) <= 0x3f) {
353 ++source;
369 * In the conversion loop compare source with sourceLimit only once
374 if(source<sourceLimit && U8_IS_LEAD(*(sourceLimit-1))) {
379 while(source<sourceLimit) {
381 b=*source++;
388 (t1=(uint8_t)(*source-0x80)) <= 0x3f
390 ++source;
395 pToUArgs->source=(char *)(source-1);
414 if(U_SUCCESS(*pErrorCode) && source<(sourceLimit=(uint8_t *)pToUArgs->sourceLimit)) {
415 utf8->toUnicodeStatus=utf8->toUBytes[0]=b=*source++;
421 pToUArgs->source=(char *)source;
484 const uint8_t *source, *sourceLimit;
494 source=(const uint8_t *)pArgs->source;
507 length=(int32_t)(sourceLimit-source);
519 oredChars=target[0]=source[0];
520 oredChars|=target[1]=source[1];
521 oredChars|=target[2]=source[2];
522 oredChars|=target[3]=source[3];
523 oredChars|=target[4]=source[4];
524 oredChars|=target[5]=source[5];
525 oredChars|=target[6]=source[6];
526 oredChars|=target[7]=source[7];
533 source+=8;
558 while(targetCapacity>0 && (c=*source++)<=0x7f) {
569 } else if(source<sourceLimit && target>=pArgs->targetLimit) {
584 pArgs->source=(const char *)source;
593 const uint8_t *source;
596 source=(const uint8_t *)pArgs->source;
597 if(source<(const uint8_t *)pArgs->sourceLimit) {
598 b=*source++;
599 pArgs->source=(const char *)source;
621 const uint8_t *source, *sourceLimit;
634 source=(const uint8_t *)pToUArgs->source;
643 length=(int32_t)(sourceLimit-source);
655 oredChars=*target++=*source++;
656 oredChars|=*target++=*source++;
657 oredChars|=*target++=*source++;
658 oredChars|=*target++=*source++;
659 oredChars|=*target++=*source++;
660 oredChars|=*target++=*source++;
661 oredChars|=*target++=*source++;
662 oredChars|=*target++=*source++;
663 oredChars|=*target++=*source++;
664 oredChars|=*target++=*source++;
665 oredChars|=*target++=*source++;
666 oredChars|=*target++=*source++;
667 oredChars|=*target++=*source++;
668 oredChars|=*target++=*source++;
669 oredChars|=*target++=*source++;
670 oredChars|=*target++=*source++;
675 source-=16;
686 while(targetCapacity>0 && (c=*source)<=0x7f) {
687 ++source;
695 } else if(source<sourceLimit && target>=(const uint8_t *)pFromUArgs->targetLimit) {
701 pToUArgs->source=(const char *)source;