Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libc/port/i18n/
H A Dwsscanf.c60 size_t malloced = 0; in wsscanf() local
68 tempstring = malloc(malloced = MB_CUR_MAX*wcslen(string)+1); in wsscanf()
71 i = wcstombs(tempstring, string, malloced); /* Try again. */ in wsscanf()
81 if (malloced) free(tempstring); in wsscanf()
H A Dwsprintf.c55 int malloced = 0; in wsprintf() local
71 malloced = 1; in wsprintf()
90 if (malloced == 1) in wsprintf()
/titanic_50/usr/src/lib/libdns_sd/common/
H A Ddnssd_clientlib.c171 uint16_t malloced; // Non-zero if buffer was allocated via malloc() member
193 txtRec->malloced = 0; in TXTRecordCreate()
198 if (txtRec->malloced) free(txtRec->buffer); in TXTRecordDeallocate()
226 if (txtRec->malloced) free(txtRec->buffer); in TXTRecordSetValue()
229 txtRec->malloced = 1; in TXTRecordSetValue()
/titanic_50/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()
293 if (number->malloced == 1) { in big_finish()
295 number->malloced = 0; in big_finish()
427 if (dest->malloced == 1) { in big_copy()
435 dest->malloced = 1; in big_copy()
467 if (number->malloced) { in big_extend()
486 number->malloced = 1; in big_extend()
865 res1.malloced = 0; in big_sub_pos_high()
[all …]
H A Dbignum.h85 int malloced; /* 1 if value was malloced, 0 if not */ member
/titanic_50/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()
/titanic_50/usr/src/lib/libresolv2/common/irs/
H A Dirpmarshall.c892 int malloced = 0; in irp_marshall_ho() local
947 malloced = 1; in irp_marshall_ho()
971 if (malloced) { in irp_marshall_ho()
/titanic_50/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftAttributeUtil.c1581 n.malloced = 0;
1914 x.malloced = 0;
1915 q.malloced = 0;
/titanic_50/usr/src/grub/grub-0.97/
H A DChangeLog8961 (get_code_end): Implement, simulating with a malloced area.