HomeSort by relevance Sort by last modified time
    Searched refs:BinaryOperation (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/smali/dexlib2/accessorTestGenerator/src/main/java/org/jf/dexlib2/
AccessorTestGenerator.java 47 private static class BinaryOperation {
50 public BinaryOperation(String name, String[] inputTypes) {
59 public final BinaryOperation[] binaryOperations;
60 public TypeDef(String name, UnaryOperation[] unaryOperations, BinaryOperation[] binaryOperations) {
78 private static final BinaryOperation[] booleanOperations = new BinaryOperation[] {
79 new BinaryOperation("and", booleanInputs),
80 new BinaryOperation("or", booleanInputs),
81 new BinaryOperation("xor", booleanInputs),
84 private static final BinaryOperation[] floatOperations = new BinaryOperation[]
    [all...]
  /external/parameter-framework/upstream/utility/
Utility.h 53 template <class T, class InputIt, class BinaryOperation>
54 T join(InputIt first, InputIt last, BinaryOperation op, T empty = T{})
  /external/v8/src/asmjs/
asm-typer.h 320 AsmType* ValidateBinaryOperation(BinaryOperation* binop);
322 AsmType* ValidateCommaExpression(BinaryOperation* comma);
336 AsmType* ValidateMultiplicativeExpression(BinaryOperation* binop);
338 AsmType* ValidateAdditiveExpression(BinaryOperation* binop,
341 AsmType* ValidateShiftExpression(BinaryOperation* binop);
347 AsmType* ValidateBitwiseANDExpression(BinaryOperation* binop);
349 AsmType* ValidateBitwiseXORExpression(BinaryOperation* binop);
351 AsmType* ValidateBitwiseORExpression(BinaryOperation* binop);
asm-wasm-builder.cc 286 BinaryOperation* binop = expr->AsBinaryOperation();
909 BinaryOperation* binop = value->AsBinaryOperation();
    [all...]
asm-typer.cc 779 bool IsDoubleAnnotation(BinaryOperation* binop) {
793 bool IsIntAnnotation(BinaryOperation* binop) {
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
shape_inference.h 57 BinaryOperation operation, const Shape& lhs, const Shape& rhs,
271 BinaryOperation operation, const Shape& lhs, const Shape& rhs,
287 BinaryOperation operation, const Shape& lhs, const Shape& rhs);
295 BinaryOperation operation, const Shape& smaller_shape,
shape_inference_test.cc 259 return ShapeInference::InferBinaryOpShape(BinaryOperation::BINOP_COMPLEX,
    [all...]
shape_inference.cc 89 // Return the BinaryOperation proto enum value associated with the given HLO
91 BinaryOperation OpcodeToBinaryOperation(HloOpcode opcode) {
757 BinaryOperation operation, const Shape& lhs, const Shape& rhs) {
784 BinaryOperation operation, const Shape& smaller_shape,
    [all...]
  /external/v8/src/interpreter/
bytecode-generator.h 63 void VisitArithmeticExpression(BinaryOperation* binop);
64 void VisitCommaExpression(BinaryOperation* binop);
65 void VisitLogicalOrExpression(BinaryOperation* binop);
66 void VisitLogicalAndExpression(BinaryOperation* binop);
bytecode-array-builder.h 287 BytecodeArrayBuilder& BinaryOperation(Token::Value binop, Register reg,
bytecode-generator.cc     [all...]
  /external/google-breakpad/src/processor/
postfix_evaluator-inl.h 77 enum BinaryOperation {
87 BinaryOperation operation = BINARY_OP_NONE;
  /art/compiler/optimizing/
scheduler_arm64.h 71 M(BinaryOperation , unused) \
nodes.h     [all...]
  /external/v8/src/full-codegen/
full-codegen.h 462 void EmitBinaryOp(BinaryOperation* expr, Token::Value op);
466 void EmitInlineSmiBinaryOp(BinaryOperation* expr,
597 void VisitComma(BinaryOperation* expr);
598 void VisitLogicalExpression(BinaryOperation* expr);
599 void VisitArithmeticExpression(BinaryOperation* expr);
    [all...]
full-codegen.cc 723 void FullCodeGenerator::VisitBinaryOperation(BinaryOperation* expr) {
751 void FullCodeGenerator::VisitComma(BinaryOperation* expr) {
758 void FullCodeGenerator::VisitLogicalExpression(BinaryOperation* expr) {
827 void FullCodeGenerator::VisitArithmeticExpression(BinaryOperation* expr) {
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.h 386 void VisitComma(BinaryOperation* expr);
387 void VisitLogicalExpression(BinaryOperation* expr);
388 void VisitArithmeticExpression(BinaryOperation* expr);
ast-loop-assignment-analyzer.cc 188 void ALAA::VisitBinaryOperation(BinaryOperation* e) {
  /external/tensorflow/tensorflow/compiler/xla/
xla_data.proto 805 enum BinaryOperation {
850 BinaryOperation binop = 2;
  /external/v8/src/ast/
ast-expression-rewriter.cc 322 void AstExpressionRewriter::VisitBinaryOperation(BinaryOperation* node) {
ast-numbering.cc 429 void AstNumberingVisitor::VisitBinaryOperation(BinaryOperation* node) {
431 node->set_base_id(ReserveIdRange(BinaryOperation::num_ids()));
ast.cc 860 void BinaryOperation::RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle) {
869 void BinaryOperation::AssignFeedbackSlots(FeedbackVectorSpec* spec,
    [all...]
ast.h 98 V(BinaryOperation) \
    [all...]
ast-traversal-visitor.h 425 BinaryOperation* expr) {
prettyprinter.cc 341 void CallPrinter::VisitBinaryOperation(BinaryOperation* node) {
1177 void AstPrinter::VisitBinaryOperation(BinaryOperation* node) {
    [all...]

Completed in 548 milliseconds

1 2 3