/titanic_50/usr/src/lib/libc/port/locale/ |
H A D | strcoll.c | 55 size_t sz1, sz2; in strcoll_l() local 62 sz2 = strlen(s2) + 1; in strcoll_l() 80 if (sz2 > ALLOCA_LIMIT) { in strcoll_l() 81 if ((t2 = malloc(sz2 * sizeof (wchar_t))) == NULL) in strcoll_l() 85 if ((w2 = alloca(sz2 * sizeof (wchar_t))) == NULL) in strcoll_l() 92 if ((mbstowcs_l(w2, s2, sz2, loc)) == (size_t)-1) in strcoll_l()
|
/titanic_50/usr/src/common/unicode/ |
H A D | u8_textprep.c | 573 int sz2; in do_case_compare() local 625 sz2 = u8_number_of_bytes[*s2]; in do_case_compare() 626 if (sz2 < 0) { in do_case_compare() 628 sz2 = 1; in do_case_compare() 631 if (sz2 == 1) { in do_case_compare() 638 } else if ((i2 + sz2) > n2) { in do_case_compare() 644 (void) do_case_conv(uv, u8s2, s2, sz2, is_it_toupper); in do_case_compare() 645 s2 += sz2; in do_case_compare() 649 if (sz1 == 1 && sz2 == 1) { in do_case_compare() 665 i2 += sz2; in do_case_compare() [all …]
|
/titanic_50/usr/src/cmd/fm/modules/sun4v/etm/ |
H A D | etm_ckpt.c | 176 size_t sz1, sz2; /* sizes of lists */ in etm_ckpt_il_resize() local 189 sz2 = sizeof (etm_ckpt_id_list_t) + (factor * il1->il_ids_sz); in etm_ckpt_il_resize() 190 il2 = fmd_hdl_zalloc(hdl, sz2, FMD_SLEEP); in etm_ckpt_il_resize() 222 fmd_hdl_free(hdl, il2, sz2); in etm_ckpt_il_resize() 230 fmd_buf_create(hdl, NULL, ETM_CKPT_IL_BUF, sz2); in etm_ckpt_il_resize() 231 fmd_buf_write(hdl, NULL, ETM_CKPT_IL_BUF, (void *) il2, sz2); in etm_ckpt_il_resize()
|
/titanic_50/usr/src/uts/sun4v/io/ |
H A D | vsw_txdring.c | 521 uint32_t sz2 = 0; in vsw_init_multipools() local 538 sz2 = vsw_mblk_size2; in vsw_init_multipools() 546 VSW_NUM_VMPOOLS, sz1, sz2, sz3, in vsw_init_multipools() 553 VSW_NUM_VMPOOLS + 1, sz1, sz2, sz3, sz4, in vsw_init_multipools() 572 sz2 = VSW_MBLK_SZ_256; in vsw_init_multipools() 577 sz1, sz2, sz3, in vsw_init_multipools() 588 sz2 = VSW_MBLK_SZ_256; in vsw_init_multipools() 594 sz1, sz2, sz3, sz4, in vsw_init_multipools() 602 sz2 = VSW_MBLK_SZ_2048; in vsw_init_multipools() 608 sz1, sz2, sz3, sz4, in vsw_init_multipools()
|
H A D | vnet_txdring.c | 486 uint32_t sz2 = 0; in vgen_init_multipools() local 504 sz2 = vgen_rbufsz2; in vgen_init_multipools() 512 VGEN_NUM_VMPOOLS, sz1, sz2, sz3, vgen_nrbufs1, in vgen_init_multipools() 519 VGEN_NUM_VMPOOLS + 1, sz1, sz2, sz3, sz4, in vgen_init_multipools() 536 sz2 = VGEN_DBLK_SZ_256; in vgen_init_multipools() 541 sz1, sz2, sz3, in vgen_init_multipools() 552 sz2 = VGEN_DBLK_SZ_256; in vgen_init_multipools() 558 sz1, sz2, sz3, sz4, in vgen_init_multipools() 565 sz2 = VGEN_DBLK_SZ_2048; in vgen_init_multipools() 571 sz1, sz2, sz3, sz4, in vgen_init_multipools()
|
/titanic_50/usr/src/uts/i86xpv/os/ |
H A D | xen_mmu.c | 141 size_t sz2; in xen_relocate_start_info() local 193 sz2 = P2ROUNDUP(mmu_btop(sz) * sizeof (mfn_t), MMU_PAGESIZE); in xen_relocate_start_info() 194 mfn_list_pages = kmem_zalloc(sz2, VM_SLEEP); in xen_relocate_start_info()
|
/titanic_50/usr/src/uts/sun4u/sys/ |
H A D | pte.h | 57 uint32_t sz2:1; /* sz2[48] Panther, Olympus-C */ member 87 #define tte_size2 tte_bit.sz2 270 (ttep)->tte_bit.sz2 = 1; \
|
/titanic_50/usr/src/cmd/fs.d/ufs/volcopy/ |
H A D | volcopy.c | 1163 find_lcm(int sz1, int sz2) in find_lcm() argument 1167 if (sz1 < sz2) { in find_lcm() 1168 lcm = inc = sz2; in find_lcm() 1172 small = sz2; in find_lcm()
|
/titanic_50/usr/src/uts/sun4/vm/ |
H A D | vm_dep.c | 1016 kdi_range_overlap(uintptr_t va1, size_t sz1, uintptr_t va2, size_t sz2) in kdi_range_overlap() argument 1021 if (va2 < va1 && va2 + sz2 <= va1) in kdi_range_overlap()
|
/titanic_50/usr/src/cmd/mandoc/ |
H A D | eqn.c | 35 #define STRNEQ(p1, sz1, p2, sz2) \ argument 36 ((sz1) == (sz2) && 0 == strncmp((p1), (p2), (sz1)))
|