Searched defs:scale (Results 1 - 25 of 438) sorted by relevance

1234567891011>>

/external/qemu/android/protocol/
H A Dui-commands-qemu.c23 extern void android_emulator_set_window_scale(double scale, int is_dpi);
26 uicmd_set_window_scale(double scale, int is_dpi) argument
28 android_emulator_set_window_scale(scale, is_dpi);
H A Dui-commands.h23 /* Sets window scale. */
33 double scale; member in struct:UICmdSetWindowsScale
/external/webkit/Source/WebKit2/WebProcess/WebPage/qt/
H A DTiledDrawingAreaQt.cpp42 void TiledDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk, float scale) argument
50 graphicsContext.scale(FloatSize(scale, scale));
51 IntRect contentRect = enclosingIntRect(FloatRect(tileRect.x() / scale,
52 tileRect.y() / scale,
53 tileRect.width() / scale,
54 tileRect.height() / scale));
/external/skia/include/core/
H A DSkUnPreMultiply.h38 SkUnPreMultiply::Scale scale = table[a];
40 red = SkUnPreMultiply::ApplyScale(scale, red);
45 static U8CPU ApplyScale(Scale scale, U8CPU component) { argument
47 return (scale * component + (1 << 23)) >> 24;
/external/skia/src/core/
H A DSkUnPreMultiply.cpp13 const Scale scale = GetScale(a); local
15 ApplyScale(scale, SkGetPackedR32(c)),
16 ApplyScale(scale, SkGetPackedG32(c)),
17 ApplyScale(scale, SkGetPackedB32(c)));
58 uint32_t scale; local
61 scale = 0;
63 scale = ((255 << 24) + (i >> 1)) / i;
66 SkDebugf(" 0x%08X,", scale);
73 uint32_t test = (j * scale + (1 << 23)) >> 24;
/external/srec/srec/include/
H A Dlog_tabl.h23 #define LOG_SCALE 1024 /* smallest scale is about 0.1 dB */
33 int scale; member in struct:__anon13015
/external/aac/libAACdec/src/arm/
H A Dblock_arm.cpp115 int scale = SpecScale_window-pSfbScale[window*16+band]; local
116 if (scale)
125 tmp0 >>= scale; local
126 tmp1 >>= scale; local
127 tmp2 >>= scale; local
128 tmp3 >>= scale; local
/external/aac/libFDK/include/arm/
H A Dscale.h95 inline static INT shiftRightSat(INT src, int scale) argument
102 : "r"(src>>scale), "M"(SAMPLE_BITS)
108 #define SATURATE_INT_PCM_RIGHT_SHIFT(src, scale) shiftRightSat(src, scale)
110 inline static INT shiftLeftSat(INT src, int scale) argument
117 : "r"(src<<scale), "M"(SAMPLE_BITS)
123 #define SATURATE_INT_PCM_LEFT_SHIFT(src, scale) shiftLeftSat(src, scale)
143 #define SATURATE_RIGHT_SHIFT(src, scale, dBits) \
144 ( (((LONG)(src) ^ ((LONG)(src) >> (DFRACT_BITS-1)))>>(scale)) > (LON
[all...]
/external/compiler-rt/lib/
H A Dmuldf3.c29 int scale = 0; local
62 // normal number. Renormalize one or both of a and b, and set scale to
64 if (aAbs < implicitBit) scale += normalize(&aSignificand);
65 if (bAbs < implicitBit) scale += normalize(&bSignificand);
83 int productExponent = aExponent + bExponent - exponentBias + scale;
H A Dmulsf3.c29 int scale = 0; local
62 // normal number. Renormalize one or both of a and b, and set scale to
64 if (aAbs < implicitBit) scale += normalize(&aSignificand);
65 if (bAbs < implicitBit) scale += normalize(&bSignificand);
83 int productExponent = aExponent + bExponent - exponentBias + scale;
H A Ddivsf3.c32 int scale = 0; local
65 // normal number. Renormalize one or both of a and b, and set scale to
67 if (aAbs < implicitBit) scale += normalize(&aSignificand);
68 if (bAbs < implicitBit) scale -= normalize(&bSignificand);
76 int quotientExponent = aExponent - bExponent + scale;
/external/freetype/src/base/
H A Dftadvanc.c30 FT_Fixed scale; local
41 scale = face->size->metrics.y_scale;
43 scale = face->size->metrics.x_scale;
49 advances[nn] = FT_MulDiv( advances[nn], scale, 64 );
150 /* scale from 26.6 to 16.16 */
/external/iproute2/lib/
H A Dipx_ntop.c7 static __inline__ int do_digit(char *str, u_int32_t addr, u_int32_t scale, size_t *pos, size_t len) argument
9 u_int32_t tmp = addr >> (scale * 4);
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_CollisionShape.cpp65 (JNIEnv * env, jobject object, jlong shapeId, jobject scale) {
73 jmeBulletUtil::convert(env, scale, &scl);
64 Java_com_jme3_bullet_collision_shapes_CollisionShape_setLocalScaling(JNIEnv * env, jobject object, jlong shapeId, jobject scale) argument
/external/jmonkeyengine/engine/src/test/jme3test/model/anim/
H A DTestOgreComplexAnim.java53 private float scale = 1; field in class:TestOgreComplexAnim
/external/libvorbis/lib/
H A Dmdct.h63 DATA_TYPE scale; member in struct:__anon8721
/external/linux-tools-perf/util/ui/
H A Dprogress.c7 newtComponent form, scale; member in struct:ui_progress
25 self->scale = newtScale(0, 0, cols, total);
26 if (self->scale == NULL)
28 newtFormAddComponent(self->form, self->scale);
49 newtScaleSet(self->scale, curr);
/external/webkit/Source/WebCore/platform/audio/
H A DAudioChannel.cpp44 void AudioChannel::scale(double scale) argument
46 float s = static_cast<float>(scale);
H A DVectorMath.cpp44 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess) argument
47 ::vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess);
49 vDSP_vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess);
64 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess)
68 float k = *scale;
/external/webkit/Source/WebCore/platform/chromium/
H A DDragImageChromiumMac.cpp55 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) argument
59 size_t width = roundf(CGImageGetWidth(image) * scale.width());
60 size_t height = roundf(CGImageGetHeight(image) * scale.height());
H A DDragImageChromiumSkia.cpp57 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) argument
62 int imageWidth = scale.width() * image->width();
63 int imageHeight = scale.height() * image->height();
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DPaintTileOperation.h52 float scale() { return m_tile->scale(); } function in class:WebCore::PaintTileOperation
63 ScaleFilter(const TilePainter* painter, float scale) argument
65 , m_scale(scale) {}
69 return ((op->painter() == m_painter) && (op->scale() != m_scale));
/external/webkit/Source/WebCore/platform/gtk/
H A DDragImageGtk.cpp43 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) argument
48 int newWidth = scale.width() * cairo_image_surface_get_width(image);
49 int newHeight = scale.height() * cairo_image_surface_get_height(image);
53 cairo_scale(context.get(), scale.width(), scale.height());
/external/webkit/Source/WebCore/platform/qt/
H A DDragImageQt.cpp47 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) argument
52 int scaledWidth = image->width() * scale.width();
53 int scaledHeight = image->height() * scale.height();
/external/webkit/Source/WebCore/svg/
H A DSVGZoomEvent.cpp44 void SVGZoomEvent::setPreviousScale(float scale) argument
46 m_previousScale = scale;
59 void SVGZoomEvent::setNewScale(float scale) argument
61 m_newScale = scale;

Completed in 584 milliseconds

1234567891011>>