Searched defs:operand (Results 1 - 25 of 294) sorted by relevance

1234567891011>>

/external/libpcap/
H A Dbpf_image.c57 char operand[64]; local
309 (void)pcap_snprintf(operand, sizeof operand, fmt, v);
313 n, op, operand, n + 1 + p->jt, n + 1 + p->jf);
317 n, op, operand);
/external/mesa3d/src/compiler/glsl/
H A Dir_rvalue_visitor.cpp40 unsigned int operand; local
42 for (operand = 0; operand < ir->get_num_operands(); operand++) {
43 handle_rvalue(&ir->operands[operand]);
H A Dir_builder.h44 * operand(ir_variable *var) constructor behind your back.
46 class operand { class in namespace:ir_builder
48 operand(ir_rvalue *val) function in class:ir_builder::operand
53 operand(ir_variable *var) function in class:ir_builder::operand
64 * \sa operand
123 ir_assignment *assign(deref lhs, operand rhs);
124 ir_assignment *assign(deref lhs, operand rhs, int writemask);
125 ir_assignment *assign(deref lhs, operand rhs, operand condition);
126 ir_assignment *assign(deref lhs, operand rh
[all...]
/external/skia/src/sksl/ast/
H A DSkSLASTPrefixExpression.h21 ASTPrefixExpression(Token op, std::unique_ptr<ASTExpression> operand) argument
24 , fOperand(std::move(operand)) {}
/external/skia/src/sksl/ir/
H A DSkSLPostfixExpression.h20 PostfixExpression(std::unique_ptr<Expression> operand, Token::Kind op) argument
21 : INHERITED(operand->fOffset, kPostfix_Kind, operand->fType)
22 , fOperand(std::move(operand))
H A DSkSLPrefixExpression.h22 PrefixExpression(Token::Kind op, std::unique_ptr<Expression> operand) argument
23 : INHERITED(operand->fOffset, kPrefix_Kind, operand->fType)
24 , fOperand(std::move(operand))
/external/skqp/src/sksl/ast/
H A DSkSLASTPrefixExpression.h21 ASTPrefixExpression(Token op, std::unique_ptr<ASTExpression> operand) argument
24 , fOperand(std::move(operand)) {}
/external/skqp/src/sksl/ir/
H A DSkSLPostfixExpression.h20 PostfixExpression(std::unique_ptr<Expression> operand, Token::Kind op) argument
21 : INHERITED(operand->fOffset, kPostfix_Kind, operand->fType)
22 , fOperand(std::move(operand))
H A DSkSLPrefixExpression.h22 PrefixExpression(Token::Kind op, std::unique_ptr<Expression> operand) argument
23 : INHERITED(operand->fOffset, kPrefix_Kind, operand->fType)
24 , fOperand(std::move(operand))
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
H A Dops.h48 // Walk DynamicUpdateSlice operand(0) to fused parameter and get its
49 // associated operand. See if it shares an allocation with this operand.
57 auto* operand = fusion->operand(fusion_operand->parameter_number()); local
58 return assignment.HasAllocationAt(operand, index) &&
60 assignment.SharesSliceAtIndex(fusion, {}, operand, index);
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dtuple_simplifier.cc75 HloInstruction* operand = instruction->mutable_operand(operand_number); local
76 if (operand->opcode() != HloOpcode::kGetTupleElement ||
77 operand->tuple_index() != operand_number) {
83 top_tuple = operand->mutable_operand(0);
89 } else if (top_tuple != operand->operand(0)) {
110 if (instruction->operand(0)->opcode() == HloOpcode::kTuple) {
H A Dhlo_cse.cc114 // instructions, we just search among instructions which share operand(0)
116 const HloInstruction* operand = instruction->operand(0); local
120 for (HloInstruction* user : operand->users()) {
H A Dimplicit_broadcast_remover.cc65 // instructions. An operand is considered to be implicitly broadcast if the
66 // operand shape does have the same dimensions as the shape of 'hlo'.
74 HloInstruction* operand = hlo->mutable_operand(i); local
75 if (!ShapeUtil::SameDimensions(hlo->shape(), operand->shape())) {
77 HloInstruction::CreateBroadcastSequence(hlo->shape(), operand,
82 operands.push_back(operand);
/external/annotation-tools/asmx/src/org/objectweb/asm/tree/
H A DIntInsnNode.java35 * A node that represents an instruction with a single int operand.
42 * The operand of this instruction.
44 public int operand; field in class:IntInsnNode
51 * @param operand the operand of the instruction to be constructed.
53 public IntInsnNode(final int opcode, final int operand) { argument
55 this.operand = operand;
69 mv.visitIntInsn(opcode, operand);
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/number/
H A DBigDecimalCloseTo.java48 * to the specified <code>operand</code>, within a range of +/- <code>error</code>. The comparison for equality
53 * @param operand
58 public static Matcher<BigDecimal> closeTo(BigDecimal operand, BigDecimal error) { argument
59 return new BigDecimalCloseTo(operand, error);
H A DIsCloseTo.java51 * to the specified <code>operand</code>, within a range of +/- <code>error</code>.
55 * @param operand
60 public static Matcher<Double> closeTo(double operand, double error) { argument
61 return new IsCloseTo(operand, error);
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Druntime_fft.cc29 const void* run_options_ptr, void* out, void* operand, int32 fft_type,
35 operand, fft_type, fft_rank, input_batch,
28 __xla_cpu_runtime_EigenFft( const void* run_options_ptr, void* out, void* operand, int32 fft_type, int32 fft_rank, int64 input_batch, int64 fft_length0, int64 fft_length1, int64 fft_length2) argument
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dbfloat16_test.cc85 auto operand = builder.ConstantR4FromArray4D<bfloat16>( local
97 auto tuple = builder.BatchNormTraining(operand, scale, offset,
122 auto operand = builder.ConstantR4FromArray4D<bfloat16>( local
140 builder.BatchNormGrad(operand, scale, mean, var, grad_output,
H A Dtranspose_test.cc78 auto operand = builder.ConstantR3FromArray3D<int32>(Array3D<int32>(0, 2, 3)); local
79 auto result = builder.Transpose(operand, {1, 2, 0});
86 auto operand = builder.ConstantR3FromArray3D<int32>({{{1, 2, 3}, {4, 5, 6}}}); local
87 auto result = builder.Transpose(operand, {1, 2, 0});
96 auto operand = builder.ConstantR3FromArray3D<int32>({{{1, 2, 3}, {4, 5, 6}}}); local
97 auto result = builder.Transpose(operand, {2, 1, 0});
106 auto operand = builder.ConstantR3FromArray3D<int32>({{{1, 2, 3}, {4, 5, 6}}}); local
107 auto result = builder.Transpose(operand, {0, 1, 2});
134 auto operand = builder.ConstantR2FromArray2D<float>(*aoperand); local
135 builder.Transpose(operand, {
146 auto operand = builder.ConstantR2FromArray2D<float>(*aoperand); local
166 auto operand = builder.ConstantR3FromArray3D(aoperand); local
[all...]
/external/v8/src/crankshaft/arm64/
H A Ddelayed-masm-arm64-inl.h24 const Operand& operand,
28 __ Mov(rd, operand, discard_mode);
23 Mov(const Register& rd, const Operand& operand, DiscardMoveMode discard_mode) argument
H A Ddelayed-masm-arm64.cc66 void DelayedMasm::StoreConstant(uint64_t value, const MemOperand& operand) { argument
70 MemOperand::AreConsistentForPair(pending_address_dst_, operand);
75 operand;
90 pending_address_dst_ = operand;
98 void DelayedMasm::Load(const CPURegister& rd, const MemOperand& operand) { argument
101 switch (MemOperand::AreConsistentForPair(pending_address_src_, operand)) {
117 __ Ldp(rd, pending_register_, operand);
126 pending_address_src_ = operand;
133 void DelayedMasm::Store(const CPURegister& rd, const MemOperand& operand) { argument
136 switch (MemOperand::AreConsistentForPair(pending_address_dst_, operand)) {
[all...]
/external/webrtc/webrtc/modules/audio_processing/beamformer/
H A Dcomplex_matrix.h47 ComplexMatrix& PointwiseConjugate(const ComplexMatrix& operand) { argument
48 this->CopyFrom(operand);
61 ComplexMatrix& ConjugateTranspose(const ComplexMatrix& operand) { argument
62 RTC_CHECK_EQ(operand.num_rows(), this->num_columns());
63 RTC_CHECK_EQ(operand.num_columns(), this->num_rows());
64 return ConjugateTranspose(operand.elements());
77 ComplexMatrix& ZeroImag(const ComplexMatrix& operand) { argument
78 this->CopyFrom(operand);
/external/libnl/lib/route/cls/
H A Dematch_syntax.y131 %type <i> align operand shift meta_int_id meta_var_id
246 | EMATCH_META "(" meta_value operand meta_value ")"
300 pktloc operand NUMBER
494 operand: label
/external/vixl/src/aarch32/
H A Doperands-aarch32.cc51 std::ostream& operator<<(std::ostream& os, const Operand& operand) { argument
52 if (operand.IsImmediate()) {
53 return os << "#" << operand.GetImmediate();
55 if (operand.IsImmediateShiftedRegister()) {
56 if ((operand.GetShift().IsLSL() || operand.GetShift().IsROR()) &&
57 (operand.GetShiftAmount() == 0)) {
58 return os << operand.GetBaseRegister();
60 if (operand.GetShift().IsRRX()) {
61 return os << operand
100 operator <<(std::ostream& os, const SOperand& operand) argument
109 operator <<(std::ostream& os, const DOperand& operand) argument
118 operator <<(std::ostream& os, const QOperand& operand) argument
518 operator <<(std::ostream& os, const MemOperand& operand) argument
550 operator <<(std::ostream& os, const AlignedMemOperand& operand) argument
[all...]
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
H A DIsEqual.java66 * <code>operand</code>, as determined by calling the {@link java.lang.Object#equals} method on
69 * <p>If the specified operand is <code>null</code> then the created matcher will only match if
76 * it will match if both the operand and the examined object are arrays of the same length and
86 public static <T> Matcher<T> equalTo(T operand) { argument
87 return new IsEqual<T>(operand);
94 public static Matcher<Object> equalToObject(Object operand) { argument
95 return new IsEqual<Object>(operand);

Completed in 554 milliseconds

1234567891011>>