Searched refs:PTR (Results 1 - 25 of 163) sorted by relevance

1234567

/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dmempcpy.c35 extern PTR memcpy (PTR, const PTR, size_t);
37 PTR
38 mempcpy (PTR dst, const PTR src, size_t len)
H A Dmemchr.c20 PTR
21 memchr (register const PTR src_void, int c, size_t length)
28 return (PTR)src;
H A Dmemcpy.c20 PTR
21 memcpy (PTR out, const PTR in, size_t length)
H A Dmemmove.c20 PTR
21 memmove (PTR s1, const PTR s2, size_t n)
H A Dcalloc.c19 PTR malloc (size_t);
20 void bzero (PTR, size_t);
22 PTR
25 register PTR ptr;
H A Dstrdup.c16 extern PTR malloc (size_t);
17 extern PTR memcpy (PTR, const PTR, size_t);
H A Dxmemdup.c33 PTR
34 xmemdup (const PTR input, size_t copy_size, size_t alloc_size)
36 PTR output = xcalloc (1, alloc_size);
37 return (PTR) memcpy (output, input, copy_size);
H A Dmemcmp.c22 memcmp (const PTR str1, const PTR str2, size_t count)
H A Dmemset.c18 PTR
19 memset (PTR dest, register int val, register size_t len)
H A Dstrndup.c37 extern PTR malloc (size_t);
38 extern PTR memcpy (PTR, const PTR, size_t);
H A Dstpcpy.c36 extern PTR memcpy (PTR, const PTR, size_t);
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dmemchr.c20 PTR
21 memchr (register const PTR src_void, int c, size_t length)
28 return (PTR)src;
H A Dmemcpy.c20 PTR
21 memcpy (PTR out, const PTR in, size_t length)
H A Dmemmove.c20 PTR
21 memmove (PTR s1, const PTR s2, size_t n)
H A Dcalloc.c19 PTR malloc (size_t);
20 void bzero (PTR, size_t);
22 PTR
25 register PTR ptr;
H A Dstrdup.c16 extern PTR malloc (size_t);
17 extern PTR memcpy (PTR, const PTR, size_t);
H A Dxmemdup.c33 PTR
34 xmemdup (const PTR input, size_t copy_size, size_t alloc_size)
36 PTR output = xcalloc (1, alloc_size);
37 return (PTR) memcpy (output, input, copy_size);
H A Dmemcmp.c22 memcmp (const PTR str1, const PTR str2, size_t count)
H A Dmemset.c18 PTR
19 memset (PTR dest, register int val, register size_t len)
/freebsd-9.3-release/contrib/binutils/gas/
H A Dhash.h45 const char *key, PTR value);
52 const char *key, PTR value);
58 extern PTR hash_replace (struct hash_control *, const char *key,
59 PTR value);
64 extern PTR hash_find (struct hash_control *, const char *key);
69 extern PTR hash_find_n (struct hash_control *, const char *key, size_t len);
74 extern PTR hash_delete (struct hash_control *, const char *key);
80 void (*pfn) (const char *key, PTR value));
/freebsd-9.3-release/contrib/gcc/config/i386/
H A Dgas.h84 opcode to the stdio stream STREAM. The macro-operand PTR is a
91 #define ASM_OUTPUT_OPCODE(STREAM, PTR) \
93 if ((PTR)[0] == 'r' \
94 && (PTR)[1] == 'e' \
95 && (PTR)[2] == 'p') \
97 if ((PTR)[3] == 'z') \
100 (PTR) += 4; \
102 else if ((PTR)[3] == 'n' && (PTR)[4] == 'z') \
105 (PTR)
[all...]
/freebsd-9.3-release/contrib/binutils/include/
H A Dalloca-conf.h15 extern PTR alloca (size_t);
17 extern PTR alloca ();
/freebsd-9.3-release/contrib/gdb/include/
H A Dalloca-conf.h15 extern PTR alloca (size_t);
17 extern PTR alloca ();
H A Dternary.h41 PTR ternary_insert PARAMS ((ternary_tree *p, const char *s,
42 PTR data, int replace));
50 PTR ternary_search PARAMS ((const ternary_node *p, const char *s));
/freebsd-9.3-release/sys/netgraph/atm/sscfu/
H A Dng_sscfu_cust.h53 #define MEMZALLOC(PTR, CAST, SIZE) \
54 ((PTR) = (CAST)malloc((SIZE), M_NG_SSCFU, M_NOWAIT | M_ZERO))
55 #define MEMFREE(PTR) \
56 free(PTR, M_NG_SSCFU)
58 #define SIG_ALLOC(PTR) \
59 MEMZALLOC(PTR, struct sscfu_sig *, sizeof(struct sscfu_sig))
60 #define SIG_FREE(PTR) \
61 MEMFREE(PTR)
70 #define MEMZALLOC(PTR, CAST, SIZE) \
71 ((PTR)
[all...]

Completed in 200 milliseconds

1234567