HomeSort by relevance Sort by last modified time
    Searched defs:instr (Results 1 - 25 of 73) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
_instr.c 49 instr(char *s) function
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/i386/ustack/
tst.helper.c 46 uint8_t instr[] = { local
54 uint8_t *fp = malloc(sizeof (instr));
59 *((int *)&instr[4]) = (uintptr_t)baz - (uintptr_t)&fp[8];
65 bcopy(instr, fp, sizeof (instr));
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/sparc/ustack/
tst.helper.c 46 uint32_t instr[] = { local
53 uint32_t *fp = malloc(sizeof (instr));
58 instr[1] |= ((uintptr_t)baz - (uintptr_t)&fp[1]) >> 2;
64 bcopy(instr, fp, sizeof (instr));
  /onnv/onnv-gate/usr/src/lib/libxcurses/src/libc/xcurses/
innstr.c 100 (instr)(s) function
106 __m_trace("instr(%p)", s);
111 return __m_return_code("instr", code);
  /onnv/onnv-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
innstr.c 89 #undef instr macro
92 instr(char *s) function
  /onnv/onnv-gate/usr/src/cmd/sgs/librtld_db/sparc/
plt32_resolution.c 53 unsigned int instr[4]; local
63 if (ps_pread(rap->rd_psp, pltaddr, (char *)instr,
74 if ((instr[0] != M_NOP) &&
75 ((instr[1] & (~(S_MASK(22)))) == M_BA_A)) {
85 } else if ((instr[2] & (~(S_MASK(13)))) == M_JMPL) {
101 hi_bits = instr[1] & S_MASK(22); /* 31..10 */
102 lo_bits = instr[2] & S_MASK(10); /* 09..00 */
106 } else if ((instr[0] == M_NOP) &&
107 ((instr[1] & (~(S_MASK(22)))) == M_BA_A)) {
121 d22 = instr[1] & S_MASK(22)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libtnfctl/
prb_rtld.c 343 bptsave_t instr; local
358 instr = INS_BPT;
361 &instr, sizeof (instr));
  /onnv/onnv-gate/usr/src/lib/nsswitch/files/common/
bootparams_getbyname.c 102 char *instr = be->buf; local
113 if ((linelen = _nss_files_read_line(be->f, instr,
124 p = instr;
152 linelen -= (p - instr);
getprinter.c 99 char *instr = be->buf; local
102 if ((linelen = _nss_files_read_line(be->f, instr,
111 while (isspace(*instr)) {
112 instr++;
117 if (*instr == '#')
121 if ((*instr == '\n') || (*instr == '\0'))
124 if (filter != 0 && strstr(instr, filter) == 0) {
136 if (check != NULL && (*check)(args, instr, linelen) == 0)
140 parsestat = (*func)(instr, linelen, args->buf.result
    [all...]
files_common.c 241 char *instr = be->buf; local
244 if ((linelen = _nss_files_read_line(be->f, instr,
251 if (filter != 0 && strstr(instr, filter) == 0) {
263 if ((last = strchr(instr, '#')) == 0) {
264 last = instr + linelen;
272 for (first = instr; isspace(*first); first++) {
289 if (first != instr) {
290 instr = first;
297 if (check != NULL && (*check)(args, instr, linelen) == 0)
309 parsestat = validate_passwd_ids(instr,
    [all...]
getexecattr.c 190 char *instr = be->buf; local
192 linelen = _readbufline(f_buf, f_size, instr, be->minbuf,
206 if (strstr(instr, _priv_exec->name) == NULL)
210 if (strstr(instr, _priv_exec->id) == NULL)
214 if ((strstr(instr, _priv_exec->name) == NULL) ||
215 (strstr(instr, _priv_exec->id) == NULL))
222 (strstr(instr, _priv_exec->policy) == NULL)) ||
224 (strstr(instr, _priv_exec->type) == NULL)))
230 if ((last = strchr(instr, '#')) == NULL)
231 last = instr + linelen
    [all...]
  /onnv/onnv-gate/usr/src/lib/nsswitch/user/common/
user_common.c 176 char *instr = be->buf; local
179 if ((linelen = _nss_user_read_line(be->f, instr,
186 if (filter != 0 && strstr(instr, filter) == 0) {
198 if ((last = strchr(instr, '#')) == 0) {
199 last = instr + linelen;
207 for (first = instr; isspace(*first); first++) {
224 if (first != instr) {
225 instr = first;
230 parsestat = (*args->str2ent)(instr, linelen, args->buf.result,
getprinter.c 123 char *instr = be->buf; local
135 if ((linelen = _nss_user_read_line(be->f, instr,
142 p = instr;
150 if ((limit = strpbrk(instr, "\t ")) == NULL) /* bad line */
198 char *instr = be->buf; local
201 if ((linelen = _nss_user_read_line(be->f, instr,
  /onnv/onnv-gate/usr/src/uts/i86pc/os/
instr_size.c 71 uchar_t **instr = p; local
73 ret = **instr;
74 *instr += 1;
89 dtrace_dis_isize(uchar_t *instr, dis_isize_t which, model_t model, int *rmindex)
97 x.d86_data = (void **)&instr;
115 dtrace_instr_size_isa(uchar_t *instr, model_t model, int *rmindex)
117 return (dtrace_dis_isize(instr, DIS_ISIZE_INSTR, model, rmindex));
121 dtrace_instr_size(uchar_t *instr)
123 return (dtrace_dis_isize(instr, DIS_ISIZE_INSTR, DATAMODEL_NATIVE,
131 uchar_t instr[16]; /* maximum size instruction * local
    [all...]
dtrace_subr.c 241 uint8_t instr, instr2; local
275 if (rp->r_pc > 0 && fuword8(linearpc - 1, &instr) == 0 &&
276 instr != FASTTRAP_INSTR &&
277 (instr != 3 || (rp->r_pc >= 2 &&
  /onnv/onnv-gate/usr/src/uts/sun4/sys/
scb.h 42 int instr[8]; member in struct:trapvec
  /onnv/onnv-gate/usr/src/cmd/sgs/librtld_db/sparcv9/
plt64_resolution.c 56 instr_t instr[8]; local
96 if (ps_pread(rap->rd_psp, pltaddr, (char *)instr,
104 if (instr[0] != M_MOVO7TOG5) {
106 EC_ADDR(pltaddr), EC_ADDR(instr[0])));
115 pltptr = instr[3] & S_MASK(12);
152 if (ps_pread(rap->rd_psp, pltaddr, (char *)instr,
162 if ((instr[0] != M_NOP) &&
163 ((instr[1] & (~(S_MASK(19)))) == M_BA_A_XCC)) {
174 } else if ((instr[0] == M_NOP) &&
175 ((instr[1] & (~(S_MASK(22)))) == M_BA_A))
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/x2p/
util.c 137 instr(char *big, char *little) function
  /onnv/onnv-gate/usr/src/cmd/sgs/librtld_db/rdb_demo/common/
dis.c 163 unsigned int instr; local
165 if (ps_pread(ph, offset, (char *)&instr,
170 instr_str = disassemble(instr, offset, print_address,
  /onnv/onnv-gate/usr/src/lib/libdisasm/sparc/
dis_sparc.c 238 uint32_t instr; local
241 if (dhp->dh_read(dhp->dh_data, addr, &instr, sizeof (instr)) !=
242 sizeof (instr))
252 instr = BE_32(instr);
256 do_binary(instr);
261 idx = dis_get_bits(instr, tp->tbl_field, tp->tbl_len);
278 if (tp->tbl_fmt(dhp, instr, inp, idx) == 0)
285 instr);
    [all...]
  /onnv/onnv-gate/usr/src/lib/libdtrace/sparc/
dt_isadep.c 109 fasttrap_instr_query_t instr; local
111 instr.ftiq_pid = Pstatus(P)->pr_pid;
112 instr.ftiq_pc = symp->st_value + i * 4;
115 &instr) != 0) {
119 instr.ftiq_pc) != 4) {
134 text[i] = instr.ftiq_instr;
  /onnv/onnv-gate/usr/src/uts/sun4/os/
dtrace_subr.c 81 uint32_t instr; local
101 if (fuword32((void *)rp->r_pc, &instr) != 0 ||
102 instr == FASTTRAP_INSTR) {
  /onnv/onnv-gate/usr/src/uts/sun4v/cpu/
generic.c 231 int instr; local
238 instr = fetch_user_instr((caddr_t)rp->r_pc);
240 optype = (instr >> 30) & 0x3;
241 op3 = (instr >> 19) & 0x3f;
242 ignor = (instr >> 5) & 0xff;
243 if (IS_IBIT_SET(instr)) {
293 op3 = (instr >> 19) & 0x3F;
294 if ((IS_FLOAT(instr) && (op3 == IOP_V8_STQFA) ||
  /onnv/onnv-gate/usr/src/uts/sparc/v9/fpu/
fpu.c 222 uint_t instr = 0; local
227 (void) fuword32((void *)rp->r_pc, &instr);
229 instr = *(uint_t *)(rp->r_pc);
231 if ((instr & 0xc0000000) == 0x40000000) {
  /onnv/onnv-gate/usr/src/cmd/ssh/sshd/
auth2-chall.c 232 char *name, *instr, **prompts; local
238 &name, &instr, &kbdintctxt->nreq, &prompts, &echo_on))
243 packet_put_utf8_cstring(instr);
258 xfree(instr);

Completed in 2220 milliseconds

1 2 3