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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /bionic/libc/tzcode/
strftime.c 197 _fmt(format, t, pt, ptlim, warnp, locale)
200 char * pt;
214 pt = _add((t->tm_wday < 0 ||
217 pt, ptlim, modifier);
220 pt = _add((t->tm_wday < 0 ||
223 pt, ptlim, modifier);
227 pt = _add((t->tm_mon < 0 ||
230 pt, ptlim, modifier);
232 pt = _add((t->tm_mon < 0 ||
235 pt, ptlim, modifier)
    [all...]
  /external/yaffs2/yaffs2/
yaffs_packedtags1.c 4 void yaffs_PackTags1(yaffs_PackedTags1 * pt, const yaffs_ExtendedTags * t)
6 pt->chunkId = t->chunkId;
7 pt->serialNumber = t->serialNumber;
8 pt->byteCount = t->byteCount;
9 pt->objectId = t->objectId;
10 pt->ecc = 0;
11 pt->deleted = (t->chunkDeleted) ? 0 : 1;
12 pt->unusedStuff = 0;
13 pt->shouldBeFF = 0xFFFFFFFF;
17 void yaffs_UnpackTags1(yaffs_ExtendedTags * t, const yaffs_PackedTags1 * pt)
    [all...]
yaffs_packedtags2.c 46 static void yaffs_DumpPackedTags2(const yaffs_PackedTags2 * pt)
50 pt->t.objectId, pt->t.chunkId, pt->t.byteCount,
51 pt->t.sequenceNumber));
66 void yaffs_PackTags2(yaffs_PackedTags2 * pt, const yaffs_ExtendedTags * t)
68 pt->t.chunkId = t->chunkId;
69 pt->t.sequenceNumber = t->sequenceNumber;
70 pt->t.byteCount = t->byteCount;
71 pt->t.objectId = t->objectId
    [all...]
yaffs_packedtags1.h 20 void yaffs_PackTags1(yaffs_PackedTags1 * pt, const yaffs_ExtendedTags * t);
21 void yaffs_UnpackTags1(yaffs_ExtendedTags * t, const yaffs_PackedTags1 * pt);
yaffs_packedtags2.h 21 void yaffs_PackTags2(yaffs_PackedTags2 * pt, const yaffs_ExtendedTags * t);
22 void yaffs_UnpackTags2(yaffs_ExtendedTags * t, yaffs_PackedTags2 * pt);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pt2258.h 34 extern int snd_pt2258_reset(struct snd_pt2258 *pt);
35 extern int snd_pt2258_build_controls(struct snd_pt2258 *pt);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pt2258.h 34 extern int snd_pt2258_reset(struct snd_pt2258 *pt);
35 extern int snd_pt2258_build_controls(struct snd_pt2258 *pt);
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_decrypt.c 24 @param pt [out] The plaintext
28 int eax_decrypt(eax_state *eax, const unsigned char *ct, unsigned char *pt,
34 LTC_ARGCHK(pt != NULL);
43 return ctr_decrypt(ct, pt, length, &eax->ctr);
eax_encrypt.c 23 @param pt The plaintext to encrypt
28 int eax_encrypt(eax_state *eax, const unsigned char *pt, unsigned char *ct,
34 LTC_ARGCHK(pt != NULL);
38 if ((err = ctr_encrypt(pt, ct, length, &eax->ctr)) != CRYPT_OK) {
  /external/dropbear/libtomcrypt/src/encauth/ocb/
ocb_done_encrypt.c 23 @param pt Remaining plaintext (if any)
30 int ocb_done_encrypt(ocb_state *ocb, const unsigned char *pt, unsigned long ptlen,
34 LTC_ARGCHK(pt != NULL);
38 return s_ocb_done(ocb, pt, ptlen, ct, tag, taglen, 0);
  /external/dropbear/libtomcrypt/src/modes/ctr/
ctr_decrypt.c 23 @param pt [out] Plaintext
28 int ctr_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_CTR *ctr)
30 LTC_ARGCHK(pt != NULL);
34 return ctr_encrypt(ct, pt, len, ctr);
  /external/dropbear/libtomcrypt/src/modes/f8/
f8_decrypt.c 23 @param pt [out] Plaintext
28 int f8_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_F8 *f8)
30 LTC_ARGCHK(pt != NULL);
33 return f8_encrypt(ct, pt, len, f8);
  /external/dropbear/libtomcrypt/src/modes/ofb/
ofb_decrypt.c 23 @param pt [out] Plaintext
28 int ofb_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_OFB *ofb)
30 LTC_ARGCHK(pt != NULL);
33 return ofb_encrypt(ct, pt, len, ofb);
  /external/quake/quake/src/QW/gas2masm/
gas2masm.c 106 char *pt; local
109 pt = tokens[tnum];
111 if (pt[0] == '%')
116 if (!strcmpi (pt, reglist[i].text))
123 fprintf (stderr, "Error: bad register %s\n", pt);
126 else if (pt[0] == '$')
129 if (pt[1] == '(')
131 if ((pt[2] > '9') || (pt[2] < '0'))
138 while ((pt[i] != ')') || (parencount > 1))
    [all...]
  /external/quake/quake/src/WinQuake/gas2masm/
gas2masm.c 106 char *pt; local
109 pt = tokens[tnum];
111 if (pt[0] == '%')
116 if (!strcmpi (pt, reglist[i].text))
123 fprintf (stderr, "Error: bad register %s\n", pt);
126 else if (pt[0] == '$')
129 if (pt[1] == '(')
131 if ((pt[2] > '9') || (pt[2] < '0'))
138 while ((pt[i] != ')') || (parencount > 1))
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
802.11e.h 91 #define WLC_CAC_GET_TID(pt) ((((pt).octets[0]) & TS_INFO_TID_MASK) >> TS_INFO_TID_SHIFT)
92 #define WLC_CAC_GET_DIR(pt) ((((pt).octets[0]) & \
94 #define WLC_CAC_GET_PSB(pt) ((((pt).octets[1]) & TS_INFO_PSB_MASK) >> TS_INFO_PSB_SHIFT)
95 #define WLC_CAC_GET_USER_PRIO(pt) ((((pt).octets[1]) & \
98 #define WLC_CAC_SET_TID(pt, id) ((((pt).octets[0]) & (~TS_INFO_TID_MASK)) |
    [all...]
  /external/dropbear/libtomcrypt/src/modes/lrw/
lrw_decrypt.c 23 @param pt [out] The plaintext
27 int lrw_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_LRW *lrw)
31 LTC_ARGCHK(pt != NULL);
40 return cipher_descriptor[lrw->cipher].accel_lrw_decrypt(ct, pt, len, lrw->IV, lrw->tweak, &lrw->key);
43 return lrw_process(ct, pt, len, LRW_DECRYPT, lrw);
lrw_encrypt.c 22 @param pt The plaintext
27 int lrw_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_LRW *lrw)
31 LTC_ARGCHK(pt != NULL);
40 return cipher_descriptor[lrw->cipher].accel_lrw_encrypt(pt, ct, len, lrw->IV, lrw->tweak, &lrw->key);
43 return lrw_process(pt, ct, len, LRW_ENCRYPT, lrw);
  /external/skia/gm/
bigmatrix.cpp 48 SkPoint pt = {10 * SK_Scalar1, 10 * SK_Scalar1}; local
51 m.mapPoints(&pt, 1);
52 path.addCircle(pt.fX, pt.fY, small);
55 pt.set(30 * SK_Scalar1, 10 * SK_Scalar1);
56 m.mapPoints(&pt, 1);
57 SkRect rect = {pt.fX - small, pt.fY - small,
58 pt.fX + small, pt.fY + small}
    [all...]
  /external/llvm/docs/_static/
llvm.css 17 tr, td { border: 2px solid gray; padding: 4pt 4pt 2pt 2pt; }
33 padding-left: 8pt;
38 h1, .doc_title, .title { text-align: left; font-size: 25pt }
40 h2, .doc_section { text-align: center; font-size: 22pt;
41 margin: 20pt 0pt 5pt 0pt;
    [all...]
  /external/dropbear/libtomcrypt/src/modes/ecb/
ecb_decrypt.c 23 @param pt [out] Plaintext
28 int ecb_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_ECB *ecb)
31 LTC_ARGCHK(pt != NULL);
43 return cipher_descriptor[ecb->cipher].accel_ecb_decrypt(ct, pt, len / cipher_descriptor[ecb->cipher].block_length, &ecb->key);
46 if ((err = cipher_descriptor[ecb->cipher].ecb_decrypt(ct, pt, &ecb->key)) != CRYPT_OK) {
49 pt += cipher_descriptor[ecb->cipher].block_length;
ecb_encrypt.c 22 @param pt Plaintext
28 int ecb_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_ECB *ecb)
31 LTC_ARGCHK(pt != NULL);
43 return cipher_descriptor[ecb->cipher].accel_ecb_encrypt(pt, ct, len / cipher_descriptor[ecb->cipher].block_length, &ecb->key);
46 if ((err = cipher_descriptor[ecb->cipher].ecb_encrypt(pt, ct, &ecb->key)) != CRYPT_OK) {
49 pt += cipher_descriptor[ecb->cipher].block_length;
  /external/openssl/crypto/aes/
aes_locl.h 70 # define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3]))
  /external/opencv/cv/src/
cvsnakes.cpp 56 // pt - pointer to snake points array
74 CvPoint * pt,
125 if( pt == NULL )
177 int diffx = pt[i - 1].x - pt[i].x;
178 int diffy = pt[i - 1].y - pt[i].y;
182 ave_d += cvSqrt( (float) ((pt[0].x - pt[n - 1].x) *
183 (pt[0].x - pt[n - 1].x)
    [all...]

Completed in 2276 milliseconds

1 2 3 4 5 6 7 8 91011>>