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

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/aarch64/
H A Dadvsimd-compnum.s3 .macro three_same_no_rot op, sz
4 .irp d, 1.\sz, 2.\sz, 5.\sz, 13.\sz, 27.\sz
5 .irp m, 2.\sz, 3.\sz, 5.\sz, 14.\sz, 3
[all...]
H A Dadvsimd-armv8_3.s4 .macro three_same op, sz
6 .irp d, 1.\sz, 2.\sz, 5.\sz, 13.\sz, 27.\sz
7 .irp m, 2.\sz, 3.\sz, 5.\sz, 14.\sz, 3
[all...]
H A Dsve-movprfx_23.s10 .irp sz, h,s,d
11 movprfx z1.\sz, p1/m, z3.\sz
12 \inst z1.\sz, p1
17 .irp sz, b,h,s,d
18 movprfx z1.\sz, p1/m, z3.\sz
19 \inst z1.\sz, p1, z1.\sz, z1.\sz
[all...]
H A Darmv8_5-a-dp.s2 .irp sz, 32, 64
5 \op\sz\rnd s1, s2
6 \op\sz\rnd d2, d3
8 \op\sz\rnd v0.2d, v1.2d
9 \op\sz\rnd v0.2s, v1.2s
10 \op\sz\rnd v0.4s, v1.4s
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Dnew-op.cc48 operator new (std::size_t sz) argument
51 if (sz == 0)
52 sz = 1;
54 void *p = malloc (sz); /* ARI: malloc */
65 malloc_failure (sz);
76 operator new (std::size_t sz, const std::nothrow_t&) noexcept
79 if (sz == 0)
80 sz = 1;
81 return malloc (sz); /* ARI: malloc */
85 operator new[] (std::size_t sz) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-elf/
H A Dnew.cc9 operator new (std::size_t sz, const std::nothrow_t&) throw() argument
14 if (sz == 0)
15 sz = 1;
16 p = (void *) malloc (sz);
21 operator new (std::size_t sz) throw (std::bad_alloc) argument
26 if (sz == 0)
27 sz = 1;
28 p = (void *) malloc (sz);
38 operator new[] (std::size_t sz) throw (std::bad_alloc) argument
40 return ::operator new(sz);
44 operator new[](std::size_t sz, const std::nothrow_t& nothrow) argument
[all...]
/netbsd-current/sys/ddb/
H A Ddb_kernel.c53 db_alloc(size_t sz) argument
56 return kmem_alloc(sz, KM_SLEEP);
60 db_zalloc(size_t sz) argument
63 return kmem_zalloc(sz, KM_SLEEP);
67 db_free(void *p, size_t sz) argument
70 kmem_free(p, sz);
/netbsd-current/external/bsd/jemalloc/dist/test/integration/
H A Dthread_tcache_enabled.c6 size_t sz = sizeof(bool); local
7 assert_d_eq(mallctl("thread.tcache.enabled", (void *)&e0, &sz, NULL,
12 assert_d_eq(mallctl("thread.tcache.enabled", (void *)&e0, &sz,
13 (void *)&e1, sz), 0, "Unexpected mallctl() error");
18 assert_d_eq(mallctl("thread.tcache.enabled", (void *)&e0, &sz,
19 (void *)&e1, sz), 0, "Unexpected mallctl() error");
23 assert_d_eq(mallctl("thread.tcache.enabled", (void *)&e0, &sz,
24 (void *)&e1, sz), 0, "Unexpected mallctl() error");
28 assert_d_eq(mallctl("thread.tcache.enabled", (void *)&e0, &sz,
29 (void *)&e1, sz),
[all...]
H A Dallocated.c17 size_t sz, usize; local
19 sz = sizeof(a0);
20 if ((err = mallctl("thread.allocated", (void *)&a0, &sz, NULL, 0))) {
27 sz = sizeof(ap0);
28 if ((err = mallctl("thread.allocatedp", (void *)&ap0, &sz, NULL, 0))) {
39 sz = sizeof(d0);
40 if ((err = mallctl("thread.deallocated", (void *)&d0, &sz, NULL, 0))) {
47 sz = sizeof(dp0);
48 if ((err = mallctl("thread.deallocatedp", (void *)&dp0, &sz, NULL,
63 sz
[all...]
/netbsd-current/external/bsd/ipf/dist/lib/
H A Dmsgdsize.c16 size_t sz = 0; local
20 sz += m->mb_len;
21 return sz;
/netbsd-current/external/bsd/ntp/dist/sntp/libevent/
H A Dmm-internal.h44 * @return On success, return a pointer to sz newly allocated bytes.
46 * If the argument sz is 0, simply return NULL.
48 void *event_mm_malloc_(size_t sz);
70 void *event_mm_realloc_(void *p, size_t sz);
72 #define mm_malloc(sz) event_mm_malloc_(sz)
75 #define mm_realloc(p, sz) event_mm_realloc_((p), (sz))
78 #define mm_malloc(sz) malloc(sz)
[all...]
/netbsd-current/external/bsd/libevent/dist/
H A Dmm-internal.h43 * @return On success, return a pointer to sz newly allocated bytes.
45 * If the argument sz is 0, simply return NULL.
48 void *event_mm_malloc_(size_t sz);
73 void *event_mm_realloc_(void *p, size_t sz);
76 #define mm_malloc(sz) event_mm_malloc_(sz)
79 #define mm_realloc(p, sz) event_mm_realloc_((p), (sz))
82 #define mm_malloc(sz) malloc(sz)
[all...]
/netbsd-current/external/bsd/libfido2/dist/openbsd-compat/
H A Dfreezero.c22 freezero(void *ptr, size_t sz) argument
26 explicit_bzero(ptr, sz);
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
H A Dnew_opv.cc30 operator new[] (std::size_t sz) _GLIBCXX_THROW (std::bad_alloc)
32 return ::operator new(sz);
H A Dnew_opva.cc30 operator new[] (std::size_t sz, std::align_val_t al) argument
32 return ::operator new(sz, al);
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
H A Dnew_opv.cc30 operator new[] (std::size_t sz) _GLIBCXX_THROW (std::bad_alloc)
32 return ::operator new(sz);
H A Dnew_opva.cc30 operator new[] (std::size_t sz, std::align_val_t al) argument
32 return ::operator new(sz, al);
/netbsd-current/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-current/tests/usr.bin/xlint/lint1/
H A Dmsg_022.c24 unsigned long sz = sizeof(int(param1, param2)); variable
/netbsd-current/external/bsd/mdocml/dist/
H A Dcompat_vasprintf.c41 int sz; local
44 sz = vsnprintf(buf, sizeof(buf), format, ap2);
47 if (sz != -1 && (*ret = malloc(sz + 1)) != NULL) {
48 if (vsnprintf(*ret, sz + 1, format, ap) == sz)
49 return sz;
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/
H A Dhost-darwin.c37 darwin_gt_pch_get_address (size_t sz, int fd ATTRIBUTE_UNUSED) argument
39 if (sz <= sizeof (pch_address_space))
49 darwin_gt_pch_use_address (void *addr, size_t sz, int fd, size_t off) argument
58 ret = (addr == pch_address_space && sz <= sizeof (pch_address_space));
60 sz = 0;
63 sz = (sz + pagesize - 1) / pagesize * pagesize;
65 if (munmap (pch_address_space + sz, sizeof (pch_address_space) - sz) != 0)
70 mmap_result = mmap (addr, sz,
[all...]
/netbsd-current/external/lgpl3/gmp/dist/tests/rand/
H A Dt-iset.c31 mpz_t sz, dz; local
35 mpz_init (sz);
40 mpz_urandomb (sz, src, 123);
43 if (mpz_cmp (sz, dz) != 0)
47 gmp_printf (" from src: %#Zx\n", sz);
53 mpz_clear (sz);
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Dnew-op.cc53 operator new (std::size_t sz) argument
56 if (sz == 0)
57 sz = 1;
59 void *p = malloc (sz); /* ARI: malloc */
70 malloc_failure (sz);
81 operator new (std::size_t sz, const std::nothrow_t&) noexcept
84 if (sz == 0)
85 sz = 1;
86 return malloc (sz); /* ARI: malloc */
90 operator new[] (std::size_t sz) argument
[all...]
/netbsd-current/crypto/external/bsd/openssh/dist/
H A Dfreezero.c27 freezero(void *ptr, size_t sz) argument
31 explicit_bzero(ptr, sz);

Completed in 177 milliseconds

1234567891011>>