HomeSort by relevance Sort by last modified time
    Searched refs:cw (Results 1 - 25 of 45) sorted by null

1 2

  /onnv/onnv-gate/usr/src/lib/libc/amd64/fp/
fpgetround.c 42 struct _cw87 cw; local
44 _getcw(&cw);
45 return ((fp_rnd)cw.rnd);
fpgetmask.c 42 struct _cw87 cw; local
44 _getcw(&cw);
45 return (fp_except)(~cw.mask & EXCPMASK);
fpsetmask.c 44 struct _cw87 cw; local
48 _getcw(&cw);
49 oldmask = (fp_except)(~cw.mask & EXCPMASK);
50 cw.mask = ~((unsigned)newmask) & EXCPMASK;
51 _putcw(cw);
fpsetround.c 44 struct _cw87 cw; local
49 _getcw(&cw);
50 oldrnd = (fp_rnd)cw.rnd;
51 cw.rnd = newrnd;
52 _putcw(cw);
_xtoll.s 30 .set cw,0
43 movw %ax,cw(%rsp)
44 fldcw cw(%rsp)
47 fstcw cw(%rsp) /* fetch CW in case masks changed */
48 movw cw(%rsp),%ax
51 movw %ax,cw(%rsp)
52 fldcw cw(%rsp)
67 movw %ax,cw(%rsp)
68 fldcw cw(%rsp
    [all...]
_xtoull.s 30 .set cw,0
43 movw %ax,cw(%rsp)
44 fldcw cw(%rsp)
59 fstcw cw(%rsp) /* fetch CW in case masks changed */
60 movw cw(%rsp),%dx
63 movw %dx,cw(%rsp)
64 fldcw cw(%rsp)
  /onnv/onnv-gate/usr/src/lib/libc/i386/fp/
fpgetround.c 42 struct _cw87 cw; local
44 _getcw(&cw);
45 return ((fp_rnd)cw.rnd);
fpgetmask.c 42 struct _cw87 cw; local
44 _getcw(&cw);
45 return (fp_except)(~cw.mask & EXCPMASK);
fpsetmask.c 45 struct _cw87 cw; local
49 _getcw(&cw);
50 oldmask = (fp_except)(~cw.mask & EXCPMASK);
51 cw.mask = ~((unsigned)newmask) & EXCPMASK;
52 _putcw(cw);
fpsetround.c 45 struct _cw87 cw; local
61 _getcw(&cw);
62 oldrnd = (fp_rnd)cw.rnd;
63 cw.rnd = newrnd;
64 _putcw(cw);
_base_il.c 89 int cw; local
91 _getcw(&cw);
92 b->mode = cw;
95 * set CW to...
100 cw = (cw & ~0xf3f) | 0x23f;
101 _putcw(cw);
_xtoll.s 30 .set cw,0
44 movw %ax,cw(%esp)
45 fldcw cw(%esp)
48 fstcw cw(%esp) // fetch CW in case masks changed value
49 movw cw(%esp),%ax
52 movw %ax,cw(%esp)
53 fldcw cw(%esp)
68 movw %ax,cw(%esp)
69 fldcw cw(%esp
    [all...]
_xtoull.s 30 .set cw,0
45 movw %ax,cw(%esp)
46 fldcw cw(%esp)
64 fstcw cw(%esp) // fetch CW in case masks changed value
65 movw cw(%esp),%ax
68 movw %ax,cw(%esp)
69 fldcw cw(%esp)
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/genunix/
combined.c 127 combined_walk_append(combined_walk_data_t *cwd, combined_walk_t *cw)
130 cwd->cwd_current_walk = cwd->cwd_final_walk = cw;
132 cwd->cwd_final_walk->cw_next = cw;
133 cwd->cwd_final_walk = cw;
140 combined_walk_t *cw = cwd->cwd_current_walk; local
141 if (cw == NULL) {
144 if (cw == cwd->cwd_final_walk) {
145 cwd->cwd_final_walk = cw->cw_next;
147 cwd->cwd_current_walk = cw->cw_next;
148 cw->cw_next = NULL
159 combined_walk_t *cw; local
177 combined_walk_t *cw = cwd->cwd_current_walk; local
221 combined_walk_t *cw; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mdb/intel/mdb/
proc_ia32dep.c 171 fpcw2str(uint32_t cw, char *buf, size_t nbytes)
181 if (cw & FPIM)
183 if (cw & FPDM)
185 if (cw & FPZM)
187 if (cw & FPOM)
189 if (cw & FPUM)
191 if (cw & FPPM)
193 if (cw & FPPC)
195 if (cw & FPRC)
197 if (cw & FPIC
    [all...]
proc_amd64dep.c 194 fpcw2str(uint32_t cw, char *buf, size_t nbytes)
204 if (cw & FPIM)
206 if (cw & FPDM)
208 if (cw & FPZM)
210 if (cw & FPOM)
212 if (cw & FPUM)
214 if (cw & FPPM)
216 if (cw & FPPC)
218 if (cw & FPRC)
220 if (cw & FPIC
    [all...]
  /onnv/onnv-gate/usr/src/tools/cw/
Makefile 28 PROG = cw
30 MAN1FILES= cw.1
34 # Bootstrap problem -- we have to build cw before we can use it
43 # of cw.
  /onnv/onnv-gate/usr/src/cmd/krb5/kwarn/
kwarnd_proc.c 114 cred_warning_list_t *cw; local
117 for (cw = cred_warning_list; cw != NULL; cw = cw->next) {
118 if (strcmp(warn_name, cw->warn_name) != 0)
120 return (cw);
871 cred_warning_list_t *cw; /* cred warning */ local
882 printf("check list: start: uid=%d, cw list=%p\n",
888 for (cw = cred_warning_list
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fm/modules/sun4v/generic-mem/
gmem_memerr.c 165 int cw = (int)ckwd; local
167 for (ip = gmem_list_next(&dimm->mq_root[cw]); ip != NULL; ) {
174 * Found a duplicate cw, unit_position, and afar.
178 ip = mq_destroy(hdl, &dimm->mq_root[cw], ip);
183 jp = mq_create(hdl, ep, afar, unit_position, dram, cw, now);
185 gmem_list_append(&dimm->mq_root[cw], jp);
187 gmem_list_insert_before(&dimm->mq_root[cw], ip, jp);
199 int cw; local
201 for (cw = 0; cw < GMEM_MAX_CKWDS; cw++)
247 int upos_pairs, curr_upos, cw, i, j, k; local
403 uint16_t symbol_pos, erpt_dram, cw; local
    [all...]
gmem_mem.c 70 uint64_t phys_addr, uint16_t cw, uint16_t pos)
73 size_t sz = snprintf(NULL, 0, fmt, serdbase, phys_addr, cw, pos) + 1;
75 (void) snprintf(nm, sz, fmt, serdbase, phys_addr, cw, pos);
  /onnv/onnv-gate/usr/src/cmd/fm/modules/sun4/cpumem-diagnosis/
cmd_memerr.c 240 int cw, unit_position; local
242 cw = (afar & 0x30) >> 4; /* 0:3 */
246 for (ip = cmd_list_next(&dimm->mq_root[cw]); ip != NULL; ) {
253 * Found a duplicate cw, unit_position, and afar.
257 ip = mq_destroy(hdl, &dimm->mq_root[cw], ip);
265 cmd_list_append(&dimm->mq_root[cw], jp);
267 cmd_list_insert_before(&dimm->mq_root[cw], ip, jp);
279 int cw; local
281 for (cw = 0; cw < CMD_MAX_CKWDS; cw++)
327 int upos_pairs, curr_upos, cw, i, j, k; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fgrep/
fgrep.c 63 cw = ISASCII(lc = (unsigned char)*p++) ? 1 : \
66 if (--cw > --ccount) { \
67 cw -= ccount; \
97 ccount -= cw; \
98 while (cw--) \
299 int cw; local
475 int cw; local
483 cw = ISASCII(c = (wchar_t)b) ? 1 :
485 while (--cw) {
497 cw = ISASCII(c = (unsigned char)*argptr++) ? 1
    [all...]
  /onnv/onnv-gate/usr/src/lib/efcode/engine/
env.c 394 fmt_args(fcode_env_t *env, int cw, int fw, char format, long *arg,
432 if (cw) {
445 if (ndigits > cw) {
446 cbuf[cw] = 0;
450 str[cw] = 0;
463 if (cw) {
498 if (ndigits > cw) {
499 cbuf[cw] = 0;
534 int l, cw, fw, bytes; local
547 cw = cfstr.cwidth
    [all...]
  /onnv/onnv-gate/usr/src/common/mapfiles/gen/
Makefile 78 $(MACH)_gcc_map.noexeglobs := CC = $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
80 $(MACH64)_gcc_map.noexeglobs := CC = $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
  /onnv/onnv-gate/usr/src/tools/
Makefile 30 # 'cw' must be built before anything else can be built.
33 cw
74 cw \

Completed in 420 milliseconds

1 2