HomeSort by relevance Sort by last modified time
    Searched defs:ai (Results 51 - 75 of 192) sorted by null

1 23 4 5 6 7 8

  /external/chromium/net/socket/
transport_client_socket_pool.cc 34 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; ai = ai->ai_next)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
ssl_asn1.c 384 ASN1_INTEGER ai,*aip; local
388 aip= &ai;
394 ai.data=NULL; ai.length=0;
396 if (ai.data != NULL) { OPENSSL_free(ai.data); ai.data=NULL; ai.length=0; }
402 if (ai.data != NULL) { OPENSSL_free(ai.data); ai.data=NULL; ai.length=0;
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
vdbe.h 62 int *ai; /* Used when p4type is P4_INTARRAY */ member in union:VdbeOp::__anon16234
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p3-0x.cpp 26 int ai[] = { 1, 2.0 }; // expected-error {{type 'double' cannot be narrowed to 'int' in initializer list}} expected-note {{override}} member in namespace:bullet1
  /external/clang/test/CodeGenCXX/
dynamic-cast-hint.cpp 36 volatile I *ai = dynamic_cast<I *>(a); local
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.h 157 HRESULT CreateArchiveHandler(const CArcInfoEx &ai, void **archive, bool outHandler) const
159 return Libs[ai.LibIndex].CreateObject(&ai.ClassID, outHandler ? &IID_IOutArchive : &IID_IInArchive, (void **)archive);
190 const CArcInfoEx &ai = Formats[formatIndex]; local
192 if (ai.LibIndex < 0)
195 archive = ai.CreateInArchive();
199 return CreateArchiveHandler(ai, (void **)&archive, false);
204 const CArcInfoEx &ai = Formats[formatIndex]; local
206 if (ai.LibIndex < 0)
209 archive = ai.CreateOutArchive();
    [all...]
  /external/openssh/
addrmatch.c 209 struct addrinfo hints, *ai; local
214 if (p == NULL || getaddrinfo(p, NULL, &hints, &ai) != 0)
217 if (ai == NULL || ai->ai_addr == NULL)
221 addr_sa_to_xaddr(ai->ai_addr, ai->ai_addrlen, n) == -1) {
222 freeaddrinfo(ai);
226 freeaddrinfo(ai);
canohost.c 53 struct addrinfo hints, *ai, *aitop; local
95 if (getaddrinfo(name, NULL, &hints, &ai) == 0) {
98 freeaddrinfo(ai);
127 for (ai = aitop; ai; ai = ai->ai_next) {
128 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop2,
135 if (!ai) {
    [all...]
  /external/openssl/ssl/
ssl_asn1.c 384 ASN1_INTEGER ai,*aip; local
388 aip= &ai;
394 ai.data=NULL; ai.length=0;
396 if (ai.data != NULL) { OPENSSL_free(ai.data); ai.data=NULL; ai.length=0; }
402 if (ai.data != NULL) { OPENSSL_free(ai.data); ai.data=NULL; ai.length=0;
    [all...]
  /external/qemu/
qemu-sockets.c 126 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,*res,*e local
311 struct addrinfo ai, *peer = NULL, *local = NULL; local
    [all...]
  /external/skia/bench/
SortBench.cpp 75 const int ai = *(const int*)a; local
77 return ai < bi ? -1 : (ai > bi);
  /external/valgrind/main/drd/
drd_error.c 108 * Describe the client address a as good as possible, putting the result in ai.
111 void describe_malloced_addr(Addr const a, AddrInfo* const ai)
115 if (DRD_(heap_addrinfo)(a, &heap_block_start, &ai->size, &ai->lastchange))
117 ai->akind = eMallocd;
118 ai->rwoffset = a - heap_block_start;
122 ai->akind = eUnknown;
162 AddrInfo ai; local
200 describe_malloced_addr(dri->addr, &ai);
212 } else if (ai.akind == eMallocd && ai.lastchange)
    [all...]
  /external/valgrind/main/perf/
ffbench.c 280 double r, ij, ar, ai; local
284 ai = 0;
290 ai += ij;
300 ar / fanum, ai / fanum);
  /frameworks/base/core/java/android/content/pm/
ResolveInfo.java 164 ApplicationInfo ai = ci.applicationInfo; local
166 label = pm.getText(ci.packageName, labelRes, ai);
198 ApplicationInfo ai = ci.applicationInfo; local
200 dr = pm.getDrawable(ci.packageName, icon, ai);
  /frameworks/base/services/java/com/android/server/
PreferredComponent.java 203 ActivityInfo ai = ri.activityInfo; local
206 if (mSetPackages[j].equals(ai.packageName)
207 && mSetClasses[j].equals(ai.name)) {
  /frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/
DpiTestActivity.java 56 ApplicationInfo ai = app.getPackageManager().getApplicationInfo( local
59 ai.flags |= ApplicationInfo.FLAG_SUPPORTS_XLARGE_SCREENS
65 app.getResources().setCompatibilityInfo(new CompatibilityInfo(ai,
  /libcore/luni/src/main/java/java/util/
DualPivotQuicksort.java 107 int ai = a[i]; local
109 for (j = i - 1; j >= left && ai < a[j]; j--) {
112 a[j + 1] = ai;
385 long ai = a[i]; local
387 for (j = i - 1; j >= left && ai < a[j]; j--) {
390 a[j + 1] = ai;
666 short ai = a[i]; local
668 for (j = i - 1; j >= left && ai < a[j]; j--) {
671 a[j + 1] = ai;
961 char ai = a[i]; local
1641 float ai = a[i]; local
2014 double ai = a[i]; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
AllowBindAppWidgetActivity.java 94 ApplicationInfo ai = pm.getApplicationInfo(mCallingPackage, 0); local
95 label = pm.getApplicationLabel(ai);
  /system/netd/
DnsProxyListener.cpp 148 struct addrinfo* ai = result; local
149 while (ai && success) {
150 success = sendLenAndData(mClient, sizeof(struct addrinfo), ai)
151 && sendLenAndData(mClient, ai->ai_addrlen, ai->ai_addr)
153 ai->ai_canonname ? strlen(ai->ai_canonname) + 1 : 0,
154 ai->ai_canonname);
155 ai = ai->ai_next
    [all...]
  /development/apps/Development/src/com/android/development/
PackageSummary.java 172 ActivityInfo ai = info.activities[i]; local
174 if (ai != null) {
178 new ComponentName(ai.applicationInfo.packageName,
179 ai.name)));
180 setItemText(view, info, ai.name);
191 ActivityInfo ai = info.receivers[i]; local
194 Log.i("foo", "Receiver #" + i + " of " + N + ": " + ai);
195 setItemText(view, info, ai.name);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nvfx_fragprog.c 448 int ai = -1, ci = -1, ii = -1; local
484 } else if (ai == -1 || ai == fsrc->Register.Index) {
485 ai = fsrc->Register.Index;
    [all...]
nvfx_vertprog.c 470 int ai = -1, ci = -1, ii = -1; local
490 if (ai == -1 || ai == fsrc->Register.Index) {
491 ai = fsrc->Register.Index;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h 356 int ai, bi; local
361 __asm__ ("fstps %0" : "=m" (ai) : "t" (af) : "st");
363 return (ai - bi) >> 1;
369 int ai, bi; local
375 u.f = (float) af; ai = u.i;
377 return (ai - bi) >> 1;
403 int ai, bi; local
408 __asm__ ("fstps %0" : "=m" (ai) : "t" (af) : "st");
410 return (ai - bi + 1) >> 1;
416 int ai, bi local
    [all...]
  /external/iputils/
tracepath6.c 382 struct addrinfo hints, *ai, *ai0; local
450 for (ai = ai0; ai; ai = ai->ai_next) {
452 if (family && ai->ai_family != family)
454 if (ai->ai_family != AF_INET6 &&
455 ai->ai_family != AF_INET)
457 family = ai->ai_family;
458 fd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol)
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_postproc.c 386 int ai = a, qi = q, i; local
390 sigma = ai + .5 + .6 * (63 - qi) / 63.0;

Completed in 6873 milliseconds

1 23 4 5 6 7 8