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

1 2

  /external/valgrind/main/none/tests/s390x/
stfle.c 7 unsigned long long stfle(unsigned long dw, unsigned bit_to_test)
10 register unsigned long long __nr asm("0") = dw - 1;
31 int dw = S390_NUM_FACILITY_DW; local
35 if ((stfle(dw, 1)) && stfle(dw, 2))
41 if (stfle(dw, 7))
46 /* Test #3: Tell STFLE to only write 1 DW of facility bits. Expected condition
49 dw = 1;
50 if ((stfle(dw, 1)) && stfle(dw, 2)
    [all...]
  /external/elfutils/libdwfl/
dwfl_getdwarf.c 66 Dwarf *dw = INTUSE(dwfl_module_getdwarf) (mod, &bias); local
67 return (*info->callback) (mod, userdata, name, start, dw, bias, info->arg);
libdwflP.h 170 Dwarf *dw; /* libdw handle for its debugging info. */ member in struct:Dwfl_Module
189 /* Information cached about each CU in Dwfl_Module.dw. */
  /frameworks/base/tools/aapt/
CrunchCache.cpp 85 DirectoryWalker* dw = new SystemDirectoryWalker(); local
88 mFileFinder->findFiles(mSourcePath, mExtensions, mSourceFiles,dw);
91 mFileFinder->findFiles(mDestPath,mExtensions,mDestFiles,dw);
93 delete dw;
  /frameworks/base/core/java/android/text/style/
DrawableMarginSpan.java 50 int dw = mDrawable.getIntrinsicWidth(); local
54 mDrawable.setBounds(ix, itop, ix+dw, itop+dh);
  /frameworks/base/services/java/com/android/server/wm/
StrictModeFlash.java 57 final int dw = mLastDW; local
60 Rect dirty = new Rect(0, 0, dw, dh);
72 c.clipRect(new Rect(0, 0, dw, mThickness), Region.Op.REPLACE);
78 c.clipRect(new Rect(dw - mThickness, 0, dw, dh), Region.Op.REPLACE);
81 c.clipRect(new Rect(0, dh - mThickness, dw, dh), Region.Op.REPLACE);
101 void positionSurface(int dw, int dh) {
102 if (mLastDW == dw && mLastDH == dh) {
105 mLastDW = dw;
107 mSurface.setSize(dw, dh)
    [all...]
DimAnimator.java 73 final int dw = (int) (params.mDimWidth * 1.5); local
79 " DIM " + mDimSurface + ": SHOW pos=(0,0) (" + dw + "x" + dh + ")");
82 mLastDimWidth = dw;
85 mDimSurface.setPosition(-1 * dw / 6, -1 * dh /6);
86 mDimSurface.setSize(dw, dh);
91 } else if (mLastDimWidth != dw || mLastDimHeight != dh) {
92 mLastDimWidth = dw;
94 mDimSurface.setSize(dw, dh);
96 mDimSurface.setPosition(-1 * dw / 6, -1 * dh /6);
Watermark.java 123 void positionSurface(int dw, int dh) {
124 if (mLastDW != dw || mLastDH != dh) {
125 mLastDW = dw;
127 mSurface.setSize(dw, dh);
134 final int dw = mLastDW; local
138 Rect dirty = new Rect(0, 0, dw, dh);
153 int div = (dw+mTextWidth)/deltaX;
154 int rem = (dw+mTextWidth) - (div*deltaX);
165 if (x >= dw) {
166 x -= (dw+mTextWidth)
    [all...]
WindowAnimator.java 140 final int dw = mDw; local
142 mWindowAnimationBackgroundSurface.show(dw, dh,
  /external/elfutils/src/
findtextrel.c 100 GElf_Addr addr, Elf *elf, Elf_Scn *symscn, Dwarf *dw,
360 Dwarf *dw = dwarf_begin_elf (elf, DWARF_C_READ, NULL); local
364 if (dw == NULL && fname[0] == '/')
380 dw = dwarf_begin_elf (elf2, DWARF_C_READ, NULL);
435 symscn, dw, fname, more_than_one, &knownsrcs);
458 symscn, dw, fname, more_than_one, &knownsrcs);
463 dwarf_end (dw);
492 GElf_Addr addr, Elf *elf, Elf_Scn *symscn, Dwarf *dw,
506 if ((die = dwarf_addrdie (dw, addr, &die_mem)) != NULL
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector4f.java 366 double dw = w - v.w; local
367 return (float) (dx * dx + dy * dy + dz * dz + dw * dw);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarIconView.java 249 int dw = r.left + tw + r.right; local
250 if (dw < mNumberBackground.getMinimumWidth()) {
251 dw = mNumberBackground.getMinimumWidth();
253 mNumberX = w-r.right-((dw-r.right-r.left)/2);
259 mNumberBackground.setBounds(w-dw, h-dh, w, h);
  /packages/apps/Launcher2/src/com/android/launcher2/
Cling.java 241 int dw = (int) (scale * mPunchThroughGraphic.getIntrinsicWidth()); local
251 mPunchThroughGraphic.setBounds(cx - dw/2, cy - dh/2, cx + dw/2, cy + dh/2);
  /external/libvpx/vpx_scale/generic/
vpxscale.c 617 int dw = (hscale - 1 + src->y_width * hratio) / hscale; local
622 (unsigned char *) dst->y_buffer, dst->y_stride, dw, dh,
625 if (dw < (int)dst->y_width)
627 duck_memset(dst->y_buffer + i * dst->y_stride + dw - 1, dst->y_buffer[i*dst->y_stride+dw-2], dst->y_width - dw + 1);
634 (unsigned char *) dst->u_buffer, dst->uv_stride, dw / 2, dh / 2,
637 if (dw / 2 < (int)dst->uv_width)
639 duck_memset(dst->u_buffer + i * dst->uv_stride + dw / 2 - 1, dst->u_buffer[i*dst->uv_stride+dw/2-2], dst->uv_width - dw / 2 + 1)
898 int dw = scale_vars->expanded_frame_width; local
937 dst_yuv_config->uv_stride, dw, dh); local
943 dst_yuv_config->uv_stride, dw, dh); local
    [all...]
  /external/skia/src/effects/
SkBlurMask.cpp 116 int dw = sw + 2*rx; local
129 for (int x = 0; x < dw; x++) {
152 for (int x = 0; x < dw; x++) {
180 int dw = sw + 2*rx; local
186 SkASSERT(2*rx <= dw - 2*rx);
216 for (; x < dw - 2*rx - 4; x += 4) {
234 for (; x < dw - 2*rx; x++) {
245 for (; x < dw; x++) {
283 int dw = sw + 2*rx; local
299 for (int x = 0; x < dw; x++)
374 int dw = sw + 2*rx; local
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuItemView.java 248 final int dw = mIcon.getIntrinsicWidth(); local
249 super.setPadding((w - dw) / 2, getPaddingTop(), getPaddingRight(), getPaddingBottom());
  /external/chromium/third_party/libjingle/source/talk/base/
physicalsocketserver.cc 1487 DWORD dw = WSAWaitForMultipleEvents(static_cast<DWORD>(events.size()), local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ArmatureModifier.java 287 Pointer pDW = (Pointer) dvert.getFieldValue("dw");
291 List<Structure> dw = pDW.fetchData(blenderContext.getInputStream()); local
292 for (Structure deformWeight : dw) {
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
TextureAtlas.java 600 int dw = location.getWidth() - image.getWidth(); local
603 if (dw > dh) {
  /frameworks/native/libs/gui/
SurfaceTexture.cpp 680 int32_t dw = (newWidth - mCurrentCrop.width())/2; local
681 outCrop.left -=dw;
682 outCrop.right += dw;
  /external/opencv/cv/src/
cvsurf.cpp 282 float DW[PATCH_SZ][PATCH_SZ];
283 CvMat _DW = cvMat(PATCH_SZ, PATCH_SZ, CV_32F, DW);
322 DW[i][j] = (float)val;
476 float dw = DW[i][j]; local
477 float vx = (PATCH[i][j+1] - PATCH[i][j] + PATCH[i+1][j+1] - PATCH[i+1][j])*dw;
478 float vy = (PATCH[i+1][j] - PATCH[i][j] + PATCH[i+1][j+1] - PATCH[i][j+1])*dw;
  /external/opencv/ml/src/
mlann_mlp.cpp 878 CvMat* dw = 0; local
903 CV_CALL( dw = cvCreateMat( wbuf->rows, wbuf->cols, wbuf->type ));
904 cvZero( dw );
1021 cvInitMatHeader( &_dw, n1+1, n2, CV_64F, dw->data.db + (weights[i] - weights[0]) );
1040 cvReleaseMat( &dw );
1052 CvMat* dw = 0; local
1084 CV_CALL( dw = cvCreateMat( wbuf->rows, wbuf->cols, wbuf->type ));
1085 cvSet( dw, cvScalarAll(params.rp_dw0) );
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit_A.c 1806 Uint32 sw, dw, s; local
1851 Uint32 dw = *(Uint32 *)dstp; local
    [all...]
  /frameworks/base/core/java/android/widget/
ProgressBar.java 1065 int dw = 0; local
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java 1008 int dw = 0; local
    [all...]

Completed in 1541 milliseconds

1 2