Searched refs:ai (Results 51 - 75 of 96) sorted by relevance

1234

/external/wpa_supplicant_8/src/drivers/
H A Ddriver_ndis.c1361 NDIS_802_11_ASSOCIATION_INFORMATION *ai; local
1396 if (len < sizeof(*ai)) {
1401 ai = (NDIS_802_11_ASSOCIATION_INFORMATION *) buf;
1404 ai->AvailableRequestFixedIEs, ai->AvailableResponseFixedIEs,
1405 (int) ai->OffsetRequestIEs, (int) ai->OffsetResponseIEs,
1406 (int) ai->RequestIELength, (int) ai->ResponseIELength);
1408 if (ai
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_ndis.c1361 NDIS_802_11_ASSOCIATION_INFORMATION *ai; local
1396 if (len < sizeof(*ai)) {
1401 ai = (NDIS_802_11_ASSOCIATION_INFORMATION *) buf;
1404 ai->AvailableRequestFixedIEs, ai->AvailableResponseFixedIEs,
1405 (int) ai->OffsetRequestIEs, (int) ai->OffsetResponseIEs,
1406 (int) ai->RequestIELength, (int) ai->ResponseIELength);
1408 if (ai
[all...]
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1059 ai = D->specific_attr_begin<AnnotateAttr>(),
1060 ae = D->specific_attr_end<AnnotateAttr>(); ai != ae; ++ai)
1063 (*ai)->getAnnotation(), D->getLocation());
1074 ai = D->specific_attr_begin<AnnotateAttr>(),
1075 ae = D->specific_attr_end<AnnotateAttr>(); ai != ae; ++ai) {
1081 V = EmitAnnotationCall(F, V, (*ai)->getAnnotation(), D->getLocation());
/external/mksh/src/
H A Dmisc.c420 getn(const char *s, int *ai) argument
433 *ai = i = 0;
438 if (i < *ai)
442 *ai = i;
448 *ai = -*ai;
454 bi_getn(const char *as, int *ai) argument
458 if (!(rv = getn(as, ai)))
/external/openssl/apps/
H A Dapps.c1592 ASN1_INTEGER *ai=NULL; local
1594 ai=ASN1_INTEGER_new();
1595 if (ai == NULL) goto err;
1613 if (ret == NULL || !rand_serial(ret, ai))
1619 if (!a2i_ASN1_INTEGER(in,ai,buf,1024))
1625 ret=ASN1_INTEGER_to_BN(ai,NULL);
1635 *retai = ai;
1636 ai = NULL;
1640 if (ai != NULL) ASN1_INTEGER_free(ai);
1649 ASN1_INTEGER *ai=NULL; local
1767 rand_serial(BIGNUM *b, ASN1_INTEGER *ai) argument
[all...]
H A Dapps.h300 int rand_serial(BIGNUM *b, ASN1_INTEGER *ai);
/external/mesa3d/src/glsl/
H A Dir_to_llvm.cpp1337 llvm::Function::arg_iterator ai = fun->arg_begin(); local
1341 bld.CreateStore(ai, inputsPtr);
1342 inputs = ai;
1343 ai++;
1344 bld.CreateStore(ai, outputsPtr);
1345 outputs = ai;
1346 ai++;
1347 bld.CreateStore(ai, constantsPtr);
1348 constants = ai;
1349 ai
[all...]
/external/chromium/net/socket/
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 Dssl_client_socket_mac.cc866 const struct addrinfo* ai = address.head(); local
868 peer_id += std::string(reinterpret_cast<char*>(ai->ai_addr),
869 ai->ai_addrlen);
/external/chromium/net/base/
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/chromium/third_party/libevent/test/
H A Dregress_http.c117 struct addrinfo ai, *aitop;
134 memset(&ai, 0, sizeof (ai));
135 ai.ai_family = AF_INET;
136 ai.ai_socktype = SOCK_STREAM;
138 if (getaddrinfo(address, strport, &ai, &aitop) != 0) {
/external/openssl/crypto/bn/asm/
H A Ds390x.S333 #define mul_add_c(ai,bi,c1,c2,c3) \
334 lg %r7,ai*8(%r3); \
519 #define sqr_add_c(ai,c1,c2,c3) \
520 lg %r7,ai*8(%r3); \
526 #define sqr_add_c2(ai,aj,c1,c2,c3) \
527 lg %r7,ai*8(%r3); \
/external/dbus/dbus/
H A Ddbus-sysdeps-unix.c1195 struct addrinfo *ai, *tmp; local
1226 if ((res = getaddrinfo(host, port, &hints, &ai)) != 0)
1236 tmp = ai;
1241 freeaddrinfo(ai);
1258 freeaddrinfo(ai);
1320 struct addrinfo *ai, *tmp; local
1347 if ((res = getaddrinfo(host, port, &hints, &ai)) != 0 || !ai)
1356 tmp = ai;
1448 freeaddrinfo(ai);
[all...]
/external/srec/srec/crec/
H A Dsrec_context.c1519 arcID *pai, ai, ai2; local
1520 for (pai = &node->un_ptr.first_next_arc, ai = (*pai); ai != MAXarcID; pai = &arc->linkl_next_arc, ai = (*pai))
1522 if (ai < fst->num_base_arcs)
1524 arc = &fst->FSMarc_list[ai];
1528 arc2 = &fst->FSMarc_list[ai];
1545 arcID *pai, ai, ai2; local
1546 for (pai = &node->first_prev_arc, ai = (*pai); ai !
1574 arcID ai; local
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp313 for (DagInit::const_arg_iterator ai = DAG->arg_begin(), ae = DAG->arg_end();
314 ai != ae; ++ai) {
315 DefInit *Idx = dynamic_cast<DefInit*>(*ai);
318 throw "Argument '" + (*ai)->getAsString() +
/external/javassist/src/main/javassist/bytecode/
H A DClassFile.java723 AttributeInfo ai = (AttributeInfo)list.get(i);
724 if (ai.getName().equals(name))
725 return ai;
H A DCodeAttribute.java89 AttributeInfo ai = (AttributeInfo)src_attr.get(i);
90 attributes.add(ai.copy(cp, classnames));
/external/qemu/hw/
H A Ddma.c231 int op, ai, dir, opmode; local
233 ai = (data >> 4) & 1;
237 linfo ("ichan %d, op %d, ai %d, dir %d, opmode %d\n",
238 ichan, op, ai, dir, opmode);
/external/bluetooth/hcidump/src/
H A Dhcidump.c657 struct addrinfo *ai, *runp; local
668 err = getaddrinfo(dump_addr, dump_port, &hints, &ai);
674 runp = ai;
730 freeaddrinfo(ai);
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp1068 for (unsigned ai = 0, ae = IFI.StaticAllocas.size(); ai != ae; ++ai) {
1069 AllocaInst *AI = IFI.StaticAllocas[ai];
H A DPromoteMemoryToRegister.cpp1088 DenseMap<AllocaInst *, unsigned>::iterator ai = AllocaLookup.find(Dest); local
1089 if (ai == AllocaLookup.end())
1093 IncomingVals[ai->second] = SI->getOperand(0);
1095 if (DbgDeclareInst *DDI = AllocaDbgDeclares[ai->second]) {
/external/v8/src/
H A Dlog.cc1474 AccessorInfo* ai = AccessorInfo::cast(obj); local
1475 if (!ai->name()->IsString()) continue;
1476 String* name = String::cast(ai->name());
1477 Address getter_entry = v8::ToCData<Address>(ai->getter());
1481 Address setter_entry = v8::ToCData<Address>(ai->setter());
/external/bluetooth/glib/tests/
H A Dsequence-test.c1181 int ai, bi; local
1183 ai = GPOINTER_TO_INT (a);
1186 if (ai < bi)
1188 else if (ai > bi)
/external/openssl/crypto/asn1/
H A Dasn1.h920 ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai);
921 BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai,BIGNUM *bn);
925 ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai);
926 BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai,BIGNUM *bn);
/external/openssl/include/openssl/
H A Dasn1.h920 ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai);
921 BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai,BIGNUM *bn);
925 ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai);
926 BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai,BIGNUM *bn);

Completed in 551 milliseconds

1234