Searched defs:cont (Results 1 - 25 of 28) sorted by relevance

12

/external/openssl/crypto/asn1/
H A Dx_bignum.c75 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
76 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
110 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
119 if(cont) {
120 if(pad) *cont++ = 0;
121 BN_bn2bin(bn, cont);
126 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, argument
132 if(!BN_bin2bn(cont, len, bn)) {
H A Dx_long.c72 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
73 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
103 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
129 if(cont) {
130 if(pad) *cont++ = (ltmp < 0) ? 0xff : 0;
132 cont[i] = (unsigned char)(utmp & 0xff);
133 if(ltmp < 0) cont[i] ^= 0xff;
140 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, argument
152 if(len && (cont[0] & 0x80)) neg = 1;
157 if(neg) utmp |= cont[
[all...]
H A Dtasn_dec.c773 const unsigned char *cont = NULL; local
853 cont = *in;
859 len = p - cont;
863 len = p - cont + plen;
893 cont = (const unsigned char *)buf.data;
898 cont = p;
904 if (!asn1_ex_c2i(pval, cont, len, utype, &free_cont, it))
916 int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, argument
928 return pf->prim_c2i(pval, cont, len, utype, free_cont, it);
950 if (!c2i_ASN1_OBJECT((ASN1_OBJECT **)pval, &cont, le
[all...]
H A Dtasn_enc.c572 unsigned char *cont, c; local
608 cont = otmp->data;
613 cont = NULL;
630 cont = &c;
681 cont = strtmp->data;
688 memcpy(cout, cont, len);
/external/dropbear/libtomcrypt/src/hashes/whirl/
H A Dwhirltab.c566 static const ulong64 cont[] = { variable
/external/grub/stage2/
H A Dcommon.c110 int cont; local
115 for (cont = 0, addr = mbi.mmap_addr;
126 cont++;
130 while (cont);
145 unsigned long cont, memtmp, addr; local
179 cont = 0;
183 cont = get_mmap_entry ((void *) addr, cont);
192 while (cont);
223 cont
[all...]
/external/openssl/crypto/bn/asm/
H A Dia64.S1394 #define cont p16 define
1398 cont=p16
1473 (p0) cmp.eq equ,cont=HH,r31 };;
1476 (equ) cmp.leu break,cont=r35,H };;
1477 { .mib; (cont) cmp.leu cont,break=HH,r31
1479 (cont) br.wtop.spnt .L_divw_1st_iter };;
1503 (p0) cmp.eq equ,cont=HH,r31 };;
1506 (equ) cmp.leu break,cont=r35,H };;
1507 { .mib; (cont) cm
[all...]
/external/icu4c/test/cintltst/
H A Duenumtst.c47 #define cont ((chArrayContext *)en->context) macro
51 if(cont->currUChar != NULL) {
52 free(cont->currUChar);
53 cont->currUChar = NULL;
60 return cont->maxIndex;
65 if(cont->currIndex >= cont->maxIndex) {
69 if(cont->currUChar == NULL) {
70 cont->currUChar = (UChar *)malloc(1024*sizeof(UChar));
73 cont
[all...]
/external/openssl/crypto/evp/
H A Dbio_b64.c88 int cont; /* <= 0 when finished */ member in struct:b64_struct
123 ctx->cont=1;
188 if (ctx->cont <= 0)
201 ctx->cont=i;
293 else if ((i < B64_BLOCK_SIZE) && (ctx->cont > 0))
477 ctx->cont=1;
483 if (ctx->cont <= 0)
H A Dbio_enc.c80 int cont; /* <= 0 when finished */ member in struct:enc_struct
118 ctx->cont=1;
175 if (ctx->cont <= 0) break;
186 ctx->cont=i;
204 ctx->cont=1;
228 return((ret == 0)?ctx->cont:ret);
306 if (ctx->cont <= 0)
H A Dbio_ok.c151 int cont; /* <= 0 when finished */ member in struct:ok_struct
188 ctx->cont=1;
275 if (ctx->cont <= 0) break;
308 ctx->cont= 0;
361 ctx->cont=1;
368 if (ctx->cont <= 0)
396 ctx->cont=(int)ret;
407 ret=(long)ctx->cont;
517 ctx->cont= 0;
572 ctx->cont
[all...]
/external/stlport/test/unit/
H A Dmap_test.cpp341 Container cont; local
342 cont.insert(value(Key(1), 1));
343 cont.insert(value(Key(2), 2));
344 cont.insert(value(Key(3), 3));
345 cont.insert(value(Key(4), 4));
347 CPPUNIT_ASSERT( cont.count(Key(1)) == 1 );
348 CPPUNIT_ASSERT( cont.count(1) == 1 );
349 CPPUNIT_ASSERT( cont.count(5) == 0 );
351 CPPUNIT_ASSERT( cont.find(2) != cont
366 Container cont; local
390 Container cont; local
415 Container cont; local
[all...]
H A Dunordered_test.cpp573 Container cont; local
574 cont.insert(Key(1));
575 cont.insert(Key(2));
576 cont.insert(Key(3));
577 cont.insert(Key(4));
579 CPPUNIT_ASSERT( cont.count(Key(1)) == 1 );
580 CPPUNIT_ASSERT( cont.count(1) == 1 );
581 CPPUNIT_ASSERT( cont.count(5) == 0 );
583 CPPUNIT_ASSERT( cont.find(2) != cont
594 Container cont; local
614 Container cont; local
635 Container cont; local
[all...]
/external/bluetooth/hcidump/parser/
H A Dsdp.c574 uint8_t cont = buf[0]; local
578 printf("cont");
579 for (i = 0; i < cont + 1; i++)
681 uint8_t cont; local
760 cont = *(unsigned char *)(frm->ptr + count);
762 if (cont == 0) {
793 cont = *(unsigned char *)(frm->ptr + count);
795 if (cont == 0) {
/external/quake/quake/src/QW/server/
H A Dsv_phys.c675 int cont; local
677 cont = SV_PointContents (ent->v.origin);
680 ent->v.watertype = cont;
685 if (cont <= CONTENTS_WATER)
691 ent->v.watertype = cont;
701 ent->v.waterlevel = cont;
/external/quake/quake/src/QW/client/
H A Dpmove.c577 int cont; local
620 cont = PM_PointContents (point);
622 if (cont <= CONTENTS_WATER)
624 watertype = cont;
627 cont = PM_PointContents (point);
628 if (cont <= CONTENTS_WATER)
632 cont = PM_PointContents (point);
633 if (cont <= CONTENTS_WATER)
694 int cont; local
712 cont
[all...]
/external/quake/quake/src/WinQuake/
H A Dworld.cpp529 int cont; local
531 cont = SV_HullPointContents (&sv.worldmodel->hulls[0], 0, p);
532 if (cont <= CONTENTS_CURRENT_0 && cont >= CONTENTS_CURRENT_DOWN)
533 cont = CONTENTS_WATER;
534 return cont;
H A Dsv_phys.cpp811 int cont; local
822 cont = SV_PointContents (point);
823 if (cont <= CONTENTS_WATER)
828 ent->u.v.watertype = cont;
831 cont = SV_PointContents (point);
832 if (cont <= CONTENTS_WATER)
836 cont = SV_PointContents (point);
837 if (cont <= CONTENTS_WATER)
1200 int cont; local
1207 cont
[all...]
/external/e2fsprogs/e2fsck/
H A Dunix.c174 int cont; local
208 cont = ask_yn(_("Do you really want to continue"), -1);
209 if (!cont) {
/external/freetype/src/truetype/
H A Dttgload.c342 FT_Short *cont, *cont_limit, prev_cont; local
352 cont = gloader->current.outline.contours;
353 cont_limit = cont + n_contours;
362 cont[0] = prev_cont;
364 for ( cont++; cont < cont_limit; cont++ )
366 cont[0] = FT_NEXT_USHORT( p );
367 if ( cont[0] <= prev_cont )
373 prev_cont = cont[
[all...]
/external/grub/grub/
H A Dasmstub.c390 get_mmap_entry (struct mmar_desc *desc, int cont) argument
420 if (cont < 0 || cont >= num)
428 *desc = desc_table[cont++];
431 if (cont < num)
432 return cont;
/external/icu4c/i18n/
H A Dbmsearch.cpp178 UBool cont = FALSE; local
198 cont = isContinuation(order);
210 if (cont) {
228 UBool cont = FALSE; local
247 cont = isContinuation(order);
261 if (cont) {
H A Dcolldata.cpp88 UBool cont = isContinuation(order); local
104 if (cont) {
/external/webkit/WebCore/rendering/
H A DRenderInline.cpp376 RenderBoxModelObject* cont = nextContinuation(flow); local
377 if (cont)
378 beforeChildParent = cont;
/external/svox/pico/lib/
H A Dpicokdt.c1310 picoos_uint8 cont; local
1378 cont = TRUE;
1379 for (j = 0; cont && (j < ilen); j++) {
1381 cont = FALSE;
1384 if (cont && (j == ilen)) { /* match found */

Completed in 611 milliseconds

12