/src/common/lib/libc/quad/ |
divdi3.c | 54 u_quad_t ua, ub, uq; local in function:__divdi3 65 uq = __qdivrem(ua, ub, (u_quad_t *)0); 67 uq = - uq; 68 return uq;
|
quad.h | 73 u_quad_t uq; /* as an unsigned quad */ member in union:uu
|
/src/sbin/fsck_ffs/ |
quota2.c | 430 struct uquot *uq; local in function:quota2_list_qcheck 435 uq = find_uquot(a->uquot_hash, uid, 0); 437 if (uq == NULL) 438 uq = &uq_null; 440 remove_uquot(a->uquot_hash, uq); 442 if (iswap64(q2e->q2e_val[QL_BLOCK].q2v_cur) == uq->uq_b && 443 iswap64(q2e->q2e_val[QL_FILE].q2v_cur) == uq->uq_i) 448 iswap64(q2e->q2e_val[QL_FILE].q2v_cur), uq->uq_b, uq->uq_i); 455 q2e->q2e_val[QL_BLOCK].q2v_cur = iswap64(uq->uq_b) 494 struct uquot *uq; local in function:quota2_check_usage [all...] |
utilities.c | 718 struct uquot *uq; local in function:find_uquot 719 SLIST_FOREACH(uq, &uq_hash[uid & q2h_hash_mask], uq_entries) { 720 if (uq->uq_uid == uid) 721 return uq; 725 uq = malloc(sizeof(struct uquot)); 726 if (uq == NULL) 728 memset(uq, 0, sizeof(struct uquot)); 729 uq->uq_uid = uid; 730 SLIST_INSERT_HEAD(&uq_hash[uid & q2h_hash_mask], uq, uq_entries); 731 return uq; [all...] |
/src/sys/kern/ |
init_sysctl.c | 1441 u_quad_t uq; local in function:sysctl_hw_usermem 1454 uq = (u_quad_t)(physmem - uvmexp.wired) * PAGE_SIZE; 1455 node.sysctl_data = &uq;
|
/src/sys/external/bsd/drm2/dist/drm/ |
drm_ioc32.c | 140 struct drm_unique uq; local in function:compat_drm_getunique 145 uq = (struct drm_unique){ 150 err = drm_ioctl_kernel(file, drm_getunique, &uq, 0); 154 uq32.unique_len = uq.unique_len;
|
/src/sbin/sysctl/ |
sysctl.c | 990 u_quad_t uq; local in function:parse_create 1019 uq = 0; 1295 uq = strtouq(data, &t, 0); 1304 node.sysctl_qdata = uq; 1307 node.sysctl_data = &uq;
|