/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/ |
CollectorOps.java | 40 private final int opFlags; 43 public StatefulCollector(int opFlags, StreamShape inputShape) { 44 this.opFlags = opFlags; 60 return opFlags;
|
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/ |
CollectorOps.java | 41 private final int opFlags; 44 public StatefulCollector(int opFlags, StreamShape inputShape) { 45 this.opFlags = opFlags; 61 return opFlags;
|
/libcore/ojluni/src/main/java/java/util/stream/ |
DoublePipeline.java | 88 * @param opFlags the operation flags 90 DoublePipeline(AbstractPipeline<?, E_IN, ?> upstream, int opFlags) { 91 super(upstream, opFlags); 595 * @param opFlags operation flags for the new stage 599 int opFlags) { 600 super(upstream, opFlags); 624 * @param opFlags operation flags for the new stage 628 int opFlags) { 629 super(upstream, opFlags);
|
IntPipeline.java | 89 * @param opFlags the operation flags for the new operation 91 IntPipeline(AbstractPipeline<?, E_IN, ?> upstream, int opFlags) { 92 super(upstream, opFlags); 590 * @param opFlags Operation flags for the new stage 594 int opFlags) { 595 super(upstream, opFlags); 618 * @param opFlags Operation flags for the new stage 622 int opFlags) { 623 super(upstream, opFlags);
|
LongPipeline.java | 89 * @param opFlags the operation flags 91 LongPipeline(AbstractPipeline<?, E_IN, ?> upstream, int opFlags) { 92 super(upstream, opFlags); 570 * @param opFlags Operation flags for the new stage 574 int opFlags) { 575 super(upstream, opFlags); 598 * @param opFlags Operation flags for the new stage 603 int opFlags) { 604 super(upstream, opFlags);
|
ReferencePipeline.java | 94 ReferencePipeline(AbstractPipeline<?, P_IN, ?> upstream, int opFlags) { 95 super(upstream, opFlags); 616 * @param opFlags Operation flags for the new stage 620 int opFlags) { 621 super(upstream, opFlags); 646 * @param opFlags Operation flags for the new stage 650 int opFlags) { 651 super(upstream, opFlags);
|
AbstractPipeline.java | 199 * @param opFlags the operation flags for the new stage, described in 202 AbstractPipeline(AbstractPipeline<?, E_IN, ?> previousStage, int opFlags) { 209 this.sourceOrOpFlags = opFlags & StreamOpFlag.OP_MASK; 210 this.combinedFlags = StreamOpFlag.combineOpFlags(opFlags, previousStage.combinedFlags);
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
AsmPrinterInlineAsm.cpp | 219 unsigned OpFlags = MI->getOperand(OpNo).getImm(); 220 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1; 230 unsigned OpFlags = MI->getOperand(OpNo).getImm(); 233 if (InlineAsm::isMemKind(OpFlags)) { 385 unsigned OpFlags = MI->getOperand(OpNo).getImm(); 386 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1; 396 unsigned OpFlags = MI->getOperand(OpNo).getImm(); 404 if (InlineAsm::isMemKind(OpFlags)) {
|
/external/llvm/lib/Target/X86/ |
X86InstrBuilder.h | 175 unsigned GlobalBaseReg, unsigned char OpFlags) { 178 .addConstantPoolIndex(CPI, 0, OpFlags).addReg(0);
|
X86FastISel.cpp | [all...] |
X86ISelLowering.cpp | [all...] |
/libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/ |
StreamOpFlagsTest.java | 175 for (int opFlags : ops) { 176 opsFlags = combineOpFlags(opFlags, opsFlags);
|
/external/llvm/lib/Target/AArch64/ |
AArch64InstrInfo.cpp | [all...] |
AArch64FastISel.cpp | 421 unsigned char OpFlags = Subtarget->ClassifyGlobalReference(GV, TM); 430 if (OpFlags & AArch64II::MO_GOT) { 442 } else if (OpFlags & AArch64II::MO_CONSTPOOL) { [all...] |
AArch64ISelLowering.cpp | [all...] |
/external/llvm/lib/Target/ARM/ |
ARMFastISel.cpp | [all...] |
ARMAsmPrinter.cpp | 337 unsigned OpFlags = MI->getOperand(OpNum).getImm(); 338 OpNum += InlineAsm::getNumOperandRegisters(OpFlags) + 1; [all...] |
ARMISelLowering.cpp | [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCISelLowering.cpp | [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGBuilder.cpp | [all...] |