Searched defs:stage3 (Results 1 - 6 of 6) sorted by relevance

/external/dng_sdk/source/
H A Ddng_validate.cpp274 const dng_image &stage3 = *negative->Stage3Image (); local
280 stage3,
281 stage3.Planes () >= 3 ? piRGB
/external/icu/icu4c/source/common/
H A Ducnv_ext.cpp534 const uint16_t *stage12, *stage3; local
555 stage3=UCNV_EXT_ARRAY(cx, UCNV_EXT_FROM_U_STAGE_3_INDEX, uint16_t);
556 idx=UCNV_EXT_FROM_U(stage12, stage3, idx, firstCP);
1030 const uint16_t *stage12, *stage3, *ps2, *ps3; local
1046 stage3=UCNV_EXT_ARRAY(cx, UCNV_EXT_FROM_U_STAGE_3_INDEX, uint16_t);
1076 ps3=stage3+st3;
H A Ducnvmbcs.cpp874 const uint16_t *stage2, *stage3, *results; local
899 stage3=results+st3;
902 if(*stage3++>=minValue) {
916 const uint8_t *stage3, *bytes; local
945 stage3=bytes+st3Multiplier*16*(uint32_t)(uint16_t)st3;
960 stage3+=st3Multiplier;
965 b|=*stage3++;
967 b|=*stage3++;
969 b|=stage3[0]|stage3[
[all...]
/external/icu/icu4c/source/tools/makeconv/
H A Dgencnvex.c57 uint16_t stage3[0x10000<<UCNV_EXT_STAGE_2_LEFT_SHIFT]; /* 0x10000 because of 16-bit stage 2/3 indexes */ member in struct:CnvExtData
62 /* for stage3 compaction of <subchar1> |2 mappings */
196 extData->stage3[extData->stage3Top++]=0;
231 udata_writeBlock(pData, extData->stage3, extData->stage3Top*2);
261 if(extData->stage3[i]!=0) {
262 printf("stage3[%04x]=%04x\n", i, extData->stage3[i]);
862 while(min<newBlock && extData->stage3[newBlock-1]==0) {
871 if(extData->stage3Top>UPRV_LENGTHOF(extData->stage3)) {
879 * assume extData->stage3[i
[all...]
H A Dgenmbcs.cpp561 uint16_t *stage3, *p; local
579 stage3=(uint16_t *)mbcsData->fromUBytes;
628 while(min<newBlock && stage3[newBlock-1]==0) {
648 p=stage3+mbcsData->stage2Single[idx]+nextOffset;
681 uint8_t *stage3, *p; local
710 stage3=mbcsData->fromUBytes;
768 overlap<maxOverlap && stage3[newBlock-overlap-1]==0;
808 * the initial all-unassigned block in stage3.
845 p=stage3+(stage3Index+nextOffset)*maxCharLength;
1220 uint16_t *stage3 local
[all...]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetMBCS.java1414 static int FROM_U(CharBuffer stage12, CharBuffer stage3, int s1Index, int c) { argument
1415 return stage3.get(((int) stage12.get((stage12.get(s1Index) + ((c >>> 4) & 0x3f))) << STAGE_2_LEFT_SHIFT)
3631 CharBuffer stage12, stage3;
3652 stage3 = (CharBuffer) ARRAY(cx, EXT_FROM_U_STAGE_3_INDEX, char.class);
3653 index = FROM_U(stage12, stage3, index, firstCP);
4785 char stage2, stage3;
4804 stage3 = (char)st3;
4806 if(results[stage3++]>=minValue){
4820 int stage2,stage3;
4851 stage3
[all...]

Completed in 169 milliseconds