/external/llvm/include/llvm/Support/ |
D | AtomicOrdering.h | 81 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | AtomicOrdering.h | 81 inline const char *toIRString(AtomicOrdering ao) { in toIRString() argument 85 return names[static_cast<size_t>(ao)]; in toIRString() 90 inline bool isStrongerThan(AtomicOrdering ao, AtomicOrdering other) { in isStrongerThan() argument 102 return lookup[static_cast<size_t>(ao)][static_cast<size_t>(other)]; in isStrongerThan() 105 inline bool isAtLeastOrStrongerThan(AtomicOrdering ao, AtomicOrdering other) { in isAtLeastOrStrongerThan() argument 117 return lookup[static_cast<size_t>(ao)][static_cast<size_t>(other)]; in isAtLeastOrStrongerThan() 120 inline bool isStrongerThanUnordered(AtomicOrdering ao) { in isStrongerThanUnordered() argument 121 return isStrongerThan(ao, AtomicOrdering::Unordered); in isStrongerThanUnordered() 124 inline bool isStrongerThanMonotonic(AtomicOrdering ao) { in isStrongerThanMonotonic() argument 125 return isStrongerThan(ao, AtomicOrdering::Monotonic); in isStrongerThanMonotonic() [all …]
|
/external/python/cpython2/Objects/ |
D | obmalloc.c | 1026 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/ |
D | obmalloc.c | 1666 struct arena_object* ao; in pymalloc_free() local 1689 ao = &arenas[pool->arenaindex]; in pymalloc_free() 1690 pool->nextpool = ao->freepools; in pymalloc_free() 1691 ao->freepools = pool; in pymalloc_free() 1692 nf = ++ao->nfreepools; in pymalloc_free() 1706 if (nf == ao->ntotalpools) { in pymalloc_free() 1709 assert(ao->prevarena == NULL || in pymalloc_free() 1710 ao->prevarena->address != 0); in pymalloc_free() 1711 assert(ao ->nextarena == NULL || in pymalloc_free() 1712 ao->nextarena->address != 0); in pymalloc_free() [all …]
|
/external/ppp/pppd/ |
D | lcp.c | 341 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 …]
|
D | ipxcp.c | 74 #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 …]
|
D | ccp.c | 541 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 …]
|
D | ipcp.c | 571 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/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | CollectionUtilities.java | 271 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/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
D | CollectionUtilities.java | 274 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/clang/test/Analysis/ |
D | elementtype.c | 9 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/elfutils/tests/ |
D | get-files.c | 51 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()
|
D | get-lines.c | 52 Dwarf_Off ao; in main() local 55 while (dwarf_nextcu (dbg, cuoff, &cuoff, &hsize, &ao, &asz, &osz) == 0) in main() 58 hsize, (unsigned long long int) ao, in main()
|
/external/v8/src/compiler/ |
D | jump-threading.cc | 201 int ao = 0; in ApplyForwarding() local 204 block->set_ao_number(RpoNumber::FromInt(ao)); in ApplyForwarding() 205 if (!skip[block->rpo_number().ToInt()]) ao++; in ApplyForwarding() 210 block->set_ao_number(RpoNumber::FromInt(ao)); in ApplyForwarding() 211 if (!skip[block->rpo_number().ToInt()]) ao++; in ApplyForwarding()
|
/external/ppp/pppd/plugins/radius/ |
D | radius.c | 550 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 | .gitignore | 2 *.[568ao] 3 *.ao
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/ |
D | p2.cpp | 8 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/wpa_supplicant_8/hs20/client/ |
D | est.c | 347 AttrOrOID *ao = sk_value( in add_csrattrs() local 350 switch (ao->type) { in add_csrattrs() 352 add_csrattrs_oid(ctx, ao->d.oid, exts); in add_csrattrs() 355 add_csrattrs_attr(ctx, ao->d.attribute, exts); in add_csrattrs() 367 AttrOrOID *ao = sk_AttrOrOID_value(csrattrs->attrs, i); in add_csrattrs() local 369 AttrOrOID *ao = SKM_sk_value(AttrOrOID, csrattrs->attrs, i); in add_csrattrs() 371 switch (ao->type) { in add_csrattrs() 373 add_csrattrs_oid(ctx, ao->d.oid, exts); in add_csrattrs() 376 add_csrattrs_attr(ctx, ao->d.attribute, exts); in add_csrattrs()
|
/external/deqp-deps/glslang/Test/ |
D | preprocessor.include.enabled.vert | 6 #include "foo.oeu/ao eu/ao.h"
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-big-imm-offsets.ll | 9 %ao = add i64 %a, 25769803792 10 %b = inttoptr i64 %ao to i32*
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | arm64-big-imm-offsets.ll | 9 %ao = add i64 %a, 25769803792 10 %b = inttoptr i64 %ao to i32*
|
/external/icu/icu4c/source/data/locales/ |
D | fr_MA.txt | 29 "août", 45 "août",
|
/external/python/cpython3/Modules/ |
D | arraymodule.c | 54 arrayobject *ao; member 2827 static PyObject *array_iter(arrayobject *ao); 2880 array_iter(arrayobject *ao) in array_iter() argument 2884 if (!array_Check(ao)) { in array_iter() 2893 Py_INCREF(ao); in array_iter() 2894 it->ao = ao; in array_iter() 2896 it->getitem = ao->ob_descr->getitem; in array_iter() 2904 arrayobject *ao; in arrayiter_next() local 2908 ao = it->ao; in arrayiter_next() 2909 if (ao == NULL) { in arrayiter_next() [all …]
|
/external/u-boot/arch/arm/dts/ |
D | meson-gx.dtsi | 341 compatible = "amlogic,meson-gx-ao-sysctrl", "syscon", "simple-mfd"; 358 compatible = "amlogic,meson-gx-ao-cec"; 363 sec_AO: ao-secure@140 { 364 compatible = "amlogic,meson-gx-ao-secure", "syscon"; 370 compatible = "amlogic,meson-gx-uart", "amlogic,meson-ao-uart"; 377 compatible = "amlogic,meson-gx-uart", "amlogic,meson-ao-uart"; 393 compatible = "amlogic,meson-gx-ao-pwm", "amlogic,meson-gxbb-ao-pwm";
|
/external/python/cpython2/RISCOS/Modules/ |
D | swimodule.c | 346 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()
|