| /dragonfly/contrib/gcc-4.7/libobjc/objc-private/ |
| HD | module-abi-8.h | 237 #define __CLS_INFO(cls) ((cls)->info) argument 238 #define __CLS_ISINFO(cls, mask) ((__CLS_INFO(cls)&mask)==mask) argument 239 #define __CLS_SETINFO(cls, mask) (__CLS_INFO(cls) |= mask) argument 240 #define __CLS_SETNOTINFO(cls, mask) (__CLS_INFO(cls) &= ~mask) argument 244 #define CLS_ISMETA(cls) ((cls)&&__CLS_ISINFO(cls, _CLS_META)) argument 248 #define CLS_ISCLASS(cls) ((cls)&&__CLS_ISINFO(cls, _CLS_CLASS)) argument 253 #define CLS_ISRESOLV(cls) __CLS_ISINFO(cls, _CLS_RESOLV) argument 254 #define CLS_SETRESOLV(cls) __CLS_SETINFO(cls, _CLS_RESOLV) argument 259 #define CLS_ISINITIALIZED(cls) __CLS_ISINFO(cls, _CLS_INITIALIZED) argument 260 #define CLS_SETINITIALIZED(cls) __CLS_SETINFO(cls, _CLS_INITIALIZED) argument [all …]
|
| /dragonfly/sys/kern/ |
| HD | subr_kobj.c | 87 kobj_class_compile(kobj_class_t cls) in kobj_class_compile() argument 96 if (cls->ops) in kobj_class_compile() 105 if (cls->ops) { in kobj_class_compile() 114 ops->cls = cls; in kobj_class_compile() 115 cls->ops = ops; in kobj_class_compile() 120 for (m = cls->methods; m->desc; m++) in kobj_class_compile() 125 kobj_lookup_method_class(kobj_class_t cls, kobjop_desc_t desc) in kobj_lookup_method_class() argument 127 kobj_method_t *methods = cls->methods; in kobj_lookup_method_class() 138 kobj_lookup_method_mi(kobj_class_t cls, kobjop_desc_t desc) in kobj_lookup_method_mi() argument 143 ce = kobj_lookup_method_class(cls, desc); in kobj_lookup_method_mi() [all …]
|
| HD | tty_subr.c | 295 clist_catq(struct clist *cls, struct clist *cld) in clist_catq() argument 299 while ((c = clist_getc(cls)) != -1) in clist_catq()
|
| /dragonfly/contrib/gcc-4.7/libobjc/ |
| HD | sendmsg.c | 82 static void __objc_install_dtable_for_class (Class cls); 83 static void __objc_prepare_dtable_for_class (Class cls); 84 static void __objc_install_prepared_dtable_for_class (Class cls); 86 static struct sarray *__objc_prepared_dtable_for_class (Class cls); 87 static IMP __objc_get_prepared_imp (Class cls,SEL sel); 788 search_for_method_in_hierarchy (Class cls, SEL sel) in search_for_method_in_hierarchy() argument 798 for (class = cls; ((! method) && class); class = class->super_class) in search_for_method_in_hierarchy() 996 __objc_install_dtable_for_class (Class cls) in __objc_install_dtable_for_class() argument 1000 if (! CLS_ISRESOLV (cls)) in __objc_install_dtable_for_class() 1006 if (cls->super_class in __objc_install_dtable_for_class() [all …]
|
| /dragonfly/lib/libdmsg/ |
| HD | msg_lnk.c | 141 struct h2span_cluster *cls; member 530 h2span_cluster_t *cls; in dmsg_lnk_span() local 570 cls = RB_FIND(h2span_cluster_tree, &cluster_tree, &dummy_cls); in dmsg_lnk_span() 571 if (cls == NULL) { in dmsg_lnk_span() 572 cls = dmsg_alloc(sizeof(*cls)); in dmsg_lnk_span() 573 cls->peer_id = msg->any.lnk_span.peer_id; in dmsg_lnk_span() 574 cls->peer_type = msg->any.lnk_span.peer_type; in dmsg_lnk_span() 576 cls->peer_label, sizeof(cls->peer_label)); in dmsg_lnk_span() 577 RB_INIT(&cls->tree); in dmsg_lnk_span() 578 RB_INSERT(h2span_cluster_tree, &cluster_tree, cls); in dmsg_lnk_span() [all …]
|
| /dragonfly/sys/sys/ |
| HD | kobj.h | 101 kobj_class_t cls; member 204 void kobj_class_instantiate(kobj_class_t cls); 209 void kobj_class_uninstantiate(kobj_class_t cls); 214 kobj_t kobj_create(kobj_class_t cls, 221 void kobj_init(kobj_t obj, kobj_class_t cls); 238 _m = kobj_lookup_method_cache(OPS->cls, &OPS->cache[0], \ 242 kobj_method_t *kobj_lookup_method(kobj_class_t cls, 246 kobjop_t kobj_lookup_method_cache(kobj_class_t cls,
|
| /dragonfly/contrib/gcc-8.0/gcc/ |
| HD | ipa-icf.c | 2471 sem_item_optimizer::add_class (congruence_class *cls) in add_class() argument 2473 gcc_assert (cls->members.length ()); in add_class() 2476 = get_group_by_hash (cls->members[0]->get_hash (), in add_class() 2477 cls->members[0]->type); in add_class() 2478 group->classes.safe_push (cls); in add_class() 2691 sem_item_optimizer::add_item_to_class (congruence_class *cls, sem_item *item) in add_item_to_class() argument 2693 item->index_in_class = cls->members.length (); in add_item_to_class() 2694 cls->members.safe_push (item); in add_item_to_class() 2695 item->cls = cls; in add_item_to_class() 2822 if (m_items[i]->cls->members.length () > 1) in parse_nonsingleton_classes() [all …]
|
| HD | ipa-icf.h | 223 congruence_class *cls; variable 464 class congruence_class *cls; member 522 void add_class (congruence_class *cls); 575 void worklist_push (congruence_class *cls); 583 void do_congruence_step (congruence_class *cls); 587 void do_congruence_step_for_index (congruence_class *cls, unsigned int index); 590 static void add_item_to_class (congruence_class *cls, sem_item *item); 595 static bool release_split_map (congruence_class * const &cls, bitmap const &b, 601 static bool traverse_congruence_split (congruence_class * const &cls,
|
| /dragonfly/lib/libutil/ |
| HD | login_cap.c | 302 login_getclass(const char *cls) in login_getclass() argument 304 return login_getclassbyname(cls, NULL); in login_getclass() 323 const char *cls = NULL; in login_getpwclass() local 326 cls = pwd->pw_class; in login_getpwclass() 327 if (cls == NULL || *cls == '\0') in login_getpwclass() 328 cls = (pwd->pw_uid == 0) ? LOGIN_DEFROOTCLASS : LOGIN_DEFCLASS; in login_getpwclass() 334 return login_getclassbyname(cls, pwd); in login_getpwclass()
|
| /dragonfly/sys/dev/sound/pcm/ |
| HD | ac97.h | 87 #define AC97_CREATE(dev, devinfo, cls) ac97_create(dev, devinfo, &cls ## _class) argument 95 struct ac97_info *ac97_create(device_t dev, void *devinfo, kobj_class_t cls);
|
| HD | mixer.h | 33 struct snd_mixer *mixer_create(device_t dev, kobj_class_t cls, void *devinfo, 36 int mixer_init(device_t dev, kobj_class_t cls, void *devinfo);
|
| HD | mixer.c | 613 mixer_obj_create(device_t dev, kobj_class_t cls, void *devinfo, in mixer_obj_create() argument 619 KASSERT(dev != NULL && cls != NULL && devinfo != NULL, in mixer_obj_create() 621 __func__, dev, cls, devinfo)); in mixer_obj_create() 625 m = (struct snd_mixer *)kobj_create(cls, M_MIXER, M_WAITOK | M_ZERO); in mixer_obj_create() 674 mixer_create(device_t dev, kobj_class_t cls, void *devinfo, const char *desc) in mixer_create() argument 678 m = mixer_obj_create(dev, cls, devinfo, MIXER_TYPE_SECONDARY, desc); in mixer_create() 687 mixer_init(device_t dev, kobj_class_t cls, void *devinfo) in mixer_init() argument 709 m = mixer_obj_create(dev, cls, devinfo, MIXER_TYPE_PRIMARY, NULL); in mixer_init()
|
| HD | sound.c | 485 pcm_chn_create(struct snddev_info *d, struct pcm_channel *parent, kobj_class_t cls, int dir, int nu… in pcm_chn_create() argument 574 ch->methods = kobj_create(cls, M_DEVBUF, M_WAITOK | M_ZERO); in pcm_chn_create() 695 pcm_addchan(device_t dev, int dir, kobj_class_t cls, void *devinfo) in pcm_addchan() argument 704 ch = pcm_chn_create(d, NULL, cls, dir, -1, devinfo); in pcm_addchan() 707 cls->name, dir, devinfo); in pcm_addchan()
|
| HD | sound.h | 338 …chn_create(struct snddev_info *d, struct pcm_channel *parent, kobj_class_t cls, int dir, int num, … 343 int pcm_addchan(device_t dev, int dir, kobj_class_t cls, void *devinfo);
|
| /dragonfly/usr.bin/limits/ |
| HD | limits.c | 262 char *p, *cls = NULL; in main() local 300 cls = optarg; in main() 355 else if (cls != NULL && *cls != '\0') { in main() 356 lc = login_getclassbyname(cls, NULL); in main() 357 if (lc == NULL || strcmp(cls, lc->lc_class) != 0) in main() 359 cls, lc?lc->lc_class:"current settings"); in main()
|
| /dragonfly/sbin/newfs_msdos/ |
| HD | mkfs_msdos.c | 248 u_int fat, bss, rds, cls, dir, lsn, x, x1, x2; in mkfs_msdos() local 576 cls = (bpb.bpbHugeSectors - x1) / bpb.bpbSecPerClust; in mkfs_msdos() 579 if (cls > x) in mkfs_msdos() 580 cls = x; in mkfs_msdos() 583 cls); in mkfs_msdos() 584 if (cls < mincls(fat)) { in mkfs_msdos() 585 warnx("%u clusters too few clusters for FAT%u, need %u", cls, fat, in mkfs_msdos() 589 if (cls > maxcls(fat)) { in mkfs_msdos() 590 cls = maxcls(fat); in mkfs_msdos() 591 bpb.bpbHugeSectors = x1 + (cls + 1) * bpb.bpbSecPerClust - 1; in mkfs_msdos() [all …]
|
| /dragonfly/sys/dev/sound/midi/ |
| HD | mpu401.c | 169 mpu401_init(kobj_class_t cls, void *cookie, driver_intr_t softintr, in mpu401_init() argument 177 kobj_init((kobj_t)m, cls); in mpu401_init()
|
| /dragonfly/games/hack/ |
| HD | hack.pager.c | 202 cls(); in set_pager() 235 cls(); in page_line()
|
| HD | hack.read.c | 327 cls(); in doread() 351 cls(); in doread() 385 cls(); in doread()
|
| HD | hack.rip.c | 88 cls(); in outrip()
|
| HD | hack.potion.c | 144 cls(); in dodrink() 165 cls(); in dodrink()
|
| HD | hack.pri.c | 78 cls(); in swallowed() 277 cls(); in docrt() 788 cls(void) in cls() function
|
| /dragonfly/contrib/binutils-2.27/gas/ |
| HD | macro.c | 1239 char *copy, *cls; in check_macro() local 1254 for (cls = copy; *cls != '\0'; cls ++) in check_macro() 1255 *cls = TOLOWER (*cls); in check_macro()
|
| /dragonfly/contrib/binutils-2.34/gas/ |
| HD | macro.c | 1238 char *copy, *cls; in check_macro() local 1253 for (cls = copy; *cls != '\0'; cls ++) in check_macro() 1254 *cls = TOLOWER (*cls); in check_macro()
|
| /dragonfly/contrib/gcc-4.7/gcc/objc/ |
| HD | objc-next-runtime-abi-02.c | 3441 objc2_build_ehtype_initializer (tree name, tree cls) in objc2_build_ehtype_initializer() argument 3469 CONSTRUCTOR_APPEND_ELT (initlist, NULL_TREE, cls); in objc2_build_ehtype_initializer() 3499 objc2_objc_exception_attr (tree cls) in objc2_objc_exception_attr() argument 3501 while (cls) in objc2_objc_exception_attr() 3503 if (CLASS_HAS_EXCEPTION_ATTR (cls)) in objc2_objc_exception_attr() 3505 cls = lookup_interface (CLASS_SUPER_NAME (cls)); in objc2_objc_exception_attr()
|