Searched defs:linear (Results 1 - 15 of 15) sorted by relevance

/external/webkit/Source/WebCore/platform/audio/
H A DAudioUtilities.cpp41 double linearToDecibels(double linear) argument
43 // It's not possible to calculate decibels for a zero linear value since it would be -Inf.
44 // -1000.0 dB represents a very tiny linear value in case we ever reach this case.
45 ASSERT(linear);
46 if (!linear)
49 return 20.0 * log10(linear);
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
H A DRenderImageJme.java49 public RenderImageJme(String filename, boolean linear, NiftyJmeDisplay display){ argument
57 texture.setMagFilter(linear ? MagFilter.Bilinear : MagFilter.Nearest);
58 texture.setMinFilter(linear ? MinFilter.BilinearNoMipMaps : MinFilter.NearestNoMipMaps);
H A DRenderDeviceJme.java128 public RenderImage createImage(String filename, boolean linear) { argument
129 return new RenderImageJme(filename, linear, display);
/external/webkit/Source/WebCore/svg/
H A DSVGLinearGradientElement.cpp166 SVGLinearGradientElement* linear = static_cast<SVGLinearGradientElement*>(current); local
169 attributes.setX1(linear->x1());
172 attributes.setY1(linear->y1());
175 attributes.setX2(linear->x2());
178 attributes.setY2(linear->y2());
/external/chromium/chrome/browser/ui/gtk/
H A Dslide_animator_gtk.cc32 bool linear,
60 if (linear)
29 SlideAnimatorGtk(GtkWidget* child, Direction direction, int duration, bool linear, bool control_child_size, Delegate* delegate) argument
/external/srec/portable/src/
H A DPFileSystem.c69 LCHAR linear[P_PATH_MAX]; local
80 LSTRCPY(linear, path);
81 CHKLOG(rc, PFileSystemCanonicalSlashes(linear));
83 beginning = linear;
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEComponentTransfer.cpp133 static void linear(unsigned char* values, const ComponentTransferFunction& transferFunction) function in namespace:WebCore
170 TransferType callEffect[] = {identity, identity, table, discrete, linear, gamma};
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_objects_PhysicsRigidBody.cpp737 (JNIEnv *env, jobject object, jlong bodyId, jfloat linear, jfloat angular) {
744 body->setSleepingThresholds(linear, angular);
736 Java_com_jme3_bullet_objects_PhysicsRigidBody_setSleepingThresholds(JNIEnv *env, jobject object, jlong bodyId, jfloat linear, jfloat angular) argument
/external/qemu/telephony/
H A Dsim_card.c186 SimFileEFLinearRec linear; member in union:__anon11221
217 file_size = file->linear.rec_count * file->linear.rec_len;
277 gsm_hex_from_byte( dst, file->linear.rec_len );
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
H A DPhysicsRigidBody.java433 * @return the current linear velocity
463 * Get the current linear velocity of this PhysicsRigidBody
464 * @return the current linear velocity
475 * Get the current linear velocity of this PhysicsRigidBody
483 * Sets the linear velocity of this PhysicsRigidBody
484 * @param vec the linear velocity of this PhysicsRigidBody
601 * @param linear the linear sleeping threshold
604 public void setSleepingThresholds(float linear, float angular) { argument
605 setSleepingThresholds(objectId, linear, angula
608 setSleepingThresholds(long objectId, float linear, float angular) argument
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
H A DPhysicsRigidBody.java409 * @return the current linear velocity
433 * Get the current linear velocity of this PhysicsRigidBody
434 * @return the current linear velocity
441 * Get the current linear velocity of this PhysicsRigidBody
449 * Sets the linear velocity of this PhysicsRigidBody
450 * @param vec the linear velocity of this PhysicsRigidBody
548 * @param linear the linear sleeping threshold
551 public void setSleepingThresholds(float linear, float angular) { argument
552 constructionInfo.linearSleepingThreshold = linear;
[all...]
/external/grub/grub/
H A Dasmstub.c316 /* sets it to linear or wired A20 operation */
318 gateA20 (int linear) argument
/external/skia/samplecode/
H A DSampleAll.cpp425 SkShader* linear = SkGradientShader::CreateLinear(linearPoints, local
482 paint.setShader(linear)->unref();
/external/icu4c/common/
H A Ducnvmbcs.c321 * ASCII code points can be looked up with a linear array access into stage 3.
347 * ASCII code points can be looked up with a linear array access into stage 3.
365 /* helper macros for linear values for GB 18030 four-byte sequences */
991 uint32_t linear; local
994 /* get the linear value of the first GB 18030 code in this range */
995 linear=range[2]-LINEAR_18030_BASE;
998 linear+=((uint32_t)cp-range[0]);
1001 bytes[3]=(char)(0x30+linear%10); linear/=10;
1002 bytes[2]=(char)(0x81+linear
1050 uint32_t linear; local
[all...]
/external/freetype/include/freetype/internal/
H A Dtttypes.h1506 FT_Int linear; member in struct:TT_LoaderRec_

Completed in 384 milliseconds