Home
last modified time | relevance | path

Searched refs:ao (Results 1 – 25 of 200) sorted by relevance

12345678

/external/llvm/include/llvm/Support/
DAtomicOrdering.h81 static inline const char *toIRString(AtomicOrdering ao) { in toIRString() argument
85 return names[(size_t)ao]; in toIRString()
90 static inline bool isStrongerThan(AtomicOrdering ao, AtomicOrdering other) { in isStrongerThan() argument
102 return lookup[(size_t)ao][(size_t)other]; in isStrongerThan()
105 static inline bool isAtLeastOrStrongerThan(AtomicOrdering ao, in isAtLeastOrStrongerThan() argument
118 return lookup[(size_t)ao][(size_t)other]; in isAtLeastOrStrongerThan()
121 static inline bool isStrongerThanUnordered(AtomicOrdering ao) { in isStrongerThanUnordered() argument
122 return isStrongerThan(ao, AtomicOrdering::Unordered); in isStrongerThanUnordered()
125 static inline bool isStrongerThanMonotonic(AtomicOrdering ao) { in isStrongerThanMonotonic() argument
126 return isStrongerThan(ao, AtomicOrdering::Monotonic); in isStrongerThanMonotonic()
[all …]
/external/python/cpython2/Objects/
Dobmalloc.c1026 struct arena_object* ao; in PyObject_Free() local
1050 ao = &arenas[pool->arenaindex]; in PyObject_Free()
1051 pool->nextpool = ao->freepools; in PyObject_Free()
1052 ao->freepools = pool; in PyObject_Free()
1053 nf = ++ao->nfreepools; in PyObject_Free()
1067 if (nf == ao->ntotalpools) { in PyObject_Free()
1070 assert(ao->prevarena == NULL || in PyObject_Free()
1071 ao->prevarena->address != 0); in PyObject_Free()
1072 assert(ao ->nextarena == NULL || in PyObject_Free()
1073 ao->nextarena->address != 0); in PyObject_Free()
[all …]
/external/ppp/pppd/
Dlcp.c341 lcp_options *ao = &lcp_allowoptions[unit]; local
357 BZERO(ao, sizeof(*ao));
358 ao->neg_mru = 1;
359 ao->mru = MAXMRU;
360 ao->neg_asyncmap = 1;
361 ao->neg_chap = 1;
362 ao->chap_mdtype = chap_mdtype_all;
363 ao->neg_upap = 1;
364 ao->neg_eap = 1;
365 ao->neg_magicnumber = 1;
[all …]
Dipxcp.c74 #define ao (&ipxcp_allowoptions[0]) macro
398 ao->neg_node = 1;
399 ao->neg_nn = 1;
400 ao->neg_name = 1;
401 ao->neg_complete = 1;
402 ao->neg_router = 1;
404 ao->accept_local = 0;
405 ao->accept_remote = 0;
406 ao->accept_network = 0;
544 wo->req_node = wo->neg_node && ao->neg_node;
[all …]
Dccp.c541 ccp_options *ao = &ccp_allowoptions[f->unit]; local
603 ao->mppe = go->mppe;
605 ao->bsd_compress = go->bsd_compress = 0;
606 ao->predictor_1 = go->predictor_1 = 0;
607 ao->predictor_2 = go->predictor_2 = 0;
608 ao->deflate = go->deflate = 0;
1079 ccp_options *ao = &ccp_allowoptions[f->unit]; local
1106 if (!ao->mppe || clen != CILEN_MPPE) {
1142 if (ao->mppe & MPPE_OPT_128)
1144 else if (ao->mppe & MPPE_OPT_40)
[all …]
Dipcp.c571 ipcp_options *ao = &ipcp_allowoptions[unit]; local
587 memset(ao, 0, sizeof(*ao));
600 ao->neg_addr = ao->old_addrs = 1;
601 ao->neg_vj = 1;
602 ao->maxslotindex = MAX_STATES - 1;
603 ao->cflag = 1;
609 ao->proxy_arp = 1;
610 ao->default_route = 1;
696 ipcp_options *ao = &ipcp_allowoptions[f->unit]; local
699 (ao->neg_addr || ao->old_addrs);
[all …]
Dipv6cp.c427 ipv6cp_options *ao = &ipv6cp_allowoptions[unit]; local
435 memset(ao, 0, sizeof(*ao));
439 ao->neg_ifaceid = 1;
443 ao->neg_vj = 1;
903 ipv6cp_options *ao = &ipv6cp_allowoptions[f->unit]; local
945 if (!ao->neg_ifaceid ||
991 if (!ao->neg_vj ||
/external/syslinux/core/lwip/src/netif/ppp/
Dlcp.c244 lcp_options *ao = &lcp_allowoptions[unit]; in lcp_init() local
268 ao->neg_mru = 1; in lcp_init()
269 ao->mru = PPP_MAXMRU; in lcp_init()
270 ao->neg_asyncmap = 1; in lcp_init()
271 ao->asyncmap = 0x00000000l; /* Assume don't need to escape any ctl chars. */ in lcp_init()
272 ao->neg_chap = (CHAP_SUPPORT != 0); in lcp_init()
273 ao->chap_mdtype = CHAP_DIGEST_MD5; in lcp_init()
274 ao->neg_upap = (PAP_SUPPORT != 0); in lcp_init()
275 ao->neg_magicnumber = 1; in lcp_init()
276 ao->neg_pcompression = 1; in lcp_init()
[all …]
Dipcp.c180 ipcp_options *ao = &ipcp_allowoptions[unit]; in ipcp_init() local
188 memset(ao, 0, sizeof(*ao)); in ipcp_init()
202 ao->neg_addr = 1; in ipcp_init()
204 ao->neg_vj = 1; in ipcp_init()
206 ao->neg_vj = 0; in ipcp_init()
208 ao->maxslotindex = MAX_SLOTS - 1; in ipcp_init()
209 ao->cflag = 1; in ipcp_init()
210 ao->default_route = 1; in ipcp_init()
873 ipcp_options *ao = &ipcp_allowoptions[f->unit]; in ipcp_reqci() local
924 if (!ao->neg_addr || in ipcp_reqci()
[all …]
/external/clang/test/Analysis/
Delementtype.c9 ADDED_OBJ *ao[4]={((void*)0),((void*)0),((void*)0),((void*)0)}; in f() local
10 if (ao[0] != ((void*)0)) { in f()
11 ao[0]->type=0; in f()
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
DCollectionUtilities.java269 Comparable ao = (Comparable) ai.next(); // these are ok, since the sizes are != 0 in containsSome() local
272 int rel = ao.compareTo(bo); in containsSome()
275 ao = (Comparable) ai.next(); in containsSome()
286 Object ao = ai.next(); // these are ok, since the sizes are != 0 in containsSome() local
289 int rel = aac.compare(ao, bo); in containsSome()
292 ao = ai.next(); in containsSome()
322 Comparable ao = (Comparable) ai.next(); // these are ok, since the sizes are != 0 in containsAll() local
325 int rel = ao.compareTo(bo); in containsAll()
330 ao = (Comparable) ai.next(); in containsAll()
333 ao = (Comparable) ai.next(); in containsAll()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
DCollectionUtilities.java270 Comparable ao = (Comparable) ai.next(); // these are ok, since the sizes are != 0 in containsSome() local
273 int rel = ao.compareTo(bo); in containsSome()
276 ao = (Comparable) ai.next(); in containsSome()
287 Object ao = ai.next(); // these are ok, since the sizes are != 0 in containsSome() local
290 int rel = aac.compare(ao, bo); in containsSome()
293 ao = ai.next(); in containsSome()
323 Comparable ao = (Comparable) ai.next(); // these are ok, since the sizes are != 0 in containsAll() local
326 int rel = ao.compareTo(bo); in containsAll()
331 ao = (Comparable) ai.next(); in containsAll()
334 ao = (Comparable) ai.next(); in containsAll()
[all …]
/external/v8/src/compiler/
Djump-threading.cc185 int ao = 0; in ApplyForwarding() local
188 block->set_ao_number(RpoNumber::FromInt(ao)); in ApplyForwarding()
189 if (!skip[block->rpo_number().ToInt()]) ao++; in ApplyForwarding()
194 block->set_ao_number(RpoNumber::FromInt(ao)); in ApplyForwarding()
195 if (!skip[block->rpo_number().ToInt()]) ao++; in ApplyForwarding()
/external/elfutils/tests/
Dget-files.c51 Dwarf_Off ao; in main() local
55 while (dwarf_nextcu (dbg, o, &ncu, &cuhl, &ao, &asz, &osz) == 0) in main()
58 cuhl, (unsigned long long int) ao, in main()
Dget-lines.c51 Dwarf_Off ao; in main() local
54 while (dwarf_nextcu (dbg, cuoff, &cuoff, &hsize, &ao, &asz, &osz) == 0) in main()
57 hsize, (unsigned long long int) ao, in main()
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
Dp2.cpp8 auto int ao; // expected-error {{illegal storage class on file-scoped variable}} variable
26 auto int ao; // expected-error {{storage class specified for a member declaration}} member
/external/ppp/pppd/plugins/radius/
Dradius.c550 ipcp_options *ao = &ipcp_allowoptions[0]; in radius_setparams() local
703 ao->dnsaddr[0] = htonl(vp->lvalue); in radius_setparams()
706 ao->dnsaddr[1] = ao->dnsaddr[0]; in radius_setparams()
709 ao->dnsaddr[1] = htonl(vp->lvalue); in radius_setparams()
712 ao->dnsaddr[0] = ao->dnsaddr[1]; in radius_setparams()
715 ao->winsaddr[0] = htonl(vp->lvalue); in radius_setparams()
718 ao->winsaddr[1] = ao->winsaddr[0]; in radius_setparams()
721 ao->winsaddr[1] = htonl(vp->lvalue); in radius_setparams()
724 ao->winsaddr[0] = ao->winsaddr[1]; in radius_setparams()
/external/javassist/src/main/javassist/util/proxy/
DSecurityActions.java99 static void setAccessible(final AccessibleObject ao,
102 ao.setAccessible(accessible);
106 ao.setAccessible(accessible);
/external/llvm/test/CodeGen/AArch64/
Darm64-big-imm-offsets.ll9 %ao = add i64 %a, 25769803792
10 %b = inttoptr i64 %ao to i32*
/external/icu/icu4c/source/data/locales/
Dfr_MA.txt28 "août",
44 "août",
/external/wpa_supplicant_8/hs20/client/
Dest.c342 AttrOrOID *ao = sk_value( in add_csrattrs() local
345 switch (ao->type) { in add_csrattrs()
347 add_csrattrs_oid(ctx, ao->d.oid, exts); in add_csrattrs()
350 add_csrattrs_attr(ctx, ao->d.attribute, exts); in add_csrattrs()
357 AttrOrOID *ao = SKM_sk_value(AttrOrOID, csrattrs->attrs, i); in add_csrattrs() local
358 switch (ao->type) { in add_csrattrs()
360 add_csrattrs_oid(ctx, ao->d.oid, exts); in add_csrattrs()
363 add_csrattrs_attr(ctx, ao->d.attribute, exts); in add_csrattrs()
/external/libdrm/tests/util/
Dformat.c39 #define MAKE_RGB_INFO(rl, ro, gl, go, bl, bo, al, ao) \ argument
40 .rgb = { { (rl), (ro) }, { (gl), (go) }, { (bl), (bo) }, { (al), (ao) } }
/external/python/cpython2/RISCOS/Modules/
Dswimodule.c346 PyBlockObject *ao; in swi_swi() local
375 case 'b':if(!PyArg_Parse(v,"O",(PyObject**)&ao)) return NULL; in swi_swi()
377 r.r[rno]=(int)(ao->block); in swi_swi()
379 case 'e':if(!PyArg_Parse(v,"O",(PyObject**)&ao)) return NULL; in swi_swi()
381 r.r[rno]=(int)(ao->block)+ao->length; in swi_swi()
/external/tcpdump/tests/
Dtcp-auth-heapoverflow.out2 …seq 808464432:808476696, ack 808464432, win 12336, urg 12336, options [tcp-ao keyid 48 rnextkeyid …
/external/icu/icu4c/source/data/lang/
Dfr_BE.txt9 njo{"ao"}

12345678