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

1 2

  /onnv/onnv-gate/usr/src/cmd/pgrep/
idtab.c 79 idkey_t rhs = *((idkey_t *)rhsp); local
81 if (lhs == rhs)
84 return (lhs > rhs ? 1 : -1);
  /onnv/onnv-gate/usr/src/lib/libproc/common/
Pstack.c 233 uintptr_t rhs = *((const uintptr_t *)rhp); local
235 if (lhs < rhs)
237 if (lhs > rhs)
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/mdb_test/
mdb_test.c 84 uintptr_t rhs = *((const uintptr_t *)rp); local
85 return (lhs - rhs);
  /onnv/onnv-gate/usr/src/cmd/abi/spectrans/spec2map/
xlator.c 202 char rhs[BUFSIZ]; local
233 err = sscanf(value, "%s", rhs);
240 Curfun = strdup(rhs);
  /onnv/onnv-gate/usr/src/cmd/sendmail/src/
alias.c 648 char *rhs; local
717 ** parsing of the RHS first to maximize error
736 ** Process the RHS.
738 ** 'p' points to the text of the RHS.
743 rhs = p;
821 rhssize = strlen(rhs);
824 /* is RHS empty (just spaces)? */
825 p = rhs;
837 map->map_class->map_store(map, al.q_user, rhs);
  /onnv/onnv-gate/usr/src/cmd/spline/
spline.c 175 rhs(int i) function
205 r[i] = rhs(i)-hi*r[i-1]/d;
  /onnv/onnv-gate/usr/src/ucbcmd/sed/
sed.h 112 char *rhs; member in struct:reptr::reptr1
124 char *rhs; member in struct:reptr::reptr2
  /onnv/onnv-gate/usr/src/cmd/mdb/common/mdb/
mdb_whatis.c 58 uintptr_t rhs = *(const uintptr_t *)r; local
60 if (lhs < rhs)
62 if (lhs > rhs)
332 whatis_cbcmp(const void *lhs, const void *rhs)
335 whatis_callback_t *r = *(whatis_callback_t * const *)rhs;
mdb_nm.c 422 const nm_sym_t *rhs = (nm_sym_t *)rp; local
424 return (strcmp(lhs->nm_name, rhs->nm_name));
431 const nm_sym_t *rhs = (nm_sym_t *)rp; local
433 return (lhs->nm_sym.st_value < rhs->nm_sym.st_value ? -1 :
434 (lhs->nm_sym.st_value > rhs->nm_sym.st_value ? 1 : 0));
mdb_gelf.c 305 GElf_Phdr *rhs = (GElf_Phdr *)rp; local
311 if (lhs->p_type == PT_LOAD && rhs->p_type == PT_LOAD) {
312 if (lhs->p_vaddr != rhs->p_vaddr) {
316 if (rhs->p_vaddr == 0)
317 return (-1); /* rhs is "greater" */
319 return (lhs->p_vaddr > rhs->p_vaddr ? 1 : -1);
330 if (lhs->p_type != rhs->p_type) {
332 return (-1); /* rhs is "greater" */
334 if (rhs->p_type == PT_LOAD)
337 return (lhs->p_type > rhs->p_type ? 1 : -1)
854 Elf32_Sym *rhs = *((Elf32_Sym **)rp); local
882 Elf64_Sym *rhs = *((Elf64_Sym **)rp); local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/genunix/
cyclic.c 613 cyc_coverage_t *rhs = (cyc_coverage_t *)r; local
617 if (rhs->cyv_why == lhs->cyv_why)
620 if (rhs->cyv_why == NULL)
627 (void) mdb_readstr(ry, WHYLEN, (uintptr_t)rhs->cyv_why);
leaky.c 201 const leak_mtab_t *rhs = (const leak_mtab_t *)r; local
203 if (lhs->lkm_base < rhs->lkm_base)
205 if (lhs->lkm_base > rhs->lkm_base)
555 const leak_bufctl_t *rhs = *((const leak_bufctl_t **)r); local
557 return (leaky_subr_bufctl_cmp(lhs, rhs));
findstack.c 878 uintptr_t rhs = *(const uintptr_t *)rp; local
879 if (lhs > rhs)
881 if (lhs < rhs)
typegraph.c 933 tg_node_t *rhs = *(tg_node_t **)r; local
935 if (lhs->tgn_base < rhs->tgn_base)
937 if (lhs->tgn_base > rhs->tgn_base)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libdtrace/common/
dt_module.c 139 Elf32_Sym *rhs = *((Elf32_Sym **)rp); local
141 if (lhs->st_value != rhs->st_value)
142 return (lhs->st_value > rhs->st_value ? 1 : -1);
144 if ((lhs->st_size == 0) != (rhs->st_size == 0))
148 (ELF32_ST_TYPE(rhs->st_info) == STT_NOTYPE))
152 (ELF32_ST_BIND(rhs->st_info) == STB_WEAK))
156 dt_module_strtab + rhs->st_name));
168 Elf64_Sym *rhs = *((Elf64_Sym **)rp); local
170 if (lhs->st_value != rhs->st_value)
171 return (lhs->st_value > rhs->st_value ? 1 : -1)
    [all...]
dt_ident.c 830 const dt_ident_t *rhs = *((const dt_ident_t **)rp); local
832 if (lhs->di_id != rhs->di_id)
833 return ((int)(lhs->di_id - rhs->di_id));
835 return (strcmp(lhs->di_name, rhs->di_name));
  /onnv/onnv-gate/usr/src/cmd/fm/modules/common/eversholt/
eval.c 60 * begins_with -- return true if rhs path begins with everything in lhs path
63 begins_with(struct node *lhs, struct node *rhs, struct lut *ex)
72 if (rhs == NULL)
73 return (0); /* nope, ran out of rhs first */
76 ASSERTeq(rhs->t, T_NAME, ptree_nodetype2str);
78 if (lhs->u.name.s != rhs->u.name.s)
94 if (rhs->u.name.child && rhs->u.name.child->t == T_NUM) {
95 rnum = (int)rhs->u.name.child->u.ull;
96 } else if (rhs->u.name.child && rhs->u.name.child->t == T_NAME)
161 struct node *rhs; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fm/eversholt/common/
tree.h 78 T_ARROW, /* lhs (N)->(K) rhs */
242 struct node *rhs; /* right side of arrow */ member in struct:node::__anon433::__anon440
299 struct node *rhs);
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/libumem/
leaky_subr.c 160 const leaky_seg_info_t *rhs = (const leaky_seg_info_t *)r; local
162 if (lhs->ls_start < rhs->ls_start)
164 if (lhs->ls_start > rhs->ls_start)
677 leaky_subr_bufctl_cmp(const leak_bufctl_t *lhs, const leak_bufctl_t *rhs)
684 leaky_subr_caller(rhs->lkb_stack, lhs->lkb_depth, rbuf, &rcaller);
695 if (lhs->lkb_data < rhs->lkb_data)
698 if (lhs->lkb_data > rhs->lkb_data)
  /onnv/onnv-gate/usr/src/cmd/sgs/yacc/common/
y2.c 670 rhsfill((wchar_t *)0); /* restart fill of rhs */
706 rhsfill(tokname); /* add to rhs string */
742 lrprnt(); /* dump lhs, rhs */
1794 wchar_t *rhs; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/vi/port/
ex_cmdsub.c 1511 unsigned char lhs[100], rhs[100]; /* max sizes resp. */ local
1557 error(gettext("Missing rhs"));
1564 error(gettext("Missing rhs"));
1565 for (p=rhs; ; ) {
1594 addmac(lhs,rhs,dname,mp);
    [all...]
  /onnv/onnv-gate/usr/src/lib/fm/libdiagcode/common/
diagcode.c 60 const char *rhs; member in struct:fm_dc_handle::fm_dc_prop
104 char *rhsp; /* rhs associated with last lhs (or NULL) */
273 (propp->rhs = strdup(rhsp)) == NULL) {
338 if (props->rhs != NULL)
339 free((void *) props->rhs);
582 (props == NULL) ? "NULL" : props->rhs);
584 return ((props == NULL) ? NULL : props->rhs);
652 * returns NULL if no match, otherwise pointer to first character of RHS.
960 * this routine also parses the rhs and saves a pointer to it
963 * rhs that was there
    [all...]
  /onnv/onnv-gate/usr/src/lib/libnisdb/
ldap_parse.h 480 * { rhs
500 __nis_mapping_rlhs_t rhs; member in struct:__anon3764
  /onnv/onnv-gate/usr/src/cmd/svc/configd/
file_object.c 1931 const check_snapshot_elem_t *rhs = rhs_arg; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/dtrace/
dtrace.c 1082 uintptr_t rhs = *((uintptr_t *)r); local
1087 (void) mdb_vread(&rerr, sizeof (rerr), rhs);
    [all...]

Completed in 720 milliseconds

1 2