Home
last modified time | relevance | path

Searched refs:stage2 (Results 1 – 19 of 19) sorted by relevance

/external/clang/cmake/caches/
DREADME.txt23 a target named "stage2" which performs an LTO build of clang.
25 The Apple-stage2 cache can be used directly to match the build settings Apple
38 stage2-instrumented:
40 llvm-profdata) then uses that compiler to build an instrumented stage2 compiler.
42 stage2-instrumented-generate-profdata:
43 Depends on "stage2-instrumented" and will use the instrumented compiler to
46 stage2:
47 Depends on "stage2-instrumented-generate-profdata" and will use the stage1
48 compiler with the stage2 profdata to build a PGO-optimized compiler.
50 stage2-check-llvm:
[all …]
DPGO.cmake9 stage2
10 stage2-check-all
11 stage2-check-llvm
12 stage2-check-clang
13 stage2-test-suite CACHE STRING "")
16 -C ${CMAKE_CURRENT_LIST_DIR}/PGO-stage2-instrumented.cmake
DPGO-stage2-instrumented.cmake8 -C ${CMAKE_CURRENT_LIST_DIR}/PGO-stage2.cmake
DApple-stage1.cmake52 -C ${CMAKE_CURRENT_LIST_DIR}/Apple-stage2.cmake
DApple-stage2.cmake1 # This file sets up a CMakeCache for Apple-style stage2 bootstrap. It is
/external/llvm/docs/
DAdvancedBuilds.rst38 $ ninja stage2
45 build using the compiler installed on the host, and a stage2 build is built
57 The stage2 compiler is the fully optimized compiler intended to ship to users.
66 $ ninja stage2-distribution
69 CLANG_BOOTSTRAP_CMAKE_ARGS to pass the Apple-stage2.cmake cache script to the
70 stage2 configuration step.
72 When you build the stage2-distribution target it builds the minimal stage1
73 compiler and required tools, then configures and builds the stage2 compiler
74 based on the settings in Apple-stage2.cmake.
100 $ ninja stage2-instrumented-generate-profdata
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DAdvancedBuilds.rst38 $ ninja stage2
45 build using the compiler installed on the host, and a stage2 build is built
57 The stage2 compiler is the fully optimized compiler intended to ship to users.
66 $ ninja stage2-distribution
69 CLANG_BOOTSTRAP_CMAKE_ARGS to pass the Apple-stage2.cmake cache script to the
70 stage2 configuration step.
72 When you build the stage2-distribution target it builds the minimal stage1
73 compiler and required tools, then configures and builds the stage2 compiler
74 based on the settings in Apple-stage2.cmake.
100 $ ninja stage2-instrumented-generate-profdata
[all …]
DDocker.rst94 # Options, starting with BOOTSTRAP_* are passed to stage2 cmake invocation.
98 -p clang -i stage2-install-clang -i stage2-install-clang-headers \
DCMake.rst409 that lld is built before stage2 begins.
/external/llvm/test/
Dlit.site.cfg19 config.llvm_obj_root = aosp_dir + "/out/stage2/host/linux-x86/obj/test_llvm"
20 config.llvm_tools_dir = aosp_dir + "/out/stage2/host/linux-x86/bin"
21 config.llvm_shlib_dir = aosp_dir + "/out/stage2/host/linux-x86/lib64"
/external/icu/icu4c/source/tools/makeconv/
Dgenmbcs.cpp48 uint32_t stage2[MBCS_STAGE_2_SIZE]; /* stage 2 for MBCS */ member
300 mbcsData->stage2[mbcsData->stage1[0]+i]=sum; in MBCSStartMappings()
732 while(min<newBlock && mbcsData->stage2[newBlock-1]==0) { in MBCSAddFromUnicode()
766 if(mbcsData->stage2[idx]==0) { in MBCSAddFromUnicode()
794 mbcsData->stage2[i++]=(newBlock/MBCS_STAGE_3_GRANULARITY)/maxCharLength; in MBCSAddFromUnicode()
800 stage3Index=MBCS_STAGE_3_GRANULARITY*(uint32_t)(uint16_t)mbcsData->stage2[idx]; in MBCSAddFromUnicode()
880 if((mbcsData->stage2[idx+(nextOffset>>MBCS_STAGE_2_SHIFT)]&(1UL<<(16+(c&0xf))))!=0 || old!=0) { in MBCSAddFromUnicode()
894 mbcsData->stage2[idx+(nextOffset>>4)]|=(1UL<<(16+(c&0xf))); in MBCSAddFromUnicode()
1306 …for(i=0; i<MBCS_STAGE_2_BLOCK_SIZE && mbcsData->stage2[start+i]==0 && mbcsData->stage2[prevEnd-i]=… in compactStage2()
1314 mbcsData->stage2[newStart++]=mbcsData->stage2[start++]; in compactStage2()
[all …]
Dgencnvex.c58 uint16_t stage2[MBCS_STAGE_2_SIZE]; member
232 udata_writeBlock(pData, extData->stage2, extData->stage2Top*2); in CnvExtWrite()
254 if(extData->stage2[i]!=0) { in CnvExtWrite()
255 printf("stage12[%04x]=%04x\n", j, extData->stage2[i]); in CnvExtWrite()
845 while(min<newBlock && extData->stage2[newBlock-1]==0) { in addFromUTrieEntry()
851 if(extData->stage2Top>UPRV_LENGTHOF(extData->stage2)) { in addFromUTrieEntry()
860 if(extData->stage2[i2]==0) { in addFromUTrieEntry()
870 extData->stage2[i2]=(uint16_t)(newBlock>>UCNV_EXT_STAGE_2_LEFT_SHIFT); in addFromUTrieEntry()
879 i3=((int32_t)extData->stage2[i2]<<UCNV_EXT_STAGE_2_LEFT_SHIFT)+nextOffset; in addFromUTrieEntry()
907 extData->stage2[i2]=extData->stage3Sub1Block; in addFromUTrieEntry()
[all …]
/external/dng_sdk/source/
Ddng_validate.cpp218 const dng_image &stage2 = *negative->Stage2Image (); in dng_validate() local
224 stage2, in dng_validate()
225 stage2.Planes () >= 3 ? piRGB in dng_validate()
Ddng_negative.cpp4054 dng_image &stage2 = *fStage2Image.Get (); in DoInterpolateStage3() local
4071 stage2.PixelType ())); in DoInterpolateStage3()
4073 if (srcPlane < 0 || srcPlane >= (int32) stage2.Planes ()) in DoInterpolateStage3()
4080 stage2, in DoInterpolateStage3()
/external/icu/icu4c/source/common/
Ducnvmbcs.cpp878 const uint16_t *stage2, *stage3, *results; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() local
899 stage2=table+st2; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
901 if((st3=stage2[st2])!=0) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
919 const uint32_t *stage2; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() local
945 stage2=(const uint32_t *)table+st2; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
947 if((st3=stage2[st2])!=0) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
1410 uint32_t *stage2; in writeStage3Roundtrip() local
1455 stage2=((uint32_t *)table)+table[c>>10]+((c>>4)&0x3f); in writeStage3Roundtrip()
1457 st3=(int32_t)(uint16_t)*stage2*16+(c&0xf); in writeStage3Roundtrip()
1478 *stage2|=(1UL<<(16+(c&0xf))); in writeStage3Roundtrip()
[all …]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetMBCS.java510 int stage2; in writeStage3Roundtrip() local
558 stage2 = table[c>>10] + ((c>>4)&0x3f); in writeStage3Roundtrip()
559 st3 = tableInts[stage2]; in writeStage3Roundtrip()
582 tableInts[stage2] |= (1L << shift); in writeStage3Roundtrip()
594 int[] stage2 = new int[numStage1Ints + fullStage2Length]; in reconstituteData() local
596 stage2, (fullStage2Length - stage2Length) + numStage1Ints, in reconstituteData()
598 mbcsTable.fromUnicodeTableInts = stage2; in reconstituteData()
619 stage2[st2++] = st3++; in reconstituteData()
620 stage2[st2++] = st3++; in reconstituteData()
621 stage2[st2++] = st3++; in reconstituteData()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dextend-set-cc-uses-dbg.ll40 …vm/lib/Demangle/ItaniumDemangle.cpp", directory: "/Users/vsk/src/builds/llvm.org-master-RA-stage2")
/external/libhevc/common/arm/
Dihevc_itrans_recon_32x32.s1518 b stage2
1538 stage2: label
/external/libhevc/common/arm64/
Dihevc_itrans_recon_32x32.s1594 b stage2
1614 stage2: label