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

1 2 3 4 5 6 7

  /toolchain/binutils/binutils-2.25/gprof/
gen-c-prog.awk 10 if (curfun != FUNCTION)
14 curfun = FUNCTION
16 print "void ", FUNCTION, "(FILE *);"
18 printf "%s (file)\n", FUNCTION
  /external/v8/src/runtime/
runtime-simd.cc 267 #define SIMD_ALL_TYPES(FUNCTION) \
268 FUNCTION(Float32x4, float, 4, NewNumber, GET_NUMERIC_ARG) \
269 FUNCTION(Int32x4, int32_t, 4, NewNumber, GET_NUMERIC_ARG) \
270 FUNCTION(Uint32x4, uint32_t, 4, NewNumber, GET_NUMERIC_ARG) \
271 FUNCTION(Bool32x4, bool, 4, ToBoolean, GET_BOOLEAN_ARG) \
272 FUNCTION(Int16x8, int16_t, 8, NewNumber, GET_NUMERIC_ARG) \
273 FUNCTION(Uint16x8, uint16_t, 8, NewNumber, GET_NUMERIC_ARG) \
274 FUNCTION(Bool16x8, bool, 8, ToBoolean, GET_BOOLEAN_ARG) \
275 FUNCTION(Int8x16, int8_t, 16, NewNumber, GET_NUMERIC_ARG) \
276 FUNCTION(Uint8x16, uint8_t, 16, NewNumber, GET_NUMERIC_ARG)
    [all...]
  /external/v8/src/js/
harmony-simd.js 5 (function(global, utils) {
18 utils.Import(function(from) {
24 macro SIMD_FLOAT_TYPES(FUNCTION)
25 FUNCTION(Float32x4, float32x4, 4)
28 macro SIMD_INT_TYPES(FUNCTION)
29 FUNCTION(Int32x4, int32x4, 4)
30 FUNCTION(Int16x8, int16x8, 8)
31 FUNCTION(Int8x16, int8x16, 16)
34 macro SIMD_UINT_TYPES(FUNCTION)
35 FUNCTION(Uint32x4, uint32x4, 4
    [all...]
typedarray.js 5 (function(global, utils) {
50 macro TYPED_ARRAYS(FUNCTION)
52 FUNCTION(1, Uint8Array, 1)
53 FUNCTION(2, Int8Array, 1)
54 FUNCTION(3, Uint16Array, 2)
55 FUNCTION(4, Int16Array, 2)
56 FUNCTION(5, Uint32Array, 4)
57 FUNCTION(6, Int32Array, 4)
58 FUNCTION(7, Float32Array, 4)
59 FUNCTION(8, Float64Array, 8
    [all...]
  /external/eigen/blas/fortran/
complexdots.f 1 COMPLEX FUNCTION CDOTC(N,CX,INCX,CY,INCY)
12 COMPLEX FUNCTION CDOTU(N,CX,INCX,CY,INCY)
23 DOUBLE COMPLEX FUNCTION ZDOTC(N,CX,INCX,CY,INCY)
34 DOUBLE COMPLEX FUNCTION ZDOTU(N,CX,INCX,CY,INCY)
  /external/libvncserver/examples/
rotatetemplate.c 2 #define FUNCTION CONCAT2E(FUNCNAME,OUTBITS)
4 static void FUNCTION(rfbScreenInfoPtr screen)
50 #undef FUNCTION
  /external/eigen/lapack/
dsecnd_NONE.f 11 * DOUBLE PRECISION FUNCTION DSECND( )
38 DOUBLE PRECISION FUNCTION DSECND( )
second_NONE.f 11 * REAL FUNCTION SECOND( )
38 REAL FUNCTION SECOND( )
cladiv.f 21 * COMPLEX FUNCTION CLADIV( X, Y )
65 COMPLEX FUNCTION CLADIV( X, Y )
dlapy2.f 21 * DOUBLE PRECISION FUNCTION DLAPY2( X, Y )
64 DOUBLE PRECISION FUNCTION DLAPY2( X, Y )
dlapy3.f 21 * DOUBLE PRECISION FUNCTION DLAPY3( X, Y, Z )
69 DOUBLE PRECISION FUNCTION DLAPY3( X, Y, Z )
slapy2.f 21 * REAL FUNCTION SLAPY2( X, Y )
64 REAL FUNCTION SLAPY2( X, Y )
slapy3.f 21 * REAL FUNCTION SLAPY3( X, Y, Z )
69 REAL FUNCTION SLAPY3( X, Y, Z )
zladiv.f 21 * COMPLEX*16 FUNCTION ZLADIV( X, Y )
65 COMPLEX*16 FUNCTION ZLADIV( X, Y )
ilaclc.f 21 * INTEGER FUNCTION ILACLC( M, N, A, LDA )
79 INTEGER FUNCTION ILACLC( M, N, A, LDA )
ilaclr.f 21 * INTEGER FUNCTION ILACLR( M, N, A, LDA )
79 INTEGER FUNCTION ILACLR( M, N, A, LDA )
iladlc.f 21 * INTEGER FUNCTION ILADLC( M, N, A, LDA )
79 INTEGER FUNCTION ILADLC( M, N, A, LDA )
iladlr.f 21 * INTEGER FUNCTION ILADLR( M, N, A, LDA )
79 INTEGER FUNCTION ILADLR( M, N, A, LDA )
ilaslc.f 21 * INTEGER FUNCTION ILASLC( M, N, A, LDA )
79 INTEGER FUNCTION ILASLC( M, N, A, LDA )
ilaslr.f 21 * INTEGER FUNCTION ILASLR( M, N, A, LDA )
79 INTEGER FUNCTION ILASLR( M, N, A, LDA )
ilazlc.f 21 * INTEGER FUNCTION ILAZLC( M, N, A, LDA )
79 INTEGER FUNCTION ILAZLC( M, N, A, LDA )
ilazlr.f 21 * INTEGER FUNCTION ILAZLR( M, N, A, LDA )
79 INTEGER FUNCTION ILAZLR( M, N, A, LDA )
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
UnivariateRealSolverUtils.java 42 * Convenience method to find a zero of a univariate real function. A default
45 * @param f the function.
48 * @return a value where the function is zero.
50 * @throws FunctionEvaluationException if an error occurs evaluating the function
61 * Convenience method to find a zero of a univariate real function. A default
64 * @param f the function
68 * @return a value where the function is zero
70 * @throws FunctionEvaluationException if an error occurs evaluating the function
95 * function at <code>a</code> and <code>b</code> and keeps moving
113 * @param function the functio
    [all...]
  /external/v8/src/ast/
variables.h 23 enum Kind { NORMAL, FUNCTION, CLASS, THIS, ARGUMENTS };
86 bool is_function() const { return kind_ == FUNCTION; }
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
UnivariateRealIntegratorImpl.java 50 * The integrand function.
52 * @deprecated as of 2.0 the integrand function is passed as an argument
61 * @param f the integrand function
65 * @deprecated as of 2.0 the integrand function is passed as an argument
74 throw new NullArgumentException(LocalizedFormats.FUNCTION);
121 * Convenience function for implementations.
133 * Convenience function for implementations.

Completed in 561 milliseconds

1 2 3 4 5 6 7