/illumos-gate/usr/src/cmd/eqn/ |
H A D | shift.c | 21 int shval, d1, h1, b1, h2, b2; in bshiftb() local 28 h1 = eht[p1]; in bshiftb() 49 eht[yyval] = h1 + max(0, h2-b1-d1); in bshiftb() 65 shval = -VERT((4 * (h1-b1)) / 10) - b2; in bshiftb() 66 if (VERT(4*(h1-b1)/10) + h2 < h1-b1) /* raise little super */ in bshiftb() 69 if (VERT(1) + h2 < h1-b1) /* raise little super */ in bshiftb() 71 shval = -(h1-b1) + h2-b2 - d1; in bshiftb() 73 eht[yyval] = h1 + max(0, h2-VERT((6*(h1-b1))/10)); in bshiftb() 79 eht[yyval] = h1 + max(0, h2 - VERT(1)); in bshiftb() 112 int effps, h1, h2, h3, b1, b2, b3, subsh, d1, d2, supsh, treg; in shift2() local [all …]
|
H A D | paren.c | 24 int n, m, h1, j, b1, v; in paren() local 25 h1 = eht[p1]; b1 = ebase[p1]; in paren() 29 n = (h1 + EM(1.0, EFFPS(ps)) - 1) / EM(1.0, EFFPS(ps)); in paren() 31 n = max(b1+VERT(1), h1-b1-VERT(1)) / VERT(1); in paren() 44 ebase[yyval] = b1 + (eht[yyval]-h1)/2; in paren() 45 v = b1 - h1/2 + VERT(EM(0.4, ps)); in paren() 51 v = b1 - h1/2 + VERT(1); in paren()
|
H A D | fromto.c | 20 int b, h1, b1, pss; in fromto() local 23 h1 = eht[yyval] = eht[p1]; in fromto() 60 -(h1-b1+ebase[p3]), yyval, p3, pss, p3, EFFPS(ps), in fromto() 61 yyval, p3, (h1-b1+ebase[p3])); in fromto()
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ |
H A D | ruptime.c | 240 hscmp(struct hs *h1, struct hs *h2) in hscmp() argument 243 return (rflg * strcmp(h1->hs_wd->wd_hostname, h2->hs_wd->wd_hostname)); in hscmp() 250 lcmp(struct hs *h1, struct hs *h2) in lcmp() argument 253 if (down(h1)) in lcmp() 255 return (tcmp(h1, h2)); in lcmp() 262 (h2->hs_wd->wd_loadav[0] - h1->hs_wd->wd_loadav[0])); in lcmp() 269 ucmp(struct hs *h1, struct hs *h2) in ucmp() argument 272 if (down(h1)) in ucmp() 274 return (tcmp(h1, h2)); in ucmp() 280 return (rflg * (h2->hs_nusers - h1->hs_nusers)); in ucmp() [all …]
|
/illumos-gate/usr/src/cmd/sendmail/src/ |
H A D | sasl.c | 159 char *hr, *h1, *h, *res; local 174 h1 = s1; 178 while (h != NULL && *h1 != '\0') 181 if ((h = strchr(h1, ' ')) != NULL) 183 l1 = strlen(h1); 186 if (iteminlist(h1, s2, " ") != NULL) 193 memcpy(hr, h1, l1); 203 h1 = h + 1;
|
H A D | usersmtp.c | 329 char *hr, *h1, *h, *res; local 348 h1 = s2; 352 while (h != NULL && *h1 != '\0') 355 if ((h = strchr(h1, ' ')) != NULL) 357 l1 = strlen(h1); 360 if (iteminlist(h1, s1, " ") == NULL) 366 memcpy(hr, h1, l1); 376 h1 = h + 1;
|
/illumos-gate/usr/src/cmd/audio/utilities/ |
H A D | hdr_misc.c | 187 audio_cmp_hdr(Audio_hdr *h1, Audio_hdr *h2) in audio_cmp_hdr() argument 189 if ((h1->encoding != h2->encoding) || in audio_cmp_hdr() 190 (h1->bytes_per_unit != h2->bytes_per_unit) || in audio_cmp_hdr() 191 (h1->channels != h2->channels) || in audio_cmp_hdr() 192 (h1->samples_per_unit != h2->samples_per_unit)) in audio_cmp_hdr() 195 if (h1->sample_rate != h2->sample_rate) in audio_cmp_hdr()
|
/illumos-gate/usr/src/lib/libmvec/common/ |
H A D | __vlog.c | 666 double h0, h1, h2, h3; in __vlog() local 737 h1 = d1 * TBL[i1]; in __vlog() 747 s1 = h1 + l1; in __vlog() 763 *y = (n1 * ln2hi + TBL[i1+2]) + (h1 + (l1 + in __vlog()
|
/illumos-gate/usr/src/tools/smatch/src/ |
H A D | avl.c | 408 int h0, h1; in checkBalances() local 412 if (!checkBalances(node->lr[1], &h1)) in checkBalances() 415 if (node->balance != h1 - h0 || node->balance < -1 || node->balance > 1) in checkBalances() 418 *height = (h0 > h1 ? h0 : h1) + 1; in checkBalances()
|
/illumos-gate/usr/src/cmd/mandoc/ |
H A D | mansearch.c | 323 struct ohash *hand, *h1, *h2; in manmerge_and() local 337 h1 = h2; in manmerge_and() 340 h1 = hand; in manmerge_and() 346 for (res = ohash_first(h1, &slot1); res != NULL; in manmerge_and() 347 res = ohash_next(h1, &slot1)) { in manmerge_and() 365 ohash_delete(h1); in manmerge_and() 366 free(h1); in manmerge_and()
|
/illumos-gate/usr/src/lib/libm/common/C/ |
H A D | __lgamma.c | 85 h1 = 1.782736530353274213975932e7, variable 244 q = h0+y*(h1+y*(h2+y*(h3+y*(h4+y*(h5+y*(h6+y* in __k_lgamma() 253 q = h0+y*(h1+y*(h2+y*(h3+y*(h4+y*(h5+y*(h6+y*(h7+y))))))); in __k_lgamma()
|
/illumos-gate/usr/src/grub/grub-0.97/ |
H A D | Makefile.in | 228 config.h: stamp-h1 230 rm -f stamp-h1; \ 231 $(MAKE) stamp-h1; \ 234 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status 235 @rm -f stamp-h1 239 rm -f stamp-h1 243 -rm -f config.h stamp-h1
|
/illumos-gate/usr/src/cmd/fm/schemes/hc/ |
H A D | scheme.c | 211 nvlist_t **h1 = NULL, **h2 = NULL; in fru_compare() local 221 (void) nvlist_lookup_nvlist_array(f1, FM_FMRI_HC_LIST, &h1, in fru_compare() 225 if (h1sz == h2sz && hclist_contains(h1, h1sz, h2, h2sz) == 1) in fru_compare()
|
/illumos-gate/usr/src/cmd/rpcbind/ |
H A D | pmap_svc.c | 260 int h1, h2, h3, h4, p1, p2; in pmapproc_getport() local 276 if (sscanf(ua, "%d.%d.%d.%d.%d.%d", &h1, &h2, &h3, in pmapproc_getport() 281 h1, h2, h3, h4, p1, p2); in pmapproc_getport()
|
H A D | rpcb_svc_com.c | 1173 int h1, h2, h3, h4, p1, p2; in rpcbproc_callit_com() local 1177 &h1, &h2, &h3, &h4, &p1, &p2) != 6) in rpcbproc_callit_com() 1606 int h1, h2, h3, h4, p1, p2; in add_pmaplist() local 1620 &h1, &h2, &h3, &h4, &p1, &p2) != 6) in add_pmaplist()
|
/illumos-gate/usr/src/uts/i86pc/vm/ |
H A D | hment.c | 126 hment_t *h1 = (hment_t *)hm1; in hment_compare() local 130 diff = (uintptr_t)h1->hm_htable - (uintptr_t)h2->hm_htable; in hment_compare() 132 diff = h1->hm_entry - h2->hm_entry; in hment_compare() 134 diff = h1->hm_pfn - h2->hm_pfn; in hment_compare()
|
/illumos-gate/usr/src/cmd/datadm/ |
H A D | datadm.c | 776 datadm_hca_entry_match(datadm_hca_entry_t *h1, datadm_hca_entry_t *h2) in datadm_hca_entry_match() argument 778 if (!datadm_str_match(h1->he_name, h2->he_name)) { in datadm_hca_entry_match() 785 datadm_hca_entry_find(datadm_hca_entry_t *h1, datadm_hca_find_t *hf) in datadm_hca_entry_find() argument 787 if (datadm_str_match(h1->he_name, hf->hf_sp_entry->spe_devname)) { in datadm_hca_entry_find() 788 hf->hf_hca_entry = h1; in datadm_hca_entry_find() 1289 datadm_hca_entry_find_by_name(datadm_hca_entry_t *h1, in datadm_hca_entry_find_by_name() argument 1292 if (datadm_str_match(h1->he_name, hf->hf_name)) { in datadm_hca_entry_find_by_name() 1293 hf->hf_hca_entry = h1; in datadm_hca_entry_find_by_name()
|
/illumos-gate/usr/src/uts/common/fs/hsfs/ |
H A D | hsfs_vnops.c | 1775 const struct hio *h1 = x1; in hsched_deadline_compare() local 1778 if (h1->io_timestamp < h2->io_timestamp) in hsched_deadline_compare() 1780 if (h1->io_timestamp > h2->io_timestamp) in hsched_deadline_compare() 1783 if (h1->io_lblkno < h2->io_lblkno) in hsched_deadline_compare() 1785 if (h1->io_lblkno > h2->io_lblkno) in hsched_deadline_compare() 1788 if (h1 < h2) in hsched_deadline_compare() 1790 if (h1 > h2) in hsched_deadline_compare() 1799 const struct hio *h1 = x1; in hsched_offset_compare() local 1802 if (h1->io_lblkno < h2->io_lblkno) in hsched_offset_compare() 1804 if (h1 in hsched_offset_compare() [all...] |
/illumos-gate/usr/src/lib/print/libpapi-lpd/common/ |
H A D | lpd-job.c | 165 char *h1; in lpd_add_rfc1179_attributes() local 176 "job-originating-host-name", &h1) == PAPI_OK) { in lpd_add_rfc1179_attributes() 178 "job-host", h1); in lpd_add_rfc1179_attributes()
|
/illumos-gate/usr/src/uts/common/sys/nxge/ |
H A D | nxge_rxdma_hw.h | 1805 uint8_t h1:4; member 1807 uint8_t h1:4; 1817 uint8_t h1:8; member 1819 uint8_t h1:8; 1829 uint8_t h1:4; member 1831 uint8_t h1:4;
|
H A D | nxge_fflp_hw.h | 534 uint32_t h1:20; member 540 uint32_t h1:20; 1651 uint32_t h1:20; member
|
/illumos-gate/usr/src/lib/libnsl/key/ |
H A D | xcrypt.c | 552 uint32_t h1; member 587 if (weakDESkeys[i].h1 == db.key.high && in weak_DES_key()
|
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | request.c | 526 #define LDAP_CONN_SAMEHOST( h1, h2 ) \ argument 527 (( (h1) == NULL && (h2) == NULL ) || \ 528 ( (h1) != NULL && (h2) != NULL && strcasecmp( (h1), (h2) ) == 0 ))
|
/illumos-gate/usr/src/lib/libnsl/nss/ |
H A D | netdir_inet_sundry.c | 184 int h1, h2, h3, h4, p1, p2; in ip_uaddr2taddr() local 206 if (sscanf(addr, "%d.%d.%d.%d.%d.%d", &h1, &h2, &h3, &h4, in ip_uaddr2taddr() 214 inaddr = (h1 << 24) + (h2 << 16) + (h3 << 8) + h4; in ip_uaddr2taddr()
|
/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | zap_leaf.c | 430 #define HCD_GTEQ(h1, cd1, h2, cd2) \ argument 431 ((h1 > h2) ? TRUE : ((h1 == h2 && cd1 >= cd2) ? TRUE : FALSE))
|