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

1 2 3 4 5

  /external/openssh/
roaming_dummy.c 39 roaming_write(int fd, const void *buf, size_t count, int *cont)
45 roaming_read(int fd, void *buf, size_t count, int *cont)
47 if (cont)
48 *cont = 0;
  /bionic/libc/string/
strspn.c 45 cont:
49 goto cont;
strtok.c 54 cont:
58 goto cont;
  /external/chromium_org/third_party/icu/source/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...]
  /ndk/tests/device/test-gnustl-full/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...]
  /ndk/tests/device/test-stlport/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...]
  /external/chromium_org/third_party/openssl/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);
105 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it)
131 if(cont) {
132 if(pad) *cont++ = (ltmp < 0) ? 0xff : 0;
134 cont[i] = (unsigned char)(utmp & 0xff);
135 if(ltmp < 0) cont[i] ^= 0xff;
142 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
154 if(len && (cont[0] & 0x80)) neg = 1;
159 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)) {
  /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);
105 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it)
131 if(cont) {
132 if(pad) *cont++ = (ltmp < 0) ? 0xff : 0;
134 cont[i] = (unsigned char)(utmp & 0xff);
135 if(ltmp < 0) cont[i] ^= 0xff;
142 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
154 if(len && (cont[0] & 0x80)) neg = 1;
159 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)) {
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/serialization/
HandshakeCompletedEventTest.java 39 SSLContext cont = SSLContext.getInstance("TLS"); local
40 cont.init(null, null, null);
41 SSLSocket soc = (SSLSocket )cont.getSocketFactory().createSocket();
SSLSessionBindingEventTest.java 39 SSLContext cont = SSLContext.getInstance("TLS"); local
40 cont.init(null, null, null);
41 SSLSocket soc = (SSLSocket )cont.getSocketFactory().createSocket();
  /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/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...]
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcstok.c 54 cont:
58 goto cont;
  /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,
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
ClientTest.java 61 EditText cont = (EditText) findViewById(R.id.cont);
71 cont.getText().toString(),
81 cont.getText().toString(),
97 EditText cont = (EditText) findViewById(R.id.cont);
106 cont.getText().toString(),
120 EditText cont = (EditText) findViewById(R.id.cont);
135 cont.getText().toString()
    [all...]
  /external/chromium_org/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/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:

Completed in 619 milliseconds

1 2 3 4 5