Searched refs:lo (Results 101 - 125 of 602) sorted by relevance

1234567891011>>

/freebsd-11-stable/stand/ficl/arm/
H A Dsysdep.c33 q.lo = (uint32_t)( qx & 0xFFFFFFFFL);
44 qx = (qh << 32) | q.lo;
/freebsd-11-stable/stand/ficl/mips64/
H A Dsysdep.c33 q.lo = (uint32_t)( qx & 0xFFFFFFFFL);
44 qx = (qh << 32) | q.lo;
/freebsd-11-stable/stand/ficl/powerpc/
H A Dsysdep.c33 q.lo = (uint32_t)( qx & 0xFFFFFFFFL);
44 qx = (qh << 32) | q.lo;
/freebsd-11-stable/stand/ficl/mips/
H A Dsysdep.c33 q.lo = (uint32_t)( qx & 0xFFFFFFFFL);
44 qx = (qh << 32) | q.lo;
/freebsd-11-stable/stand/ficl/riscv/
H A Dsysdep.c33 q.lo = (uint32_t)( qx & 0xFFFFFFFFL);
44 qx = (qh << 32) | q.lo;
/freebsd-11-stable/stand/ficl/sparc64/
H A Dsysdep.c33 q.lo = (uint32_t)( qx & 0xFFFFFFFFL);
44 qx = (qh << 32) | q.lo;
/freebsd-11-stable/crypto/openssh/
H A Dkrl.c57 u_int64_t lo, hi; member in struct:revoked_serial
106 if (a->hi >= b->lo && a->lo <= b->hi)
108 return a->lo < b->lo ? -1 : 1;
242 insert_serial_range(struct revoked_serial_tree *rt, u_int64_t lo, u_int64_t hi) argument
246 KRL_DBG(("%s: insert %llu:%llu", __func__, lo, hi));
248 rs.lo = lo;
266 ers->lo, er
322 ssh_krl_revoke_cert_by_serial_range(struct ssh_krl *krl, const struct sshkey *ca_key, u_int64_t lo, u_int64_t hi) argument
[all...]
/freebsd-11-stable/contrib/libexecinfo/
H A Dsymtab.c169 size_t lo = 0; local
175 lo = mid;
180 if (hi - lo == 1) {
181 mid = lo;
184 mid = (hi + lo) / 2;
/freebsd-11-stable/crypto/openssl/crypto/modes/
H A Dgcm128.c74 u64 T = U64(0xe100000000000000) & (0-(V.lo&1)); \
75 V.lo = (V.hi<<63)|(V.lo>>1); \
79 u32 T = 0xe1000000U & (0-(u32)(V.lo&1)); \
80 V.lo = (V.hi<<63)|(V.lo>>1); \
127 Htable[0].lo = 0;
129 V.lo = H[1];
140 Hi[j].lo = H0.lo
[all...]
/freebsd-11-stable/lib/msun/src/
H A Ds_tanhl.c115 long double hi,lo,s,x2,x4,z; local
162 k_hexpl(2*fabsl(x), &hi, &lo);
164 z = divl(hi, lo, -0.5, hi, lo, 0.5);
166 z = one - one/(lo+0.5+hi);
/freebsd-11-stable/lib/msun/ld128/
H A Ds_expl.c62 long double hi, lo, t, twopk; local
89 __k_expl(x, &hi, &lo, &k);
90 t = SUM2P(hi, lo);
295 t = tbl[n2].lo + tbl[n2].hi;
298 t = SUM2P(tbl[n2].hi - 1, tbl[n2].lo * (r1 + 1) + t * q +
303 t = SUM2P(tbl[n2].hi - 2, tbl[n2].lo * (r1 + 1) + t * q +
308 t = SUM2P(tbl[n2].hi, tbl[n2].lo + t * (q + r1));
312 t = SUM2P(tbl[n2].hi, tbl[n2].lo + t * (q + r1));
322 t = SUM2P(tbl[n2].hi, tbl[n2].lo - twomk + t * (q + r1));
324 t = SUM2P(tbl[n2].hi - twomk, tbl[n2].lo
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_lockf.c164 struct lock_owner *lo);
320 lf_owner_matches(struct lock_owner *lo, caddr_t id, struct flock *fl, argument
324 return lo->lo_pid == fl->l_pid
325 && lo->lo_sysid == fl->l_sysid;
327 return lo->lo_id == id;
332 lf_alloc_lock(struct lock_owner *lo) argument
342 if (lo) {
344 lo->lo_refs++;
346 lf->lf_owner = lo;
364 struct lock_owner *lo local
420 struct lock_owner *lo; local
2023 struct lock_owner *lo; local
2408 graph_alloc_vertex(struct owner_graph *g, struct lock_owner *lo) argument
2480 lf_print_owner(struct lock_owner *lo) argument
[all...]
H A Dsubr_lock.c492 lock_profile_lookup(struct lock_object *lo, int spin, const char *file, argument
505 hash = (uintptr_t)lo->lo_name * 31 + (uintptr_t)p * 31 + line;
511 lp->name == lo->lo_name)
523 lp->class = LOCK_CLASS(lo);
524 lp->name = lo->lo_name;
530 lock_profile_object_lookup(struct lock_object *lo, int spin, const char *file, argument
539 if (l->lpo_obj == lo && l->lpo_file == file &&
549 l->lpo_obj = lo;
559 lock_profile_obtain_lock_success(struct lock_object *lo, int contested, argument
570 if (!lock_prof_enable || (lo
624 lock_profile_release_lock(struct lock_object *lo) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_asm.c538 BN_ULONG lo, hi; \
539 BN_UMULT_LOHI(lo,hi,ta,tb); \
540 c0 += lo; hi += (c0<lo)?1:0; \
546 BN_ULONG lo, hi, tt; \
547 BN_UMULT_LOHI(lo,hi,ta,tb); \
548 c0 += lo; tt = hi+((c0<lo)?1:0); \
550 c0 += lo; hi += (c0<lo)
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dprint.c254 unsigned long lo; local
256 lo = tmpui % 1000000000;
265 sprintf(buf + strlen(buf), "%lu", lo);
276 sprintf(buf, alt ? "%#lo" : "%lo",
280 unsigned long lo; local
282 lo = tmpui % 010000000000;
288 alt ? "%#lo" : "%lo",
291 "%lo", mi
311 unsigned long lo; local
342 unsigned long lo = tmpui & 0xffffffff; local
364 unsigned long lo = tmpui & 0xffffffff; local
[all...]
/freebsd-11-stable/contrib/openpam/lib/libpam/
H A DMakefile.in140 am_libpam_la_OBJECTS = openpam_asprintf.lo openpam_borrow_cred.lo \
141 openpam_check_owner_perms.lo openpam_configure.lo \
142 openpam_constants.lo openpam_dispatch.lo openpam_dynamic.lo \
143 openpam_features.lo openpam_findenv.lo openpam_free_data.lo \
[all...]
/freebsd-11-stable/sys/dev/etherswitch/arswitch/
H A Darswitch_reg.c140 uint16_t lo, hi; local
141 lo = MDIO_READREG(device_get_parent(dev), phy, reg);
144 return (hi << 16) | lo;
152 uint16_t lo, hi; local
155 lo = value & 0xffff;
160 phy, reg, lo);
167 phy, reg, lo);
/freebsd-11-stable/usr.sbin/bluetooth/sdpd/
H A Dsar.c92 int32_t type, hi, lo, len; local
105 SDP_GET16(lo, req);
106 hi = lo;
113 SDP_GET16(lo, req);
122 for (; lo <= hi; lo ++) {
123 len = server_prepare_attr_value_pair(provider, lo, ptr, rsp_end);
/freebsd-11-stable/lib/libsdp/
H A Dsearch.c60 uint16_t lo, hi; local
78 lo = (uint16_t) (ap[t] >> 16);
81 if (lo > hi) {
86 if (lo != hi)
89 len += (sizeof(lo) + 1);
121 lo = (uint16_t) (*ap >> 16);
124 if (lo != hi) {
132 SDP_PUT16(lo, req);
133 alen -= (sizeof(lo) + 1);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dsafe-ctype.c131 #define lo _sch_islower macro
141 #define L (const unsigned short) (lo|is |pr) /* lower case letter */
142 #define XL (const unsigned short) (lo|is|xd|pr) /* lowercase hex digit */
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dsafe-ctype.c131 #define lo _sch_islower macro
141 #define L (const unsigned short) (lo|is |pr) /* lower case letter */
142 #define XL (const unsigned short) (lo|is|xd|pr) /* lowercase hex digit */
/freebsd-11-stable/sys/arm/allwinner/a20/
H A Da20_cpu_cfg.c126 uint32_t lo, hi; local
134 lo = cpu_cfg_read_4(a20_cpu_cfg_sc, OSC24M_CNT64_LOW_REG);
136 return (((uint64_t)hi << 32) | lo);
/freebsd-11-stable/crypto/heimdal/lib/kadm5/
H A DMakefile.in134 dist_libkadm5clnt_la_OBJECTS = ad.lo chpass_c.lo client_glue.lo \
135 common_glue.lo create_c.lo delete_c.lo destroy_c.lo flush_c.lo \
136 free.lo get_c.lo get_princs_
[all...]
/freebsd-11-stable/contrib/ntp/include/
H A Dntp_types.h191 int32 hi; u_int32 lo; member in struct:__anon4779::__anon4782
194 u_int32 hi; u_int32 lo; member in struct:__anon4779::__anon4783
204 u_int32 lo; int32 hi;
207 u_int32 lo; u_int32 hi;
/freebsd-11-stable/contrib/ntp/libntp/
H A Dcaltontp.c67 return ntptime.d_s.lo;

Completed in 151 milliseconds

1234567891011>>