HomeSort by relevance Sort by last modified time
    Searched full:vectors (Results 176 - 200 of 1580) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
vec.h 31 out-of-line generic functions. The vectors are designed to
48 The vectors are implemented using the trailing array idiom, thus
57 if we allow NULL to also represent an empty vector, empty vectors
101 vectors. Variables of vector type are declared using a
137 and object vectors, but the argument and return types might well be
235 old vectors need not be allocated by the same mechanism. */
306 filled in. For object vectors, the new value can be NULL, in which
319 filled in. For object vectors, the new value can be NULL, in which
331 pointer vectors. */
370 vectors returns the original value. For object vectors returns
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-ref.h 74 or GGC will try to mark middle of references vectors. */
vec.h 31 out-of-line generic functions. The vectors are designed to
48 The vectors are implemented using the trailing array idiom, thus
57 if we allow NULL to also represent an empty vector, empty vectors
101 vectors. Variables of vector type are declared using a
137 and object vectors, but the argument and return types might well be
235 old vectors need not be allocated by the same mechanism. */
306 filled in. For object vectors, the new value can be NULL, in which
319 filled in. For object vectors, the new value can be NULL, in which
331 pointer vectors. */
370 vectors returns the original value. For object vectors returns
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 51 __hash__ = None # Vectors cannot be hashed
54 raise TypeError, "Vectors cannot be used in Boolean contexts"
84 raise ValueError, "Cannot compare vectors of different length"
113 # which return rich results (i.e. Vectors with itemwise
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 51 __hash__ = None # Vectors cannot be hashed
54 raise TypeError, "Vectors cannot be used in Boolean contexts"
84 raise ValueError, "Cannot compare vectors of different length"
113 # which return rich results (i.e. Vectors with itemwise
  /external/eigen/doc/
I03_InsideEigenExample.dox 60 However, in the above program, we have chosen size=50, so our vectors consist of 50 float's, and 50 is not a multiple of 4. This means that we cannot hope to do all of that computation using SSE2 instructions. The second best thing, to which we should aim, is to handle the 48 first coefficients with SSE2 instructions, since 48 is the biggest multiple of 4 below 50, and then handle separately, without SSE2, the 49th and 50th coefficients. Something like this:
69 \section ConstructingVectors Constructing vectors
84 The Matrix class inherits a base class, MatrixBase. Don't worry about it, for now it suffices to say that MatrixBase is what unifies matrices/vectors and all the expressions types -- more on that below.
117 Now that our vectors are constructed, let's move on to the next line:
123 The executive summary is that operator+ returns a "sum of vectors" expression, but doesn't actually perform the computation. It is the operator=, whose call occurs thereafter, that does the computation.
141 The CwiseBinaryOp class is our first encounter with an expression template. As we said, the operator+ doesn't by itself perform any computation, it just returns an abstract "sum of vectors" expression. Since there are also "difference of vectors" and "coefficient-wise product of vectors" expressions, we unify them all as "coefficient-wise binary operations", which we abbreviate as "CwiseBinaryOp". "Coefficient-wise" means that the operations is performed coefficient by coefficient. "binary" means that there are two operands -- we are adding two vectors with one another.
163 This means that we can put almost all the methods and operators in the base class MatrixBase, and have only the bare minimum in the subclasses. If you look at the subclasses in Eigen, like for instance the CwiseBinaryOp class, they have very few methods. There are coeff() and sometimes coeffRef() methods for access to the coefficients, there are rows() and cols() methods returning the number of rows and columns, but there isn't much more than that. All the meat is in MatrixBase, so it only needs to be coded once for all kinds of expressions, matrices, and vectors
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3commontree.h 132 /// Pointer to a vector factory that is used to create child list vectors
134 /// vectors and auto free them when we close the factory. It also means
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
AST.stg 35 pANTLR3_VECTOR_FACTORY vectors;
46 ctx->vectors = antlr3VectorFactoryNew(0);
50 ctx->vectors->close(ctx->vectors);
207 list_<label>=ctx->vectors->newVector(ctx->vectors);
230 list_<label>=ctx->vectors->newVector(ctx->vectors);
  /external/ceres-solver/internal/ceres/
dense_sparse_matrix_test.cc 95 // could be masked by a subtle bug when using the elementary vectors.
124 // could be masked by a subtle bug when using the elementary vectors.
  /external/chromium_org/base/debug/
proc_maps_linux.cc 31 // The gate VMA on ARM kernels is the interrupt vectors page.
32 return proc_maps->find(" [vectors]\n", pos) != std::string::npos;
  /external/chromium_org/courgette/
description.md 82 vectors. This format can be written to a file directly, and is also
147 serializing its data structures into byte vectors more appropriate
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
SwipePinchDetector.java 155 // taking the scalar product of the direction vectors. This product is positive if the
156 // vectors are pointing in the same direction, and negative if they're in opposite
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
UniscribeHelperTextRun.cpp 113 // them to our vectors. Note that '>' rather than '>=' is used to test that
115 // indices for fontDataAt and our vectors for font data are 1 off from each
  /external/chromium_org/third_party/opus/src/
README 107 There is also collection of standard test vectors which are not
111 To run compare the code to these test vectors:
  /external/chromium_org/third_party/opus/src/silk/fixed/
corrMatrix_FIX.c 42 const opus_int L, /* I Length of vectors */
77 const opus_int L, /* I Length of vectors */
  /external/clang/test/Parser/
altivec.c 95 // Check some casting between gcc and altivec vectors.
115 // bug 7553 - Problem with '==' and vectors
  /external/eigen/Eigen/src/plugins/
ArrayCwiseBinaryOps.h 100 * In order to check for equality between two vectors or matrices with floating-point coefficients, it is
114 * In order to check for equality between two vectors or matrices with floating-point coefficients, it is
MatrixCwiseBinaryOps.h 30 * In order to check for equality between two vectors or matrices with floating-point coefficients, it is
49 * In order to check for equality between two vectors or matrices with floating-point coefficients, it is
  /external/llvm/test/CodeGen/ARM/
2012-08-23-legalize-vmull.ll 5 ; vectors that were created by sign-extending smaller vector sizes.
7 ; The vmull operation requires 64-bit vectors, so we must extend the original
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
lpc_shape_swb16_tables.c 45 * of different LAR vectors. One might guess that decorrelation matrix
60 * The following 16 vectors define CDF of 16 decorrelated LAR
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP.c 31 * Decodes and pads the four motion vectors associated with a non-intra P-VOP
64 * macroblock; contains four decoded motion vectors
omxVCM4P2_EncodeMV.c 53 * motion vectors related to search range, as described in
106 /* No candidate vectors hence make them zero */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
security.h 145 /* Proc vectors for untrusted clients, swapped and unswapped versions.
146 * These are the same as the normal proc vectors except that extensions
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
security.h 145 /* Proc vectors for untrusted clients, swapped and unswapped versions.
146 * These are the same as the normal proc vectors except that extensions
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
security.h 145 /* Proc vectors for untrusted clients, swapped and unswapped versions.
146 * These are the same as the normal proc vectors except that extensions

Completed in 1126 milliseconds

1 2 3 4 5 6 78 91011>>