Searched refs:pt (Results 1 - 25 of 357) sorted by relevance

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_syswm.cc50 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...]
/external/yaffs2/yaffs2/
H A Dyaffs_packedtags1.c4 void yaffs_PackTags1(yaffs_PackedTags1 * pt, const yaffs_ExtendedTags * t) argument
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) argument
[all...]
H A Dyaffs_packedtags2.c46 static void yaffs_DumpPackedTags2(const yaffs_PackedTags2 * pt) argument
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) argument
68 pt->t.chunkId = t->chunkId;
69 pt->t.sequenceNumber = t->sequenceNumber;
70 pt->t.byteCount = t->byteCount;
71 pt
110 yaffs_UnpackTags2(yaffs_ExtendedTags * t, yaffs_PackedTags2 * pt) argument
[all...]
H A Dyaffs_packedtags1.h20 void yaffs_PackTags1(yaffs_PackedTags1 * pt, const yaffs_ExtendedTags * t);
21 void yaffs_UnpackTags1(yaffs_ExtendedTags * t, const yaffs_PackedTags1 * pt);
H A Dyaffs_packedtags2.h21 void yaffs_PackTags2(yaffs_PackedTags2 * pt, const yaffs_ExtendedTags * t);
22 void yaffs_UnpackTags2(yaffs_ExtendedTags * t, yaffs_PackedTags2 * pt);
/external/dropbear/libtomcrypt/src/encauth/eax/
H A Deax_decrypt.c24 @param pt [out] The plaintext
28 int eax_decrypt(eax_state *eax, const unsigned char *ct, unsigned char *pt, argument
34 LTC_ARGCHK(pt != NULL);
43 return ctr_decrypt(ct, pt, length, &eax->ctr);
H A Deax_encrypt.c23 @param pt The plaintext to encrypt
28 int eax_encrypt(eax_state *eax, const unsigned char *pt, unsigned char *ct, argument
34 LTC_ARGCHK(pt != NULL);
38 if ((err = ctr_encrypt(pt, ct, length, &eax->ctr)) != CRYPT_OK) {
/external/dropbear/libtomcrypt/src/encauth/ocb/
H A Docb_done_encrypt.c23 @param pt Remaining plaintext (if any)
30 int ocb_done_encrypt(ocb_state *ocb, const unsigned char *pt, unsigned long ptlen, argument
34 LTC_ARGCHK(pt != NULL);
38 return s_ocb_done(ocb, pt, ptlen, ct, tag, taglen, 0);
/external/dropbear/libtomcrypt/src/modes/ctr/
H A Dctr_decrypt.c23 @param pt [out] Plaintext
28 int ctr_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_CTR *ctr) argument
30 LTC_ARGCHK(pt != NULL);
34 return ctr_encrypt(ct, pt, len, ctr);
/external/dropbear/libtomcrypt/src/modes/f8/
H A Df8_decrypt.c23 @param pt [out] Plaintext
28 int f8_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_F8 *f8) argument
30 LTC_ARGCHK(pt != NULL);
33 return f8_encrypt(ct, pt, len, f8);
/external/dropbear/libtomcrypt/src/modes/ofb/
H A Dofb_decrypt.c23 @param pt [out] Plaintext
28 int ofb_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_OFB *ofb) argument
30 LTC_ARGCHK(pt != NULL);
33 return ofb_encrypt(ct, pt, len, ofb);
/external/quake/quake/src/QW/gas2masm/
H A Dgas2masm.c106 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[
[all...]
/external/quake/quake/src/WinQuake/gas2masm/
H A Dgas2masm.c106 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[
[all...]
/external/dropbear/libtomcrypt/src/modes/lrw/
H A Dlrw_decrypt.c23 @param pt [out] The plaintext
27 int lrw_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_LRW *lrw) argument
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);
H A Dlrw_encrypt.c22 @param pt The plaintext
27 int lrw_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_LRW *lrw) argument
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/llvm/docs/_static/
H A Dllvm.css17 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
[all...]
/external/dropbear/libtomcrypt/src/modes/ecb/
H A Decb_decrypt.c23 @param pt [out] Plaintext
28 int ecb_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_ECB *ecb) argument
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;
H A Decb_encrypt.c22 @param pt Plaintext
28 int ecb_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_ECB *ecb) argument
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/
H A Daes_locl.h70 # define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3]))
/external/opencv/cv/src/
H A Dcvsnakes.cpp56 // 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[
71 icvSnake8uC1R( unsigned char *src, int srcStep, CvSize roi, CvPoint * pt, int n, float *alpha, float *beta, float *gamma, int coeffUsage, CvSize win, CvTermCriteria criteria, int scheme ) argument
[all...]
/external/libppp/src/
H A Dtimer.c80 struct pppTimer *t, *pt; local
104 pt = NULL;
109 pt = t;
123 if (pt) {
124 pt->next = tp;
139 struct pppTimer *t, *pt; local
150 pt = NULL;
152 pt = t;
155 if (pt)
156 pt
238 struct pppTimer *pt; local
[all...]
/external/dropbear/libtomcrypt/src/modes/cfb/
H A Dcfb_decrypt.c23 @param pt [out] Plaintext
28 int cfb_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_CFB *cfb) argument
32 LTC_ARGCHK(pt != NULL);
54 *pt = *ct ^ cfb->IV[cfb->padlen];
55 ++pt;
H A Dcfb_encrypt.c22 @param pt Plaintext
28 int cfb_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_CFB *cfb) argument
32 LTC_ARGCHK(pt != NULL);
53 cfb->pad[cfb->padlen] = (*ct = *pt ^ cfb->IV[cfb->padlen]);
54 ++pt;
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_cipher.h340 @param pt The plaintext
345 int (*ecb_encrypt)(const unsigned char *pt, unsigned char *ct, symmetric_key *skey);
348 @param pt [out] The plaintext
352 int (*ecb_decrypt)(const unsigned char *ct, unsigned char *pt, symmetric_key *skey);
371 @param pt Plaintext
377 int (*accel_ecb_encrypt)(const unsigned char *pt, unsigned char *ct, unsigned long blocks, symmetric_key *skey);
380 @param pt Plaintext
386 int (*accel_ecb_decrypt)(const unsigned char *ct, unsigned char *pt, unsigned long blocks, symmetric_key *skey);
389 @param pt Plaintext
396 int (*accel_cbc_encrypt)(const unsigned char *pt, unsigne
[all...]
/external/opencv/cvaux/src/
H A Dcvcreatehandmask.cpp58 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;

Completed in 268 milliseconds

1234567891011>>