| /onnv/onnv-gate/usr/src/cmd/pgrep/ |
| idtab.c | 78 idkey_t lhs = *((idkey_t *)lhsp); local 81 if (lhs == rhs) 84 return (lhs > rhs ? 1 : -1);
|
| /onnv/onnv-gate/usr/src/lib/libproc/common/ |
| Pstack.c | 232 uintptr_t lhs = *((const uintptr_t *)lhp); local 235 if (lhs < rhs) 237 if (lhs > rhs)
|
| /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/mdb_test/ |
| mdb_test.c | 83 uintptr_t lhs = *((const uintptr_t *)lp); local 85 return (lhs - rhs);
|
| /onnv/onnv-gate/usr/src/cmd/logadm/ |
| opts.c | 78 char lhs[2]; local 79 lhs[0] = c; 80 lhs[1] = '\0'; 81 return ((struct optinfo *)lut_lookup(Info, lhs)); 209 char lhs[2]; local 210 lhs[0] = *options; 211 lhs[1] = '\0'; 212 if (lut_lookup(opts->op_raw, lhs)) 251 merger(const char *lhs, void *rhs, void *arg) 255 *destlutp = lut_add(*destlutp, lhs, rhs) [all...] |
| /onnv/onnv-gate/usr/src/lib/libsqlite/tool/ |
| lempar.c | 437 YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ member in struct:__anon4208 455 YYMINORTYPE yygotominor; /* The LHS of the rule reduced */ 479 yygoto = yyRuleInfo[yyruleno].lhs;
|
| lemon.c | 151 struct symbol *lhs; /* Left-hand side of the rule */ member in struct:rule 152 char *lhsalias; /* Alias for the LHS (NULL if none) */ 162 struct rule *nextlhs; /* Next rule with the same LHS */ 625 if( rp->lhs->lambda ) continue; 630 rp->lhs->lambda = B_TRUE; 641 s1 = rp->lhs; 679 symbol instead.",lemp->start,lemp->rule->lhs->name); 681 sp = lemp->rule->lhs; 684 sp = lemp->rule->lhs; 920 if( sp==0 ) sp = lemp->rule->lhs; 1887 struct symbol *lhs; \/* Left-hand side of current rule *\/ member in struct:pstate [all...] |
| /onnv/onnv-gate/usr/src/cmd/mdb/common/mdb/ |
| mdb_whatis.c | 57 uintptr_t lhs = *(const uintptr_t *)l; local 60 if (lhs < rhs) 62 if (lhs > rhs) 332 whatis_cbcmp(const void *lhs, const void *rhs) 334 whatis_callback_t *l = *(whatis_callback_t * const *)lhs;
|
| mdb_nm.c | 421 const nm_sym_t *lhs = (nm_sym_t *)lp; local 424 return (strcmp(lhs->nm_name, rhs->nm_name)); 430 const nm_sym_t *lhs = (nm_sym_t *)lp; 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 | 304 GElf_Phdr *lhs = (GElf_Phdr *)lp; local 311 if (lhs->p_type == PT_LOAD && rhs->p_type == PT_LOAD) { 312 if (lhs->p_vaddr != rhs->p_vaddr) { 313 if (lhs->p_vaddr == 0) 314 return (1); /* lhs is "greater" */ 319 return (lhs->p_vaddr > rhs->p_vaddr ? 1 : -1); 330 if (lhs->p_type != rhs->p_type) { 331 if (lhs->p_type == PT_LOAD) 335 return (1); /* lhs is "greater" */ 337 return (lhs->p_type > rhs->p_type ? 1 : -1) 853 Elf32_Sym *lhs = *((Elf32_Sym **)lp); local 881 Elf64_Sym *lhs = *((Elf64_Sym **)lp); local [all...] |
| /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/genunix/ |
| cyclic.c | 612 cyc_coverage_t *lhs = (cyc_coverage_t *)l; local 617 if (rhs->cyv_why == lhs->cyv_why) 623 if (lhs->cyv_why == NULL) 626 (void) mdb_readstr(ly, WHYLEN, (uintptr_t)lhs->cyv_why);
|
| leaky.c | 200 const leak_mtab_t *lhs = (const leak_mtab_t *)l; local 203 if (lhs->lkm_base < rhs->lkm_base) 205 if (lhs->lkm_base > rhs->lkm_base) 554 const leak_bufctl_t *lhs = *((const leak_bufctl_t **)l); local 557 return (leaky_subr_bufctl_cmp(lhs, rhs));
|
| findstack.c | 877 uintptr_t lhs = *(const uintptr_t *)lp; local 879 if (lhs > rhs) 881 if (lhs < rhs)
|
| typegraph.c | 932 tg_node_t *lhs = *(tg_node_t **)l; 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 | 138 Elf32_Sym *lhs = *((Elf32_Sym **)lp); 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)) 145 return (lhs->st_size == 0 ? 1 : -1); 147 if ((ELF32_ST_TYPE(lhs->st_info) == STT_NOTYPE) != 149 return (ELF32_ST_TYPE(lhs->st_info) == STT_NOTYPE ? 1 : -1); 151 if ((ELF32_ST_BIND(lhs->st_info) == STB_WEAK) != 153 return (ELF32_ST_BIND(lhs->st_info) == STB_WEAK ? 1 : -1); 155 return (strcmp(dt_module_strtab + lhs->st_name 167 Elf64_Sym *lhs = *((Elf64_Sym **)lp); local [all...] |
| dt_ident.c | 829 const dt_ident_t *lhs = *((const dt_ident_t **)lp); 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) 69 if (lhs == NULL) 75 ASSERTeq(lhs->t, T_NAME, ptree_nodetype2str); 78 if (lhs->u.name.s != rhs->u.name.s) 81 if (lhs->u.name.child && lhs->u.name.child->t == T_NUM) { 82 lnum = (int)lhs->u.name.child->u.ull; 83 } else if (lhs->u.name.child && lhs->u.name.child->t == T_NAME) 160 struct node *lhs; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/fm/eversholt/common/ |
| tree.h | 78 T_ARROW, /* lhs (N)->(K) rhs */ 241 struct node *lhs; /* left side of arrow */ member in struct:node::__anon437::__anon444 298 struct node *tree_arrow(struct node *lhs, struct node *nnp, struct node *knp,
|
| /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/libumem/ |
| leaky_subr.c | 159 const leaky_seg_info_t *lhs = (const leaky_seg_info_t *)l; 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) 683 leaky_subr_caller(lhs->lkb_stack, lhs->lkb_depth, lbuf, &lcaller); 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)
|
| umem.c | 552 addrcmp(const void *lhs, const void *rhs) 554 uintptr_t p1 = *((uintptr_t *)lhs); 565 bufctlcmp(const umem_bufctl_audit_t **lhs, const umem_bufctl_audit_t **rhs) 567 const umem_bufctl_audit_t *bcp1 = *lhs; 3560 const umowner_t *lhs = lp; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/vi/port/ |
| ex_cmdsub.c | 1511 unsigned char lhs[100], rhs[100]; /* max sizes resp. */ local 1525 error(gettext("Missing lhs")); 1541 for (p=lhs; ; ) { 1546 /* End of lhs */ 1553 addmac(lhs, (unsigned char *)NOSTR, 1581 if (lhs[0] == '#') { 1586 fnkey = fkey(lhs[1] - '0'); 1587 funkey[0] = 'f'; funkey[1] = lhs[1]; funkey[2] = 0; 1589 strcpy(lhs, fnkey); 1592 dname = lhs; [all...] |
| /onnv/onnv-gate/usr/src/lib/fm/libdiagcode/common/ |
| diagcode.c | 59 const char *lhs; member in struct:fm_dc_handle::fm_dc_prop 104 char *rhsp; /* rhs associated with last lhs (or NULL) */ 272 (propp->lhs = strdup(lhsp)) == NULL || 277 if (propp->lhs != NULL) 278 free((void *) propp->lhs); 336 if (props->lhs != NULL) 337 free((void *) props->lhs); 577 if (strcmp(name, props->lhs) == 0) 956 * lhs is a simple string that does not contain any whitespace or an 962 * gets called, we continue looking for the next lhs *after* an [all...] |
| /onnv/onnv-gate/usr/src/lib/libnisdb/ |
| ldap_parse.h | 473 * { lhs 499 __nis_mapping_rlhs_t lhs; member in struct:__anon3791
|
| nis_parse_ldap_util.c | 168 r = &rule->lhs; 742 __nis_mapping_rlhs_t *lhs; local 929 lhs = &t->ruleFromLDAP[i]->lhs; 930 for (j = 0; j < lhs->numElements; j++) { 931 e = &lhs->element[j]; [all...] |
| /onnv/onnv-gate/usr/src/cmd/svc/configd/ |
| file_object.c | 1930 const check_snapshot_elem_t *lhs = lhs_arg; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/dtrace/ |
| dtrace.c | 1081 uintptr_t lhs = *((uintptr_t *)l); local 1086 (void) mdb_vread(&lerr, sizeof (lerr), lhs); [all...] |