Home
last modified time | relevance | path

Searched +refs:Ops +refs:x +refs:x (Results 1 – 25 of 1909) sorted by relevance

12345678910>>...77

/dports/multimedia/xvid/xvidcore/src/image/
H A Dqpel.h115 const uint32_t x, const uint32_t y, in interpolate16x16_quarterpel() argument
128 const int32_t xRef = (int)x*4 + dx; in interpolate16x16_quarterpel()
137 dst = cur + y * stride + x; in interpolate16x16_quarterpel()
226 const int32_t xRef = (int)x*4 + dx; in interpolate16x16_add_quarterpel()
236 dst = cur + y * stride + x; in interpolate16x16_add_quarterpel()
326 const int32_t xRef = (int)x*4 + dx; in interpolate16x8_quarterpel()
335 dst = cur + y * stride + x; in interpolate16x8_quarterpel()
421 const int32_t xRef = (int)x*4 + dx; in interpolate8x8_quarterpel()
430 dst = cur + y * stride + x; in interpolate8x8_quarterpel()
516 const int32_t xRef = (int)x*4 + dx; in interpolate8x8_add_quarterpel()
[all …]
/dports/math/R/R-4.1.2/tests/
H A Dmethod-dispatch.Rout.save27 > ### Arithmetic "Ops" :
30 > Ops.foo <- function(...) {
31 + cat("using Ops.foo\n")
34 > Ops.bar <- function(...) {
35 + cat("using Ops.bar\n")
39 > x <- 2:4 ; class(x) <- c("foo", "bar")
50 Incompatible methods ("Ops.bar", "Ops.foo") for "<"
54 Incompatible methods ("Ops.foo", "Ops.bar") for "=="
58 Incompatible methods ("Ops.foo", "Ops.bar") for "<="
65 > x > 3 #-> "Ops.foo" and ">.bar"
[all …]
/dports/math/libRmath/R-4.1.1/tests/
H A Dmethod-dispatch.Rout.save27 > ### Arithmetic "Ops" :
30 > Ops.foo <- function(...) {
31 + cat("using Ops.foo\n")
34 > Ops.bar <- function(...) {
35 + cat("using Ops.bar\n")
39 > x <- 2:4 ; class(x) <- c("foo", "bar")
50 Incompatible methods ("Ops.bar", "Ops.foo") for "<"
54 Incompatible methods ("Ops.foo", "Ops.bar") for "=="
58 Incompatible methods ("Ops.foo", "Ops.bar") for "<="
65 > x > 3 #-> "Ops.foo" and ">.bar"
[all …]
/dports/math/gecode/gecode-0916a1a/gecode/int/arithmetic/
H A Dnroot.hpp219 NrootBnd<Ops>::NrootBnd(Space& home, NrootBnd<Ops>& p) in NrootBnd()
254 Ops ops;
259 forceinline int min(int x) const { in min()
260 return ops.tpow(x); in min()
263 forceinline int max(int x) const { in max()
264 return ops.tpow(x+1)-1; in max()
273 Ops ops;
278 forceinline int min(int x) const { in min()
279 return (x < 0) ? -ops.cnroot(-x) : ops.fnroot(x); in min()
282 forceinline int max(int x) const { in max()
[all …]
H A Dpow.hpp210 PowBnd<Ops>::PowBnd(Space& home, PowBnd<Ops>& p) in PowBnd()
256 Ops ops;
261 forceinline int val(int x) const { in val()
262 return ops.pow(x); in val()
276 forceinline int val(int x) const { in val()
277 return ops.fnroot(x); in val()
291 forceinline int val(int x) const { in val()
292 if (x < 0) in val()
293 return -ops.fnroot(-x); in val()
295 return ops.fnroot(x); in val()
[all …]
/dports/math/gecode/gecode-0916a1a/gecode/int/
H A Darithmetic.hh263 IdxViewArray<VA> x; member in Gecode::Int::Arithmetic::ArgMax
312 IntType pow(IntType x) const;
314 int tpow(int x) const;
316 int fnroot(int x) const;
318 int cnroot(int x) const;
334 bool powgr(long long int r, int x) const;
348 IntType pow(IntType x) const;
350 int tpow(int x) const;
352 int fnroot(int x) const;
354 int cnroot(int x) const;
[all …]
/dports/devel/tigcc/tigcc-0.96.b8_10/tigcc/sources/a68k/
H A DSymtab.c387 if ((*x < '0') || (*x > '9')) {
405 x += strlen (x) + 1;
457 while ((x >= OpCode) && (*x == ':'))
466 for (x = OpCode; *x; x++) /* Convert OpCode */
467 *x = toupper(*x); /* to upper case. */
636 Ops--;
661 Ops--;
672 Ops--;
735 Ops--;
752 Ops--;
[all …]
/dports/math/R-cran-polynom/polynom/man/
H A DOps.polynomial.Rd1 \name{Ops.polynomial}
2 \alias{Ops.polynomial}
3 \title{Arithmetic Ops Group Methods for Polynomials}
9 \method{Ops}{polynomial}(e1, e2)
24 ## 1 + 2*x + x^2
26 ## -1*x + x^3
28 ## 4 + 20*x + 33*x^2 + 16*x^3 - 6*x^4 - 4*x^5 + x^6
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/devel/llvm80/llvm-8.0.1.src/tools/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/devel/llvm70/llvm-7.0.1.src/tools/clang/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/lang/clang-mesa/clang-13.0.1.src/test/CodeGenCXX/
H A Dmangle.cpp275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
284 Ops& Ops::operator+(const Ops&) { return *this; } in operator +() argument
286 Ops& Ops::operator-(const Ops&) { return *this; } in operator -() argument
288 Ops& Ops::operator&(const Ops&) { return *this; } in operator &() argument
290 Ops& Ops::operator*(const Ops&) { return *this; } in operator *() argument
750 int x; variable
897 foo x; in test() local
[all …]
/dports/finance/R-cran-timeSeries/timeSeries/man/
H A Dmethods-mathOps.Rd5 \alias{Ops,vector,timeSeries-method}
6 \alias{Ops,array,timeSeries-method}
7 \alias{Ops,ts,timeSeries-method}
10 \alias{Ops,timeSeries,ts-method}
53 \code{Ops-method} \tab Group 'Ops' methods for a 'timeSeries' object \cr
66 % \S4method{Math}{timeSeries}(x, ...)
67 % \S4method{Math2}{timeSeries}(x, digits)
71 \S4method{quantile}{timeSeries}(x, \dots)
79 % the number of columns of \code{x}.
90 % [Ops] - \cr
[all …]

12345678910>>...77