Searched refs:sz (Results 1 - 25 of 821) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-elf/
H A Dnew.cc10 operator new (std::size_t sz, const std::nothrow_t&) throw() argument
15 if (sz == 0)
16 sz = 1;
17 p = (void *) malloc (sz);
22 operator new (std::size_t sz) throw (std::bad_alloc) argument
27 if (sz == 0)
28 sz = 1;
29 p = (void *) malloc (sz);
39 operator new[] (std::size_t sz) throw (std::bad_alloc) argument
41 return ::operator new(sz);
45 operator new[](std::size_t sz, const std::nothrow_t& nothrow) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/mdocml/dist/
H A Dtest-fgetln.c8 size_t sz; local
9 cp = fgetln(stdin, &sz);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libmudflap/testsuite/libmudflap.c/
H A Dfail10-frag.c7 int sz = sizeof (int); local
10 bar [sz * 10] = 0;
H A Dpass10-frag.c7 int sz = sizeof (int); local
10 bar [sz * 9] = 0;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
H A Dnew_opv.cc30 operator new[] (std::size_t sz) throw (std::bad_alloc) argument
32 return ::operator new(sz);
H A Dnew_opvnt.cc30 operator new[] (std::size_t sz, const std::nothrow_t& nothrow) throw() argument
32 return ::operator new(sz, nothrow);
H A Dnew_opnt.cc37 operator new (std::size_t sz, const std::nothrow_t&) throw() argument
42 if (sz == 0)
43 sz = 1;
44 p = (void *) malloc (sz);
59 p = (void *) malloc (sz);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/libsupc++/
H A Dnew_opv.cc35 operator new[] (std::size_t sz) throw (std::bad_alloc) argument
37 return ::operator new(sz);
H A Dnew_opvnt.cc35 operator new[] (std::size_t sz, const std::nothrow_t& nothrow) throw() argument
37 return ::operator new(sz, nothrow);
H A Dnew_opnt.cc41 operator new (std::size_t sz, const std::nothrow_t&) throw() argument
46 if (sz == 0)
47 sz = 1;
48 p = (void *) malloc (sz);
63 p = (void *) malloc (sz);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Demalloc.c48 emalloc (size_t sz) argument
50 void *tmp = malloc (sz);
52 if (tmp == NULL && sz != 0)
53 errx (1, "malloc %lu failed", (unsigned long)sz);
H A Derealloc.c48 erealloc (void *ptr, size_t sz) argument
50 void *tmp = realloc (ptr, sz);
52 if (tmp == NULL && sz != 0)
53 errx (1, "realloc %lu failed", (unsigned long)sz);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.jason/
H A Danon3.C14 int sz; member in struct:cl::__anon5046::ff
19 void cl::set(void *p, char *n, int sz) argument
24 vff->sz = sz;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.jason/
H A Danon3.C14 int sz; member in struct:cl::__anon3412::ff
19 void cl::set(void *p, char *n, int sz) argument
24 vff->sz = sz;
/netbsd-6-1-5-RELEASE/external/bsd/libelf/dist/
H A Delf_getident.c43 elf_getident(Elf *e, size_t *sz) argument
58 if (sz) {
60 *sz = SARMAG;
62 *sz = EI_NIDENT;
64 *sz = e->e_rawsize;
70 if (sz)
71 *sz = 0;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/
H A Dhost-darwin.c33 darwin_gt_pch_get_address (size_t sz, int fd ATTRIBUTE_UNUSED) argument
35 if (sz <= sizeof (pch_address_space))
45 darwin_gt_pch_use_address (void *addr, size_t sz, int fd, size_t off) argument
54 ret = (addr == pch_address_space && sz <= sizeof (pch_address_space));
56 sz = 0;
59 sz = (sz + pagesize - 1) / pagesize * pagesize;
61 if (munmap (pch_address_space + sz, sizeof (pch_address_space) - sz) != 0)
66 mmap_result = mmap (addr, sz,
[all...]
H A Dhost-darwin.h20 extern void * darwin_gt_pch_get_address (size_t sz, int fd);
21 extern int darwin_gt_pch_use_address (void *addr, size_t sz, int fd,
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/
H A Dhost-darwin.c34 darwin_gt_pch_get_address (size_t sz, int fd ATTRIBUTE_UNUSED) argument
36 if (sz <= sizeof (pch_address_space))
46 darwin_gt_pch_use_address (void *addr, size_t sz, int fd, size_t off) argument
55 ret = (addr == pch_address_space && sz <= sizeof (pch_address_space));
57 sz = 0;
60 sz = (sz + pagesize - 1) / pagesize * pagesize;
62 if (munmap (pch_address_space + sz, sizeof (pch_address_space) - sz) != 0)
67 mmap_result = mmap (addr, sz,
[all...]
H A Dhost-darwin.h21 extern void * darwin_gt_pch_get_address (size_t sz, int fd);
22 extern int darwin_gt_pch_use_address (void *addr, size_t sz, int fd,
/netbsd-6-1-5-RELEASE/sys/ddb/
H A Ddb_kernel.c43 db_alloc(size_t sz) argument
46 return malloc(sz, M_TEMP, M_WAITOK);
50 db_zalloc(size_t sz) argument
53 return malloc(sz, M_TEMP, M_WAITOK | M_ZERO);
57 db_free(void *p, size_t sz) argument
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/decimal/
H A Dmake-decimal.cc60 unsigned long sz = sizeof (decimal32); local
64 TESTVAL_NONNEG (0, +, 0, DF, 32, sz);
65 TESTVAL_NONNEG (5, +, 1, DF, 32, sz);
66 TESTVAL_NONNEG (50, +, 0, DF, 32, sz);
67 TESTVAL_NONNEG (500, +, 0, DF, 32, sz);
68 TESTVAL_NEG (-25, -, 3, DF, 32, sz)
69 TESTVAL_NEG (-500, +, 0, DF, 32, sz);
70 TESTVAL_NONNEG (999999, +, 91, DF, 32, sz);
71 TESTVAL_NONNEG (1, -, 9, DF, 32, sz);
72 TESTVAL_NONNEG (1, -, 90, DF, 32, sz);
84 unsigned long sz = sizeof (decimal64); local
108 unsigned long sz = sizeof (decimal128); local
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/tests/rand/
H A Dt-iset.c32 mpz_t sz, dz; local
36 mpz_init (sz);
41 mpz_urandomb (sz, src, 123);
44 if (mpz_cmp (sz, dz) != 0)
48 gmp_printf (" from src: %#Zx\n", sz);
54 mpz_clear (sz);
/netbsd-6-1-5-RELEASE/crypto/dist/ipsec-tools/src/racoon/
H A Ddebugrm.h41 #define racoon_malloc(sz) malloc((sz))
44 #define racoon_calloc(cnt, sz) calloc((cnt), (sz))
47 #define racoon_realloc(old, sz) realloc((old), (sz))
57 #define racoon_malloc(sz) \
58 DRM_malloc(__FILE__, __LINE__, __func__, (sz))
61 #define racoon_calloc(cnt, sz) \
62 DRM_calloc(__FILE__, __LINE__, __func__, (cnt), (sz))
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/template/
H A Darray19.C4 template <class T> struct S { static const int sz = 2; }; member in struct:S
5 template <class T> struct U { enum { sz = 2 }; }; enumerator in enum:U::__anon4922
10 template <class T> void bar (int (&x)[S<T>::sz]);
11 template <class T> void baz (int (&x)[U<T>::sz]);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.law/
H A Ddossier1.C12 int sz; member in class:Vector

Completed in 237 milliseconds

1234567891011>>