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

1 2 3

  /external/eigen/Eigen/src/Geometry/
Translation.h 17 * \class Translation
19 * \brief Represents a translation transformation
24 * \note This class is not aimed to be used to store a translation transformation,
30 class Translation
54 EIGEN_DEVICE_FUNC Translation() {}
56 EIGEN_DEVICE_FUNC inline Translation(const Scalar& sx, const Scalar& sy)
63 EIGEN_DEVICE_FUNC inline Translation(const Scalar& sx, const Scalar& sy, const Scalar& sz)
70 /** Constructs and initialize the translation transformation from a vector of translation coefficients */
71 EIGEN_DEVICE_FUNC explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {
90 EIGEN_DEVICE_FUNC const VectorType& translation() const { return m_coeffs; } function in class:Eigen::Translation
91 EIGEN_DEVICE_FUNC VectorType& translation() { return m_coeffs; } function in class:Eigen::Translation
    [all...]
Scaling.h 30 * \sa Scaling(), class DiagonalMatrix, MatrixBase::asDiagonal(), class Translation, class Transform
57 /** Concatenates a uniform scaling and a translation */
59 inline Transform<Scalar,Dim,Affine> operator* (const Translation<Scalar,Dim>& t) const;
158 UniformScaling<Scalar>::operator* (const Translation<Scalar,Dim>& t) const
163 res.translation() = factor() * t.vector();
  /device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/MmcHostDxe/
MmcHostDxe.c 65 UINT32 Translation;
69 Translation = CMD2;
72 Translation = CMD3;
75 Translation = CMD6;
78 Translation = CMD7;
81 Translation = CMD8;
84 Translation = CMD9;
87 Translation = CMD12;
90 Translation = CMD13;
93 Translation = CMD16;
    [all...]
  /device/linaro/bootloader/edk2/Omap35xxPkg/MmcHostDxe/
MmcHostDxe.c 65 UINT32 Translation;
69 Translation = CMD2;
72 Translation = CMD3;
75 Translation = CMD6;
78 Translation = CMD7;
81 Translation = CMD8;
84 Translation = CMD9;
87 Translation = CMD12;
90 Translation = CMD13;
93 Translation = CMD16;
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseCpuLib/Arm/
CpuFlushTlb.asm 21 ; Flushes all the Translation Lookaside Buffers(TLB) entries in a CPU.
23 ; Flushes all the Translation Lookaside Buffers(TLB) entries in a CPU.
  /external/v8/src/
deoptimizer.cc 720 // Do the input frame to output frame(s) translation.
862 // Compute the incoming parameter translation.
874 // There are no translation commands for the caller's pc and fp, the
    [all...]
frames.cc     [all...]
  /external/v8/src/profiler/
profiler-listener.cc 214 Translation::Opcode opcode = static_cast<Translation::Opcode>(it.Next());
215 DCHECK_EQ(Translation::BEGIN, opcode);
216 it.Skip(Translation::NumberOfOperandsFor(opcode));
220 Translation::BEGIN !=
221 (opcode = static_cast<Translation::Opcode>(it.Next()))) {
222 if (opcode != Translation::JS_FRAME &&
223 opcode != Translation::INTERPRETED_FRAME) {
224 it.Skip(Translation::NumberOfOperandsFor(opcode));
  /external/v8/src/compiler/
code-generator.h 214 Translation* translation, OutputFrameStateCombine state_combine);
216 Translation* translation,
221 Translation* translation);
222 void AddTranslationForOperand(Translation* translation, Instruction* instr,
code-generator.cc 669 StateValueDescriptor* desc, Translation* translation,
672 translation->BeginCapturedObject(static_cast<int>(desc->size()));
674 TranslateStateValueDescriptor(&desc->fields()[index], translation, iter);
677 translation->DuplicateObject(static_cast<int>(desc->id()));
680 AddTranslationForOperand(translation, iter->instruction(), iter->Advance(),
688 OutputFrameStateCombine combine, Translation* translation) {
699 translation, iter->instruction(),
715 translation, iter->instruction()
    [all...]
  /external/v8/src/crankshaft/
lithium-codegen.h 58 Translation* translation);
  /external/giflib/
gifalloc.c 208 Apply a given color translation to the raster bits of an image
211 GifApplyTranslation(SavedImage *Image, GifPixelType Translation[])
217 Image->RasterBits[i] = Translation[Image->RasterBits[i]];
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.h 129 // Emit frame translation commands for an environment.
130 void WriteTranslation(LEnvironment* environment, Translation* translation);
240 Translation* translation,
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.h 107 // Emit frame translation commands for an environment.
108 void WriteTranslation(LEnvironment* environment, Translation* translation);
217 Translation* translation,
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.h 122 // Emit frame translation commands for an environment.
123 void WriteTranslation(LEnvironment* environment, Translation* translation);
215 void AddToTranslation(LEnvironment* environment, Translation* translation,
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.h 122 // Emit frame translation commands for an environment.
123 void WriteTranslation(LEnvironment* environment, Translation* translation);
215 void AddToTranslation(LEnvironment* environment, Translation* translation,
  /external/v8/src/crankshaft/x64/
lithium-codegen-x64.h 105 // Emit frame translation commands for an environment.
106 void WriteTranslation(LEnvironment* environment, Translation* translation);
218 Translation* translation,
  /external/llvm/lib/Option/
ArgList.cpp 295 const char *Translation,
301 Output.push_back(MakeArgString(StringRef(Translation) +
304 Output.push_back(Translation);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d2d1helper.h 384 static D2D1FORCEINLINE Matrix3x2F Translation(D2D1_SIZE_F size) {
385 return Translation(size.width, size.height);
388 static D2D1FORCEINLINE Matrix3x2F Translation(FLOAT x, FLOAT y) {
  /external/eigen/test/
geo_transformations.cpp 36 typedef Translation<Scalar,3> Translation3;
75 // translation * vector
104 typedef Translation<Scalar,2> Translation2;
105 typedef Translation<Scalar,3> Translation3;
283 // mat * aligned scaling and mat * translation
290 // mat * transformation and aligned scaling * translation
321 // translation * aligned scaling and transformation * mat
324 // scaling * mat and translation * mat
330 // translation * mat and aligned scaling * transformation
340 // transformation * translation
    [all...]
  /external/eigen/unsupported/test/
openglsupport.cpp 191 Translation<float,3> tf3; tf3.vector().setRandom();
194 Translation<double,3> td3; td3.vector().setRandom();
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.h 259 // Emit frame translation commands for an environment.
260 void WriteTranslation(LEnvironment* environment, Translation* translation);
263 Translation* translation,
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.h 128 // Emit frame translation commands for an environment.
129 void WriteTranslation(LEnvironment* environment, Translation* translation);
238 Translation* translation,
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.h 130 // Emit frame translation commands for an environment.
131 void WriteTranslation(LEnvironment* environment, Translation* translation);
240 Translation* translation,
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.h 142 // Emit frame translation commands for an environment.
143 void WriteTranslation(LEnvironment* environment, Translation* translation);
245 Translation* translation,

Completed in 1003 milliseconds

1 2 3