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

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dalloc_alloc_expr_1.f9018 integer, pointer :: PTR variable in program:fc011
21 allocate (PTR, stat=PTR) ! { dg-error "in the same ALLOCATE statement" }
25 ALLOCATE(PTR,ALLOCS(PTR)) ! { dg-error "same ALLOCATE statement" }
29 print *, 'This program has four errors', PTR, ALLOC(1)
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/other/
H A Dsynth1.C7 struct PTR struct
9 PTR ();
10 PTR (PTR&);
11 PTR& operator= (PTR&);
14 PTR (const PTR&);
15 PTR& operator= (const PTR
[all...]
/haiku-buildtools/legacy/gcc/gcc/config/i386/
H A Dseq-gas.h9 opcode to the stdio stream STREAM. The macro-operand PTR is a
17 #define ASM_OUTPUT_OPCODE(STREAM, PTR) \
19 if ((PTR)[0] == 'r' \
20 && (PTR)[1] == 'e' \
21 && (PTR)[2] == 'p') \
23 if ((PTR)[3] == 'z') \
26 (PTR) += 4; \
28 else if ((PTR)[3] == 'n' && (PTR)[4] == 'z') \
31 (PTR)
[all...]
/haiku-buildtools/legacy/gcc/gcc/config/m68k/
H A Dsgs.h165 #define ASM_OUTPUT_ASCII(FILE,PTR,LEN) \
170 ch = (PTR)[sp]; \
256 #define ASM_OUTPUT_OPCODE(FILE, PTR) \
259 if (!strncmp ((PTR), "jbsr", 4)) \
264 (PTR) += 4; } \
265 else if ((PTR)[0] == 'j' && (PTR)[1] == 'b') \
266 { ++(PTR); \
267 while (*(PTR) != ' ') \
268 { putc (*(PTR), (FIL
[all...]
/haiku-buildtools/binutils/libiberty/
H A Dmempcpy.c36 extern PTR memcpy (PTR, const PTR, size_t);
38 PTR
39 mempcpy (PTR dst, const PTR src, size_t len)
H A Dmemchr.c21 PTR
22 memchr (register const PTR src_void, int c, size_t length)
29 return (PTR)src;
H A Dmemcpy.c21 PTR
22 memcpy (PTR out, const PTR in, size_t length)
H A Dmemmove.c21 PTR
22 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);
/haiku-buildtools/gcc/libiberty/
H A Dmempcpy.c36 extern PTR memcpy (PTR, const PTR, size_t);
38 PTR
39 mempcpy (PTR dst, const PTR src, size_t len)
H A Dmemchr.c21 PTR
22 memchr (register const PTR src_void, int c, size_t length)
29 return (PTR)src;
H A Dmemcpy.c21 PTR
22 memcpy (PTR out, const PTR in, size_t length)
H A Dmemmove.c21 PTR
22 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.c34 PTR
35 xmemdup (const PTR input, size_t copy_size, size_t alloc_size)
37 PTR output = xcalloc (1, alloc_size);
38 return (PTR) memcpy (output, input, copy_size);
/haiku-buildtools/legacy/binutils/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;
/haiku-buildtools/legacy/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));
/haiku-buildtools/legacy/gcc/gcc/
H A Dcppalloc.c38 PTR
42 register PTR ptr = (PTR) malloc (size);
48 PTR
52 register PTR ptr = (PTR) calloc (number, size);
58 PTR
60 PTR old;
63 register PTR ptr;
65 ptr = (PTR) reallo
[all...]
/haiku-buildtools/gcc/gmp/mpz/
H A Dperfpow.c28 return mpn_perfect_power_p (PTR (u), SIZ (u));

Completed in 135 milliseconds

1234567891011>>