Home
last modified time | relevance | path

Searched refs:malloced (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dwsscanf.c58 size_t malloced = 0; in wsscanf() local
66 tempstring = malloc(malloced = MB_CUR_MAX*wcslen(string)+1); in wsscanf()
69 i = wcstombs(tempstring, string, malloced); /* Try again. */ in wsscanf()
79 if (malloced) free(tempstring); in wsscanf()
H A Dwsprintf.c53 int malloced = 0; in wsprintf() local
69 malloced = 1; in wsprintf()
88 if (malloced == 1) in wsprintf()
/illumos-gate/usr/src/common/bignum/
H A Dbignumimpl.c239 number->malloced = 1; in big_init()
273 number->malloced = 1; in big_init1()
277 number->malloced = 0; in big_init1()
295 number->malloced = 0; in big_finish()
486 number->malloced = 1; in big_extend()
865 res1.malloced = 0; in big_sub_pos_high()
895 aa1.malloced = 0; in big_cmp_abs_high()
1816 rr.malloced = 0; in big_mont_rr()
1849 rr.malloced = 0; in big_mont_conv()
2321 rr.malloced = 0; in big_modexp_ext()
[all …]
H A Dbignum.h85 int malloced; /* 1 if value was malloced, 0 if not */ member
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSShared/
H A Ddnssd_clientlib.c167 uint16_t malloced; // Non-zero if buffer was allocated via malloc() member
189 txtRec->malloced = 0; in TXTRecordCreate()
194 if (txtRec->malloced) free(txtRec->buffer); in TXTRecordDeallocate()
222 if (txtRec->malloced) free(txtRec->buffer); in TXTRecordSetValue()
225 txtRec->malloced = 1; in TXTRecordSetValue()
/illumos-gate/usr/src/common/crypto/rsa/
H A Drsa_impl.c207 a.malloced = 0; in generate_rsa_key()
208 b.malloced = 0; in generate_rsa_key()
209 c.malloced = 0; in generate_rsa_key()
210 d.malloced = 0; in generate_rsa_key()
211 e.malloced = 0; in generate_rsa_key()
212 f.malloced = 0; in generate_rsa_key()
213 g.malloced = 0; in generate_rsa_key()
214 h.malloced = 0; in generate_rsa_key()
/illumos-gate/usr/src/lib/libresolv2/common/irs/
H A Dirpmarshall.c888 int malloced = 0; in irp_marshall_ho() local
943 malloced = 1; in irp_marshall_ho()
967 if (malloced) { in irp_marshall_ho()
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftAttributeUtil.c1570 n.malloced = 0;
1903 x.malloced = 0;
1904 q.malloced = 0;
/illumos-gate/usr/src/grub/grub-0.97/
H A DChangeLog8961 (get_code_end): Implement, simulating with a malloced area.