Searched refs:stage3 (Results 1 – 7 of 7) sorted by relevance
/external/icu/icu4c/source/tools/makeconv/ |
D | gencnvex.c | 57 …uint16_t stage3[0x10000<<UCNV_EXT_STAGE_2_LEFT_SHIFT]; /* 0x10000 because of 16-bit stage 2/3 inde… member 196 extData->stage3[extData->stage3Top++]=0; in CnvExtWrite() 231 udata_writeBlock(pData, extData->stage3, extData->stage3Top*2); in CnvExtWrite() 261 if(extData->stage3[i]!=0) { in CnvExtWrite() 262 printf("stage3[%04x]=%04x\n", i, extData->stage3[i]); in CnvExtWrite() 862 while(min<newBlock && extData->stage3[newBlock-1]==0) { in addFromUTrieEntry() 871 if(extData->stage3Top>UPRV_LENGTHOF(extData->stage3)) { in addFromUTrieEntry() 885 extData->stage3[i3]=1; in addFromUTrieEntry() 898 min<i3 && extData->stage3[min]==1; in addFromUTrieEntry() 907 uprv_memset(extData->stage3+extData->stage3Top, 0, MBCS_STAGE_3_BLOCK_SIZE*2); in addFromUTrieEntry() [all …]
|
D | genmbcs.cpp | 561 uint16_t *stage3, *p; in MBCSSingleAddFromUnicode() local 579 stage3=(uint16_t *)mbcsData->fromUBytes; in MBCSSingleAddFromUnicode() 628 while(min<newBlock && stage3[newBlock-1]==0) { in MBCSSingleAddFromUnicode() 648 p=stage3+mbcsData->stage2Single[idx]+nextOffset; in MBCSSingleAddFromUnicode() 681 uint8_t *stage3, *p; in MBCSAddFromUnicode() local 710 stage3=mbcsData->fromUBytes; in MBCSAddFromUnicode() 768 overlap<maxOverlap && stage3[newBlock-overlap-1]==0; in MBCSAddFromUnicode() 845 p=stage3+(stage3Index+nextOffset)*maxCharLength; in MBCSAddFromUnicode() 1220 uint16_t *stage3=(uint16_t *)mbcsData->fromUBytes; in singleCompactStage3() local 1235 for(i=0; i<16 && stage3[start+i]==0 && stage3[prevEnd-i]==0; ++i) {} in singleCompactStage3() [all …]
|
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
D | CharsetMBCS.java | 1414 static int FROM_U(CharBuffer stage12, CharBuffer stage3, int s1Index, int c) { in FROM_U() argument 1415 …return stage3.get(((int) stage12.get((stage12.get(s1Index) + ((c >>> 4) & 0x3f))) << STAGE_2_LEFT_… in FROM_U() 3631 CharBuffer stage12, stage3; in matchFromU() local 3652 stage3 = (CharBuffer) ARRAY(cx, EXT_FROM_U_STAGE_3_INDEX, char.class); in matchFromU() 3653 index = FROM_U(stage12, stage3, index, firstCP); in matchFromU() 4785 char stage2, stage3; in MBCSGetFilteredUnicodeSetForUnicode() local 4804 stage3 = (char)st3; in MBCSGetFilteredUnicodeSetForUnicode() 4806 if(results[stage3++]>=minValue){ in MBCSGetFilteredUnicodeSetForUnicode() 4820 int stage2,stage3; in MBCSGetFilteredUnicodeSetForUnicode() local 4851 stage3 = st3Multiplier*16*(st3&UConverterConstants.UNSIGNED_SHORT_MASK); in MBCSGetFilteredUnicodeSetForUnicode() [all …]
|
/external/icu/icu4c/source/common/ |
D | ucnv_ext.h | 446 #define UCNV_EXT_FROM_U(stage12, stage3, s1Index, c) \ argument 447 …(stage3)[ ((int32_t)(stage12)[ (stage12)[s1Index] +(((c)>>4)&0x3f) ]<<UCNV_EXT_STAGE_2_LEFT_SHIFT)…
|
D | ucnv_ext.cpp | 534 const uint16_t *stage12, *stage3; in ucnv_extMatchFromU() local 555 stage3=UCNV_EXT_ARRAY(cx, UCNV_EXT_FROM_U_STAGE_3_INDEX, uint16_t); in ucnv_extMatchFromU() 556 idx=UCNV_EXT_FROM_U(stage12, stage3, idx, firstCP); in ucnv_extMatchFromU() 1030 const uint16_t *stage12, *stage3, *ps2, *ps3; in ucnv_extGetUnicodeSet() local 1046 stage3=UCNV_EXT_ARRAY(cx, UCNV_EXT_FROM_U_STAGE_3_INDEX, uint16_t); in ucnv_extGetUnicodeSet() 1076 ps3=stage3+st3; in ucnv_extGetUnicodeSet()
|
D | ucnvmbcs.cpp | 874 const uint16_t *stage2, *stage3, *results; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() local 899 stage3=results+st3; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() 902 if(*stage3++>=minValue) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode() 916 const uint8_t *stage3, *bytes; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() local 945 stage3=bytes+st3Multiplier*16*(uint32_t)(uint16_t)st3; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() 960 stage3+=st3Multiplier; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() 965 b|=*stage3++; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() 967 b|=*stage3++; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() 969 b|=stage3[0]|stage3[1]; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() 970 stage3+=2; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() [all …]
|
/external/dng_sdk/source/ |
D | dng_validate.cpp | 274 const dng_image &stage3 = *negative->Stage3Image (); in dng_validate() local 280 stage3, in dng_validate() 281 stage3.Planes () >= 3 ? piRGB in dng_validate()
|