HomeSort by: relevance | last modified time | path
    Searched refs:size (Results 1 - 25 of 17617) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl2/grep/dist/lib/
malloc.c 3 /* rpl_malloc.c -- a replacement for malloc that don't accept 0 size
23 rpl_malloc(size_t size)
25 if (!size)
26 size++;
27 return malloc(size);
realloc.c 23 rpl_realloc(void *ptr, size_t size)
26 return malloc(size);
27 if (!size)
31 return malloc(size);
33 return realloc(ptr, size);
  /src/sys/arch/hpcmips/stand/libsa/
alloc.c 40 void *malloc(size_t size);
43 alloc(size_t size);
45 return malloc(size);
  /src/lib/libusbhid/
usbvar.h 30 unsigned int size; member in struct:report_desc
  /src/external/gpl3/binutils/usr.bin/size/
Makefile 3 PROG= size
  /src/external/gpl3/binutils.old/usr.bin/size/
Makefile 3 PROG= size
  /src/sys/dev/iscsi/
base64.h 32 /* size of result string including term. zero and "0b" prefix */
33 #define base64_enclen(size) ((size) * 4 / 3 + 4 + 2)
35 /* encode "size" bytes of "data" into "buffer" returning length */
  /src/external/bsd/jemalloc/dist/test/src/
btalloc.c 4 btalloc(size_t size, unsigned bits) {
5 return btalloc_0(size, bits);
  /src/external/bsd/jemalloc.old/dist/test/src/
btalloc.c 4 btalloc(size_t size, unsigned bits) {
5 return btalloc_0(size, bits);
  /src/external/bsd/zstd/dist/tests/
loremOut.h 12 * Generate @size bytes of compressible data using lorem ipsum generator into
15 void LOREM_genOut(unsigned long long size, unsigned seed);
  /src/external/lgpl3/gmp/dist/mpz/
get_d.c 36 mp_size_t size; local
38 size = SIZ (z);
39 if (UNLIKELY (size == 0))
42 return mpn_get_d (PTR (z), ABS (size), size, 0L);
  /src/sys/arch/evbarm/stand/board/
integrator_mem.c 54 uint32_t heap, size; local
60 size = 16 * 1024 * 1024;
64 size = 32 * 1024 * 1024;
68 size = 64 * 1024 * 1024;
72 size = 128 * 1024 * 1024;
76 size = 256 * 1024 * 1024;
81 size = 16 * 1024 * 1024;
86 heap = size - BOARD_HEAP_SIZE;
88 printf(">> RAM 0x%x - 0x%x, heap at 0x%x\n", 0, size - 1, heap);
89 setheap((void *)heap, (void *)(size - 1))
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
alloc.c 43 xmalloc (size_t size)
49 if (size == 0)
50 size = 1;
52 val = malloc (size); /* ARI: malloc */
54 malloc_failure (size);
60 xrealloc (void *ptr, size_t size)
66 if (size == 0)
67 size = 1;
70 val = realloc (ptr, size); /* ARI: realloc */
72 val = malloc (size); /* ARI: malloc *
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
alloc.c 43 xmalloc (size_t size)
49 if (size == 0)
50 size = 1;
52 val = malloc (size); /* ARI: malloc */
54 malloc_failure (size);
60 xrealloc (void *ptr, size_t size)
66 if (size == 0)
67 size = 1;
70 val = realloc (ptr, size); /* ARI: realloc */
72 val = malloc (size); /* ARI: malloc *
    [all...]
  /src/external/lgpl3/gmp/dist/mpf/
int_p.c 40 mp_size_t size; variable
42 size = SIZ (f);
45 return (size == 0); /* zero is an integer,
47 size = ABS (size);
51 --size;
54 return size <= exp;
  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
reshape_packed.c 36 index_type size; local
38 size = (rsize > ssize) ? ssize : rsize;
39 memcpy (ret, source, size);
40 ret += size;
41 rsize -= size;
44 size = (rsize > psize) ? psize : rsize;
45 memcpy (ret, pad, size);
46 ret += size;
47 rsize -= size;
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
reshape_packed.c 36 index_type size; local
38 size = (rsize > ssize) ? ssize : rsize;
39 memcpy (ret, source, size);
40 ret += size;
41 rsize -= size;
44 size = (rsize > psize) ? psize : rsize;
45 memcpy (ret, pad, size);
46 ret += size;
47 rsize -= size;
  /src/sys/arch/hpc/stand/libsa/
alloc.c 43 alloc(size_t size)
45 return malloc(size);
49 dealloc(void *ptr, size_t size)
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_mp_unsigned_bin_size.c 20 /* get the size for an unsigned equivalent */
23 int size = mp_count_bits (a); local
24 return (size / 8 + ((size & 7) != 0 ? 1 : 0));
  /src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/functional/src/
clean-two.c 7 unsigned int const size = do_nothing_loop(); local
8 unsigned int const square = size * size;
  /src/external/bsd/ipf/dist/lib/
bcopywrap.c 13 int bcopywrap(from, to, size)
15 size_t size;
17 bcopy((caddr_t)from, (caddr_t)to, size);
  /src/external/bsd/zstd/dist/tests/fuzz/
zstd_frame_info.c 22 int LLVMFuzzerTestOneInput(const uint8_t *src, size_t size)
25 if (size == 0) {
32 ZSTD_getFrameContentSize(src, size);
33 ZSTD_getDecompressedSize(src, size);
34 ZSTD_findFrameCompressedSize(src, size);
35 ZSTD_getDictID_fromFrame(src, size);
36 ZSTD_findDecompressedSize(src, size);
37 ZSTD_decompressBound(src, size);
38 ZSTD_frameHeaderSize(src, size);
39 ZSTD_isFrame(src, size);
    [all...]
  /src/lib/libc/rpc/
rpc_dtablesize.c 57 static int size; local
58 if (size == 0)
59 size = (int)sysconf(_SC_OPEN_MAX);
60 return (size);
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
passwd_dlg.h 46 int pwd_dialog(char *buf, int size);
  /src/external/bsd/tcpdump/dist/
addrtostr.h 41 extern const char *addrtostr(const void *src, char *dst, size_t size);
42 extern const char *addrtostr6(const void *src, char *dst, size_t size);

Completed in 23 milliseconds

1 2 3 4 5 6 7 8 91011>>