Home
last modified time | relevance | path

Searched refs:ll (Results 1 – 25 of 209) sorted by relevance

123456789

/dragonfly/contrib/wpa_supplicant/src/l2_packet/
HDl2_packet_linux.c130 struct sockaddr_ll ll; in l2_packet_send() local
131 os_memset(&ll, 0, sizeof(ll)); in l2_packet_send()
132 ll.sll_family = AF_PACKET; in l2_packet_send()
133 ll.sll_ifindex = l2->ifindex; in l2_packet_send()
134 ll.sll_protocol = htons(proto); in l2_packet_send()
135 ll.sll_halen = ETH_ALEN; in l2_packet_send()
136 os_memcpy(ll.sll_addr, dst_addr, ETH_ALEN); in l2_packet_send()
137 ret = sendto(l2->fd, buf, len, 0, (struct sockaddr *) &ll, in l2_packet_send()
138 sizeof(ll)); in l2_packet_send()
153 struct sockaddr_ll ll; in l2_packet_receive() local
[all …]
/dragonfly/usr.bin/top/
HDhash.c210 #define LL_ISEMPTY(ll) ((ll)->count == 0) argument
212 ll_isempty(llist *ll) in ll_isempty() argument
215 return (ll->count == 0); in ll_isempty()
329 llist *ll; in hash_add_uint() local
346 ll = &(bucket->list); in hash_add_uint()
347 li = LL_FIRST(ll); in hash_add_uint()
357 li = LL_NEXT(ll, li); in hash_add_uint()
391 llist *ll; in hash_replace_uint() local
400 ll = &(bucket->list); in hash_replace_uint()
401 li = LL_FIRST(ll); in hash_replace_uint()
[all …]
/dragonfly/sys/crypto/des/
HDdes_ecb.c102 DES_LONG ll[2]; in des_ecb_encrypt() local
106 c2l(in,l); ll[0]=l; in des_ecb_encrypt()
107 c2l(in,l); ll[1]=l; in des_ecb_encrypt()
108 des_encrypt1(ll,ks,enc); in des_ecb_encrypt()
109 l=ll[0]; l2c(l,out); in des_ecb_encrypt()
110 l=ll[1]; l2c(l,out); in des_ecb_encrypt()
111 l=ll[0]=ll[1]=0; in des_ecb_encrypt()
119 DES_LONG ll[2]; in des_ecb3_encrypt() local
125 ll[0]=l0; in des_ecb3_encrypt()
126 ll[1]=l1; in des_ecb3_encrypt()
[all …]
/dragonfly/crypto/libressl/crypto/sm3/
HDsm3_locl.h31 unsigned long ll; \
32 ll = (c)->A; HOST_l2c(ll, (s)); \
33 ll = (c)->B; HOST_l2c(ll, (s)); \
34 ll = (c)->C; HOST_l2c(ll, (s)); \
35 ll = (c)->D; HOST_l2c(ll, (s)); \
36 ll = (c)->E; HOST_l2c(ll, (s)); \
37 ll = (c)->F; HOST_l2c(ll, (s)); \
38 ll = (c)->G; HOST_l2c(ll, (s)); \
39 ll = (c)->H; HOST_l2c(ll, (s)); \
/dragonfly/contrib/lvm2/dist/lib/locking/
HDfile_locking.c67 struct lock_list *ll; in _release_lock() local
71 ll = dm_list_item(llh, struct lock_list); in _release_lock()
73 if (!file || !strcmp(ll->res, file)) { in _release_lock()
76 log_very_verbose("Unlocking %s", ll->res); in _release_lock()
77 if (flock(ll->lf, LOCK_NB | LOCK_UN)) in _release_lock()
78 log_sys_error("flock", ll->res); in _release_lock()
81 _undo_flock(ll->res, ll->lf); in _release_lock()
83 dm_free(ll->res); in _release_lock()
207 struct lock_list *ll; in _lock_file() local
226 if (!(ll = dm_malloc(sizeof(struct lock_list)))) in _lock_file()
[all …]
/dragonfly/contrib/gcc-4.7/libgcc/
HDfixed-bit.c293 aa.ll = x; in FIXED_MULHELPER()
294 bb.ll = y; in FIXED_MULHELPER()
306 low_low.ll = a_low.ll * b_low.ll; in FIXED_MULHELPER()
307 low_high.ll = a_low.ll * b_high.ll; in FIXED_MULHELPER()
308 high_low.ll = a_high.ll * b_low.ll; in FIXED_MULHELPER()
309 high_high.ll = a_high.ll * b_high.ll; in FIXED_MULHELPER()
314 s.ll = low_low.ll + temp1.ll; in FIXED_MULHELPER()
315 if ((UINT_C_TYPE) s.ll < (UINT_C_TYPE) low_low.ll in FIXED_MULHELPER()
316 || (UINT_C_TYPE) s.ll < (UINT_C_TYPE) temp1.ll) in FIXED_MULHELPER()
318 temp1.ll = s.ll; in FIXED_MULHELPER()
[all …]
HDfp-bit.c202 fractype fraction = src->fraction.ll; /* wasn't unsigned before? */
550 dst->fraction.ll = fraction;
578 dst->fraction.ll = fraction;
586 dst->fraction.ll = (fraction << NGARDS) | IMPLICIT_1;
647 a_fraction = a->fraction.ll;
648 b_fraction = b->fraction.ll;
698 tmp->fraction.ll = tfraction;
704 tmp->fraction.ll = -tfraction;
708 while (tmp->fraction.ll < IMPLICIT_1 && tmp->fraction.ll)
710 tmp->fraction.ll <<= 1;
[all …]
HDlibgcc2.c68 const DWunion uu = {.ll = u}; in __negdi2()
72 return w.ll; in __negdi2()
282 const DWunion uu = {.ll = u}; in __mulvDI3()
283 const DWunion vv = {.ll = v}; in __mulvDI3()
297 DWunion w0 = {.ll = (UDWtype) (UWtype) uu.s.low in __mulvDI3()
299 DWunion w1 = {.ll = (UDWtype) (UWtype) uu.s.low in __mulvDI3()
305 w1.ll -= vv.ll; in __mulvDI3()
306 w1.ll += (UWtype) w0.s.high; in __mulvDI3()
310 return w0.ll; in __mulvDI3()
320 DWunion w0 = {.ll = (UDWtype) (UWtype) uu.s.low in __mulvDI3()
[all …]
/dragonfly/lib/libpam/modules/pam_lastlog/
HDpam_lastlog.c246 struct lastlogx ll; in dolastlogx() local
248 if (getlastlogx(_PATH_LASTLOGX, pwd->pw_uid, &ll) != NULL) in dolastlogx()
249 domsg(pamh, (time_t)ll.ll_tv.tv_sec, ll.ll_host, in dolastlogx()
250 sizeof(ll.ll_host), ll.ll_line, in dolastlogx()
251 sizeof(ll.ll_line)); in dolastlogx()
254 ll.ll_tv = *now; in dolastlogx()
255 (void)strncpy(ll.ll_line, tty, sizeof(ll.ll_line)); in dolastlogx()
258 (void)strncpy(ll.ll_host, hostname, sizeof(ll.ll_host)); in dolastlogx()
260 (void)memset(ll.ll_host, 0, sizeof(ll.ll_host)); in dolastlogx()
263 ll.ll_ss = *ss; in dolastlogx()
[all …]
/dragonfly/lib/libc/stdlib/
HDstrtonum.c33 long long ll = 0; in strtonum() local
51 ll = strtoll(numstr, &ep, 10); in strtonum()
54 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval) in strtonum()
56 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval) in strtonum()
63 ll = 0; in strtonum()
65 return (ll); in strtonum()
/dragonfly/crypto/libressl/crypto/des/
HDecb_enc.c108 DES_LONG ll[2]; in DES_ecb_encrypt() local
112 c2l(in,l); ll[0]=l; in DES_ecb_encrypt()
113 c2l(in,l); ll[1]=l; in DES_ecb_encrypt()
114 DES_encrypt1(ll,ks,enc); in DES_ecb_encrypt()
115 l=ll[0]; l2c(l,out); in DES_ecb_encrypt()
116 l=ll[1]; l2c(l,out); in DES_ecb_encrypt()
117 l=ll[0]=ll[1]=0; in DES_ecb_encrypt()
HDecb3_enc.c67 DES_LONG ll[2]; in DES_ecb3_encrypt() local
73 ll[0]=l0; in DES_ecb3_encrypt()
74 ll[1]=l1; in DES_ecb3_encrypt()
76 DES_encrypt3(ll,ks1,ks2,ks3); in DES_ecb3_encrypt()
78 DES_decrypt3(ll,ks1,ks2,ks3); in DES_ecb3_encrypt()
79 l0=ll[0]; in DES_ecb3_encrypt()
80 l1=ll[1]; in DES_ecb3_encrypt()
HDfcrypt.c66 DES_LONG out[2],ll; in DES_fcrypt() local
101 ll=out[0]; l2c(ll,b); in DES_fcrypt()
102 ll=out[1]; l2c(ll,b); in DES_fcrypt()
/dragonfly/lib/libc/gen/
HDutmpx.c271 struct lastlogx ll; in pututxline() local
281 ll.ll_tv = utx->ut_tv; in pututxline()
282 strcpy(ll.ll_host, utx->ut_host); in pututxline()
283 strcpy(ll.ll_line, utx->ut_line); in pututxline()
286 updlastlogx(_PATH_LASTLOGX, pw->pw_uid, &ll); in pututxline()
447 getlastlogx(const char *fname, uid_t uid, struct lastlogx *ll) in getlastlogx() argument
453 _DIAGASSERT(ll != NULL); in getlastlogx()
466 if (data.size != sizeof(*ll)) { in getlastlogx()
471 if (ll == NULL) in getlastlogx()
472 if ((ll = malloc(sizeof(*ll))) == NULL) in getlastlogx()
[all …]
/dragonfly/crypto/libressl/crypto/md4/
HDmd4_locl.h79 unsigned long ll; \
80 ll=(c)->A; HOST_l2c(ll,(s)); \
81 ll=(c)->B; HOST_l2c(ll,(s)); \
82 ll=(c)->C; HOST_l2c(ll,(s)); \
83 ll=(c)->D; HOST_l2c(ll,(s)); \
/dragonfly/contrib/gcc-8.0/libgcc/
HDlibgcc2.c66 const DWunion uu = {.ll = u}; in __negdi2()
70 return w.ll; in __negdi2()
280 const DWunion uu = {.ll = u}; in __mulvDI3()
281 const DWunion vv = {.ll = v}; in __mulvDI3()
295 DWunion w0 = {.ll = (UDWtype) (UWtype) uu.s.low in __mulvDI3()
297 DWunion w1 = {.ll = (UDWtype) (UWtype) uu.s.low in __mulvDI3()
303 w1.ll -= vv.ll; in __mulvDI3()
304 w1.ll += (UWtype) w0.s.high; in __mulvDI3()
308 return w0.ll; in __mulvDI3()
318 DWunion w0 = {.ll = (UDWtype) (UWtype) uu.s.low in __mulvDI3()
[all …]
/dragonfly/crypto/libressl/crypto/ripemd/
HDrmd_locl.h90 unsigned long ll; \
91 ll=(c)->A; HOST_l2c(ll,(s)); \
92 ll=(c)->B; HOST_l2c(ll,(s)); \
93 ll=(c)->C; HOST_l2c(ll,(s)); \
94 ll=(c)->D; HOST_l2c(ll,(s)); \
95 ll=(c)->E; HOST_l2c(ll,(s)); \
/dragonfly/crypto/libressl/crypto/md5/
HDmd5_locl.h90 unsigned long ll; \
91 ll=(c)->A; HOST_l2c(ll,(s)); \
92 ll=(c)->B; HOST_l2c(ll,(s)); \
93 ll=(c)->C; HOST_l2c(ll,(s)); \
94 ll=(c)->D; HOST_l2c(ll,(s)); \
/dragonfly/contrib/lvm2/dist/lib/format1/
HDimport-extents.c51 struct lv_list *ll; in _create_lv_maps() local
60 dm_list_iterate_items(ll, &vg->lvs) { in _create_lv_maps()
61 if (ll->lv->status & SNAPSHOT) in _create_lv_maps()
67 lvm->lv = ll->lv; in _create_lv_maps()
69 * ll->lv->le_count))) in _create_lv_maps()
72 if (!dm_hash_insert(maps, ll->lv->name, lvm)) in _create_lv_maps()
86 struct lvd_list *ll; in _fill_lv_array() local
91 dm_list_iterate_items(ll, &dl->lvds) { in _fill_lv_array()
92 if (!(lvm = dm_hash_lookup(maps, strrchr((char *)ll->lvd.lv_name, '/') in _fill_lv_array()
96 dev_name(dl->dev), ll->lvd.lv_name); in _fill_lv_array()
[all …]
HDimport-export.c476 struct lvd_list *ll; in import_lvs() local
480 dm_list_iterate_items(ll, &dl->lvds) { in import_lvs()
481 lvd = &ll->lvd; in import_lvs()
497 struct lv_list *ll; in export_lvs() local
517 dm_list_iterate_items(ll, &vg->lvs) { in export_lvs()
518 if (ll->lv->status & SNAPSHOT) in export_lvs()
524 _export_lv(&lvdl->lvd, vg, ll->lv, dev_dir); in export_lvs()
526 lv_num = lvnum_from_lvid(&ll->lv->lvid); in export_lvs()
529 if (!dm_hash_insert(lvd_hash, ll->lv->name, &lvdl->lvd)) in export_lvs()
532 if (!export_extents(dl, lv_num + 1, ll->lv, pv)) in export_lvs()
[all …]
HDdisk-rep.c284 struct lvd_list *ll; in _read_lvs() local
289 ll = dm_pool_alloc(data->mem, sizeof(*ll)); in _read_lvs()
291 if (!ll) in _read_lvs()
294 if (!_read_lvd(data->dev, pos, &ll->lvd)) in _read_lvs()
297 if (!_check_lvd(&ll->lvd)) in _read_lvs()
301 dm_list_add(&data->lvds, &ll->list); in _read_lvs()
571 struct lvd_list *ll; in _write_lvs() local
582 dm_list_iterate_items(ll, &data->lvds) { in _write_lvs()
583 offset = sizeof(struct lv_disk) * ll->lvd.lv_number; in _write_lvs()
585 log_error("lv_number %d too large", ll->lvd.lv_number); in _write_lvs()
[all …]
/dragonfly/usr.bin/window/
HDwwdelete.c82 int tt, bb, ll, rr; in wwdelete1() local
89 ll = MAX(l, w->ww_i.l); in wwdelete1()
91 if (tt >= bb || ll >= rr) { in wwdelete1()
105 for (j = ll; j < rr; j++) { in wwdelete1()
130 if (ll > l) in wwdelete1()
131 wwdelete1(w, tt, bb, l, ll); in wwdelete1()
/dragonfly/usr.bin/finger/
HDutil.c104 struct lastlogx ll; in enter_lastlog() local
106 memset(&ll, 0, sizeof(ll)); in enter_lastlog()
107 getlastlogx(_PATH_LASTLOGX, pn->uid, &ll); in enter_lastlog()
114 w->loginat < ll.ll_tv.tv_sec) in enter_lastlog()
123 strcmp(w->tty, ll.ll_line) == 0) in enter_lastlog()
129 strlcpy(w->tty, ll.ll_line, sizeof(w->tty)); in enter_lastlog()
130 strlcpy(w->host, ll.ll_host, sizeof(w->host)); in enter_lastlog()
132 w->loginat = ll.ll_tv.tv_sec; in enter_lastlog()
/dragonfly/lib/libc/nls/
HDhu_HU.ISO8859-2.msg117 55 Nincs rendelkez�sre �ll� pufferter�let
127 60 A m�velet t�ll�pte a rendelkez�sre �ll� id�t
145 69 A lemezkv�ta t�ll�pve
237 21 Le�ll�tva (tty bevitel)
239 22 Le�ll�tva (tty kivitel)
243 24 Processzorid�-korl�toz�s t�ll�pve
245 25 �jlm�ret-korl�toz�s t�ll�pve
269 4 Nem helyre�ll�that� hiba a n�vfelold�sban
277 8 Se hosztn�v, se szolg�ltat�sn�v nem �ll rendelkez�sre
/dragonfly/contrib/wpa_supplicant/src/drivers/
HDdriver_nl80211_monitor.c344 struct sockaddr_ll ll; in nl80211_create_monitor_interface() local
401 memset(&ll, 0, sizeof(ll)); in nl80211_create_monitor_interface()
402 ll.sll_family = AF_PACKET; in nl80211_create_monitor_interface()
403 ll.sll_ifindex = drv->monitor_ifidx; in nl80211_create_monitor_interface()
417 if (bind(drv->monitor_sock, (struct sockaddr *) &ll, sizeof(ll)) < 0) { in nl80211_create_monitor_interface()

123456789