OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:arithmeticoperations
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
CheckedArithmetic.h
231
bool lhsSigned = std::numeric_limits<LHS>::is_signed, bool rhsSigned = std::numeric_limits<RHS>::is_signed> struct
ArithmeticOperations
;
233
template <typename LHS, typename RHS, typename ResultType> struct
ArithmeticOperations
<LHS, RHS, ResultType, true, true> {
302
template <typename LHS, typename RHS, typename ResultType> struct
ArithmeticOperations
<LHS, RHS, ResultType, false, false> {
338
template <typename ResultType> struct
ArithmeticOperations
<int, unsigned, ResultType, true, false> {
378
template <typename ResultType> struct
ArithmeticOperations
<unsigned, int, ResultType, false, true> {
381
return
ArithmeticOperations
<int, unsigned, ResultType>::add(rhs, lhs, result);
386
return
ArithmeticOperations
<int, unsigned, ResultType>::sub(lhs, rhs, result);
391
return
ArithmeticOperations
<int, unsigned, ResultType>::multiply(rhs, lhs, result);
396
return
ArithmeticOperations
<int, unsigned, ResultType>::equals(rhs, lhs);
402
return
ArithmeticOperations
<U, V, R>::add(lhs, rhs, result)
[
all
...]
/external/valgrind/main/none/tests/mips32/
FPUarithmetic.c
87
int
arithmeticOperations
(flt_art_op_t op)
190
arithmeticOperations
(op);
Completed in 39 milliseconds