Home | History | Annotate | Download | only in common

Lines Matching refs:source

33     const uint8_t *source;
41 source=(const uint8_t *)pArgs->source;
52 length=(int32_t)((const uint8_t *)pArgs->sourceLimit-source);
68 target[0]=source[0];
69 target[1]=source[1];
70 target[2]=source[2];
71 target[3]=source[3];
72 target[4]=source[4];
73 target[5]=source[5];
74 target[6]=source[6];
75 target[7]=source[7];
77 source+=8;
97 *target++=*source++;
102 pArgs->source=(const char *)source;
119 const uint8_t *source=(const uint8_t *)pArgs->source;
120 if(source<(const uint8_t *)pArgs->sourceLimit) {
121 pArgs->source=(const char *)(source+1);
122 return *source;
135 const UChar *source, *sourceLimit;
147 source=pArgs->source;
169 length=(int32_t)(sourceLimit-source);
187 oredChars=u=*source++;
189 oredChars|=u=*source++;
191 oredChars|=u=*source++;
193 oredChars|=u=*source++;
195 oredChars|=u=*source++;
197 oredChars|=u=*source++;
199 oredChars|=u=*source++;
201 oredChars|=u=*source++;
203 oredChars|=u=*source++;
205 oredChars|=u=*source++;
207 oredChars|=u=*source++;
209 oredChars|=u=*source++;
211 oredChars|=u=*source++;
213 oredChars|=u=*source++;
215 oredChars|=u=*source++;
217 oredChars|=u=*source++;
223 source-=16;
258 while(targetCapacity>0 && (c=*source++)<=max) {
270 if(source<sourceLimit) {
272 UChar trail=*source;
274 ++source;
306 if(U_SUCCESS(*pErrorCode) && source<sourceLimit && target>=(uint8_t *)pArgs->targetLimit) {
312 pArgs->source=source;
323 const uint8_t *source, *sourceLimit;
332 source=(uint8_t *)pToUArgs->source;
339 if(c!=0 && source<sourceLimit) {
343 } else if(c>=0xc2 && c<=0xc3 && (t1=(uint8_t)(*source-0x80)) <= 0x3f) {
344 ++source;
360 * In the conversion loop compare source with sourceLimit only once
365 if(source<sourceLimit && U8_IS_LEAD(*(sourceLimit-1))) {
370 while(source<sourceLimit) {
372 b=*source++;
379 (t1=(uint8_t)(*source-0x80)) <= 0x3f
381 ++source;
386 pToUArgs->source=(char *)(source-1);
405 if(U_SUCCESS(*pErrorCode) && source<(sourceLimit=(uint8_t *)pToUArgs->sourceLimit)) {
406 utf8->toUnicodeStatus=utf8->toUBytes[0]=b=*source++;
412 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;