Home
last modified time | relevance | path

Searched refs:fillValue (Results 1 – 12 of 12) sorted by relevance

/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
DCrossHatchFilter.java57 private float fillValue = 0.9f; field in CrossHatchFilter
98 material.setFloat("FillValue", fillValue); in initFilter()
164 public void setFillValue(float fillValue) { in setFillValue() argument
165 this.fillValue = fillValue; in setFillValue()
167 material.setFloat("FillValue", fillValue); in setFillValue()
254 return fillValue; in getFillValue()
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
DbtCollisionObjectConstArray.java101 public SWIGTYPE_p_p_btCollisionObject expand(btCollisionObject fillValue) { in expand() argument
102 …ConstArray_expand__SWIG_0(swigCPtr, this, btCollisionObject.getCPtr(fillValue), fillValue), false); in expand()
DbtCollisionObjectArray.java101 public SWIGTYPE_p_p_btCollisionObject expand(btCollisionObject fillValue) { in expand() argument
102 …bjectArray_expand__SWIG_0(swigCPtr, this, btCollisionObject.getCPtr(fillValue), fillValue), false); in expand()
DbtPersistentManifoldArray.java102 public SWIGTYPE_p_p_btPersistentManifold expand(btPersistentManifold fillValue) { in expand() argument
103 …ldArray_expand__SWIG_0(swigCPtr, this, btPersistentManifold.getCPtr(fillValue), fillValue), false); in expand()
/external/skia/src/codec/
DSkCodec.cpp353 const uint32_t fillValue = this->getFillValue(info.colorType()); in fillIncompleteImage() local
367 fill_proc(fillInfo, fillDst, rowBytes, fillValue, zeroInit, sampler); in fillIncompleteImage()
373 fill_proc(fillInfo, fillDst, rowBytes, fillValue, zeroInit, sampler); in fillIncompleteImage()
381 fill_proc(fillInfo, fillDst, rowBytes, fillValue, zeroInit, sampler); in fillIncompleteImage()
DSkSampledCodec.cpp256 const uint32_t fillValue = this->codec()->getFillValue(info.colorType()); in sampledDecode() local
265 SkSampler::Fill(fillInfo, rowPtr, rowBytes, fillValue, options.fZeroInitialized); in sampledDecode()
DSkGifCodec.cpp560 uint32_t fillValue = this->onGetFillValue(this->dstInfo().colorType()); local
561 fSwizzler->fill(fillInfo, dst, rowBytes, fillValue, this->options().fZeroInitialized);
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
DbtVector3Array.java100 public Vector3 expand(Vector3 fillValue) { in expand() argument
101 return LinearMathJNI.btVector3Array_expand__SWIG_0(swigCPtr, this, fillValue); in expand()
DbtScalarArray.java100 public SWIGTYPE_p_float expand(float fillValue) { in expand() argument
101 …new SWIGTYPE_p_float(LinearMathJNI.btScalarArray_expand__SWIG_0(swigCPtr, this, fillValue), false); in expand()
/external/libgdx/extensions/gdx-bullet/jni/swig-src/extras/com/badlogic/gdx/physics/bullet/extras/
DbtStringArray.java103 public String expand(String fillValue) { in expand() argument
104 return ExtrasJNI.btStringArray_expand__SWIG_0(swigCPtr, this, fillValue); in expand()
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
DbtAlignedObjectArray.h252 SIMD_FORCE_INLINE T& expand( const T& fillValue=T())
261 new (&m_data[sz]) T(fillValue); //use the in-place new (not really allocating heap memory)
/external/llvm/lib/Support/
DAPInt.cpp1126 uint64_t fillValue = (isNegative() ? -1ULL : 0); in ashr() local
1128 val[i] = fillValue; in ashr()