/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | AtomicOrdering.h | 80 inline const char *toIRString(AtomicOrdering ao) { in toIRString() argument 84 return names[static_cast<size_t>(ao)]; in toIRString() 87 /// Returns true if ao is stronger than other as defined by the AtomicOrdering 89 inline bool isStrongerThan(AtomicOrdering ao, AtomicOrdering other) { in isStrongerThan() argument 101 return lookup[static_cast<size_t>(ao)][static_cast<size_t>(other)]; in isStrongerThan() 104 inline bool isAtLeastOrStrongerThan(AtomicOrdering ao, AtomicOrdering other) { in isAtLeastOrStrongerThan() argument 116 return lookup[static_cast<size_t>(ao)][static_cast<size_t>(other)]; in isAtLeastOrStrongerThan() 119 inline bool isStrongerThanUnordered(AtomicOrdering ao) { in isStrongerThanUnordered() argument 120 return isStrongerThan(ao, AtomicOrdering::Unordered); in isStrongerThanUnordered() 123 inline bool isStrongerThanMonotonic(AtomicOrdering ao) { in isStrongerThanMonotonic() argument 127 isAcquireOrStronger(AtomicOrdering ao) isAcquireOrStronger() argument 131 isReleaseOrStronger(AtomicOrdering ao) isReleaseOrStronger() argument 135 toCABI(AtomicOrdering ao) toCABI() argument [all...] |
/third_party/lwip/src/netif/ppp/ |
H A D | lcp.c | 366 lcp_options *ao = &pcb->lcp_allowoptions; in lcp_init() local 382 BZERO(ao, sizeof(*ao)); in lcp_init() 383 ao->neg_mru = 1; in lcp_init() 384 ao->mru = PPP_MAXMRU; in lcp_init() 385 ao->neg_asyncmap = 1; in lcp_init() 387 ao->neg_chap = 1; in lcp_init() 388 ao->chap_mdtype = CHAP_MDTYPE_SUPPORTED; in lcp_init() 391 ao->neg_upap = 1; in lcp_init() 394 ao in lcp_init() 655 lcp_options *ao = &pcb->lcp_allowoptions; lcp_resetci() local 1824 lcp_options *ao = &pcb->lcp_allowoptions; lcp_reqci() local 2295 lcp_options *ao = &pcb->lcp_allowoptions; lcp_up() local [all...] |
H A D | ccp.c | 379 memset(ao, 0, sizeof(*ao)); in ccp_init() 388 ao->deflate = 1; in ccp_init() 389 ao->deflate_size = DEFLATE_MAX_SIZE; in ccp_init() 390 ao->deflate_correct = 1; in ccp_init() 391 ao->deflate_draft = 1; in ccp_init() 397 ao->bsd_compress = 1; in ccp_init() 398 ao->bsd_bits = BSD_MAX_BITS; in ccp_init() 402 ao->predictor_1 = 1; in ccp_init() 546 ccp_options *ao in ccp_resetci() local 1108 ccp_options *ao = &pcb->ccp_allowoptions; ccp_reqci() local [all...] |
H A D | multilink.c | 94 lcp_options *ao = &lcp_allowoptions[0]; in mp_check_options() local 105 ao->mrru = ao->mru; in mp_check_options() 106 ao->neg_mrru = 1; in mp_check_options() 123 lcp_options *ao = &lcp_allowoptions[0]; in mp_join_bundle() local 146 if (mtu > ao->mru) in mp_join_bundle() 147 mtu = ao->mru; in mp_join_bundle() 198 mtu = LWIP_MIN(ho->mrru, ao->mru); in mp_join_bundle()
|
H A D | ipcp.c | 596 ipcp_options *ao = &pcb->ipcp_allowoptions; in ipcp_init() local 613 memset(ao, 0, sizeof(*ao)); in ipcp_init() 629 ao->neg_addr = ao->old_addrs = 1; in ipcp_init() 635 ao->neg_vj = 1; in ipcp_init() 636 ao->maxslotindex = MAX_STATES - 1; in ipcp_init() 637 ao->cflag = 1; in ipcp_init() 645 ao->proxy_arp = 1; in ipcp_init() 646 ao in ipcp_init() 716 ipcp_options *ao = &pcb->ipcp_allowoptions; ipcp_resetci() local 1510 ipcp_options *ao = &pcb->ipcp_allowoptions; ipcp_reqci() local [all...] |
H A D | ipv6cp.c | 431 ipv6cp_options *ao = &pcb->ipv6cp_allowoptions; in ipv6cp_init() local 440 memset(ao, 0, sizeof(*ao)); in ipv6cp_init() 445 ao->neg_ifaceid = 1; in ipv6cp_init() 449 ao->neg_vj = 1; in ipv6cp_init() 513 ipv6cp_options *ao = &pcb->ipv6cp_allowoptions; in ipv6cp_resetci() local 515 wo->req_ifaceid = wo->neg_ifaceid && ao->neg_ifaceid; in ipv6cp_resetci() 891 ipv6cp_options *ao = &pcb->ipv6cp_allowoptions; in ipv6cp_reqci() local 935 if (!ao->neg_ifaceid || in ipv6cp_reqci() 982 if (!ao in ipv6cp_reqci() [all...] |
/third_party/python/Objects/ |
H A D | obmalloc.c | 2058 struct arena_object *ao = &arenas[pool->arenaindex]; in insert_to_freepool() local 2059 pool->nextpool = ao->freepools; in insert_to_freepool() 2060 ao->freepools = pool; in insert_to_freepool() 2061 uint nf = ao->nfreepools; in insert_to_freepool() 2073 if (lastnf == ao) { /* it is the rightmost */ in insert_to_freepool() 2074 struct arena_object* p = ao->prevarena; in insert_to_freepool() 2077 ao->nfreepools = ++nf; in insert_to_freepool() 2096 if (nf == ao->ntotalpools && ao->nextarena != NULL) { in insert_to_freepool() 2097 /* Case 1. First unlink ao fro in insert_to_freepool() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/util/ |
H A D | CollectionUtilities.java | 274 Comparable ao = (Comparable) ai.next(); // these are ok, since the sizes are != 0 in containsSome() 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() 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() 330 int rel = ao.compareTo(bo); in containsAll() 335 ao = (Comparable) ai.next(); in containsAll() 338 ao in containsAll() [all...] |
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
H A D | CollectionUtilities.java | 271 Comparable ao = (Comparable) ai.next(); // these are ok, since the sizes are != 0 in containsSome() 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() 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() 327 int rel = ao.compareTo(bo); in containsAll() 332 ao = (Comparable) ai.next(); in containsAll() 335 ao in containsAll() [all...] |
/third_party/node/deps/openssl/openssl/crypto/objects/ |
H A D | obj_dat.c | 177 ADDED_OBJ *ao[4] = { NULL, NULL, NULL, NULL }, *aop; in OBJ_add_object() local 185 if ((ao[ADDED_NID] = OPENSSL_malloc(sizeof(*ao[0]))) == NULL) in OBJ_add_object() 188 if ((ao[ADDED_DATA] = OPENSSL_malloc(sizeof(*ao[0]))) == NULL) in OBJ_add_object() 191 if ((ao[ADDED_SNAME] = OPENSSL_malloc(sizeof(*ao[0]))) == NULL) in OBJ_add_object() 194 if ((ao[ADDED_LNAME] = OPENSSL_malloc(sizeof(*ao[0]))) == NULL) in OBJ_add_object() 198 if (ao[ in OBJ_add_object() [all...] |
/third_party/openssl/crypto/objects/ |
H A D | obj_dat.c | 177 ADDED_OBJ *ao[4] = { NULL, NULL, NULL, NULL }, *aop; in OBJ_add_object() local 185 if ((ao[ADDED_NID] = OPENSSL_malloc(sizeof(*ao[0]))) == NULL) in OBJ_add_object() 188 if ((ao[ADDED_DATA] = OPENSSL_malloc(sizeof(*ao[0]))) == NULL) in OBJ_add_object() 191 if ((ao[ADDED_SNAME] = OPENSSL_malloc(sizeof(*ao[0]))) == NULL) in OBJ_add_object() 194 if ((ao[ADDED_LNAME] = OPENSSL_malloc(sizeof(*ao[0]))) == NULL) in OBJ_add_object() 198 if (ao[ in OBJ_add_object() [all...] |
/third_party/elfutils/tests/ |
H A 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()
|
H A 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()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/ |
H A 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() 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()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/ |
H A 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() 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()
|
/third_party/python/Modules/ |
H A D | arraymodule.c | 53 arrayobject *ao; member 2815 static PyObject *array_iter(arrayobject *ao); 2875 array_iter(arrayobject *ao) in array_iter() argument 2877 array_state *state = find_array_state_by_type(Py_TYPE(ao)); in array_iter() 2880 if (!array_Check(ao, state)) { in array_iter() 2889 Py_INCREF(ao); in array_iter() 2890 it->ao = ao; in array_iter() 2892 it->getitem = ao->ob_descr->getitem; in array_iter() 2900 arrayobject *ao; in arrayiter_next() local [all...] |
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | jump-threading.cc | 241 int ao = 0; in ApplyForwarding() local 243 block->set_ao_number(RpoNumber::FromInt(ao)); in ApplyForwarding() 244 if (!skip[block->rpo_number().ToInt()]) ao++; in ApplyForwarding()
|
H A D | instruction.cc | 405 std::ostream& operator<<(std::ostream& os, const ArchOpcode& ao) { 406 switch (ao) { 799 int ao = 0; 822 loop_end->set_ao_number(RpoNumber::FromInt(ao++)); 835 block->set_ao_number(RpoNumber::FromInt(ao++)); 841 block->set_ao_number(RpoNumber::FromInt(ao++)); 845 DCHECK_EQ(instruction_blocks_->size(), ao);
|
H A D | instruction-codes.h | 188 const ArchOpcode& ao);
|
/third_party/libdrm/tests/util/ |
H A D | format.c | 35 #define MAKE_RGB_INFO(rl, ro, gl, go, bl, bo, al, ao) \ 36 .rgb = { { (rl), (ro) }, { (gl), (go) }, { (bl), (bo) }, { (al), (ao) } }
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_despill.c | 47 const int ro = s->co[0], go = s->co[1], bo = s->co[2], ao = s->co[3]; in do_despill_slice() local 84 dst[x * 4 + ao] = av_clip_uint8(spillmap * 255); in do_despill_slice()
|
/third_party/icu/icu4c/source/samples/ufortune/resources/ |
H A D | Makefile | 34 CLEANFILES += *.[co] *.lst $(RESNAME)_*.mak $(RESNAME).dat $(RESFILES) *.ao README*resources.txt $(RESNAME)_dat*
|
/third_party/skia/third_party/externals/icu/source/samples/ufortune/resources/ |
H A D | Makefile | 34 CLEANFILES += *.[co] *.lst $(RESNAME)_*.mak $(RESNAME).dat $(RESFILES) *.ao README*resources.txt $(RESNAME)_dat*
|
/third_party/mksh/ |
H A D | Build.sh | 256 ao= 266 ao='[0m' 278 $e "$bi==> $fd...$ao $ui$fr$ao$fx" 1077 $e "Hi from$ao $bi$srcversion$ao on:" 1116 $e "$bi$me: Building the MirBSD Korn Shell$ao $ui$dstversion$ao on $TARGET_OS ${TARGET_OSREV}..." 1121 $e $bi$me: Scanning for functions... please ignore any errors.$ao 1394 $e "$bi==> which compiler type seems to be used...$ao [all...] |
/third_party/skia/modules/skottie/tests/ |
H A D | Expression.cpp | 234 "ao": 0, in DEF_TEST()
|