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

1 2 3 4 5 6 7

  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_syswm.cc 49 BPoint pt; local
52 pt.x = x;
53 pt.y = y;
55 SDL_Win->ConvertToScreen(&pt);
57 set_mouse_position((int)pt.x, (int)pt.y);
65 BPoint pt; local
66 pt.x = (SDL_VideoSurface->w/2);
67 pt.y = (SDL_VideoSurface->h/2);
69 SDL_Win->ConvertToScreen(&pt);
    [all...]
SDL_sysmouse.cc 131 BPoint pt; local
132 SDL_Win->GetXYOffset(pt.x, pt.y);
133 pt.x += x;
134 pt.y += y;
136 SDL_Win->ConvertToScreen(&pt);
138 set_mouse_position((int32)pt.x, (int32)pt.y);
  /external/clang/test/Analysis/
method-call-intra-p.cpp 25 InvalidateArgs *pt = &t; local
29 pt->vttt(&y);
  /external/dropbear/libtomcrypt/testprof/
modes_test.c 6 unsigned char pt[64], ct[64], tmp[64], key[16], iv[16], iv2[16]; local
19 /* make a random pt, key and iv */
20 yarrow_read(pt, 64, &yarrow_prng);
49 DO(cbc_encrypt(pt, ct, 64, &cbc));
55 if (memcmp(tmp, pt, 64) != 0) {
72 DO(cfb_encrypt(pt, ct, 64, &cfb));
78 if (memcmp(tmp, pt, 64) != 0) {
94 DO(ofb_encrypt(pt, ct, 64, &ofb));
100 if (memcmp(tmp, pt, 64) != 0) {
  /external/jmonkeyengine/engine/src/test/jme3test/bounding/
TestRayCollision.java 59 Vector3f pt = res.getCollision(i).getContactPoint(); local
61 System.out.println("point: "+pt);
  /external/kernel-headers/original/linux/
sw_sync.h 33 struct sync_pt pt; member in struct:sw_sync_pt
  /external/opencv/cv/src/
_cvgeom.h 74 CvPoint pt; /* Coordinates x and y of the vertex which don't lie on the base line LMIAT */ member in struct:_CvTrianAttr
  /external/opencv/cvaux/src/
cvcreatehandmask.cpp 58 CvPoint pt; local
83 CV_READ_SEQ_ELEM( pt, reader );
85 i_min = CV_MIN2( i_min, pt.y );
86 i_max = CV_MAX2( i_max, pt.y );
87 j_min = CV_MIN2( j_min, pt.x );
88 j_max = CV_MAX2( j_max, pt.x );
90 *(image_mask + pt.y * step + pt.x) = 255;
  /external/openssl/crypto/hmac/
hmactest.c 123 static char *pt(unsigned char *md);
145 p=pt(HMAC(EVP_md5(),
165 static char *pt(unsigned char *md) function
  /external/openssl/crypto/md4/
md4.c 66 void pt(unsigned char *md);
116 pt(md);
119 void pt(unsigned char *md) function
md4test.c 96 static char *pt(unsigned char *md);
110 p=pt(md);
127 static char *pt(unsigned char *md) function
  /external/openssl/crypto/md5/
md5.c 66 void pt(unsigned char *md);
116 pt(md);
119 void pt(unsigned char *md) function
md5test.c 96 static char *pt(unsigned char *md);
110 p=pt(md);
131 static char *pt(unsigned char *md) function
  /external/openssl/crypto/ripemd/
rmd160.c 66 void pt(unsigned char *md);
116 pt(md);
119 void pt(unsigned char *md) function
rmdtest.c 102 static char *pt(unsigned char *md);
119 p=pt(md);
136 static char *pt(unsigned char *md) function
  /external/openssl/crypto/sha/
sha.c 66 void pt(unsigned char *md);
113 pt(md);
116 void pt(unsigned char *md) function
sha1.c 66 void pt(unsigned char *md);
116 pt(md);
119 void pt(unsigned char *md) function
sha1test.c 105 static char *pt(unsigned char *md);
127 p=pt(md);
149 p=pt(md);
169 static char *pt(unsigned char *md) function
shatest.c 105 static char *pt(unsigned char *md);
127 p=pt(md);
149 p=pt(md);
169 static char *pt(unsigned char *md) function
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_syswm.c 268 POINT pt; local
271 pt.x = x;
272 pt.y = y;
273 ClientToScreen(SDL_Window, &pt);
274 SetCursorPos(pt.x,pt.y);
285 POINT pt; local
286 pt.x = (SDL_VideoSurface->w/2);
287 pt.y = (SDL_VideoSurface->h/2);
288 ClientToScreen(SDL_Window, &pt);
    [all...]
  /external/skia/src/utils/
SkBoundaryPatch.cpp 22 SkPoint pt; local
23 pt.set(x, y);
24 return pt;
  /sdk/ddms/app/src/com/android/ddms/
DropdownSelectionListener.java 71 Point pt = item.getParent().toDisplay(new Point(rect.x, rect.y)); local
72 mMenu.setLocation(pt.x, pt.y + rect.height);
  /external/bluetooth/bluez/audio/
rtp.h 32 unsigned pt:7; member in struct:rtp_header
58 unsigned pt:7; member in struct:rtp_header
  /external/skia/src/effects/
Sk1DPathEffect.cpp 88 SkPoint pt; local
90 pt.set(sx, sy);
94 matrix.mapPoints(&dst[i], &pt, 1);
  /external/webkit/Source/WebKit/win/
WebDropSource.cpp 97 POINTL pt; local
98 ::GetCursorPos((LPPOINT)&pt);
99 POINTL localpt = pt;
103 return PlatformMouseEvent(IntPoint(localpt.x, localpt.y), IntPoint(pt.x, pt.y),

Completed in 405 milliseconds

1 2 3 4 5 6 7