/bionic/libc/string/ |
strspn.c | 45 cont: 49 goto cont;
|
strtok.c | 54 cont: 58 goto cont;
|
/external/icu4c/test/cintltst/ |
uenumtst.c | 47 #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->currChar = (cont->array)[cont->currIndex] [all...] |
/external/stlport/test/unit/ |
map_test.cpp | 341 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.end() ) 366 Container cont; local 390 Container cont; local 415 Container cont; local [all...] |
unordered_test.cpp | 573 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.end() ) 594 Container cont; local 614 Container cont; local 635 Container cont; local [all...] |
ptrspec_test.cpp | 48 #define TEST_INSTANCIATE_CONTAINER(cont) \ 49 template class cont<int*>; \ 50 template class cont<int const*>; \ 51 template class cont<int volatile*>; \ 52 template class cont<int const volatile*>
|
/external/openssl/crypto/asn1/ |
x_long.c | 72 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) 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, 152 if(len && (cont[0] & 0x80)) neg = 1; 157 if(neg) utmp |= cont[i] ^ 0xff [all...] |
x_bignum.c | 75 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) 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, 132 if(!BN_bin2bn(cont, len, bn)) {
|
tasn_dec.c | 773 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, 928 return pf->prim_c2i(pval, cont, len, utype, free_cont, it); 950 if (!c2i_ASN1_OBJECT((ASN1_OBJECT **)pval, &cont, len) [all...] |
/external/grub/stage2/ |
common.c | 110 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 = memtmp & ~0xFFFF [all...] |
/external/kernel-headers/original/linux/ |
attribute_container.h | 39 int attribute_container_register(struct attribute_container *cont); 40 int attribute_container_unregister(struct attribute_container *cont); 62 int attribute_container_add_class_device_adapter(struct attribute_container *cont,
|
/external/v8/test/mjsunit/ |
try.js | 178 var cont = true; 179 while (cont) { 183 cont = false; 197 var cont = true; 198 while (cont) { 202 cont = false; 287 var cont = true; 288 while (cont) { 294 cont = false; 311 var cont = true [all...] |
/external/qemu/slirp/ |
cksum.c | 64 goto cont; 101 goto cont; 121 cont:
|
/external/qemu/slirp-android/ |
cksum.c | 64 goto cont; 101 goto cont; 121 cont:
|
/external/clearsilver/scripts/ |
document.py | 96 cont = None 129 cont = "func" 135 cont = "desc" 140 cont = "args" 145 cont = "retr" 150 cont = "out" 156 cont = "other" 161 if cont == "func": 163 elif cont == "desc": 165 elif cont == "args" [all...] |
/external/openssl/crypto/evp/ |
bio_ok.c | 151 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= 0 [all...] |
bio_enc.c | 80 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)
|
bio_b64.c | 88 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)
|
/external/quake/quake/src/QW/client/ |
pmove.c | 577 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 = PM_PointContents (spot) [all...] |
/external/libxml2/ |
valid.c | 352 xmlElementContentPtr cont; /* pointer to the content model subtree */ member in struct:_xmlValidState 361 #define CONT ctxt->vstate->cont 374 vstateVPush(xmlValidCtxtPtr ctxt, xmlElementContentPtr cont, 407 if ((i >= 0) && (ctxt->vstateTab[i].cont == cont) && 413 ctxt->vstateTab[ctxt->vstateNr].cont = cont; 426 ctxt->vstate->cont = ctxt->vstateTab[ctxt->vstateNr].cont; 5286 xmlElementContentPtr cont; local 5993 xmlElementContentPtr cont; local [all...] |
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
OpenSSLSessionImpl.java | 391 AccessControlContext cont; local 394 cont = (AccessControlContext) entry.getKey2(); 395 if ((current == null && cont == null) 396 || (current != null && current.equals(cont))) {
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
genlingware.pl | 499 my (@cont) = @_; 501 foreach my $cont (@cont) { 502 $size += length($cont); 503 print OUT $cont; 509 my (@cont) = @_; 511 foreach my $cont (@cont) { 512 $size += length($cont);
|
/external/bluetooth/hcidump/parser/ |
sdp.c | 574 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/grub/grub/ |
asmstub.c | 386 value. DESC is a pointer to the descriptor buffer, and CONT is the 390 get_mmap_entry (struct mmar_desc *desc, int cont) 420 if (cont < 0 || cont >= num) 428 *desc = desc_table[cont++]; 431 if (cont < num) 432 return cont;
|
/external/icu4c/i18n/ |
bmsearch.cpp | 178 UBool cont = FALSE; local 198 cont = isContinuation(order); 210 if (cont) { 228 UBool cont = FALSE; local 247 cont = isContinuation(order); 261 if (cont) {
|