Home
last modified time | relevance | path

Searched refs:operators (Results 1 – 25 of 266) sorted by relevance

1234567891011

/external/jsilver/src/com/google/clearsilver/jsilver/functions/bundles/
DCoreOperators.java20 import com.google.clearsilver.jsilver.functions.operators.AddFunction;
21 import com.google.clearsilver.jsilver.functions.operators.AndFunction;
22 import com.google.clearsilver.jsilver.functions.operators.DivideFunction;
23 import com.google.clearsilver.jsilver.functions.operators.EqualFunction;
24 import com.google.clearsilver.jsilver.functions.operators.ExistsFunction;
25 import com.google.clearsilver.jsilver.functions.operators.GreaterFunction;
26 import com.google.clearsilver.jsilver.functions.operators.GreaterOrEqualFunction;
27 import com.google.clearsilver.jsilver.functions.operators.LessFunction;
28 import com.google.clearsilver.jsilver.functions.operators.LessOrEqualFunction;
29 import com.google.clearsilver.jsilver.functions.operators.ModuloFunction;
[all …]
/external/mesa3d/src/glsl/
Dast_expr.cpp29 static const char *const operators[] = { in operator_string() local
75 assert((unsigned int)op < sizeof(operators) / sizeof(operators[0])); in operator_string()
77 return operators[op]; in operator_string()
/external/llvm/docs/tutorial/
DLangImpl6.rst15 doesn't have many useful operators (like division, logical negation, or
19 user-defined operators to the simple and beautiful Kaleidoscope
35 redefine existing operators: you can't programatically change the
36 grammar, introduce new operators, change precedence levels, etc. In this
38 user round out the set of operators that are supported.
40 The point of going into user-defined operators in a tutorial like this
46 the programmer to introduce new operators into the grammar: the grammar
49 The two specific features we'll add are programmable unary operators
50 (right now, Kaleidoscope has no unary operators at all) as well as
51 binary operators. An example of this is:
[all …]
DOCamlLangImpl6.rst15 doesn't have many useful operators (like division, logical negation, or
19 user-defined operators to the simple and beautiful Kaleidoscope
35 redefine existing operators: you can't programatically change the
36 grammar, introduce new operators, change precedence levels, etc. In this
38 user round out the set of operators that are supported.
40 The point of going into user-defined operators in a tutorial like this
46 the programmer to introduce new operators into the grammar: the grammar
49 The two specific features we'll add are programmable unary operators
50 (right now, Kaleidoscope has no unary operators at all) as well as
51 binary operators. An example of this is:
[all …]
/external/llvm/include/llvm/IR/
DInstruction.def122 // Standard binary operators...
137 // Logical operators (integer operands)
146 // Memory operators...
157 // Cast operators ...
181 // Other operators...
/external/clang/include/clang/Basic/
DOperatorKinds.def11 // all of the overloadable C++ operators.
17 /// In this file, each of the overloadable C++ operators is enumerated
20 /// file. OVERLOADED_OPERATOR is used for single-token operators
38 /// operator. Note that some operators (e.g., "operator+" and
/external/deqp/doc/testspecs/GLES3/
Dfunctional.shaders.int_op.txt32 + Integer scalar and vector unary operators:
36 + Integer scalar and vector binary operators:
51 + Scalar-scalar, vector-vector and vector-scalar binary operators
/external/ltrace/
Doptions.c282 parse_filter(struct filter *filt, char *expr, int operators) in parse_filter() argument
291 size_t s = strcspn(expr, &"-+@"[operators ? 0 : 2]); in parse_filter()
310 s = strcspn(next, &"-+"[operators ? 0 : 2]); in parse_filter()
382 recursive_parse_chain(const char *orig, char *expr, int operators) in recursive_parse_chain() argument
392 if (parse_filter(filt, expr, operators) < 0) { in recursive_parse_chain()
/external/eigen/doc/
DTutorialMatrixArithmetic.dox12 … arithmetic operations either through overloads of common C++ arithmetic operators such as +, -, *,
14 For the Matrix class (matrices and vectors), operators are only overloaded to support
22 also have the same \c Scalar type, as Eigen doesn't do automatic type promotion. The operators at h…
40 Multiplication and division by a scalar is very simple too. The operators at hand here are:
60 but it is useful to just mention it now. In Eigen, arithmetic operators such as \c operator+ don't
94 As for basic arithmetic operators, \c transpose() and \c adjoint() simply return a proxy object wit…
121 two operators:
/external/opencv3/3rdparty/jinja2/
Dlexer.py103 operators = { variable
132 reverse_operators = dict([(v, k) for k, v in iteritems(operators)])
133 assert len(operators) == len(reverse_operators), 'operators dropped'
135 sorted(operators, key=lambda x: -len(x))))
590 token = operators[value]
/external/valgrind/memcheck/tests/vbit-test/
DTODO1 (1) For all operators: Add a test where both operands are completely
/external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
DNotFunction.java17 package com.google.clearsilver.jsilver.functions.operators;
DExistsFunction.java17 package com.google.clearsilver.jsilver.functions.operators;
DNumericFunction.java17 package com.google.clearsilver.jsilver.functions.operators;
DNotEqualFunction.java17 package com.google.clearsilver.jsilver.functions.operators;
DEqualFunction.java17 package com.google.clearsilver.jsilver.functions.operators;
DOrFunction.java17 package com.google.clearsilver.jsilver.functions.operators;
DLessFunction.java17 package com.google.clearsilver.jsilver.functions.operators;
DLessOrEqualFunction.java17 package com.google.clearsilver.jsilver.functions.operators;
DModuloFunction.java17 package com.google.clearsilver.jsilver.functions.operators;
DAndFunction.java17 package com.google.clearsilver.jsilver.functions.operators;
DGreaterFunction.java17 package com.google.clearsilver.jsilver.functions.operators;
DNumericAddFunction.java17 package com.google.clearsilver.jsilver.functions.operators;
/external/opencv3/modules/cudastereo/src/
Ddisparity_bilateral_filter.cpp175 const bilateral_filter_operator_t operators[] = in apply() local
187 operators[disp.type()](ndisp_, radius_, iters_, edge_threshold_, max_disc_threshold_, in apply()
/external/llvm/test/Transforms/LoopRotate/
DPhiRename-1.ll25 @operators = weak global %struct.list* null ; <%struct.list**> [#uses=1]
39 %tmp1 = load %struct.list*, %struct.list** @operators ; <%struct.list*> [#uses=1]
76 %l.in = phi %struct.list** [ @operators, %entry ], [ %tmp19, %cond_next ]

1234567891011