HomeSort by relevance Sort by last modified time
    Searched defs:stretch (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/
SDL_ps3yuv.c 60 SDL_Surface *stretch; member in struct:private_yuvhwdata
132 hwdata->stretch = NULL;
  /external/chromium_org/ash/desktop_background/
wallpaper_resizer_unittest.cc 125 // STRETCH layout"
136 gfx::ImageSkia stretch = Resize(image, target_size, WALLPAPER_LAYOUT_STRETCH); local
142 EXPECT_TRUE(IsColor(stretch, kExpectedStretch));
  /external/libvorbis/lib/
envelope.h 63 int stretch; member in struct:__anon22892
envelope.c 107 /* stretch is used to gradually lengthen the number of windows
109 int stretch=max(VE_MINSTRETCH,ve->stretch/2); local
110 float penalty=gi->stretch_penalty-(ve->stretch/2-VE_MINSTRETCH);
184 for(i=0;i<stretch;i++){
236 ve->stretch++;
237 if(ve->stretch>VE_MAXSTRETCH*2)
238 ve->stretch=VE_MAXSTRETCH*2;
256 if(ret&4)ve->stretch=-1;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
SyncSampleIntersectFinderImpl.java 102 double stretch = (double) sc / refSampleCount; local
107 long start = (long) Math.ceil(stretch * (refSyncSamples[i] - 1) * samplesPerFrame);
109 // The Stretch makes sure that there are as much audio and video chunks!
138 double stretch = (double) sc / refSampleCount; local
141 long start = (long) Math.ceil(stretch * (refSyncSamples[i] - 1)) + 1;
143 // The Stretch makes sure that there are as much audio and video chunks!
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_yuv_sw.c 102 SDL_Surface *stretch; member in struct:private_yuvhwdata
986 swdata->stretch = NULL;
1170 int stretch; local
    [all...]
  /hardware/qcom/display/msm8960/libcopybit/
copybit.h 59 /* and reset to '0', after calling blit/stretch */
214 * Execute the stretch bit blit copy operation
225 int (*stretch)(struct copybit_device_t *dev, member in struct:copybit_device_t
  /hardware/qcom/display/msm8974/libcopybit/
copybit.h 59 /* and reset to '0', after calling blit/stretch */
215 * Give acquire fence to copybit to be used in upcoming stretch
227 * Execute the stretch bit blit copy operation
238 int (*stretch)(struct copybit_device_t *dev, member in struct:copybit_device_t
  /hardware/qcom/display/msm8x26/libcopybit/
copybit.h 59 /* and reset to '0', after calling blit/stretch */
214 * Execute the stretch bit blit copy operation
225 int (*stretch)(struct copybit_device_t *dev, member in struct:copybit_device_t
  /external/chromium_org/third_party/skia/src/gpu/
GrPathUtils.cpp 17 // stretch when mapping to screen coordinates.
18 SkScalar stretch = viewM.getMaxStretch(); local
21 if (stretch < 0) {
29 stretch = SkMaxScalar(stretch, mat.mapRadius(SK_Scalar1));
32 srcTol = SkScalarDiv(srcTol, stretch);
  /external/skia/src/gpu/
GrPathUtils.cpp 17 // stretch when mapping to screen coordinates.
18 SkScalar stretch = viewM.getMaxStretch(); local
21 if (stretch < 0) {
29 stretch = SkMaxScalar(stretch, mat.mapRadius(SK_Scalar1));
32 srcTol = SkScalarDiv(srcTol, stretch);
  /external/skia/tests/
MatrixTest.cpp 180 SkScalar stretch = mat.getMaxStretch(); local
182 if ((stretch < 0) != mat.hasPerspective()) {
183 stretch = mat.getMaxStretch();
186 REPORTER_ASSERT(reporter, (stretch < 0) == mat.hasPerspective());
193 // test a bunch of vectors. None should be scaled by more than stretch
195 // almost stretch.
211 REPORTER_ASSERT(reporter, SkScalarDiv(d, stretch) < gStretchTol);
216 REPORTER_ASSERT(reporter, SkScalarDiv(max, stretch) >= gMaxStretchTol);
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardServiceDelegate.java 282 final int stretch = ViewGroup.LayoutParams.MATCH_PARENT; local
285 stretch, stretch, type, flags, PixelFormat.TRANSLUCENT);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
NinePatchTexture.java 225 int nx = stretch(divX, divU, chunk.mDivX, tex.getWidth(), width);
226 int ny = stretch(divY, divV, chunk.mDivY, tex.getHeight(), height);
254 * @param div the stretch parts defined in nine-patch chunk
263 private static int stretch( method in class:NinePatchInstance
268 float stretch = 0; local
270 stretch += div[i + 1] - div[i];
273 float remaining = target - source + stretch;
289 float partX = remaining * partU / stretch;
291 stretch -= partU;
  /bionic/libc/kernel/common/linux/
fd.h 30 stretch; member in struct:floppy_struct
  /development/ndk/platforms/android-3/include/linux/
fd.h 23 stretch; member in struct:floppy_struct
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollView.cpp 337 IntSize stretch; local
341 stretch.setHeight(physicalScrollY);
343 stretch.setHeight(physicalScrollY - (contentsHeight() - visibleHeight()));
347 stretch.setWidth(physicalScrollX);
349 stretch.setWidth(physicalScrollX - (contentsWidth() - visibleWidth()));
351 return stretch;
    [all...]
  /external/kernel-headers/original/linux/
fd.h 18 stretch; /* !=0 means double track steps */ member in struct:floppy_struct
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardViewManager.java 285 final int stretch = ViewGroup.LayoutParams.MATCH_PARENT; local
288 stretch, stretch, type, flags, PixelFormat.TRANSLUCENT);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ExpandHelper.java 75 private static final int STRETCH = 1<<2;
122 startExpanding(underFocus, STRETCH);
310 float stretch = Math.abs((target - actual) / mMaximumStretch); local
311 float strength = 1f / (1f + (float) Math.pow(Math.E, -1 * ((8f * stretch) - 5f)));
312 if (DEBUG_GLOW) Log.d(TAG, "stretch: " + stretch + " strength: " + strength);
354 (0 != (mExpansionStyle & STRETCH) ? " (stretch)" : ""));
431 (0 != (mExpansionStyle & STRETCH) ? " (stretch)" : ""))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
fd.h 17 stretch; /* !=0 means double track steps */ member in struct:floppy_struct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
fd.h 17 stretch; /* !=0 means double track steps */ member in struct:floppy_struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
fd.h 17 stretch; /* !=0 means double track steps */ member in struct:floppy_struct
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
fd.h 23 stretch; member in struct:floppy_struct
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
fd.h 23 stretch; member in struct:floppy_struct

Completed in 966 milliseconds

1 2 3