Searched refs:floats (Results 1 - 18 of 18) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DColorRGBA.java253 * @param store The array of floats to store the values into.
402 * @param floats
407 public float[] toArray(float[] floats) { argument
408 if (floats == null) {
409 floats = new float[4];
411 floats[0] = r;
412 floats[1] = g;
413 floats[2] = b;
414 floats[3] = a;
415 return floats;
[all...]
H A DVector2f.java267 * Check a vector... if it is null or its floats are NaN or infinite, return
659 * @param floats
664 public float[] toArray(float[] floats) { argument
665 if (floats == null) {
666 floats = new float[2];
668 floats[0] = x;
669 floats[1] = y;
670 return floats;
H A DVector4f.java810 * Check a vector... if it is null or its floats are NaN or infinite,
840 * @param floats
845 public float[] toArray(float[] floats) { argument
846 if (floats == null) {
847 floats = new float[4];
849 floats[0] = x;
850 floats[1] = y;
851 floats[2] = z;
852 floats[3] = w;
853 return floats;
[all...]
H A DVector3f.java859 * Check a vector... if it is null or its floats are NaN or infinite,
917 * @param floats
922 public float[] toArray(float[] floats) { argument
923 if (floats == null) {
924 floats = new float[3];
926 floats[0] = x;
927 floats[1] = y;
928 floats[2] = z;
929 return floats;
/external/webkit/Source/WebCore/rendering/
H A DRenderBlockLineLayout.cpp793 Vector<FloatWithRect> floats; local
819 floats.append(FloatWithRect(box));
828 floats.append(FloatWithRect(box));
917 RootInlineBox* startLine = determineStartPosition(firstLine, fullLayout, previousLineBrokeCleanly, resolver, floats, floatIndex,
943 0 : determineEndPosition(startLine, floats, floatIndex, cleanLineStart, cleanLineBidiStatus, endLineLogicalTop);
965 // If the last line before the start line ends with a line break that clear floats,
1099 // We have to delete this line, remove all floats that got added, and let line layout re-run.
1133 ASSERT(f->m_renderer == floats[floatIndex].object);
1135 if (floats[floatIndex].rect != f->frameRect())
1219 size_t floatCount = floats
1254 checkFloatsInCleanLine(RootInlineBox* line, Vector<FloatWithRect>& floats, size_t& floatIndex, bool& encounteredNewFloat, bool& dirtiedByFloat) argument
1284 determineStartPosition(bool& firstLine, bool& fullLayout, bool& previousLineBrokeCleanly, InlineBidiResolver& resolver, Vector<FloatWithRect>& floats, unsigned& numCleanFloats, bool& useRepaintBounds, int& repaintLogicalTop, int& repaintLogicalBottom) argument
1409 determineEndPosition(RootInlineBox* startLine, Vector<FloatWithRect>& floats, size_t floatIndex, InlineIterator& cleanLineStart, BidiStatus& cleanLineBidiStatus, int& logicalTop) argument
[all...]
H A DRenderBlock.h495 InlineBidiResolver&, Vector<FloatWithRect>& floats, unsigned& numCleanFloats,
497 RootInlineBox* determineEndPosition(RootInlineBox* startBox, Vector<FloatWithRect>& floats, size_t floatIndex, InlineIterator& cleanLineStart,
515 // Positions new floats and also adjust all floats encountered on the line if any of them
535 // Called from lineWidth, to position the floats added in the last line.
536 // Returns true if and only if it has positioned any floats.
/external/skia/include/utils/
H A DSkJSON.h202 * Creates an array of floats, initialized by copying the specified
256 float* floats() const { function in class:SkJSON::Array
/external/icu4c/test/letest/
H A Dgendata.cpp89 void dumpFloats(FILE *file, const char *tag, float *floats, le_int32 count) { argument
101 bufp += sprintf(&lineBuffer[bufp], "%f, ", floats[i]);
/external/javassist/src/test/test/javassist/convert/
H A DArrayAccessReplaceTest.java286 private float[] floats; field in class:ArrayAccessReplaceTest.Simple
314 return floats[pos];
358 floats[pos] = value;
/external/clang/test/Analysis/
H A Didempotent-operations.c62 void floats(float x) { function
/external/valgrind/main/VEX/switchback/
H A Dtest_ppc_jm1.c3669 AB_DPRINTF("Registered %d floats values\n", i);
4337 int integer, int floats, int p405,
4368 (family == PPC_FLOAT && !floats) ||
4487 int integer = 0, floats = 0, p405 = 0, altivec = 0, faltivec = 0; local
4519 // floats = 1;
4567 if (integer == 0 && floats == 0 && altivec == 0 && faltivec == 0 &&
4570 floats = 1;
4591 floats=0;
4600 integer, floats, p405, altivec, faltivec,
4335 do_tests(int one_arg, int two_args, int three_args, int arith, int logical, int compare, int integer, int floats, int p405, int altivec, int faltivec, int cr, unsigned char *filter) argument
/external/valgrind/main/none/tests/ppc32/
H A Djm-insns.c7280 int integer, floats, p405, altivec, faltivec; member in struct:insn_sel_flags_t_struct
7315 (family == PPC_FLOAT && !seln_flags.floats) ||
7459 flags.floats = 0;
7495 flags.floats = 1;
7559 if (flags.integer == 0 && flags.floats == 0 &&
7562 flags.floats = 1;
7594 flags.floats = 0;
7607 flags.floats = 1;
7615 flags.floats = 1;
7662 printf(" floats
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Djm-insns.c7280 int integer, floats, p405, altivec, faltivec; member in struct:insn_sel_flags_t_struct
7315 (family == PPC_FLOAT && !seln_flags.floats) ||
7459 flags.floats = 0;
7495 flags.floats = 1;
7559 if (flags.integer == 0 && flags.floats == 0 &&
7562 flags.floats = 1;
7594 flags.floats = 0;
7607 flags.floats = 1;
7615 flags.floats = 1;
7662 printf(" floats
[all...]
/external/libffi/src/mips/
H A Do32.S116 l.s $f14, 1*FFI_SIZEOF_ARG($sp) # passing two floats
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DSerializationStressTest1.java535 float[] floats = { 0.0f, 1.1f, 2.2f, 3.3f };
536 objToSave = floats;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/grub/docs/
H A Dtexinfo.tex5896 % floats, there is an additional part, which is not written here:
6460 % BEWARE: when the floats start float, we have to issue warning whenever an
6498 % lists of floats.
6560 % If have an xref label, write the list of floats info. Do this
6588 % BEWARE: when the floats start float, we have to issue warning whenever an
6628 % distinguish floats from other xref types.
6646 % @listoffloats FLOATTYPE - print a list of floats like a table of contents.
6658 % \xrdef saves the floats as a \do-list in \floatlistSAFEFLOATTYPE.
6662 \message{\linenumber No `\safefloattype' floats to list.}%
6673 % This is called on each entry in a list of floats
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli837 (** [const_fadd c1 c2] returns the constant sum of two constant floats.
856 constant floats. See the method [llvm::ConstantExpr::getFSub]. *)
873 (** [const_fmul c1 c2] returns the constant product of two constants floats.

Completed in 382 milliseconds