| /dragonfly/contrib/gcc-4.7/gcc/doc/ |
| HD | contrib.texi | 20 @item 24 @item 28 @item 32 @item 36 @item 39 @item 42 @item 46 @item 49 @item 52 @item [all …]
|
| HD | arm-neon-intrinsics.texi | 10 @item uint32x2_t vadd_u32 (uint32x2_t, uint32x2_t) 16 @item uint16x4_t vadd_u16 (uint16x4_t, uint16x4_t) 22 @item uint8x8_t vadd_u8 (uint8x8_t, uint8x8_t) 28 @item int32x2_t vadd_s32 (int32x2_t, int32x2_t) 34 @item int16x4_t vadd_s16 (int16x4_t, int16x4_t) 40 @item int8x8_t vadd_s8 (int8x8_t, int8x8_t) 46 @item float32x2_t vadd_f32 (float32x2_t, float32x2_t) 52 @item uint64x1_t vadd_u64 (uint64x1_t, uint64x1_t) 57 @item int64x1_t vadd_s64 (int64x1_t, int64x1_t) 62 @item uint32x4_t vaddq_u32 (uint32x4_t, uint32x4_t) [all …]
|
| HD | sourcebuild.texi | 31 @item boehm-gc 35 @item config 38 @item contrib 43 @item fixincludes 50 @item gcc 56 @item gnattools 59 @item include 62 @item intl 66 @item libada 69 @item libcpp [all …]
|
| /dragonfly/contrib/wpa_supplicant/src/utils/ |
| HD | list.h | 28 static inline void dl_list_add(struct dl_list *list, struct dl_list *item) in dl_list_add() argument 30 item->next = list->next; in dl_list_add() 31 item->prev = list; in dl_list_add() 32 list->next->prev = item; in dl_list_add() 33 list->next = item; in dl_list_add() 36 static inline void dl_list_add_tail(struct dl_list *list, struct dl_list *item) in dl_list_add_tail() argument 38 dl_list_add(list->prev, item); in dl_list_add_tail() 41 static inline void dl_list_del(struct dl_list *item) in dl_list_del() argument 43 item->next->prev = item->prev; in dl_list_del() 44 item->prev->next = item->next; in dl_list_del() [all …]
|
| /dragonfly/usr.sbin/bthcid/ |
| HD | client.c | 63 struct item { struct 68 LIST_ENTRY(item) next; argument 72 static LIST_HEAD(,item) item_list; 183 struct item *item; in process_client() local 203 LIST_FOREACH(item, &item_list, next) { in process_client() 204 if (bdaddr_same(&rp.laddr, &item->laddr) == 0 in process_client() 205 || bdaddr_same(&rp.raddr, &item->raddr) == 0) in process_client() 210 if (item->hci != -1) { in process_client() 214 bdaddr_copy(&sa.bt_bdaddr, &item->laddr); in process_client() 216 send_pin_code_reply(item->hci, &sa, &item->raddr, rp.pin); in process_client() [all …]
|
| /dragonfly/crypto/libressl/ssl/ |
| HD | pqueue.c | 73 pitem *item = malloc(sizeof(pitem)); in pitem_new() local 75 if (item == NULL) in pitem_new() 78 memcpy(item->priority, prio64be, sizeof(item->priority)); in pitem_new() 80 item->data = data; in pitem_new() 81 item->next = NULL; in pitem_new() 83 return item; in pitem_new() 87 pitem_free(pitem *item) in pitem_free() argument 89 free(item); in pitem_free() 105 pqueue_insert(pqueue_s *pq, pitem *item) in pqueue_insert() argument 110 pq->items = item; in pqueue_insert() [all …]
|
| /dragonfly/bin/cpdup/ |
| HD | hcproto.c | 12 static int hc_decode_stat_item(struct stat *st, struct HCLeaf *item); 139 struct HCLeaf *item; in hc_hello() local 168 FOR_EACH_ITEM(item, trans, head) { in hc_hello() 169 switch(item->leafid) { in hc_hello() 172 fprintf(stderr, "Handshaked with %s\n", HCC_STRING(item)); in hc_hello() 176 hc->version = HCC_INT32(item); in hc_hello() 197 struct HCLeaf *item; in rc_hello() local 200 FOR_EACH_ITEM(item, trans, head) { in rc_hello() 201 if (item->leafid == LC_PATH1) in rc_hello() 202 UseCpFile = strdup(HCC_STRING(item)); in rc_hello() [all …]
|
| HD | hclink.c | 325 struct HCLeaf *item; in hcc_leaf_string() local 328 item = (void *)(trans->wbuf + trans->windex); in hcc_leaf_string() 329 assert(trans->windex + sizeof(*item) + bytes < HC_BUFSIZE); in hcc_leaf_string() 330 item->leafid = leafid; in hcc_leaf_string() 331 item->reserved = 0; in hcc_leaf_string() 332 item->bytes = sizeof(*item) + bytes; in hcc_leaf_string() 333 bcopy(str, item + 1, bytes); in hcc_leaf_string() 334 trans->windex = HCC_ALIGN(trans->windex + item->bytes); in hcc_leaf_string() 340 struct HCLeaf *item; in hcc_leaf_data() local 342 item = (void *)(trans->wbuf + trans->windex); in hcc_leaf_data() [all …]
|
| /dragonfly/crypto/libressl/crypto/cms/ |
| HD | cms_asn1.c | 68 .item = &X509_NAME_it, 75 .item = &ASN1_INTEGER_it, 95 .item = &ASN1_OBJECT_it, 102 .item = &ASN1_ANY_it, 122 .item = &X509_it, 129 .item = &ASN1_SEQUENCE_it, 136 .item = &ASN1_SEQUENCE_it, 143 .item = &ASN1_SEQUENCE_it, 150 .item = &CMS_OtherCertificateFormat_it, 170 .item = &CMS_IssuerAndSerialNumber_it, [all …]
|
| /dragonfly/sys/dev/drm/ |
| HD | drm_global.c | 50 struct drm_global_item *item = &glob[i]; in drm_global_init() local 51 lockinit(&item->mutex, "drmgi", 0, LK_CANRECURSE); in drm_global_init() 52 item->object = NULL; in drm_global_init() 53 item->refcount = 0; in drm_global_init() 61 struct drm_global_item *item = &glob[i]; in drm_global_release() local 62 BUG_ON(item->object != NULL); in drm_global_release() 63 BUG_ON(item->refcount != 0); in drm_global_release() 82 struct drm_global_item *item = &glob[ref->global_type]; in drm_global_item_ref() local 84 mutex_lock(&item->mutex); in drm_global_item_ref() 85 if (item->refcount == 0) { in drm_global_item_ref() [all …]
|
| /dragonfly/sys/netgraph7/netgraph/ |
| HD | ng_base.c | 213 static int ng_generic_msg(node_p here, item_p item, hook_p lasthook); 217 static int ng_apply_item(item_p item); 219 static int ng_con_nodes(item_p item, node_p node, const char *name, 221 static int ng_con_part2(node_p node, item_p item, hook_p hook); 222 static int ng_con_part3(node_p node, item_p item, hook_p hook); 1305 ng_con_part3(node_p node, item_p item, hook_p hook) in ng_con_part3() argument 1343 NG_FREE_ITEM(item); in ng_con_part3() 1348 ng_con_part2(node_p node, item_p item, hook_p hook) in ng_con_part2() argument 1424 if ((error = ng_send_fn2(peer->hk_node, peer, item, &ng_con_part3, in ng_con_part2() 1433 NG_FREE_ITEM(item); in ng_con_part2() [all …]
|
| /dragonfly/contrib/binutils-2.27/gas/doc/ |
| HD | c-ppc.texi | 39 @item -a32 42 @item -a64 45 @item -K PIC 48 @item -mpwrx | -mpwr2 51 @item -mpwr 54 @item -m601 57 @item -mppc, -mppc32, -m603, -m604 60 @item -m403, -m405 63 @item -m440 66 @item -m464 [all …]
|
| HD | c-nds32.texi | 39 @item -O1 42 @item -Os 45 @item -EL 48 @item -EB 51 @item -mpic 54 @item -mno-fp-as-gp-relax 57 @item -mb2bb-relax 60 @item -mno-all-relax 63 @item -march=<arch name> 67 @item -mbaseline=<baseline> [all …]
|
| HD | c-lm32.texi | 31 @item -mmultiply-enabled 35 @item -mdivide-enabled 39 @item -mbarrel-shift-enabled 43 @item -msign-extend-enabled 47 @item -muser-enabled 51 @item -micache-enabled 55 @item -mdcache-enabled 59 @item -mbreak-enabled 63 @item -mall-enabled 94 @item IE [all …]
|
| HD | c-s390.texi | 39 @item -m31 | -m64 49 @item -mesa | -mzarch 58 @item -march=@var{CPU} 76 @item -mregnames 80 @item -mno-regnames 84 @item -mwarn-areg-zero 146 @item %rN @tab the 16 general purpose registers, 0 <= N <= 15 147 @item %fN @tab the 16 floating point registers, 0 <= N <= 15 148 @item %aN @tab the 16 access registers, 0 <= N <= 15 149 @item %cN @tab the 16 control registers, 0 <= N <= 15 [all …]
|
| HD | c-arc.texi | 38 @item -mcpu=@var{cpu} 47 @item arc600 50 @item arc601 54 @item arc700 59 @item arcem 63 @item archs 67 @item nps400 77 @item -EB 82 @item -EL 88 @item -mcode-density [all …]
|
| HD | c-d30v.texi | 30 @item -O 35 @item -n 39 @item -N 117 @item -> 120 @item <- 123 @item || 130 @item abs r2,r3 -> abs r4,r5 134 @item abs r2,r3 <- abs r4,r5 138 @item abs r2,r3 || abs r4,r5 141 @item ldw r2,@@(r3,r4) || [all …]
|
| HD | c-msp430.texi | 31 @item -mmcu 35 @item -mcpu 39 @item -msilicon-errata=@var{name}[,@var{name}@dots{}] 47 @item cpu4 50 @item cpu8 52 @item cpu11 54 @item cpu12 56 @item cpu13 58 @item cpu19 62 @item -msilicon-errata-warn=@var{name}[,@var{name}@dots{}] [all …]
|
| /dragonfly/contrib/dialog/ |
| HD | formbox.c | 43 is_readonly(DIALOG_FORMITEM * item) in is_readonly() argument 45 return ((item->type & 2) != 0) || (item->text_flen <= 0); in is_readonly() 49 is_hidden(DIALOG_FORMITEM * item) in is_hidden() argument 51 return ((item->type & 1) != 0); in is_hidden() 78 print_item(WINDOW *win, DIALOG_FORMITEM * item, int scrollamt, bool choice) in print_item() argument 83 if (ok_move(win, scrollamt, item->name_y, item->name_x)) { in print_item() 84 len = item->name_len; in print_item() 85 len = MIN(len, getmaxx(win) - item->name_x); in print_item() 88 item->name, in print_item() 91 item->name_y - scrollamt, in print_item() [all …]
|
| /dragonfly/sys/vm/ |
| HD | vm_zone.c | 93 void *item; in zalloc() local 109 item = zpcpu->zitems; in zalloc() 111 KASSERT(item != NULL, in zalloc() 113 if (((void **)item)[1] != (void *)ZENTRY_FREE) in zalloc() 115 ((void **)item)[1] = NULL; in zalloc() 117 zpcpu->zitems = ((void **) item)[0]; in zalloc() 122 return item; in zalloc() 135 item = z->zitems; in zalloc() 137 KASSERT(item != NULL, ("zitems unexpectedly NULL")); in zalloc() 138 if (((void **)item)[1] != (void *)ZENTRY_FREE) in zalloc() [all …]
|
| /dragonfly/sys/netgraph7/ |
| HD | netgraph.h | 99 typedef int ng_rcvmsg_t(node_p node, item_p item, hook_p lasthook); 100 typedef int ng_rcvdata_t(hook_p hook, item_p item); 102 typedef int ng_rcvitem (node_p node, hook_p hook, item_p item); 594 typedef int ng_item_fn2(node_p node, struct ng_item *item, hook_p hook); 687 void dumpitem(item_p item, char *file, int line); 688 static __inline void _ngi_check(item_p item, char *file, int line) ; 689 static __inline struct mbuf ** _ngi_m(item_p item, char *file, int line) ; 690 static __inline ng_ID_t * _ngi_retaddr(item_p item, char *file, int line); 691 static __inline struct ng_mesg ** _ngi_msg(item_p item, char *file, int line) ; 692 static __inline ng_item_fn ** _ngi_fn(item_p item, char *file, int line) ; [all …]
|
| HD | netgraph2.h | 65 ng_ref_item(item_p item) in ng_ref_item() argument 67 refcount_acquire(&item->refs); in ng_ref_item() 77 ng_unref_item(item_p item, int error) in ng_unref_item() argument 79 if (refcount_release(&item->refs)) { in ng_unref_item() 81 if (item->apply != NULL) { in ng_unref_item() 82 KKASSERT(item->apply->apply != NULL); in ng_unref_item() 83 (*item->apply->apply)(item->apply->context, error); in ng_unref_item() 84 ng_free_apply(item->apply); in ng_unref_item() 85 item->apply = NULL; in ng_unref_item() 87 ng_free_item(item); in ng_unref_item()
|
| /dragonfly/sys/netgraph7/ppp/ |
| HD | ng_ppp.c | 291 static int ng_ppp_proto_recv(node_p node, item_p item, uint16_t proto, 293 static int ng_ppp_hcomp_xmit(node_p node, item_p item, uint16_t proto); 294 static int ng_ppp_hcomp_recv(node_p node, item_p item, uint16_t proto, 296 static int ng_ppp_comp_xmit(node_p node, item_p item, uint16_t proto); 297 static int ng_ppp_comp_recv(node_p node, item_p item, uint16_t proto, 299 static int ng_ppp_crypt_xmit(node_p node, item_p item, uint16_t proto); 300 static int ng_ppp_crypt_recv(node_p node, item_p item, uint16_t proto, 302 static int ng_ppp_mp_xmit(node_p node, item_p item, uint16_t proto); 303 static int ng_ppp_mp_recv(node_p node, item_p item, uint16_t proto, 305 static int ng_ppp_link_xmit(node_p node, item_p item, uint16_t proto, [all …]
|
| /dragonfly/crypto/libressl/crypto/pkcs7/ |
| HD | pk7_asn1.c | 74 .item = &ASN1_ANY_it, 85 .item = &ASN1_OCTET_STRING_NDEF_it, 96 .item = &PKCS7_SIGNED_it, 107 .item = &PKCS7_ENVELOPE_it, 118 .item = &PKCS7_SIGN_ENVELOPE_it, 129 .item = &PKCS7_DIGEST_it, 140 .item = &PKCS7_ENCRYPT_it, 196 .item = &ASN1_OBJECT_it, 203 .item = (const ASN1_ITEM *)&PKCS7_adb, 261 .item = &ASN1_INTEGER_it, [all …]
|
| /dragonfly/crypto/libressl/crypto/ocsp/ |
| HD | ocsp_asn.c | 70 .item = &X509_ALGOR_it, 77 .item = &ASN1_BIT_STRING_it, 84 .item = &X509_it, 130 .item = &X509_ALGOR_it, 137 .item = &ASN1_OCTET_STRING_it, 144 .item = &ASN1_OCTET_STRING_it, 151 .item = &ASN1_INTEGER_it, 197 .item = &OCSP_CERTID_it, 204 .item = &X509_EXTENSION_it, 250 .item = &ASN1_INTEGER_it, [all …]
|