HomeSort by relevance Sort by last modified time
    Searched full:scale (Results 326 - 350 of 4641) sorted by null

<<11121314151617181920>>

  /external/qemu/android/skin/
window.h 21 /* Note: if scale is <= 0, we interpret this as 'auto-detect'.
29 double scale,
48 double scale );
  /external/qemu/distrib/jpeg-6b/
djpeg.1 58 Force gray-scale output even if JPEG file is color. Useful for viewing on
63 .BI \-scale " M/N"
64 Scale the output image by a factor M/N. Currently the scale factor must be
76 is specified, or if the JPEG file is gray-scale; otherwise, 24-bit full-color
90 is specified, or if the JPEG file is gray-scale; otherwise, 24-bit full-color
95 PGM is emitted if the JPEG file is gray-scale or if
103 Select Targa output format. Gray-scale format is emitted if the JPEG file is
104 gray-scale or if
162 Also, the one-pass method is always used for gray-scale output (the two-pas
    [all...]
  /external/skia/gm/
bicubicfilter.cpp 57 SkSize scale = SkSize::Make(sk32, sk32); local
59 canvas->scale(sk32, sk32);
63 SkAutoTUnref<SkImageFilter> bicubic(SkBicubicImageFilter::CreateMitchell(scale));
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ScaleFilter.java 19 // TODO: scale filter needs to be able to specify output width and height
39 .addInputPort("scale", Signature.PORT_OPTIONAL, FrameType.single(float.class))
47 if (port.getName().equals("scale")) {
  /external/chromium_org/chrome/browser/resources/ntp4/
tile_page.css 109 -webkit-transform: scale(0) rotate(0);
113 -webkit-transform: scale(0) rotate(360deg);
136 -webkit-transform: scale(0, 0);
140 -webkit-transform: scale(1.2, 1.2);
144 -webkit-transform: scale(1, 1);
154 -webkit-transform: scale(1, 1);
159 -webkit-transform: scale(1.3, 0.02);
164 -webkit-transform: scale(0.3, 0.02);
170 -webkit-transform: scale(0.3, 0.02);
  /external/chromium_org/content/common/gpu/client/
gl_helper_scaling.h 91 // a scale up and scale down with a 3-tap bilinear scale.
100 // Technically, this should be a scale up and then a
101 // scale down, but it makes the optimization code more
130 // A scale factor of 0 means upscale
131 // 2 means 50% scale
132 // 3 means 33% scale, etc.
135 int scale_size; // Size to scale to.
  /external/chromium_org/net/quic/
quic_bandwidth_test.cc 60 TEST_F(QuicBandwidthTest, Scale) {
62 QuicBandwidth::FromKBytesPerSecond(1000).Scale(0.5f));
64 QuicBandwidth::FromKBytesPerSecond(1000).Scale(0.75f));
66 QuicBandwidth::FromKBytesPerSecond(1000).Scale(1.25f));
  /external/chromium_org/ppapi/api/dev/
ppp_zoom_dev.idl 20 * only applies to text only. The scale factor is the percentage divided by
  /external/chromium_org/ppapi/thunk/
ppb_widget_api.h 21 virtual void SetScale(float scale) = 0;
  /external/chromium_org/third_party/WebKit/ManualTests/
svg-css-transition-compound.html 56 svgElm.style.webkitTransform = "translate(75px, 25px) scale(2) rotate(45deg)";
57 divElm.style.webkitTransform = "translate(75px, 25px) scale(2) rotate(45deg)";
60 svgElm.style.webkitTransform = "translate(0px, 0px) scale(1) rotate(0deg)";
61 divElm.style.webkitTransform = "translate(0px, 0px) scale(1) rotate(0deg)";
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_debug_norm.c 124 GLfloat scale,
140 SCALE_SCALAR_3V( out[i], scale, t );
147 GLfloat scale,
168 scale = INV_SQRTF( len );
169 SCALE_SCALAR_3V( out[i], scale, t );
174 scale = lengths[i];;
175 SCALE_SCALAR_3V( out[i], scale, t );
202 GLfloat scale; local
216 scale = 1.0F + rnd () * norm_scale_types[mtype];
278 ref_norm_transform_rescale( mat, scale, source, NULL, ref )
    [all...]
  /external/chromium_org/third_party/skia/include/effects/
SkLightingImageFilter.h 29 SkScalar scale = SkScalarInvert(SkScalarSqrt(dot(*this))); local
30 fX = SkScalarMul(fX, scale);
31 fY = SkScalarMul(fY, scale);
32 fZ = SkScalarMul(fZ, scale);
  /external/chromium_org/third_party/skia/include/utils/
SkMatrix44.h 152 kScale_Mask = 0x02, //!< set if the matrix has any scale != 1
187 * Return true if the matrix only contains scale or translate or is identity.
198 * (0, 0) scale-x
210 * (0, 0) scale-x
268 inline void setScale(SkMScalar scale) {
269 this->setScale(scale, scale, scale);
271 inline void preScale(SkMScalar scale) {
272 this->preScale(scale, scale, scale)
    [all...]
  /external/chromium_org/third_party/skia/src/views/
SkTouchGesture.cpp 191 float SkTouchGesture::limitTotalZoom(float scale) const {
192 // this query works 'cause we know that we're square-scale w/ no skew/rotation
195 if (scale > 1 && curr * scale > MAX_ZOOM_SCALE) {
196 scale = MAX_ZOOM_SCALE / curr;
197 } else if (scale < 1 && curr * scale < MIN_ZOOM_SCALE) {
198 scale = MIN_ZOOM_SCALE / curr;
200 return scale;
243 float scale = this->computePinch(rec0, rec1) local
305 double scale = dist1 \/ dist0; local
    [all...]
  /external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
bouncing_balls_draw_ball_as_text.js 17 canvasContext.scale(ballScale, ballScale);
  /external/chromium_org/ui/base/
layout.cc 76 // Returns the scale factor closest to |scale| from the full list of factors.
77 // Note that it does NOT rely on the list of supported scale factors.
79 ScaleFactor FindClosestScaleFactorUnsafe(float scale) {
84 float diff = std::abs(kScaleFactorScales[scale_factor] - scale);
100 // On platforms other than iOS, 100P is always a supported scale factor.
124 // default scaling for Metro mode. Round to nearest supported scale in
151 ScaleFactor GetScaleFactorFromScale(float scale) {
158 float diff = std::abs(kScaleFactorScales[scale_factor] - scale);
  /external/chromium_org/ui/gfx/image/
image_ios.mm 28 UIImage* CreateErrorUIImage(float scale) {
45 scale:scale
51 float scale = ui::GetScaleFactorScale(image_png_rep.scale_factor);
55 UIImage* image = [[UIImage alloc] initWithData:data scale:scale];
56 return image ? image : CreateErrorUIImage(scale);
87 float scale = ui::GetScaleFactorScale(image_png_reps[i].scale_factor);
88 float diff = std::abs(ideal_scale - scale);
  /external/chromium_org/ui/gfx/
point_f.cc 19 scaled_p.Scale(x_scale, y_scale);
size_f.cc 19 scaled_s.Scale(x_scale, y_scale);
  /external/iptables/include/linux/netfilter/
xt_limit.h 14 __u32 avg; /* Average secs between packets * scale */
  /external/jmonkeyengine/engine/src/core-effects/Common/MatDefs/SSAO/
ssao.j3md 13 Float Scale
  /external/kernel-headers/original/sound/
tlv.h 35 #define SNDRV_CTL_TLVT_DB_SCALE 1 /* dB scale */
38 #define SNDRV_CTL_TLVT_DB_MINMAX 4 /* dB scale with min/max */
39 #define SNDRV_CTL_TLVT_DB_MINMAX_MUTE 5 /* dB scale with min/max with mute */
49 /* dB scale specified with min/max values instead of step */
  /external/libvpx/libvpx/vp9/common/
vp9_reconinter.c 46 const struct scale_factors *scale,
54 scale->sfc->predict[subpel_x != 0][subpel_y != 0][ref](
64 const struct scale_factors *scale,
71 const struct scale_factors_common *sfc = scale->sfc;
72 const MV32 mv = sfc->scale_mv(&mv_q4, scale);
74 inter_predictor(src, src_stride, dst, dst_stride, &mv, scale,
143 struct scale_factors *const scale = &xd->scale_factor[ref]; local
170 if (vp9_is_scaled(scale->sfc)) {
171 pre = pre_buf->buf + scaled_buffer_offset(x, y, pre_buf->stride, scale);
172 scale->sfc->set_scaled_offsets(scale, mi_y + y, mi_x + x)
    [all...]
  /external/llvm/lib/CodeGen/
MachineBranchProbabilityInfo.cpp 32 getSumForBlock(const MachineBasicBlock *MBB, uint32_t &Scale) const {
38 Scale = 1;
49 // Otherwise, compute the scale necessary to cause the weights to fit, and
50 // re-sum with that scale applied.
52 Scale = (Sum / UINT32_MAX) + 1;
57 Sum += Weight / Scale;
109 uint32_t Scale = 1;
110 uint32_t D = getSumForBlock(Src, Scale);
111 uint32_t N = getEdgeWeight(Src, Dst) / Scale;
  /external/mesa3d/src/mesa/math/
m_debug_norm.c 124 GLfloat scale,
140 SCALE_SCALAR_3V( out[i], scale, t );
147 GLfloat scale,
168 scale = INV_SQRTF( len );
169 SCALE_SCALAR_3V( out[i], scale, t );
174 scale = lengths[i];;
175 SCALE_SCALAR_3V( out[i], scale, t );
202 GLfloat scale; local
216 scale = 1.0F + rnd () * norm_scale_types[mtype];
278 ref_norm_transform_rescale( mat, scale, source, NULL, ref )
    [all...]

Completed in 1158 milliseconds

<<11121314151617181920>>