/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/ |
D | combiner.cc | 48 static void combiner_exec(grpc_core::Combiner* lock, grpc_closure* closure, 50 static void combiner_finally_exec(grpc_core::Combiner* lock, 55 grpc_core::Combiner* grpc_combiner_create(void) { in grpc_combiner_create() 56 grpc_core::Combiner* lock = new grpc_core::Combiner(); in grpc_combiner_create() 65 static void really_destroy(grpc_core::Combiner* lock) { in really_destroy() 71 static void start_destroy(grpc_core::Combiner* lock) { in start_destroy() 92 void grpc_combiner_unref(grpc_core::Combiner* lock GRPC_COMBINER_DEBUG_ARGS) { in grpc_combiner_unref() 99 grpc_core::Combiner* grpc_combiner_ref( in grpc_combiner_ref() 100 grpc_core::Combiner* lock GRPC_COMBINER_DEBUG_ARGS) { in grpc_combiner_ref() 106 static void push_last_on_exec_ctx(grpc_core::Combiner* lock) { in push_last_on_exec_ctx() [all …]
|
D | combiner.h | 33 class Combiner { 38 Combiner* next_combiner_on_this_exec_ctx = nullptr; 63 grpc_core::Combiner* grpc_combiner_create(void); 80 grpc_core::Combiner* grpc_combiner_ref( 81 grpc_core::Combiner* lock GRPC_COMBINER_DEBUG_ARGS); 82 void grpc_combiner_unref(grpc_core::Combiner* lock GRPC_COMBINER_DEBUG_ARGS);
|
D | exec_ctx.h | 67 class Combiner; variable 146 Combiner* active_combiner; 148 Combiner* last_combiner;
|
/external/clang/test/CodeGenCXX/ |
D | stack-reuse.cpp | 20 struct Combiner { struct 23 Combiner(S_large); argument 24 Combiner f(); 143 return Combiner(s).f().a.a[0]; in large_combiner_test()
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | stack-reuse.cpp | 20 struct Combiner { struct 23 Combiner(S_large); argument 24 Combiner f(); 143 return Combiner(s).f().a.a[0]; in large_combiner_test()
|
/external/llvm-project/llvm/utils/TableGen/ |
D | GICombinerEmitter.cpp | 595 Record *Combiner; member in __anon08ee5a240111::GICombinerEmitter 606 StringRef Name, Record *Combiner); 610 return Combiner->getValueAsString("Classname"); in getClassName() 624 StringRef Name, Record *Combiner) in GICombinerEmitter() argument 625 : Records(RK), Name(Name), Target(Target), Combiner(Combiner) {} in GICombinerEmitter() 842 Record *Combiner) { in emitAdditionalHelperMethodArguments() argument 843 for (Record *Arg : Combiner->getValueAsListOfDefs("AdditionalArguments")) in emitAdditionalHelperMethodArguments() 850 gatherRules(Rules, Combiner->getValueAsListOfDefs("Rules")); in run() 853 PrintNote(Combiner->getLoc(), in run() 858 PrintFatalError(Combiner->getLoc(), "Failed to parse one or more rules"); in run() [all …]
|
/external/clang/include/clang/AST/ |
D | DeclOpenMP.h | 106 Expr *Combiner; variable 119 : ValueDecl(DK, DC, L, Name, Ty), DeclContext(DK), Combiner(nullptr), in OMPDeclareReductionDecl() 136 Expr *getCombiner() { return Combiner; } in getCombiner() 137 const Expr *getCombiner() const { return Combiner; } in getCombiner() 139 void setCombiner(Expr *E) { Combiner = E; } in setCombiner()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | Combiner.h | 27 class Combiner { 29 Combiner(CombinerInfo &CombinerInfo, const TargetPassConfig *TPC);
|
/external/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
D | Combiner.h | 27 class Combiner { 29 Combiner(CombinerInfo &CombinerInfo, const TargetPassConfig *TPC);
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | Combiner.cpp | 93 Combiner::Combiner(CombinerInfo &Info, const TargetPassConfig *TPC) in Combiner() function in Combiner 98 bool Combiner::combineMachineInstrs(MachineFunction &MF, in combineMachineInstrs()
|
D | CMakeLists.txt | 7 Combiner.cpp
|
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
D | Combiner.cpp | 93 Combiner::Combiner(CombinerInfo &Info, const TargetPassConfig *TPC) in Combiner() function in Combiner 98 bool Combiner::combineMachineInstrs(MachineFunction &MF, in combineMachineInstrs()
|
D | CMakeLists.txt | 7 Combiner.cpp
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
D | ClosingFuture.java | 44 import com.google.common.util.concurrent.ClosingFuture.Combiner.AsyncCombiningCallable; 45 import com.google.common.util.concurrent.ClosingFuture.Combiner.CombiningCallable; 430 public static Combiner whenAllComplete(Iterable<? extends ClosingFuture<?>> futures) { in whenAllComplete() 431 return new Combiner(false, futures); in whenAllComplete() 440 public static Combiner whenAllComplete( in whenAllComplete() 452 public static Combiner whenAllSucceed(Iterable<? extends ClosingFuture<?>> futures) { in whenAllSucceed() 453 return new Combiner(true, futures); in whenAllSucceed() 530 public static Combiner whenAllSucceed( in whenAllSucceed() 1153 public static class Combiner { 1200 private Combiner(boolean allMustSucceed, Iterable<? extends ClosingFuture<?>> inputs) { [all …]
|
/external/guava/android/guava/src/com/google/common/util/concurrent/ |
D | ClosingFuture.java | 44 import com.google.common.util.concurrent.ClosingFuture.Combiner.AsyncCombiningCallable; 45 import com.google.common.util.concurrent.ClosingFuture.Combiner.CombiningCallable; 431 public static Combiner whenAllComplete(Iterable<? extends ClosingFuture<?>> futures) { in whenAllComplete() 432 return new Combiner(false, futures); in whenAllComplete() 441 public static Combiner whenAllComplete( in whenAllComplete() 453 public static Combiner whenAllSucceed(Iterable<? extends ClosingFuture<?>> futures) { in whenAllSucceed() 454 return new Combiner(true, futures); in whenAllSucceed() 531 public static Combiner whenAllSucceed( in whenAllSucceed() 1156 public static class Combiner { 1202 private Combiner(boolean allMustSucceed, Iterable<? extends ClosingFuture<?>> inputs) { [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | fold-vector-shl-crash.ll | 7 %B = shl <2 x i256> %S, <i256 -1, i256 -1> ; DAG Combiner crashes here
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | fold-vector-shl-crash.ll | 7 %B = shl <2 x i256> %S, <i256 -1, i256 -1> ; DAG Combiner crashes here
|
/external/llvm-project/clang/include/clang/AST/ |
D | DeclOpenMP.h | 184 Expr *Combiner = nullptr; variable 221 Expr *getCombiner() { return Combiner; } in getCombiner() 222 const Expr *getCombiner() const { return Combiner; } in getCombiner() 230 void setCombiner(Expr *E) { Combiner = E; } in setCombiner()
|
/external/llvm-project/llvm/utils/gn/secondary/llvm/lib/CodeGen/GlobalISel/ |
D | BUILD.gn | 18 "Combiner.cpp",
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsPreLegalizerCombiner.cpp | 87 Combiner C(PCInfo, TPC); in runOnMachineFunction()
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.keras.layers.experimental.preprocessing.-discretization.-discretizing-combiner.pbtxt | 4 is_instance: "<class \'tensorflow.python.keras.engine.base_preprocessing_layer.Combiner\'>"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.keras.layers.experimental.preprocessing.-discretization.-discretizing-combiner.pbtxt | 4 is_instance: "<class \'tensorflow.python.keras.engine.base_preprocessing_layer.Combiner\'>"
|
/external/llvm-project/llvm/lib/Target/Mips/ |
D | MipsPreLegalizerCombiner.cpp | 100 Combiner C(PCInfo, TPC); in runOnMachineFunction()
|
/external/llvm-project/llvm/test/CodeGen/Mips/GlobalISel/mips-prelegalizer-combiner/ |
D | tryCombine.mir | 12 # MIPS32-LABEL: Generic MI Combiner for: f
|
/external/tensorflow/tensorflow/python/keras/layers/preprocessing/ |
D | discretization.py | 31 from tensorflow.python.keras.engine.base_preprocessing_layer import Combiner 271 class DiscretizingCombiner(Combiner):
|