Searched defs:ai (Results 1 - 25 of 57) sorted by relevance

123

/external/clang/test/CodeGen/
H A Dblocks-aligned-byref-variable.c3 typedef int __attribute__((aligned(32))) ai; typedef
6 __block ai a = 10;
H A Dmay-alias.c9 void test0(aliasing_int *ai, int *i) argument
12 *ai = 0;
/external/chromium/net/base/
H A Dhost_port_pair.cc25 HostPortPair HostPortPair::FromAddrInfo(const struct addrinfo* ai) { argument
26 return HostPortPair(NetAddressToString(ai),
27 GetPortFromSockaddr(ai->ai_addr, ai->ai_addrlen));
H A Daddress_list_unittest.cc135 struct addrinfo ai; local
136 memset(&ai, 0x0, sizeof(ai));
137 ai.ai_family = AF_INET;
138 ai.ai_socktype = SOCK_STREAM;
139 ai.ai_addrlen = sizeof(address);
140 ai.ai_addr = reinterpret_cast<sockaddr*>(&address);
141 ai.ai_canonname = const_cast<char *>(kCanonicalHostname);
146 addrlist1.Copy(&ai, true);
169 ai
[all...]
H A Dhost_resolver_proc.cc23 bool IsAllLocalhostOfOneFamily(const struct addrinfo* ai) { argument
26 for (; ai != NULL; ai = ai->ai_next) {
27 switch (ai->ai_family) {
30 reinterpret_cast<struct sockaddr_in*>(ai->ai_addr);
39 reinterpret_cast<struct sockaddr_in6*>(ai->ai_addr);
141 struct addrinfo* ai = NULL; local
199 int err = getaddrinfo(host.c_str(), NULL, &hints, &ai);
219 err == 0 && IsAllLocalhostOfOneFamily(ai)) {
[all...]
H A Daddress_list.cc39 Data(struct addrinfo* ai, bool is_system_created);
56 struct addrinfo* ai = new addrinfo; local
57 memset(ai, 0, sizeof(addrinfo));
58 ai->ai_socktype = SOCK_STREAM;
62 ai->ai_family = AF_INET;
64 ai->ai_addrlen = sockaddr_in_size;
71 ai->ai_addr = reinterpret_cast<struct sockaddr*>(addr);
75 ai->ai_family = AF_INET6;
77 ai->ai_addrlen = sockaddr_in6_size;
84 ai
198 struct addrinfo* ai = new addrinfo; local
230 Data(struct addrinfo* ai, bool is_system_created) argument
[all...]
H A Dmock_host_resolver.cc45 struct addrinfo* ai = const_cast<struct addrinfo*>(result.head()); local
47 ai->ai_canonname = do_strdup(canonical_name.c_str());
/external/clang/test/SemaTemplate/
H A Doperator-function-id-template.cpp12 bool test_qualified_id(A<int> ai) { argument
13 return ::operator==<0, int>(ai, ai);
H A Dinstantiate-field.cpp91 A<int> ai; // expected-note{{in instantiation of}} member in namespace:PR7355
/external/openssl/crypto/asn1/
H A Da_enum.c138 ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai) argument
143 if (ai == NULL)
146 ret=ai;
170 if (ret != ai) M_ASN1_ENUMERATED_free(ret);
174 BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai, BIGNUM *bn) argument
178 if ((ret=BN_bin2bn(ai->data,ai->length,bn)) == NULL)
180 else if(ai->type == V_ASN1_NEG_ENUMERATED) BN_set_negative(ret,1);
H A Devp_asn1.c142 ASN1_INTEGER *ai=NULL; local
162 if ((ai=d2i_ASN1_INTEGER(NULL,&c.p,c.slen)) == NULL) goto err;
170 *num=ASN1_INTEGER_get(ai);
186 if (ai != NULL) M_ASN1_INTEGER_free(ai);
H A Da_int.c404 ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai) argument
409 if (ai == NULL)
412 ret=ai;
442 if (ret != ai) M_ASN1_INTEGER_free(ret);
446 BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn) argument
450 if ((ret=BN_bin2bn(ai->data,ai->length,bn)) == NULL)
452 else if(ai->type == V_ASN1_NEG_INTEGER)
/external/ipsec-tools/src/racoon/
H A Dkmpstat.c218 struct addrinfo hint, *ai; local
226 error = getaddrinfo(name, port, &hint, &ai);
232 return ai->ai_addr;
/external/dropbear/
H A Dfake-rfc2553.c105 freeaddrinfo(struct addrinfo *ai) argument
109 for(; ai != NULL;) {
110 next = ai->ai_next;
111 free(ai);
112 ai = next;
121 struct addrinfo *ai; local
123 ai = malloc(sizeof(*ai) + sizeof(struct sockaddr_in));
124 if (ai == NULL)
127 memset(ai, '\
[all...]
/external/icu4c/tools/genrb/
H A Drle.c241 int32_t ai = 0; local
269 target[ai++] = c;
275 target[ai++] = runValue;
280 target[ai++] = c;
284 if (ai != length){
303 int32_t ai=0; local
325 for (; ai<tgtLen; ) {
354 target[ai++] = b;
362 target[ai++] = ESCAPE_BYTE;
377 if(ai<tgtLe
[all...]
/external/openssl/crypto/x509/
H A Dx509_cmp.c70 X509_CINF *ai,*bi; local
72 ai=a->cert_info;
74 i=M_ASN1_INTEGER_cmp(ai->serialNumber,bi->serialNumber);
76 return(X509_NAME_cmp(ai->issuer,bi->issuer));
/external/mesa3d/src/mesa/main/
H A Dimports.h343 int ai, bi; local
348 __asm__ ("fstps %0" : "=m" (ai) : "t" (af) : "st");
350 return (ai - bi) >> 1;
356 int ai, bi; local
362 u.f = (float) af; ai = u.i;
364 return (ai - bi) >> 1;
390 int ai, bi; local
395 __asm__ ("fstps %0" : "=m" (ai) : "t" (af) : "st");
397 return (ai - bi + 1) >> 1;
403 int ai, b local
[all...]
/external/openssl/ssl/
H A Dssl_asn1.c362 ASN1_INTEGER ai,*aip; local
366 aip= &ai;
372 ai.data=NULL; ai.length=0;
374 if (ai.data != NULL) { OPENSSL_free(ai.data); ai.data=NULL; ai.length=0; }
380 if (ai.data != NULL) { OPENSSL_free(ai
[all...]
/external/qemu/
H A Dqemu-sockets.c126 struct addrinfo ai,*res,*e; local
133 memset(&ai,0, sizeof(ai));
134 ai.ai_flags = AI_PASSIVE | AI_ADDRCONFIG;
135 ai.ai_family = PF_UNSPEC;
136 ai.ai_socktype = SOCK_STREAM;
155 ai.ai_family = PF_INET;
157 ai.ai_family = PF_INET6;
162 rc = getaddrinfo(strlen(addr) ? addr : NULL, port, &ai, &res);
234 struct addrinfo ai,*re local
311 struct addrinfo ai, *peer = NULL, *local = NULL; local
[all...]
/external/valgrind/main/drd/
H A Ddrd_error.c55 * Describe the client address a as good as possible, putting the result in ai.
58 void describe_malloced_addr(Addr const a, AddrInfo* const ai) argument
62 if (DRD_(heap_addrinfo)(a, &heap_block_start, &ai->size, &ai->lastchange))
64 ai->akind = eMallocd;
65 ai->rwoffset = a - heap_block_start;
69 ai->akind = eUnknown;
97 AddrInfo ai; local
135 describe_malloced_addr(dri->addr, &ai);
150 else if (ai
[all...]
/external/valgrind/main/perf/
H A Dffbench.c280 double r, ij, ar, ai; local
284 ai = 0;
290 ai += ij;
300 ar / fanum, ai / fanum);
/external/chromium/net/socket/
H A Dsocks_client_socket.cc298 const struct addrinfo* ai = addresses_.head(); local
299 DCHECK(ai);
306 CHECK_EQ(AF_INET, ai->ai_addr->sa_family);
308 reinterpret_cast<struct sockaddr_in*>(ai->ai_addr);
311 DVLOG(1) << "Resolved Host is : " << NetAddressToString(ai);
H A Dtcp_client_socket_libevent.cc507 int TCPClientSocketLibevent::CreateSocket(const addrinfo* ai) { argument
508 socket_ = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
H A Dtransport_client_socket_pool.cc34 const struct addrinfo* ai = addrlist.head(); local
35 if (ai->ai_family != AF_INET6)
38 ai = ai->ai_next;
39 while (ai) {
40 if (ai->ai_family != AF_INET6)
42 ai = ai->ai_next;
50 for (const struct addrinfo* ai = addrlist.head(); ai; a
[all...]
/external/clang/utils/TableGen/
H A DClangAttrEmitter.cpp530 std::vector<Argument*>::iterator ai, ae; local
550 for (ai = Args.begin(); ai != ae; ++ai) {
552 (*ai)->writeCtorParameters(OS);
559 for (ai = Args.begin(); ai != ae; ++ai) {
561 (*ai)->writeCtorInitializers(OS);
567 for (ai
598 std::vector<Argument*>::iterator ai, ae; local
689 std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end(), ai, ae; local
726 std::vector<Record*>::iterator i = Attrs.begin(), e = Attrs.end(), ai, ae; local
[all...]

Completed in 1072 milliseconds

123