sz                 85 lib/crypto/sha256.c     m->sz[0] = 0;
sz                 86 lib/crypto/sha256.c     m->sz[1] = 0;
sz                193 lib/crypto/sha256.c     size_t old_sz = m->sz[0];
sz                196 lib/crypto/sha256.c     m->sz[0] += len * 8;
sz                197 lib/crypto/sha256.c     if (m->sz[0] < old_sz)
sz                198 lib/crypto/sha256.c 	++m->sz[1];
sz                228 lib/crypto/sha256.c     unsigned offset = (m->sz[0] / 8) % 64;
sz                233 lib/crypto/sha256.c     zeros[dstart+7] = (m->sz[0] >> 0) & 0xff;
sz                234 lib/crypto/sha256.c     zeros[dstart+6] = (m->sz[0] >> 8) & 0xff;
sz                235 lib/crypto/sha256.c     zeros[dstart+5] = (m->sz[0] >> 16) & 0xff;
sz                236 lib/crypto/sha256.c     zeros[dstart+4] = (m->sz[0] >> 24) & 0xff;
sz                237 lib/crypto/sha256.c     zeros[dstart+3] = (m->sz[1] >> 0) & 0xff;
sz                238 lib/crypto/sha256.c     zeros[dstart+2] = (m->sz[1] >> 8) & 0xff;
sz                239 lib/crypto/sha256.c     zeros[dstart+1] = (m->sz[1] >> 16) & 0xff;
sz                240 lib/crypto/sha256.c     zeros[dstart+0] = (m->sz[1] >> 24) & 0xff;
sz                 62 lib/crypto/sha256.h   unsigned int sz[2];
sz                 80 lib/crypto/sha256.h   unsigned int sz[2];
sz                 50 source3/include/reg_objects.h 		struct registry_string sz;
sz                206 source3/lib/smbconf/smbconf_reg.c 	val.v.sz.str = CONST_DISCARD(char *, canon_valstr);
sz                207 source3/lib/smbconf/smbconf_reg.c 	val.v.sz.len = strlen(canon_valstr) + 1;
sz                288 source3/lib/smbconf/smbconf_reg.c 		result = talloc_asprintf(mem_ctx, "%s", value->v.sz.str);
sz                 95 source3/lib/util_reg_api.c 					   length+2, (void **)&value->v.sz.str,
sz                 96 source3/lib/util_reg_api.c 					   &value->v.sz.len, False)) {
sz                146 source3/lib/util_reg_api.c 					   value->v.sz.str,
sz                147 source3/lib/util_reg_api.c 					   MIN(value->v.sz.len,
sz                148 source3/lib/util_reg_api.c 					       strlen(value->v.sz.str)+1),
sz                276 source3/libgpo/gpext/gpext.c 			data->v.sz.str = talloc_strdup(mem_ctx, data_s);
sz                277 source3/libgpo/gpext/gpext.c 			NT_STATUS_HAVE_NO_MEMORY(data->v.sz.str);
sz                278 source3/libgpo/gpext/gpext.c 			data->v.sz.len = strlen(data_s);
sz                302 source3/libgpo/gpext/registry.c 			if (!pull_ucs2_talloc(mem_ctx, &data->v.sz.str,
sz                305 source3/libgpo/gpext/registry.c 					      &data->v.sz.len)) {
sz                306 source3/libgpo/gpext/registry.c 				data->v.sz.len = -1;
sz                 99 source3/libgpo/gpext/scripts.c 			data->v.sz.str = talloc_strdup(mem_ctx, (char *)data_p);
sz                100 source3/libgpo/gpext/scripts.c 			data->v.sz.len = strlen(data->v.sz.str);
sz                170 source3/libgpo/gpo_reg.c 	reg_val.v.sz.len = strlen(val);
sz                171 source3/libgpo/gpo_reg.c 	reg_val.v.sz.str = talloc_strdup(mem_ctx, val);
sz                172 source3/libgpo/gpo_reg.c 	W_ERROR_HAVE_NO_MEMORY(reg_val.v.sz.str);
sz                212 source3/libgpo/gpo_reg.c 	*val = talloc_strdup(mem_ctx, reg_val->v.sz.str);
sz                807 source3/libgpo/gpo_reg.c 				   val->v.sz.str,
sz                808 source3/libgpo/gpo_reg.c 				   (int)val->v.sz.len));
sz               2989 source3/printing/nt_printing.c 			    const char *sz)
sz               2995 source3/printing/nt_printing.c 	str_size = push_ucs2(NULL, conv_str, sz, sizeof(conv_str),
sz                167 source3/registry/reg_util.c 	char **sz;
sz                190 source3/registry/reg_util.c 	if ( !(sz = TALLOC_ARRAY( NULL, char*, num_strings+1 )) ) {
sz                199 source3/registry/reg_util.c 		sz[i] = talloc_strdup( sz, buffer );
sz                208 source3/registry/reg_util.c 	sz[i] = '\0';
sz                210 source3/registry/reg_util.c 	*values = sz;
sz                224 source3/registry/reg_util.c 	UNISTR2 sz;
sz                237 source3/registry/reg_util.c 		ZERO_STRUCT( sz );
sz                239 source3/registry/reg_util.c 		init_unistr2( &sz, values[i], UNI_STR_TERMINATE );
sz                244 source3/registry/reg_util.c 		b = TALLOC_REALLOC_ARRAY( NULL, buf, uint16, buf_size+sz.uni_str_len+1 );
sz                254 source3/registry/reg_util.c 		memcpy( buf+buf_size, sz.buffer, sz.uni_str_len*2 );
sz                255 source3/registry/reg_util.c 		buf_size += sz.uni_str_len;
sz                258 source3/registry/reg_util.c 		TALLOC_FREE( sz.buffer );
sz                 52 source3/rpc_parse/parse_prs.c 	ssize_t sz;
sz                 68 source3/rpc_parse/parse_prs.c 		sz = write(fd, ps->data_p + from_off, to_off - from_off);
sz                 70 source3/rpc_parse/parse_prs.c 		if ( (sz != to_off-from_off) || (i != 0) ) {
sz                 71 source3/rpc_parse/parse_prs.c 			DEBUG(0,("Error writing/closing %s: %ld!=%ld %d\n", fname, (unsigned long)sz, (unsigned long)to_off-from_off, i ));
sz                 48 source3/smbd/message.c 	ssize_t sz;
sz                 87 source3/smbd/message.c 		sz = write(fd, &msg[i], 1);
sz                 88 source3/smbd/message.c 		if ( sz != 1 ) {
sz                 90 source3/smbd/message.c 				  (long)sz, strerror(errno)));
sz                340 source3/utils/net_registry.c 		value.v.sz.len = strlen(argv[3])+1;
sz                341 source3/utils/net_registry.c 		value.v.sz.str = CONST_DISCARD(char *, argv[3]);
sz                 53 source3/utils/net_registry_util.c 		d_printf("%s", valvalue->v.sz.str);
sz                405 source3/utils/net_rpc_registry.c 		value.v.sz.len = strlen(argv[3])+1;
sz                406 source3/utils/net_rpc_registry.c 		value.v.sz.str = CONST_DISCARD(char *, argv[3]);
sz                 77 source4/heimdal/lib/asn1/asn1_gen.c 	size_t sz;
sz                119 source4/heimdal/lib/asn1/asn1_gen.c 				     &sz);
sz                123 source4/heimdal/lib/asn1/asn1_gen.c 	if (fwrite(p + sizeof(p) - sz , sz, 1, fout) != 1)
sz                125 source4/heimdal/lib/asn1/asn1_gen.c 	offset += sz;
sz                131 source4/heimdal/lib/asn1/asn1_gen.c 	    pdata = emalloc(sz);
sz                 46 source4/heimdal/lib/asn1/hash.c hashtabnew(int sz,
sz                 53 source4/heimdal/lib/asn1/hash.c     assert(sz > 0);
sz                 55 source4/heimdal/lib/asn1/hash.c     htab = (Hashtab *) malloc(sizeof(Hashtab) + (sz - 1) * sizeof(Hashentry *));
sz                 59 source4/heimdal/lib/asn1/hash.c     for (i = 0; i < sz; ++i)
sz                 64 source4/heimdal/lib/asn1/hash.c     htab->sz = sz;
sz                 77 source4/heimdal/lib/asn1/hash.c     for (hptr = htab->tab[(*htab->hash) (ptr) % htab->sz];
sz                115 source4/heimdal/lib/asn1/hash.c 	tabptr = &htab->tab[(*htab->hash) (ptr) % htab->sz];
sz                157 source4/heimdal/lib/asn1/hash.c     for (h = htab->tab; h < &htab->tab[htab->sz]; ++h)
sz                 51 source4/heimdal/lib/asn1/hash.h      int sz;			/* Size */
sz                 59 source4/heimdal/lib/asn1/hash.h Hashtab *hashtabnew(int sz,
sz                121 source4/heimdal/lib/gssapi/krb5/cfx.c 	size_t wrapped_size, sz;
sz                126 source4/heimdal/lib/gssapi/krb5/cfx.c 	    sz = krb5_get_wrapped_length(context,
sz                128 source4/heimdal/lib/gssapi/krb5/cfx.c 	} while (wrapped_size && sz > input_length);
sz               1603 source4/heimdal/lib/hcrypto/evp.c 	    size_t sz = min(keylen, mds);
sz               1605 source4/heimdal/lib/hcrypto/evp.c 		memcpy(key, buf, sz);
sz               1606 source4/heimdal/lib/hcrypto/evp.c 		key += sz;
sz               1608 source4/heimdal/lib/hcrypto/evp.c 	    keylen -= sz;
sz               1609 source4/heimdal/lib/hcrypto/evp.c 	    i += sz;
sz               1612 source4/heimdal/lib/hcrypto/evp.c 	    size_t sz = min(ivlen, (mds - i));
sz               1614 source4/heimdal/lib/hcrypto/evp.c 		memcpy(iv, &buf[i], sz);
sz               1615 source4/heimdal/lib/hcrypto/evp.c 		iv += sz;
sz               1617 source4/heimdal/lib/hcrypto/evp.c 	    ivlen -= sz;
sz               1708 source4/heimdal/lib/hcrypto/imath/imath.c   mp_sign   sz;
sz               1713 source4/heimdal/lib/hcrypto/imath/imath.c   sz = MP_SIGN(z);
sz               1714 source4/heimdal/lib/hcrypto/imath/imath.c   if((sz == MP_ZPOS && mp_int_compare_value(z, MP_SMALL_MAX) > 0) ||
sz               1728 source4/heimdal/lib/hcrypto/imath/imath.c     *out = (sz == MP_NEG) ? -(mp_small)uv : (mp_small)uv;
sz               1742 source4/heimdal/lib/hcrypto/imath/imath.c   mp_sign   sz;
sz               1747 source4/heimdal/lib/hcrypto/imath/imath.c   sz = MP_SIGN(z);
sz               1748 source4/heimdal/lib/hcrypto/imath/imath.c   if(!(sz == MP_ZPOS && mp_int_compare_value(z, UINT_MAX) <= 0))
sz                 52 source4/heimdal/lib/hcrypto/md4.c   m->sz[0] = 0;
sz                 53 source4/heimdal/lib/hcrypto/md4.c   m->sz[1] = 0;
sz                181 source4/heimdal/lib/hcrypto/md4.c     size_t old_sz = m->sz[0];
sz                184 source4/heimdal/lib/hcrypto/md4.c     m->sz[0] += len * 8;
sz                185 source4/heimdal/lib/hcrypto/md4.c     if (m->sz[0] < old_sz)
sz                186 source4/heimdal/lib/hcrypto/md4.c 	++m->sz[1];
sz                216 source4/heimdal/lib/hcrypto/md4.c   unsigned offset = (m->sz[0] / 8) % 64;
sz                221 source4/heimdal/lib/hcrypto/md4.c   zeros[dstart+0] = (m->sz[0] >> 0) & 0xff;
sz                222 source4/heimdal/lib/hcrypto/md4.c   zeros[dstart+1] = (m->sz[0] >> 8) & 0xff;
sz                223 source4/heimdal/lib/hcrypto/md4.c   zeros[dstart+2] = (m->sz[0] >> 16) & 0xff;
sz                224 source4/heimdal/lib/hcrypto/md4.c   zeros[dstart+3] = (m->sz[0] >> 24) & 0xff;
sz                225 source4/heimdal/lib/hcrypto/md4.c   zeros[dstart+4] = (m->sz[1] >> 0) & 0xff;
sz                226 source4/heimdal/lib/hcrypto/md4.c   zeros[dstart+5] = (m->sz[1] >> 8) & 0xff;
sz                227 source4/heimdal/lib/hcrypto/md4.c   zeros[dstart+6] = (m->sz[1] >> 16) & 0xff;
sz                228 source4/heimdal/lib/hcrypto/md4.c   zeros[dstart+7] = (m->sz[1] >> 24) & 0xff;
sz                 51 source4/heimdal/lib/hcrypto/md4.h   unsigned int sz[2];
sz                 52 source4/heimdal/lib/hcrypto/md5.c   m->sz[0] = 0;
sz                 53 source4/heimdal/lib/hcrypto/md5.c   m->sz[1] = 0;
sz                205 source4/heimdal/lib/hcrypto/md5.c   size_t old_sz = m->sz[0];
sz                208 source4/heimdal/lib/hcrypto/md5.c   m->sz[0] += len * 8;
sz                209 source4/heimdal/lib/hcrypto/md5.c   if (m->sz[0] < old_sz)
sz                210 source4/heimdal/lib/hcrypto/md5.c       ++m->sz[1];
sz                240 source4/heimdal/lib/hcrypto/md5.c   unsigned offset = (m->sz[0] / 8) % 64;
sz                245 source4/heimdal/lib/hcrypto/md5.c   zeros[dstart+0] = (m->sz[0] >> 0) & 0xff;
sz                246 source4/heimdal/lib/hcrypto/md5.c   zeros[dstart+1] = (m->sz[0] >> 8) & 0xff;
sz                247 source4/heimdal/lib/hcrypto/md5.c   zeros[dstart+2] = (m->sz[0] >> 16) & 0xff;
sz                248 source4/heimdal/lib/hcrypto/md5.c   zeros[dstart+3] = (m->sz[0] >> 24) & 0xff;
sz                249 source4/heimdal/lib/hcrypto/md5.c   zeros[dstart+4] = (m->sz[1] >> 0) & 0xff;
sz                250 source4/heimdal/lib/hcrypto/md5.c   zeros[dstart+5] = (m->sz[1] >> 8) & 0xff;
sz                251 source4/heimdal/lib/hcrypto/md5.c   zeros[dstart+6] = (m->sz[1] >> 16) & 0xff;
sz                252 source4/heimdal/lib/hcrypto/md5.c   zeros[dstart+7] = (m->sz[1] >> 24) & 0xff;
sz                 51 source4/heimdal/lib/hcrypto/md5.h   unsigned int sz[2];
sz                 53 source4/heimdal/lib/hcrypto/sha.c   m->sz[0] = 0;
sz                 54 source4/heimdal/lib/hcrypto/sha.c   m->sz[1] = 0;
sz                231 source4/heimdal/lib/hcrypto/sha.c   size_t old_sz = m->sz[0];
sz                234 source4/heimdal/lib/hcrypto/sha.c   m->sz[0] += len * 8;
sz                235 source4/heimdal/lib/hcrypto/sha.c   if (m->sz[0] < old_sz)
sz                236 source4/heimdal/lib/hcrypto/sha.c       ++m->sz[1];
sz                266 source4/heimdal/lib/hcrypto/sha.c   unsigned offset = (m->sz[0] / 8) % 64;
sz                271 source4/heimdal/lib/hcrypto/sha.c   zeros[dstart+7] = (m->sz[0] >> 0) & 0xff;
sz                272 source4/heimdal/lib/hcrypto/sha.c   zeros[dstart+6] = (m->sz[0] >> 8) & 0xff;
sz                273 source4/heimdal/lib/hcrypto/sha.c   zeros[dstart+5] = (m->sz[0] >> 16) & 0xff;
sz                274 source4/heimdal/lib/hcrypto/sha.c   zeros[dstart+4] = (m->sz[0] >> 24) & 0xff;
sz                275 source4/heimdal/lib/hcrypto/sha.c   zeros[dstart+3] = (m->sz[1] >> 0) & 0xff;
sz                276 source4/heimdal/lib/hcrypto/sha.c   zeros[dstart+2] = (m->sz[1] >> 8) & 0xff;
sz                277 source4/heimdal/lib/hcrypto/sha.c   zeros[dstart+1] = (m->sz[1] >> 16) & 0xff;
sz                278 source4/heimdal/lib/hcrypto/sha.c   zeros[dstart+0] = (m->sz[1] >> 24) & 0xff;
sz                 54 source4/heimdal/lib/hcrypto/sha.h   unsigned int sz[2];
sz                 72 source4/heimdal/lib/hcrypto/sha.h   unsigned int sz[2];
sz                 84 source4/heimdal/lib/hcrypto/sha256.c     m->sz[0] = 0;
sz                 85 source4/heimdal/lib/hcrypto/sha256.c     m->sz[1] = 0;
sz                173 source4/heimdal/lib/hcrypto/sha256.c     size_t old_sz = m->sz[0];
sz                176 source4/heimdal/lib/hcrypto/sha256.c     m->sz[0] += len * 8;
sz                177 source4/heimdal/lib/hcrypto/sha256.c     if (m->sz[0] < old_sz)
sz                178 source4/heimdal/lib/hcrypto/sha256.c 	++m->sz[1];
sz                208 source4/heimdal/lib/hcrypto/sha256.c     unsigned offset = (m->sz[0] / 8) % 64;
sz                213 source4/heimdal/lib/hcrypto/sha256.c     zeros[dstart+7] = (m->sz[0] >> 0) & 0xff;
sz                214 source4/heimdal/lib/hcrypto/sha256.c     zeros[dstart+6] = (m->sz[0] >> 8) & 0xff;
sz                215 source4/heimdal/lib/hcrypto/sha256.c     zeros[dstart+5] = (m->sz[0] >> 16) & 0xff;
sz                216 source4/heimdal/lib/hcrypto/sha256.c     zeros[dstart+4] = (m->sz[0] >> 24) & 0xff;
sz                217 source4/heimdal/lib/hcrypto/sha256.c     zeros[dstart+3] = (m->sz[1] >> 0) & 0xff;
sz                218 source4/heimdal/lib/hcrypto/sha256.c     zeros[dstart+2] = (m->sz[1] >> 8) & 0xff;
sz                219 source4/heimdal/lib/hcrypto/sha256.c     zeros[dstart+1] = (m->sz[1] >> 16) & 0xff;
sz                220 source4/heimdal/lib/hcrypto/sha256.c     zeros[dstart+0] = (m->sz[1] >> 24) & 0xff;
sz               2492 source4/heimdal/lib/hx509/cert.c     size_t sz;
sz               2512 source4/heimdal/lib/hx509/cert.c     ret = decode_PKCS9_friendlyName(a->data.data, a->data.length, &n, &sz);
sz               2777 source4/heimdal/lib/krb5/crypto.c     size_t sz, block_sz, checksum_sz, total_sz;
sz               2786 source4/heimdal/lib/krb5/crypto.c     sz = et->confoundersize + len;
sz               2787 source4/heimdal/lib/krb5/crypto.c     block_sz = (sz + et->padsize - 1) &~ (et->padsize - 1); /* pad */
sz               2843 source4/heimdal/lib/krb5/crypto.c     size_t sz, block_sz, checksum_sz;
sz               2851 source4/heimdal/lib/krb5/crypto.c     sz = et->confoundersize + checksum_sz + len;
sz               2852 source4/heimdal/lib/krb5/crypto.c     block_sz = (sz + et->padsize - 1) &~ (et->padsize - 1); /* pad */
sz               2911 source4/heimdal/lib/krb5/crypto.c     size_t sz = len + cksum_sz + et->confoundersize;
sz               2915 source4/heimdal/lib/krb5/crypto.c     tmp = malloc (sz);
sz               2926 source4/heimdal/lib/krb5/crypto.c     ret = (*et->encrypt)(context, &crypto->key, tmp, sz, TRUE, usage, ivec);
sz               2928 source4/heimdal/lib/krb5/crypto.c 	memset(tmp, 0, sz);
sz               2933 source4/heimdal/lib/krb5/crypto.c     result->length = sz;
sz               3091 source4/heimdal/lib/krb5/crypto.c     size_t sz = len - cksum_sz - et->confoundersize;
sz               3113 source4/heimdal/lib/krb5/crypto.c     memmove (p, p + cksum_sz + et->confoundersize, sz);
sz               3114 source4/heimdal/lib/krb5/crypto.c     result->data = realloc(p, sz);
sz               3115 source4/heimdal/lib/krb5/crypto.c     if(result->data == NULL && sz != 0) {
sz               3120 source4/heimdal/lib/krb5/crypto.c     result->length = sz;
sz               3167 source4/heimdal/lib/krb5/crypto.c     size_t i, sz, block_sz, pad_sz;
sz               3190 source4/heimdal/lib/krb5/crypto.c     sz = headersz + len;
sz               3191 source4/heimdal/lib/krb5/crypto.c     block_sz = (sz + et->padsize - 1) &~ (et->padsize - 1); /* pad */
sz               3193 source4/heimdal/lib/krb5/crypto.c     pad_sz = block_sz - sz;
sz               3367 source4/heimdal/lib/krb5/crypto.c     size_t i, sz, block_sz, pad_sz;
sz               3387 source4/heimdal/lib/krb5/crypto.c     sz = headersz + len;
sz               3388 source4/heimdal/lib/krb5/crypto.c     block_sz = (sz + et->padsize - 1) &~ (et->padsize - 1); /* pad */
sz               3390 source4/heimdal/lib/krb5/crypto.c     pad_sz = block_sz - sz;
sz                706 source4/heimdal/lib/krb5/init_creds_pw.c     size_t sz;
sz                710 source4/heimdal/lib/krb5/init_creds_pw.c     ret = decode_ETYPE_INFO2(data->data, data->length, &e, &sz);
sz                755 source4/heimdal/lib/krb5/init_creds_pw.c     size_t sz;
sz                759 source4/heimdal/lib/krb5/init_creds_pw.c     ret = decode_ETYPE_INFO(data->data, data->length, &e, &sz);
sz                 63 source4/heimdal/lib/krb5/store_emem.c 	size_t sz, off;
sz                 65 source4/heimdal/lib/krb5/store_emem.c 	sz = off + size;
sz                 66 source4/heimdal/lib/krb5/store_emem.c 	if (sz < 4096)
sz                 67 source4/heimdal/lib/krb5/store_emem.c 	    sz *= 2;
sz                 68 source4/heimdal/lib/krb5/store_emem.c 	base = realloc(s->base, sz);
sz                 71 source4/heimdal/lib/krb5/store_emem.c 	s->size = sz;
sz                 49 source4/heimdal/lib/roken/emalloc.c emalloc (size_t sz)
sz                 51 source4/heimdal/lib/roken/emalloc.c     void *tmp = malloc (sz);
sz                 53 source4/heimdal/lib/roken/emalloc.c     if (tmp == NULL && sz != 0)
sz                 54 source4/heimdal/lib/roken/emalloc.c 	errx (1, "malloc %lu failed", (unsigned long)sz);
sz                 49 source4/heimdal/lib/roken/erealloc.c erealloc (void *ptr, size_t sz)
sz                 51 source4/heimdal/lib/roken/erealloc.c     void *tmp = realloc (ptr, sz);
sz                 53 source4/heimdal/lib/roken/erealloc.c     if (tmp == NULL && sz != 0)
sz                 54 source4/heimdal/lib/roken/erealloc.c 	errx (1, "realloc %lu failed", (unsigned long)sz);
sz                597 source4/lib/wmi/wmi_wrap.c SWIG_PackData(char *c, void *ptr, size_t sz) {
sz                600 source4/lib/wmi/wmi_wrap.c   register const unsigned char *eu =  u + sz;
sz                613 source4/lib/wmi/wmi_wrap.c SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
sz                615 source4/lib/wmi/wmi_wrap.c   register const unsigned char *eu = u + sz;
sz                665 source4/lib/wmi/wmi_wrap.c SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) {
sz                668 source4/lib/wmi/wmi_wrap.c   if ((2*sz + 2 + lname) > bsz) return 0;
sz                670 source4/lib/wmi/wmi_wrap.c   r = SWIG_PackData(r,ptr,sz);
sz                680 source4/lib/wmi/wmi_wrap.c SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
sz                683 source4/lib/wmi/wmi_wrap.c       memset(ptr,0,sz);
sz                689 source4/lib/wmi/wmi_wrap.c   return SWIG_UnpackData(++c,ptr,sz);
sz               1000 source4/lib/wmi/wmi_wrap.c #define SWIG_ConvertPacked(obj, ptr, sz, ty)            SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
sz               1001 source4/lib/wmi/wmi_wrap.c #define SWIG_NewPackedObj(ptr, sz, type)                SWIG_Python_NewPackedObj(ptr, sz, type)
sz               1012 source4/lib/wmi/wmi_wrap.c #define SWIG_ConvertMember(obj, ptr, sz, ty)            SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
sz               1013 source4/lib/wmi/wmi_wrap.c #define SWIG_NewMemberObj(ptr, sz, type)                SWIG_Python_NewPackedObj(ptr, sz, type)
sz               2092 source4/lib/wmi/wmi_wrap.c SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) {
sz               2093 source4/lib/wmi/wmi_wrap.c   swig_type_info *to = PySwigPacked_UnpackData(obj, ptr, sz);
sz               2239 source4/lib/wmi/wmi_wrap.c SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) {
sz               2240 source4/lib/wmi/wmi_wrap.c   return ptr ? PySwigPacked_New((void *) ptr, sz, type) : SWIG_Py_Void();