Home
last modified time | relevance | path

Searched refs:stage3 (Results 1 – 11 of 11) sorted by relevance

/external/clang/cmake/caches/
D3-stage.cmake7 stage3
8 stage3-clang
9 stage3-check-all
10 stage3-check-llvm
11 stage3-check-clang
12 stage3-test-suite CACHE STRING "")
DREADME.txt51 Depends on stage2 and runs check-llvm using the stage3 compiler.
54 Depends on stage2 and runs check-clang using the stage3 compiler.
57 Depends on stage2 and runs check-all using the stage3 compiler.
60 Depends on stage2 and runs the test-suite using the stage3 compiler (requires
71 You can then run "ninja stage3-clang" to build stage1, stage2 and stage3 clangs.
74 and stage3 are identical.
/external/icu/icu4c/source/tools/makeconv/
Dgencnvex.c59 …uint16_t stage3[0x10000<<UCNV_EXT_STAGE_2_LEFT_SHIFT]; /* 0x10000 because of 16-bit stage 2/3 inde… member
198 extData->stage3[extData->stage3Top++]=0; in CnvExtWrite()
233 udata_writeBlock(pData, extData->stage3, extData->stage3Top*2); in CnvExtWrite()
263 if(extData->stage3[i]!=0) { in CnvExtWrite()
264 printf("stage3[%04x]=%04x\n", i, extData->stage3[i]); in CnvExtWrite()
864 while(min<newBlock && extData->stage3[newBlock-1]==0) { in addFromUTrieEntry()
873 if(extData->stage3Top>UPRV_LENGTHOF(extData->stage3)) { in addFromUTrieEntry()
887 extData->stage3[i3]=1; in addFromUTrieEntry()
900 min<i3 && extData->stage3[min]==1; in addFromUTrieEntry()
909 uprv_memset(extData->stage3+extData->stage3Top, 0, MBCS_STAGE_3_BLOCK_SIZE*2); in addFromUTrieEntry()
[all …]
Dgenmbcs.cpp569 uint16_t *stage3, *p; in MBCSSingleAddFromUnicode() local
587 stage3=(uint16_t *)mbcsData->fromUBytes; in MBCSSingleAddFromUnicode()
636 while(min<newBlock && stage3[newBlock-1]==0) { in MBCSSingleAddFromUnicode()
656 p=stage3+mbcsData->stage2Single[idx]+nextOffset; in MBCSSingleAddFromUnicode()
689 uint8_t *stage3, *p; in MBCSAddFromUnicode() local
718 stage3=mbcsData->fromUBytes; in MBCSAddFromUnicode()
776 overlap<maxOverlap && stage3[newBlock-overlap-1]==0; in MBCSAddFromUnicode()
856 p=stage3+(stage3Index+nextOffset)*maxCharLength; in MBCSAddFromUnicode()
1233 uint16_t *stage3=(uint16_t *)mbcsData->fromUBytes; in singleCompactStage3() local
1248 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/
DCharsetMBCS.java1408 static int FROM_U(CharBuffer stage12, CharBuffer stage3, int s1Index, int c) { in FROM_U() argument
1409 … return stage3.get((stage12.get((stage12.get(s1Index) + ((c >>> 4) & 0x3f))) << STAGE_2_LEFT_SHIFT) in FROM_U()
3628 CharBuffer stage12, stage3; in matchFromU() local
3649 stage3 = (CharBuffer) ARRAY(cx, EXT_FROM_U_STAGE_3_INDEX, char.class); in matchFromU()
3650 index = FROM_U(stage12, stage3, index, firstCP); in matchFromU()
4786 char stage2, stage3; in MBCSGetFilteredUnicodeSetForUnicode() local
4805 stage3 = (char)st3; in MBCSGetFilteredUnicodeSetForUnicode()
4807 if(results[stage3++]>=minValue){ in MBCSGetFilteredUnicodeSetForUnicode()
4821 int stage2,stage3; in MBCSGetFilteredUnicodeSetForUnicode() local
4852 stage3 = st3Multiplier*16*(st3&UConverterConstants.UNSIGNED_SHORT_MASK); in MBCSGetFilteredUnicodeSetForUnicode()
[all …]
/external/icu/icu4c/source/common/
Ducnv_ext.h448 #define UCNV_EXT_FROM_U(stage12, stage3, s1Index, c) \ argument
449 …(stage3)[ ((int32_t)(stage12)[ (stage12)[s1Index] +(((c)>>4)&0x3f) ]<<UCNV_EXT_STAGE_2_LEFT_SHIFT)…
Ducnv_ext.cpp537 const uint16_t *stage12, *stage3; in ucnv_extMatchFromU() local
558 stage3=UCNV_EXT_ARRAY(cx, UCNV_EXT_FROM_U_STAGE_3_INDEX, uint16_t); in ucnv_extMatchFromU()
559 idx=UCNV_EXT_FROM_U(stage12, stage3, idx, firstCP); in ucnv_extMatchFromU()
1036 const uint16_t *stage12, *stage3, *ps2, *ps3; in ucnv_extGetUnicodeSet() local
1052 stage3=UCNV_EXT_ARRAY(cx, UCNV_EXT_FROM_U_STAGE_3_INDEX, uint16_t); in ucnv_extGetUnicodeSet()
1082 ps3=stage3+st3; in ucnv_extGetUnicodeSet()
Ducnvmbcs.cpp878 const uint16_t *stage2, *stage3, *results; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() local
903 stage3=results+st3; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
906 if(*stage3++>=minValue) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
920 const uint8_t *stage3, *bytes; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() local
949 stage3=bytes+st3Multiplier*16*(uint32_t)(uint16_t)st3; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
964 stage3+=st3Multiplier; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
969 b|=*stage3++; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
972 b|=*stage3++; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
975 b|=stage3[0]|stage3[1]; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
976 stage3+=2; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
[all …]
/external/llvm/docs/
DAdvancedBuilds.rst147 Depends on stage2 and runs the test-suite using the stage3 compiler (requires
160 (stage3) with an identical configuration to the stage2 build. At the end of
161 this, you have a stage2 and stage3 compiler that should be bit-for-bit
170 $ ninja stage3
172 After the build you can compare the stage2 & stage3 compilers. We have a bot
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DAdvancedBuilds.rst147 Depends on stage2 and runs the test-suite using the stage3 compiler (requires
160 (stage3) with an identical configuration to the stage2 build. At the end of
161 this, you have a stage2 and stage3 compiler that should be bit-for-bit
170 $ ninja stage3
172 After the build you can compare the stage2 & stage3 compilers. We have a bot
/external/dng_sdk/source/
Ddng_validate.cpp274 const dng_image &stage3 = *negative->Stage3Image (); in dng_validate() local
280 stage3, in dng_validate()
281 stage3.Planes () >= 3 ? piRGB in dng_validate()