Lines Matching refs:me
311 UCMapping *mb, *me, *mbLimit, *meLimit; in checkBaseExtUnicode() local
318 me=ext->mappings; in checkBaseExtUnicode()
319 meLimit=me+ext->mappingsLength; in checkBaseExtUnicode()
338 if(me==meLimit) { in checkBaseExtUnicode()
342 if((0<=me->f && me->f<=2) || me->f==4) { in checkBaseExtUnicode()
346 ++me; in checkBaseExtUnicode()
350 cmp=compareUnicode(base, mb, ext, me); in checkBaseExtUnicode()
363 } else if( mb->uLen<me->uLen && in checkBaseExtUnicode()
364 … 0==uprv_memcmp(UCM_GET_CODE_POINTS(base, mb), UCM_GET_CODE_POINTS(ext, me), 4*mb->uLen) in checkBaseExtUnicode()
375 ucm_printMapping(ext, me, stderr); in checkBaseExtUnicode()
386 if( mb->f==me->f && mb->bLen==me->bLen && in checkBaseExtUnicode()
387 0==uprv_memcmp(UCM_GET_BYTES(base, mb), UCM_GET_BYTES(ext, me), mb->bLen) in checkBaseExtUnicode()
389 me->moveFlag|=UCM_REMOVE_MAPPING; in checkBaseExtUnicode()
401 ucm_printMapping(ext, me, stderr); in checkBaseExtUnicode()
407 ++me; in checkBaseExtUnicode()
415 UCMapping *mb, *me; in checkBaseExtBytes() local
457 me=ext->mappings+extMap[e]; in checkBaseExtBytes()
459 if(me->f==0 || me->f==3) { in checkBaseExtBytes()
467 cmp=compareBytes(base, mb, ext, me, TRUE); in checkBaseExtBytes()
479 } else if( mb->bLen<me->bLen && in checkBaseExtBytes()
481 0==uprv_memcmp(UCM_GET_BYTES(base, mb), UCM_GET_BYTES(ext, me), mb->bLen) in checkBaseExtBytes()
492 ucm_printMapping(ext, me, stderr); in checkBaseExtBytes()
503 if( mb->f==me->f && mb->uLen==me->uLen && in checkBaseExtBytes()
504 … 0==uprv_memcmp(UCM_GET_CODE_POINTS(base, mb), UCM_GET_CODE_POINTS(ext, me), 4*mb->uLen) in checkBaseExtBytes()
506 me->moveFlag|=UCM_REMOVE_MAPPING; in checkBaseExtBytes()
518 ucm_printMapping(ext, me, stderr); in checkBaseExtBytes()