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

1 2 3 4 5 6 7 8

  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_syswm.cc 50 BPoint pt; local
53 pt.x = x;
54 pt.y = y;
56 SDL_Win->ConvertToScreen(&pt);
58 set_mouse_position((int)pt.x, (int)pt.y);
66 BPoint pt; local
67 pt.x = (SDL_VideoSurface->w/2);
68 pt.y = (SDL_VideoSurface->h/2);
70 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 26 InvalidateArgs *pt = &t; local
30 pt->vttt(&y);
  /external/bluetooth/bluedroid/bta/gatt/
bta_gatts_utils.c 196 UINT8 *ps, *pt; local
224 pt = tu;
227 pt = tar.uu.uuid128;
229 return(memcmp(ps, pt, LEN_UUID_128) == 0);
  /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) {