Home
last modified time | relevance | path

Searched refs:CFG (Results 1 - 25 of 102) sorted by relevance

12345

/third_party/icu/icu4c/source/extra/uconv/
H A Dmakedata.mak14 !IF "$(CFG)" == ""
15 CFG=Debug macro
20 !IF "$(CFG)" != "Release" && "$(CFG)" != "release" && "$(CFG)" != "Debug" && "$(CFG)" != "debug" && "$(CFG)" != "x86\Release" && "$(CFG)" != "x86\Debug" && "$(CFG)" != "x64\Release" && "$(CFG)" !
[all...]
/third_party/skia/third_party/externals/icu/source/extra/uconv/
H A Dmakedata.mak14 !IF "$(CFG)" == ""
15 CFG=Debug macro
20 !IF "$(CFG)" != "Release" && "$(CFG)" != "release" && "$(CFG)" != "Debug" && "$(CFG)" != "debug" && "$(CFG)" != "x86\Release" && "$(CFG)" != "x86\Debug" && "$(CFG)" != "x64\Release" && "$(CFG)" !
[all...]
/third_party/curl/lib/
H A DMakefile.mk27 # Usage: make -f Makefile.mk CFG=-feat1[-feat2][-feat3][...]
28 # Example: make -f Makefile.mk CFG=-zlib-ssl-libssh2-ipv6
77 ifneq ($(findstring -debug,$(CFG)),)
83 ifneq ($(findstring -trackmem,$(CFG)),)
86 ifneq ($(findstring -map,$(CFG)),)
94 ifneq ($(findstring -sync,$(CFG)),)
96 else ifneq ($(findstring -ares,$(CFG)),)
104 ifneq ($(findstring -rtmp,$(CFG)),)
113 ifneq ($(findstring -ssh2,$(CFG)),)
119 else ifneq ($(findstring -libssh,$(CFG)),)
[all...]
/third_party/rust/crates/cxx/gen/build/src/
H A Derror.rs1 use crate::cfg::CFG;
25 let _ = $expr; // ensure it doesn't fall out of sync with CFG definition
43 expr!(CFG.exported_header_dirs), in fmt()
49 expr!(CFG.exported_header_prefixes), in fmt()
54 expr!(CFG.exported_header_dirs), in fmt()
60 expr!(CFG.exported_header_prefixes), in fmt()
66 expr!(CFG.exported_header_links), in fmt()
72 expr!(CFG.exported_header_prefixes), in fmt()
78 expr!(CFG.exported_header_links), in fmt()
H A Dlib.rs113 pub use crate::cfg::{Cfg, CFG};
168 let include_prefix = Path::new(CFG.include_prefix); in init()
242 for exported_dir in &CFG.exported_header_dirs { in validate_cfg()
248 for prefix in &CFG.exported_header_prefixes { in validate_cfg()
255 if !CFG.exported_header_dirs.is_empty() { in validate_cfg()
258 if !CFG.exported_header_prefixes.is_empty() { in validate_cfg()
261 if !CFG.exported_header_links.is_empty() { in validate_cfg()
293 for exported_dir in &CFG.exported_header_dirs { in make_this_crate()
306 Some(links_attribute) => CFG.exported_header_links.iter().any(|&exported| { in make_this_crate()
317 Some(include_prefix) => CFG in make_this_crate()
[all...]
H A Dcfg.rs5 /// Build configuration. See [CFG].
7 /// See [`CFG.include_prefix`][CFG#cfginclude_prefix].
9 /// See [`CFG.exported_header_dirs`][CFG#cfgexported_header_dirs].
11 /// See [`CFG.exported_header_prefixes`][CFG#cfgexported_header_prefixes].
13 /// See [`CFG.exported_header_links`][CFG#cfgexported_header_links].
15 /// See [`CFG
309 pub static mut CFG: Cfg = Cfg { global() consts
[all...]
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_cfg.cpp33 CFG::CFG(Compiler &compiler_, const SPIRFunction &func_) in CFG() function in SPIRV_CROSS_NAMESPACE::CFG
41 uint32_t CFG::find_common_dominator(uint32_t a, uint32_t b) const in find_common_dominator()
53 void CFG::build_immediate_dominators() in build_immediate_dominators()
79 bool CFG::is_back_edge(uint32_t to) const in is_back_edge()
87 bool CFG::has_visited_forward_edge(uint32_t to) const in has_visited_forward_edge()
94 bool CFG::post_order_visit(uint32_t block_id) in post_order_visit()
111 // To the CFG, this is linear control flow, but we risk picking the do/while scope as our dominating block. in post_order_visit()
113 // We could use has_visited_forward_edge, but this break code-gen where the merge block is unreachable in the CFG. in post_order_visit()
167 // which looks at how variables are accessed through the CFG in post_order_visit()
[all...]
H A Dspirv_cfg.hpp33 class CFG class
36 CFG(Compiler &compiler, const SPIRFunction &function);
147 DominatorBuilder(const CFG &cfg);
158 const CFG &cfg;
/third_party/icu/icu4c/source/data/
H A Dmakedata.mak108 !IF "$(CFG)" == "ARM\Release" || "$(CFG)" == "ARM\Debug"
110 !ELSE IF "$(CFG)" == "ARM64\Release" || "$(CFG)" == "ARM64\Debug"
112 !ELSE IF "$(CFG)" == "x64\Release" || "$(CFG)" == "x64\Debug"
159 !IF "$(CFG)" == "ARM\Release" || "$(CFG)" == "ARM\Debug"
162 !ELSE IF "$(CFG)" == "ARM64\Release" || "$(CFG)"
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
H A DVPlan.cpp27 #include "llvm/IR/CFG.h"
115 VPBasicBlock::createEmptyBasicBlock(VPTransformState::CFGState &CFG) { in createEmptyBasicBlock() argument
118 BasicBlock *PrevBB = CFG.PrevBB; in createEmptyBasicBlock()
120 PrevBB->getParent(), CFG.LastBB); in createEmptyBasicBlock()
127 BasicBlock *PredBB = CFG.VPBB2IRBB[PredVPBB]; in createEmptyBasicBlock()
138 CFG.VPBBsToFix.push_back(PredVPBB); in createEmptyBasicBlock()
165 VPBasicBlock *PrevVPBB = State->CFG.PrevVPBB; in execute()
167 BasicBlock *NewBB = State->CFG.PrevBB; // Reuse it if possible. in execute()
182 NewBB = createEmptyBasicBlock(State->CFG); in execute()
184 // Temporarily terminate with unreachable until CFG i in execute()
[all...]
/third_party/skia/third_party/externals/icu/source/data/
H A Dmakedata.mak108 !IF "$(CFG)" == "ARM\Release" || "$(CFG)" == "ARM\Debug"
110 !ELSE IF "$(CFG)" == "ARM64\Release" || "$(CFG)" == "ARM64\Debug"
112 !ELSE IF "$(CFG)" == "x64\Release" || "$(CFG)" == "x64\Debug"
152 !IF "$(CFG)" == "ARM\Release" || "$(CFG)" == "ARM\Debug"
155 !ELSE IF "$(CFG)" == "ARM64\Release" || "$(CFG)"
[all...]
/third_party/spirv-tools/source/opt/
H A Dcfg.cpp36 CFG::CFG(Module* module) in CFG() function in spvtools::opt::CFG
49 void CFG::AddEdges(BasicBlock* blk) { in AddEdges()
59 void CFG::RemoveNonExistingEdges(uint32_t blk_id) { in RemoveNonExistingEdges()
75 void CFG::ComputeStructuredOrder(Function* func, BasicBlock* root, in ComputeStructuredOrder()
80 void CFG::ComputeStructuredOrder(Function* func, BasicBlock* root, in ComputeStructuredOrder()
105 void CFG::ForEachBlockInPostOrder(BasicBlock* bb, in ForEachBlockInPostOrder()
118 void CFG::ForEachBlockInReversePostOrder( in ForEachBlockInReversePostOrder()
126 bool CFG::WhileEachBlockInReversePostOrder( in WhileEachBlockInReversePostOrder()
142 void CFG
[all...]
H A Dcontrol_dependence.cpp42 uint32_t ControlDependence::GetConditionID(const CFG& cfg) const { in GetConditionID()
77 const CFG& cfg, const PostDominatorAnalysis& pdom) { in ComputePostDominanceFrontiers()
83 // DF_local(X) = { Y | X -> Y in CFG, X does not strictly post-dominate Y } in ComputePostDominanceFrontiers()
108 const CFG& cfg, const PostDominatorAnalysis& pdom, uint32_t function_entry, in ComputePostDominanceFrontierForNode()
137 const CFG& cfg, const PostDominatorAnalysis& pdom) { in ComputeControlDependenceGraph()
H A Dcontrol_dependence.h44 // For example, for the partial CFG pictured below:
68 uint32_t GetConditionID(const CFG& cfg) const;
119 void ComputeControlDependenceGraph(const CFG& cfg,
177 void ComputePostDominanceFrontiers(const CFG& cfg,
181 void ComputePostDominanceFrontierForNode(const CFG& cfg,
/third_party/curl/
H A DMakefile42 $(MAKE) -C lib -f Makefile.mk CFG=$@ CROSSPREFIX=i586-pc-msdosdjgpp-
43 $(MAKE) -C src -f Makefile.mk CFG=$@ CROSSPREFIX=i586-pc-msdosdjgpp-
54 $(MAKE) -C lib -f Makefile.mk CFG=$@ CROSSPREFIX=m68k-amigaos-
55 $(MAKE) -C src -f Makefile.mk CFG=$@ CROSSPREFIX=m68k-amigaos-
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dcfg.cpp36 CFG::CFG(Module* module) in CFG() function in spvtools::opt::CFG
49 void CFG::AddEdges(BasicBlock* blk) { in AddEdges()
59 void CFG::RemoveNonExistingEdges(uint32_t blk_id) { in RemoveNonExistingEdges()
75 void CFG::ComputeStructuredOrder(Function* func, BasicBlock* root, in ComputeStructuredOrder()
98 void CFG::ForEachBlockInPostOrder(BasicBlock* bb, in ForEachBlockInPostOrder()
111 void CFG::ForEachBlockInReversePostOrder( in ForEachBlockInReversePostOrder()
119 bool CFG::WhileEachBlockInReversePostOrder( in WhileEachBlockInReversePostOrder()
135 void CFG::ComputeStructuredSuccessors(Function* func) { in ComputeStructuredSuccessors()
161 void CFG
[all...]
H A Dcontrol_dependence.cpp45 uint32_t ControlDependence::GetConditionID(const CFG& cfg) const { in GetConditionID()
80 const CFG& cfg, const PostDominatorAnalysis& pdom) { in ComputePostDominanceFrontiers()
86 // DF_local(X) = { Y | X -> Y in CFG, X does not strictly post-dominate Y } in ComputePostDominanceFrontiers()
111 const CFG& cfg, const PostDominatorAnalysis& pdom, uint32_t function_entry, in ComputePostDominanceFrontierForNode()
140 const CFG& cfg, const PostDominatorAnalysis& pdom) { in ComputeControlDependenceGraph()
H A Dcontrol_dependence.h44 // For example, for the partial CFG pictured below:
68 uint32_t GetConditionID(const CFG& cfg) const;
119 void ComputeControlDependenceGraph(const CFG& cfg,
177 void ComputePostDominanceFrontiers(const CFG& cfg,
181 void ComputePostDominanceFrontierForNode(const CFG& cfg,
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dcfg.cpp36 CFG::CFG(Module* module) in CFG() function in spvtools::opt::CFG
49 void CFG::AddEdges(BasicBlock* blk) { in AddEdges()
59 void CFG::RemoveNonExistingEdges(uint32_t blk_id) { in RemoveNonExistingEdges()
75 void CFG::ComputeStructuredOrder(Function* func, BasicBlock* root, in ComputeStructuredOrder()
98 void CFG::ForEachBlockInPostOrder(BasicBlock* bb, in ForEachBlockInPostOrder()
111 void CFG::ForEachBlockInReversePostOrder( in ForEachBlockInReversePostOrder()
119 bool CFG::WhileEachBlockInReversePostOrder( in WhileEachBlockInReversePostOrder()
135 void CFG::ComputeStructuredSuccessors(Function* func) { in ComputeStructuredSuccessors()
161 void CFG
[all...]
H A Dcontrol_dependence.cpp45 uint32_t ControlDependence::GetConditionID(const CFG& cfg) const { in GetConditionID()
80 const CFG& cfg, const PostDominatorAnalysis& pdom) { in ComputePostDominanceFrontiers()
86 // DF_local(X) = { Y | X -> Y in CFG, X does not strictly post-dominate Y } in ComputePostDominanceFrontiers()
111 const CFG& cfg, const PostDominatorAnalysis& pdom, uint32_t function_entry, in ComputePostDominanceFrontierForNode()
140 const CFG& cfg, const PostDominatorAnalysis& pdom) { in ComputeControlDependenceGraph()
H A Dcontrol_dependence.h44 // For example, for the partial CFG pictured below:
68 uint32_t GetConditionID(const CFG& cfg) const;
119 void ComputeControlDependenceGraph(const CFG& cfg,
177 void ComputePostDominanceFrontiers(const CFG& cfg,
181 void ComputePostDominanceFrontierForNode(const CFG& cfg,
/third_party/spirv-tools/test/opt/
H A Dcfg_test.cpp60 CFG* cfg = context->cfg(); in TEST_F()
103 CFG* cfg = context->cfg(); in TEST_F()
146 CFG* cfg = context->cfg(); in TEST_F()
189 CFG* cfg = context->cfg(); in TEST_F()
257 CFG* cfg = context->cfg(); in TEST_F()
307 CFG* cfg = context->cfg(); in TEST_F()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Dcfg_test.cpp60 CFG* cfg = context->cfg(); in TEST_F()
103 CFG* cfg = context->cfg(); in TEST_F()
146 CFG* cfg = context->cfg(); in TEST_F()
189 CFG* cfg = context->cfg(); in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dcfg_test.cpp60 CFG* cfg = context->cfg(); in TEST_F()
103 CFG* cfg = context->cfg(); in TEST_F()
146 CFG* cfg = context->cfg(); in TEST_F()
189 CFG* cfg = context->cfg(); in TEST_F()
/third_party/rust/crates/cxx/tests/ffi/
H A Dbuild.rs1 use cxx_build::CFG;
8 CFG.include_prefix = "tests/ffi"; in main()

Completed in 11 milliseconds

12345