Searched refs:ss (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dboolassign.c4 int ss; local
5 if ((ss = ss && ss)) {}
H A Dx86_64-arguments-darwin.c13 str ss; variable
16 func(ss);
H A DAtomics.c7 signed short ss; variable
18 (void) __sync_fetch_and_add (&ss, 1); // CHECK: atomicrmw add i16
27 (void) __sync_fetch_and_sub (&ss, 1); // CHECK: atomicrmw sub i16
36 (void) __sync_fetch_and_or (&ss, 1); // CHECK: atomicrmw or i16
45 (void) __sync_fetch_and_xor (&ss, 1); // CHECK: atomicrmw xor i16
54 (void) __sync_fetch_and_and (&ss, 1); // CHECK: atomicrmw and i16
67 ss = __sync_fetch_and_add (&ss, 11); // CHECK: atomicrmw add
76 ss = __sync_fetch_and_sub (&ss, 1
[all...]
/external/chromium/chrome/browser/sync/notifier/
H A Dinvalidation_util.cc36 std::stringstream ss; local
37 ss << "{ ";
38 ss << "name: " << object_id.name() << ", ";
39 ss << "source: " << object_id.source();
40 ss << " }";
41 return ss.str();
54 std::stringstream ss; local
55 ss << "{ ";
56 ss << "code: " << status.code() << ", ";
57 ss << "descriptio
64 std::stringstream ss; local
74 std::stringstream ss; local
86 std::stringstream ss; local
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
H A DSystemScopeTest.java43 IdentityScope ss = null; field in class:SystemScopeTest
51 if (mode) ss = new SystemScope("SystemScope");
53 ss = IdentityScope.getSystemScope();
54 Enumeration e = ss.identities();
55 while (e.hasMoreElements()) ss.removeIdentity((Identity)e.nextElement());
72 //SystemScope ss = new SystemScope("SystemScope");
73 assertEquals(0, ss.size());
74 ss.addIdentity(new IdentityScopeStub("aaa"));
75 assertEquals(1, ss.size());
76 ss
[all...]
/external/libffi/testsuite/libffi.call/
H A Dpromotion.c9 static int promotion(signed char sc, signed short ss, argument
12 int r = (int) sc + (int) ss + (int) uc + (int) us;
25 signed short ss; local
34 values[1] = &ss;
47 for (ss = -30000; ss <= 30000; ss += 10000)
54 CHECK((int)rint == (signed char) sc + (signed short) ss +
H A Dnegint.c26 signed short ss; local
32 values[1] = &ss;
41 ss = -12;
44 checking (si, ss, sc);
48 printf ("%d vs %d\n", (int)rint, checking (si, ss, sc));
/external/freetype/src/autofit/
H A Dafpic.c60 FT_UInt ss; local
74 for ( ss = 0 ; ss < AF_SCRIPT_CLASSES_REC_COUNT ; ss++ )
76 container->af_script_classes[ss] =
77 &container->af_script_classes_rec[ss];
82 ss = 0;
84 &container->af_script_classes_rec[ss++] );
87 &container->af_script_classes_rec[ss++] );
90 &container->af_script_classes_rec[ss
[all...]
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dtransportchannel.cc36 std::stringstream ss; local
37 ss << "Channel[" << name_ << "|" << READABLE_ABBREV[readable_]
39 return ss.str();
/external/chromium/testing/gmock/src/
H A Dgmock-cardinalities.cc55 std::stringstream ss; local
57 ss << "The invocation lower bound must be >= 0, "
59 internal::Expect(false, __FILE__, __LINE__, ss.str());
61 ss << "The invocation upper bound must be >= 0, "
63 internal::Expect(false, __FILE__, __LINE__, ss.str());
65 ss << "The invocation upper bound (" << max
68 internal::Expect(false, __FILE__, __LINE__, ss.str());
100 std::stringstream ss; local
101 ss << n << " times";
102 return ss
[all...]
/external/openssl/ssl/
H A Dssl_sess.c190 SSL_SESSION *ss; local
192 ss=(SSL_SESSION *)OPENSSL_malloc(sizeof(SSL_SESSION));
193 if (ss == NULL)
198 memset(ss,0,sizeof(SSL_SESSION));
200 ss->verify_result = 1; /* avoid 0 (= X509_V_OK) just in case */
201 ss->references=1;
202 ss->timeout=60*5+4; /* 5 minute timeout by default */
203 ss->time=(unsigned long)time(NULL);
204 ss->prev=NULL;
205 ss
282 SSL_SESSION *ss=NULL; local
740 SSL_SESSION_free(SSL_SESSION *ss) argument
[all...]
/external/libffi/testsuite/libffi.special/
H A Dunwindtest_ffi_call.cc24 signed short ss; local
30 values[1] = &ss;
39 ss = -12;
/external/ppp/pppd/
H A Dchap-new.c119 static void chap_generate_challenge(struct chap_server_state *ss);
120 static void chap_handle_response(struct chap_server_state *ss, int code,
173 struct chap_server_state *ss = &server; local
176 ss->flags |= LOWERUP;
177 if (ss->flags & AUTH_STARTED)
178 chap_timeout(ss);
185 struct chap_server_state *ss = &server; local
188 if (ss->flags & TIMEOUT_PENDING)
189 UNTIMEOUT(chap_timeout, ss);
190 ss
201 struct chap_server_state *ss = &server; local
258 struct chap_server_state *ss = arg; local
283 chap_generate_challenge(struct chap_server_state *ss) argument
310 chap_handle_response(struct chap_server_state *ss, int id, unsigned char *pkt, int len) argument
517 struct chap_server_state *ss = &server; local
548 struct chap_server_state *ss = &server; local
[all...]
/external/e2fsprogs/lib/ss/
H A DMakefile.in2 # Makefile for lib/ss
9 my_dir = lib/ss
16 LIBDIR= ss
21 ELF_MYDIR = ss
27 BSDLIB_MYDIR = ss
34 # -I.. is so that ss/ss_err.h works
35 # -I$(srcdir)/.. is so that ss/ss.h works
81 HFILES= ss.h ss_internal.h
84 INSTALL_HFILES= ss
[all...]
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
H A DRealmCallbackTest.java81 String ss;
91 ss = sb.toString();
92 rCB.setText(ss);
93 assertEquals("Incorrect text", rCB.getText(), ss);
125 String ss;
133 ss = sb.toString();
134 rCB.setText(ss);
135 assertEquals("Incorrect text", rCB.getText(), ss);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttprequest.cc45 HttpMonitor::HttpMonitor(SocketServer *ss) { argument
47 ss_ = ss;
79 SocketServer * ss = &physical; local
81 ss = new FirewallSocketServer(ss, firewall_);
84 SslSocketFactory factory(ss, client_.agent());
107 HttpMonitor monitor(ss);
110 ss->Wait(timeout_, true);
/external/chromium/testing/gmock/test/
H A Dgmock-cardinalities_test.cc121 stringstream ss; local
122 c.DescribeTo(&ss);
124 ss.str());
149 stringstream ss; local
150 c.DescribeTo(&ss);
152 ss.str());
204 stringstream ss; local
205 c.DescribeTo(&ss);
207 ss.str());
273 stringstream ss; local
291 stringstream ss; local
309 stringstream ss; local
330 stringstream ss; local
358 stringstream ss; local
423 stringstream ss; local
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
H A DSecuritySupport.java48 SecuritySupport ss = null;
57 ss = (SecuritySupport)cons.newInstance(new Object[] { });
68 ss = new SecuritySupport12();
72 if (ss == null)
73 ss = new SecuritySupport();
74 securitySupport = ss;
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DSecuritySupport.java48 SecuritySupport ss = null;
57 ss = (SecuritySupport)cons.newInstance(new Object[] { });
68 ss = new SecuritySupport12();
72 if (ss == null)
73 ss = new SecuritySupport();
74 securitySupport = ss;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DSecuritySupport.java48 SecuritySupport ss = null;
57 ss = (SecuritySupport)cons.newInstance(new Object[] { });
68 ss = new SecuritySupport12();
72 if (ss == null)
73 ss = new SecuritySupport();
74 securitySupport = ss;
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSecuritySupport.java46 SecuritySupport ss = null;
55 ss = (SecuritySupport)cons.newInstance(new Object[] { });
66 ss = new SecuritySupport12();
70 if (ss == null)
71 ss = new SecuritySupport();
72 securitySupport = ss;
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSecuritySupport.java48 SecuritySupport ss = null;
57 ss = (SecuritySupport)cons.newInstance(new Object[] { });
68 ss = new SecuritySupport12();
72 if (ss == null)
73 ss = new SecuritySupport();
74 securitySupport = ss;
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DSecuritySupport.java48 SecuritySupport ss = null;
57 ss = (SecuritySupport)cons.newInstance(new Object[] { });
68 ss = new SecuritySupport12();
72 if (ss == null)
73 ss = new SecuritySupport();
74 securitySupport = ss;
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DLocalAcceptThread.java24 final ServerSocket ss; field in class:LocalAcceptThread
33 ss = new ServerSocket(local_port);
43 ss = new ServerSocket();
44 ss.bind(localAddress);
66 s = ss.accept();
132 /* This will lead to an IOException in the ss.accept() call */
133 ss.close();
/external/webrtc/src/system_wrappers/interface/
H A Ddata_log_impl.h54 std::stringstream ss; local
55 ss << data_ << ",";
56 ss >> *container_string;
72 std::stringstream ss; local
74 ss << data_[i] << ",";
75 *container_string += ss.str();

Completed in 631 milliseconds

1234567891011>>