/libcore/ojluni/src/main/java/java/util/stream/ |
Collectors.java | 150 private final BinaryOperator<A> combiner; field in class:CollectorImpl 156 BinaryOperator<A> combiner, 161 this.combiner = combiner; 168 BinaryOperator<A> combiner, 170 this(supplier, accumulator, combiner, castingIdentity(), characteristics); 184 public BinaryOperator<A> combiner() { method in class:CollectorImpl 185 return combiner; 356 downstream.combiner(), downstream.finisher(), 392 downstream.combiner(), [all...] |
ReferencePipeline.java | 484 public final <R> R reduce(R identity, BiFunction<R, ? super P_OUT, R> accumulator, BinaryOperator<R> combiner) { 485 return evaluate(ReduceOps.makeRef(identity, accumulator, combiner)); 510 BiConsumer<R, R> combiner) { 511 return evaluate(ReduceOps.makeRef(supplier, accumulator, combiner));
|
Stream.java | 659 * <p>The {@code identity} value must be an identity for the combiner 660 * function. This means that for all {@code u}, {@code combiner(identity, u)} 661 * is equal to {@code u}. Additionally, the {@code combiner} function 665 * combiner.apply(u, accumulator.apply(identity, t)) == accumulator.apply(u, t) 679 * @param identity the identity value for the combiner function 684 * @param combiner an <a href="package-summary.html#Associativity">associative</a>, [all...] |
DoublePipeline.java | 472 BiConsumer<R, R> combiner) { 474 combiner.accept(left, right);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/ |
DeadKeyCombiner.java | 30 * A combiner that handles dead keys. 32 public class DeadKeyCombiner implements Combiner { 246 // no dead keys at all in the current input, so this combiner has nothing to do and
|
Event.java | 36 * The combiner should figure out what to do with this. 51 // A mode event instructs the combiner to change modes. The canonical example would be the 53 // if handled at the combiner level.
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/ |
MethodWriter.java | 118 .transformAndConcat(HasClassReferences.COMBINER)
|
ClassWriter.java | 150 .transformAndConcat(HasClassReferences.COMBINER)
|
/external/llvm/test/CodeGen/AArch64/ |
arm64-build-vector.ll | 47 ; There is an optimization in DAG Combiner as following:
|
trunc-v1i64.ll | 3 ; An optimization in DAG Combiner to fold
|
/external/llvm/test/CodeGen/X86/ |
extractelement-load.ll | 30 ; This case could easily end up inf-looping in the DAG combiner due to an
|
machine-trace-metrics-crash.ll | 5 ; machine-combiner pass has run, reassociated the add operands, and therefore
|
/external/llvm/include/llvm/Transforms/IPO/ |
PassManagerBuilder.h | 97 /// peephole optimizations similar to the instruction combiner. These passes 98 /// will be inserted after each instance of the instruction combiner pass.
|
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineInternal.h | 160 /// \brief The core instruction combiner logic. 178 // Mode in which we are running the combiner. 204 /// \brief Run the combiner over the entire worklist until it is empty. 414 /// \brief A combiner-aware RAUW-like routine. 419 /// I, so that the inst combiner will know that I was modified. 449 /// \brief Combiner aware instruction erasure.
|
/frameworks/compile/libbcc/tests/libbcc/ |
test_reduce_general_metadata.ll | 14 ; CHECK: combiner(dpSum) 18 ; CHECK: combiner(fMMCombiner) 23 ; CHECK: combiner(fzCombine) 28 ; CHECK: combiner(fz2Combine) 32 ; CHECK: combiner(hsgCombine) 35 ; CHECK: combiner(hsgCombine)
|
/external/llvm/test/CodeGen/ARM/ |
vector-DAGCombine.ll | 19 ; Check that the DAG combiner does not arbitrarily modify BUILD_VECTORs 31 ; Check CONCAT_VECTORS DAG combiner pass doesn't introduce illegal types. 134 ; The following test was hitting an assertion in the DAG combiner when
|
/frameworks/compile/slang/ |
slang_rs_export_reduce.cpp | 39 const char RSExportReduce::KeyCombiner[] = "combiner"; 456 // Likewise, we could compare the two combiner parameter types 469 // <combiner> parameter '<baz>' (type '<tbaz>') 488 // Ensure accumulator properties permit omission of combiner. 491 // Couldn't fully analyze accumulator, so cannot see whether it permits omission of combiner. 641 // the initializer parameter type or the first combiner parameter [all...] |
/frameworks/compile/libbcc/bcinfo/tools/ |
main.cpp | 160 dumpReduceInfo(info, "combiner", reduce.mCombinerName); 227 dumpReduceInfo(stdout, "combiner", reduce.mCombinerName);
|
/external/mesa3d/src/mesa/main/ |
texstate.c | 397 /* Set the texUnit->_CurrentCombine field to point to the user's combiner 398 * state, or the combiner state which is derived from traditional texenv 418 /* Determine number of source RGB terms in the combiner function */ 454 /* Determine number of source Alpha terms in the combiner function */
|
/frameworks/rs/cpu_ref/ |
rsCpuExecutable.cpp | 495 // - optional Initializer, Combiner, and OutConverter name 534 // Process the (optional) combiner. 536 // Lookup the original user-written combiner. 539 ALOGE("Failed to find combiner function address for %s(): %s",
|
/libcore/ojluni/src/lambda/java/java/lang/invoke/ |
MethodHandles.java | 139 MethodHandle foldArguments(MethodHandle target, MethodHandle combiner) { return null; }
|
/external/opencv3/modules/videoio/src/ |
cap_gstreamer.cpp | 1229 GstElement* combiner = NULL; local [all...] |
/external/guava/guava/src/com/google/common/util/concurrent/ |
Futures.java | [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCTargetMachine.cpp | 65 EnableMachineCombinerPass("ppc-machine-combiner", 66 cl::desc("Enable the machine combiner pass"),
|
/external/llvm/lib/Target/X86/ |
X86TargetMachine.cpp | 27 static cl::opt<bool> EnableMachineCombinerPass("x86-machine-combiner", 28 cl::desc("Enable the machine combiner pass"),
|