Searched refs:structure (Results 126 - 150 of 199) sorted by relevance

12345678

/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
H A DArmatureHelper.java78 * This method builds the object's bones structure.
81 * the structure containing the bones' data
120 * a bPose structure of the object
145 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) { argument
153 * the structure containing the tracks
174 * the structure containing the tracks
215 * the structure containing the tracks
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
H A DModifierHelper.java74 * the object structure
120 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) { argument
129 * the object's structure
171 * the object's structure
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/particles/
H A DParticlesHelper.java193 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) { argument
/external/libvpx/libvpx/vp8/encoder/x86/
H A Dssim_opt.asm58 ; TODO: Use parm passing through structure, probably don't need the pxors
148 ; TODO: Use parm passing through structure, probably don't need the pxors
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dgenlingware.pl17 the resource file structure is as follows:
/external/webkit/Source/JavaScriptCore/API/
H A DJSCallbackObjectFunctions.h53 JSCallbackObject<Base>::JSCallbackObject(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, JSClassRef jsClass, void* data) argument
54 : Base(globalObject, structure)
64 JSCallbackObject<Base>::JSCallbackObject(JSGlobalData& globalData, JSClassRef jsClass, Structure* structure) argument
65 : Base(globalData, structure)
H A DJSValueRef.cpp176 if (!jsConstructor->structure()->typeInfo().implementsHasInstance())
/external/zlib/src/contrib/masmx64/
H A Dgvmat64.asm115 ; in the deflate_state structure since the asm code was first written
117 ; Note : these value are good with a 8 bytes boundary pack structure
125 ;;; Offsets for fields in the deflate_state structure. These numbers
133 ; in zlib in the deflate_state structure since the asm code was first written
209 ;;; deflate_state structure during the function's setup (before
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp1366 llvm::StructType *structure = local
1370 unsigned numElements = structure->getNumElements();
1390 llvm::Type *baseType = structure->getElementType(fieldIndex);
1427 llvm::Type *baseType = structure->getElementType(fieldIndex);
1435 elements[i] = llvm::Constant::getNullValue(structure->getElementType(i));
1438 return llvm::ConstantStruct::get(structure, elements);
/external/icu4c/common/
H A DAndroid.mk113 # This is the empty compiled-in icu data structure
/external/webkit/Source/JavaScriptCore/runtime/
H A DObjectConstructor.cpp78 ObjectConstructor::ObjectConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, ObjectPrototype* objectPrototype) argument
79 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, "Object"))
H A DJSObject.cpp119 for (JSObject* obj = this; !obj->structure()->hasGetterSetterProperties(); obj = asObject(prototype)) {
450 if (prototype->structure()->typeInfo().overridesGetPropertyNames()) {
563 if (!structure()->isDictionary())
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
H A DJSTestObj.h79 JSTestObjPrototype(JSC::JSGlobalObject* globalObject, NonNullPassRefPtr<JSC::Structure> structure) : JSC::JSObjectWithGlobalObject(globalObject, structure) { } argument
/external/zlib/src/contrib/masmx86/
H A Dmatch686.asm75 ; in zlib in the deflate_state structure since the asm code was first written
82 ; Note : these value are good with a 8 bytes boundary pack structure
140 ;;; Offsets for fields in the deflate_state structure. These numbers
211 ;;; deflate_state structure during the function's setup (before
/external/ceres-solver/docs/
H A Dsolving.tex8 $ F(x) = \left[f_1(x), \hdots, f_{m}(x) \right]^{\top}$ be a $m$-dimensional function of $x$. We are interested in solving the following optimization problem~\footnote{At the level of the non-linear solver, the block and residual structure is not relevant, therefore our discussion here is in terms of an optimization problem defined over a state vector of size $n$.},
121 Some non-linear least squares problems have additional structure in
142 Similar structure can be found in the matrix factorization with
175 sparsity structure into a collection of non-overlapping independent sets
259 While it is possible to use \texttt{SPARSE\_NORMAL\_CHOLESKY} to solve bundle adjustment problems, bundle adjustment problem have a special structure, and a more efficient scheme for solving~\eqref{eq:normal} can be constructed.
261 Suppose that the SfM problem consists of $p$ cameras and $q$ points and the variable vector $x$ has the block structure $x = [y_{1},\hdots,y_{p},z_{1},\hdots,z_{q}]$. Where, $y$ and $z$ correspond to camera and point parameters, respectively. Further, let the camera blocks be of size $c$ and the point blocks be of size $s$ (for most problems $c$ = $6$--$9$ and $s = 3$). Ceres does not impose any constancy requirement on these block sizes, but choosing them to be constant simplifies the exposition.
305 structure of the matrix, there are, in general, two options. The first
318 Sparse direct methods, depending on the exact sparsity structure of the Schur complement,
349 The computational cost of using a preconditioner $M$ is the cost of computing $M$ and evaluating the product $M^{-1}y$ for arbitrary vectors $y$. Thus, there are two competing factors to consider: How much of $H$'s structure is captured by $M$ so that the condition number $\kappa(HM^{-1})$ is low, and the computational cost of constructing and using $M$. The ideal preconditioner would be one for which $\kappa(M^{-1}A) =1$. $M=A$ achieves this, but it is not a practical choice, as applying this preconditioner would require solving a linear system equivalent to the unpreconditioned problem. It is usually the case that the more information $M$ has about $H$, the more expensive it is use. For example, Incomplete Cholesky factorization based preconditioners have much better convergence behavior than the Jacobi preconditioner, but are also much more expensive.
356 For bundle adjustment problems arising in reconstruction from community photo collections, more effective preconditioners can be constructed by analyzing and exploiting the camera-point visibility structure o
[all...]
H A Dintroduction.tex4 Ceres Solver\footnote{For brevity, in the rest of this document we will just use the term Ceres.} is a non-linear least squares solver developed at Google. It is designed to solve small and large sparse problems accurately and efficiently~\footnote{For a gentle but brief introduction to non-liner least squares problems, please start by reading the~\hyperref[part:tutorial]{Tutorial}}. Amongst its various features is a simple but expressive API with support for automatic differentiation, robust norms, local parameterizations, automatic gradient checking, multithreading and automatic problem structure detection.
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DConstraintHelper.java68 * This method reads constraints for for the given structure. The
72 * the structure we read constraint's for
114 //the name is read directly from structure because bone might not yet be loaded
154 * the constraint's structure (bConstraint clss in blender 2.49).
200 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) { argument
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb77 capable of walking through the AST, verifying its structure and performing
81 closely mirror the general structure of regular parsers and lexers.
92 Like all ANTLR recognizers, tree parsers contained a shared state structure and
679 * cleaning up / normalizing a full tree structure after construction
934 sequences. They preserve the two-dimensional structure of the tree by inserting
H A Dmain.rb114 It defines the skeletal structure shared by all main
H A Drecognizers.rb179 much of the shared functionality and structure used in the recognition process.
236 # each recognizer gets a default return value structure
931 which defines the structure of a specific type of sentence in a grammar. Lexers,
1233 A grammar defines the vocabulary and the sentence structure of a language. While
1235 primary task is to implement the sentence structure.
1238 a corresponding lexer. Then, the user requests a specific sentence-structure
1243 structure.
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DParseHelper.cpp549 error(line, "Number of constructor parameters does not match the number of structure fields", "constructor", "");
624 error(line, reason, getBasicString(pType.type), "(structure contains a sampler)");
643 error(line, "cannot be used with a structure", getQualifierString(pType.qualifier), "");
671 TTypeList& structure = *type.getStruct(); local
672 for (unsigned int i = 0; i < structure.size(); ++i) {
673 if (containsSampler(*structure[i].type))
1110 // If structure constructor or array constructor is being called
1111 // for only one parameter inside the structure, we need to call constructStruct function once.
1132 // if the structure constructor contains more than one parameter, then construct
1139 // for structure constructor
[all...]
H A Dglslang.y364 context->error($2.line, "structure has no fields", "Internal Error", "");
384 // change the qualifier of the return type, not of the structure field
385 // as the structure definition is shared between various structures.
396 context->error($2.line, " no such field in structure", $3.string->c_str(), "");
402 context->error($2.line, " field selection requires structure, vector, or matrix on left hand side", $3.string->c_str(), "");
1636 TType& structure = static_cast<TVariable*>($1.symbol)->getType();
1639 $$.userDef = &structure;
1648 TType* structure = new TType($4, *$2.string);
1649 TVariable* userTypeDef = new TVariable($2.string, *structure, true);
1655 $$.userDef = structure;
[all...]
/external/zlib/src/as400/
H A Dzlib.inc11 * the package version string and the stream control structure.
90 * The GZIP encode/decode stream support structure.
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
H A Dwizard.rb46 AST for a particular node structure. These features make tree wizards useful
277 A simple tree class that represents the skeletal structure of tree. It is used
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/
H A Den.stg67 "bad internal tree structure for action '<arg>': <exception>"
69 bad internal tree structure '<arg>': <exception>

Completed in 779 milliseconds

12345678