Home
last modified time | relevance | path

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

12345678910>>...13

/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/python/cpython3/Objects/
Dobmalloc.c1480 struct arena_object* ao; in _PyObject_Free() local
1504 ao = &arenas[pool->arenaindex]; in _PyObject_Free()
1505 pool->nextpool = ao->freepools; in _PyObject_Free()
1506 ao->freepools = pool; in _PyObject_Free()
1507 nf = ++ao->nfreepools; in _PyObject_Free()
1521 if (nf == ao->ntotalpools) { in _PyObject_Free()
1524 assert(ao->prevarena == NULL || in _PyObject_Free()
1525 ao->prevarena->address != 0); in _PyObject_Free()
1526 assert(ao ->nextarena == NULL || in _PyObject_Free()
1527 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 …]
/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/icu/android_icu4j/src/main/tests/android/icu/dev/util/
DCollectionUtilities.java274 Comparable ao = (Comparable) ai.next(); // these are ok, since the sizes are != 0 in containsSome() local
277 int rel = ao.compareTo(bo); in containsSome()
280 ao = (Comparable) ai.next(); in containsSome()
291 Object ao = ai.next(); // these are ok, since the sizes are != 0 in containsSome() local
294 int rel = aac.compare(ao, bo); in containsSome()
297 ao = ai.next(); in containsSome()
327 Comparable ao = (Comparable) ai.next(); // these are ok, since the sizes are != 0 in containsAll() local
330 int rel = ao.compareTo(bo); in containsAll()
335 ao = (Comparable) ai.next(); in containsAll()
338 ao = (Comparable) ai.next(); in containsAll()
[all …]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
DCollectionUtilities.java271 Comparable ao = (Comparable) ai.next(); // these are ok, since the sizes are != 0 in containsSome() local
274 int rel = ao.compareTo(bo); in containsSome()
277 ao = (Comparable) ai.next(); in containsSome()
288 Object ao = ai.next(); // these are ok, since the sizes are != 0 in containsSome() local
291 int rel = aac.compare(ao, bo); in containsSome()
294 ao = ai.next(); in containsSome()
324 Comparable ao = (Comparable) ai.next(); // these are ok, since the sizes are != 0 in containsAll() local
327 int rel = ao.compareTo(bo); in containsAll()
332 ao = (Comparable) ai.next(); in containsAll()
335 ao = (Comparable) ai.next(); in containsAll()
[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/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/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/golang-protobuf/
D.gitignore2 *.[568ao]
3 *.ao
/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/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.txt29 "août",
45 "août",
/external/python/cpython3/Modules/
Darraymodule.c53 arrayobject *ao; member
2759 static PyObject *array_iter(arrayobject *ao);
2812 array_iter(arrayobject *ao) in array_iter() argument
2816 if (!array_Check(ao)) { in array_iter()
2825 Py_INCREF(ao); in array_iter()
2826 it->ao = ao; in array_iter()
2828 it->getitem = ao->ob_descr->getitem; in array_iter()
2836 arrayobject *ao; in arrayiter_next() local
2840 ao = it->ao; in arrayiter_next()
2841 if (ao == NULL) { in arrayiter_next()
[all …]
/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/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/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) } }

12345678910>>...13