OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:flagp
(Results
1 - 25
of
27
) sorted by relevancy
1
2
/src/lib/libm/softfloat/
fegetexceptflag.c
45
fegetexceptflag(fexcept_t *
flagp
, int excepts)
48
*
flagp
= __FEE(fpgetsticky()) & excepts;
fesetexceptflag.c
45
fesetexceptflag(const fexcept_t *
flagp
, int excepts)
49
fpsetsticky((fpgetsticky() & ~mask) | (__FPE(*
flagp
) & mask));
/src/lib/libm/arch/riscv/
fenv.c
96
* the argument excepts in the object pointed to by the argument
flagp
.
99
fegetexceptflag(fexcept_t *
flagp
, int excepts)
101
_DIAGASSERT(
flagp
!= NULL);
104
*
flagp
= fcsr_fflags_read() & excepts;
133
* `excepts' to the states stored in the object pointed to by `
flagp
'. It does
137
fesetexceptflag(const fexcept_t *
flagp
, int excepts)
139
_DIAGASSERT(
flagp
!= NULL);
146
fflags = (fflags & ~excepts) | (*
flagp
& excepts);
/src/sys/arch/mvme68k/stand/libsa/
parse_args.c
41
parse_args(char **filep, int *
flagp
, int *partp)
78
*
flagp
= howto;
/src/sys/arch/mvmeppc/stand/libsa/
parse_args.c
40
parse_args(char *astart, const char *aend, const char **filep, int *
flagp
, int *partp)
78
*
flagp
= howto;
/src/lib/libcompat/regexp/
regexp.c
303
reg(paren,
flagp
)
305
int *
flagp
;
313
*
flagp
= HASWIDTH; /* Tentatively. */
334
*
flagp
&= ~HASWIDTH;
335
*
flagp
|= flags&SPSTART;
343
*
flagp
&= ~HASWIDTH;
344
*
flagp
|= flags&SPSTART;
375
regbranch(
flagp
)
376
int *
flagp
;
383
*
flagp
= WORST; /* Tentatively. *
[
all
...]
/src/lib/libm/arch/hppa/
fenv.c
105
* by the argument excepts in the object pointed to by the argument
flagp
.
108
fegetexceptflag(fexcept_t *
flagp
, int excepts)
113
_DIAGASSERT(
flagp
!= NULL);
119
*
flagp
= (r & ex) >> FE_FLAGS_SHIFT;
128
* `excepts' to the states stored in the object pointed to by `
flagp
'. It does
132
fesetexceptflag(const fexcept_t *
flagp
, int excepts)
137
_DIAGASSERT(
flagp
!= NULL);
144
r |= (*
flagp
<< FE_FLAGS_SHIFT) & ex;
/src/lib/libm/arch/sparc/
fenv.c
84
* by the argument excepts in the object pointed to by the argument
flagp
.
87
fegetexceptflag(fexcept_t *
flagp
, int excepts)
92
_DIAGASSERT(
flagp
!= NULL);
98
*
flagp
= r & ex;
107
* `excepts' to the states stored in the object pointed to by `
flagp
'. It does
111
fesetexceptflag(const fexcept_t *
flagp
, int excepts)
116
_DIAGASSERT(
flagp
!= NULL);
123
r |= *
flagp
& ex;
/src/lib/libm/arch/sparc64/
fenv.c
98
* by the argument excepts in the object pointed to by the argument
flagp
.
101
fegetexceptflag(fexcept_t *
flagp
, int excepts)
106
_DIAGASSERT(
flagp
!= NULL);
112
*
flagp
= r & ex;
121
* `excepts' to the states stored in the object pointed to by `
flagp
'. It does
125
fesetexceptflag(const fexcept_t *
flagp
, int excepts)
130
_DIAGASSERT(
flagp
!= NULL);
137
r |= *
flagp
& ex;
/src/lib/libm/arch/aarch64/
fenv.c
88
* the argument
flagp
.
91
fegetexceptflag(fexcept_t *
flagp
, int excepts)
94
*
flagp
= __SHIFTOUT(reg_fpsr_read(), FPSR_CSUM) & excepts;
119
* object pointed to by
flagp
. The value pointed to by
flagp
shall have been
126
fesetexceptflag(const fexcept_t *
flagp
, int excepts)
133
fpsr |= __SHIFTIN((*
flagp
& excepts), FPSR_CSUM);
/src/lib/libm/arch/arm/
fenv.c
87
* the argument
flagp
.
90
fegetexceptflag(fexcept_t *
flagp
, int excepts)
94
*
flagp
= __SHIFTOUT(armreg_fpscr_read(), VFP_FPSCR_CSUM) & excepts;
118
* object pointed to by
flagp
. The value pointed to by
flagp
shall have been
125
fesetexceptflag(const fexcept_t *
flagp
, int excepts)
132
fpscr |= __SHIFTIN((*
flagp
& excepts), VFP_FPSCR_CSUM);
/src/lib/libm/arch/i387/
fenv.c
189
* the argument excepts in the object pointed to by the argument
flagp
.
192
fegetexceptflag(fexcept_t *
flagp
, int excepts)
198
_DIAGASSERT(
flagp
!= NULL);
209
*
flagp
= (mxcsr | status) & ex;
242
* `excepts' to the states stored in the object pointed to by `
flagp
'. It does
246
fesetexceptflag(const fexcept_t *
flagp
, int excepts)
252
_DIAGASSERT(
flagp
!= NULL);
259
env.x87.status |= *
flagp
& ex;
265
mxcsr |= *
flagp
& ex;
355
_DIAGASSERT(
flagp
!= NULL)
[
all
...]
/src/lib/libm/arch/x86_64/
fenv.c
168
* the argument excepts in the object pointed to by the argument
flagp
.
171
fegetexceptflag(fexcept_t *
flagp
, int excepts)
177
_DIAGASSERT(
flagp
!= NULL);
188
/* Store the results in
flagp
*/
189
*
flagp
= (x87_status | mxcsr) & ex;
222
* `excepts' to the states stored in the object pointed to by `
flagp
'. It does
226
fesetexceptflag(const fexcept_t *
flagp
, int excepts)
231
_DIAGASSERT(
flagp
!= NULL);
240
fenv.x87.status |= *
flagp
& ex;
247
fenv.mxcsr |= *
flagp
& ex
[
all
...]
/src/bin/ed/
sub.c
49
extract_subst_tail(int *
flagp
, long *np)
53
*
flagp
= *np = 0;
56
*
flagp
= GPR;
61
*
flagp
= GPR;
70
*
flagp
= GSG;
/src/sys/arch/powerpc/powerpc/
sig_machdep.c
174
cpu_getmcontext(struct lwp *l, mcontext_t *mcp, unsigned int *
flagp
)
199
*
flagp
|= _UC_CPU;
200
*
flagp
|= _UC_TLSBASE;
204
if (!fpu_save_to_mcontext(l, mcp,
flagp
))
210
if (!vec_save_to_mcontext(l, mcp,
flagp
))
fpu.c
216
fpu_save_to_mcontext(lwp_t *l, mcontext_t *mcp, unsigned int *
flagp
)
234
*
flagp
|= _UC_FPU;
/src/lib/libutil/
getmntopts.c
123
getmntopts(const char *options, const struct mntopt *m0, int *
flagp
,
179
thisflagp = m->m_altloc ? altflagp :
flagp
;
/src/sys/arch/prep/pnpbus/
if_we_pnpbus.c
257
we_params(bus_space_tag_t asict, bus_space_handle_t asich, u_int8_t *typep, bus_size_t *memsizep, u_int8_t *
flagp
, int *is790p)
396
if (
flagp
!= NULL && is16bit)
397
*
flagp
|= WE_16BIT_ENABLE;
/src/sys/arch/powerpc/booke/
spe.c
174
vec_save_to_mcontext(lwp_t *l, mcontext_t *mcp, unsigned int *
flagp
)
212
*
flagp
|= _UC_POWERPC_SPE;
/src/sys/arch/powerpc/oea/
altivec.c
183
vec_save_to_mcontext(struct lwp *l, mcontext_t *mcp, unsigned int *
flagp
)
204
*
flagp
|= _UC_POWERPC_VEC;
/src/sys/external/bsd/common/include/linux/
kernel.h
276
static_branch_likely(const bool *
flagp
)
278
return __predict_true(*
flagp
);
/src/sys/dev/isa/
if_we_isa.c
347
bus_size_t *memsizep, uint8_t *
flagp
, int *is790p)
485
if (
flagp
!= NULL && is16bit)
486
*
flagp
|= WE_16BIT_ENABLE;
/src/sys/nfs/
nfs_clntsubs.c
474
nfs_cookieheuristic(struct vnode *vp, int *
flagp
, struct lwp *l, kauth_cred_t cred)
513
*
flagp
|= NFSMNT_SWAPCOOKIE;
nfs_socket.c
910
int *
flagp
= &nmp->nm_iflag;
local
936
if (*
flagp
& NFSMNT_DISMNT) {
956
if ((*
flagp
& NFSMNT_RCVLOCK) == 0) {
957
*
flagp
|= NFSMNT_RCVLOCK;
/src/sys/fs/nfs/common/
nfs_commonsubs.c
3911
newnfs_sndlock(int *
flagp
)
3916
while (*
flagp
& NFSR_SNDLOCK) {
3917
*
flagp
|= NFSR_WANTSND;
3920
(void) nfsmsleep((caddr_t)
flagp
, NFSSOCKMUTEXPTR,
3923
*
flagp
|= NFSR_SNDLOCK;
3932
newnfs_sndunlock(int *
flagp
)
3936
if ((*
flagp
& NFSR_SNDLOCK) == 0)
3938
*
flagp
&= ~NFSR_SNDLOCK;
3939
if (*
flagp
& NFSR_WANTSND) {
3940
*
flagp
&= ~NFSR_WANTSND
[
all
...]
Completed in 52 milliseconds
1
2
Indexes created Sun Feb 22 08:20:21 UTC 2026