| /src/external/gpl3/gcc/dist/gcc/config/i386/ |
| gas.h | 61 opcode to the stdio stream STREAM. The macro-operand PTR is a 69 #define ASM_OUTPUT_OPCODE(STREAM, PTR) \ 71 if ((PTR)[0] == 'r' \ 72 && (PTR)[1] == 'e' \ 73 && (PTR)[2] == 'p') \ 75 if ((PTR)[3] == 'z') \ 78 (PTR) += 4; \ 80 else if ((PTR)[3] == 'n' && (PTR)[4] == 'z') \ 83 (PTR) += 5; [all...] |
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| mempcpy.c | 36 extern PTR memcpy (PTR, const PTR, size_t); 38 PTR 39 mempcpy (PTR dst, const PTR src, size_t len)
|
| memchr.c | 21 PTR 22 memchr (register const PTR src_void, int c, size_t length) 29 return (PTR)src;
|
| memcpy.c | 21 PTR 22 memcpy (PTR out, const PTR in, size_t length)
|
| memmove.c | 21 PTR 22 memmove (PTR s1, const PTR s2, size_t n)
|
| calloc.c | 19 PTR malloc (size_t); 20 void bzero (PTR, size_t); 22 PTR 25 register PTR ptr; local 30 ptr = malloc (nelem * elsize); 31 if (ptr) bzero (ptr, nelem * elsize); 33 return ptr;
|
| strdup.c | 16 extern PTR malloc (size_t); 17 extern PTR memcpy (PTR, const PTR, size_t);
|
| memcmp.c | 23 memcmp (const PTR str1, const PTR str2, size_t count)
|
| memset.c | 19 PTR 20 memset (PTR dest, register int val, register size_t len) 22 register unsigned char *ptr = (unsigned char*)dest; local 24 *ptr++ = val;
|
| strndup.c | 37 extern PTR malloc (size_t); 38 extern PTR memcpy (PTR, const PTR, size_t);
|
| xmemdup.c | 34 PTR 35 xmemdup (const PTR input, size_t copy_size, size_t alloc_size) 37 PTR output = xmalloc (alloc_size); 40 return (PTR) memcpy (output, input, copy_size);
|
| stpcpy.c | 36 extern PTR memcpy (PTR, const PTR, size_t);
|
| /src/external/gpl3/gcc.old/dist/gcc/config/i386/ |
| gas.h | 65 opcode to the stdio stream STREAM. The macro-operand PTR is a 73 #define ASM_OUTPUT_OPCODE(STREAM, PTR) \ 75 if ((PTR)[0] == 'r' \ 76 && (PTR)[1] == 'e' \ 77 && (PTR)[2] == 'p') \ 79 if ((PTR)[3] == 'z') \ 82 (PTR) += 4; \ 84 else if ((PTR)[3] == 'n' && (PTR)[4] == 'z') \ 87 (PTR) += 5; [all...] |
| /src/sys/sys/ |
| container_of.h | 52 * The 0*sizeof((PTR) - ...) causes the compiler to warn if the type of 57 #define __validate_container_of(PTR, TYPE, FIELD) 0 58 #define __validate_const_container_of(PTR, TYPE, FIELD) 0 60 #define __validate_container_of(PTR, TYPE, FIELD) \ 61 (0 * sizeof((PTR) - &((TYPE *)(((char *)(PTR)) - \ 63 #define __validate_const_container_of(PTR, TYPE, FIELD) \ 64 (0 * sizeof((PTR) - &((const TYPE *)(((const char *)(PTR)) - \ 68 #define container_of(PTR, TYPE, FIELD) [all...] |
| /src/external/lgpl3/gmp/dist/mpf/ |
| clear.c | 37 __GMP_FREE_FUNC_LIMBS (PTR(x), PREC(x) + 1);
|
| /src/external/lgpl3/gmp/dist/mpz/ |
| limbs_read.c | 36 return PTR(x);
|
| perfpow.c | 37 return mpn_perfect_power_p (PTR (u), SIZ (u));
|
| clear.c | 39 __GMP_FREE_FUNC_LIMBS (PTR (x), ALLOC(x));
|
| iset_ui.c | 43 PTR (dest) = __GMP_ALLOCATE_FUNC_LIMBS (2); 44 PTR (dest)[1] = val >> GMP_NUMB_BITS; 51 PTR (dest) = __GMP_ALLOCATE_FUNC_LIMBS (1); 55 PTR (dest)[0] = val & GMP_NUMB_MASK;
|
| mod.c | 50 PTR(temp_divisor) = TMP_ALLOC_LIMBS (bn); 51 MPN_COPY (PTR(temp_divisor), PTR(divisor), bn); 55 PTR(temp_divisor) = PTR(divisor);
|
| iset_si.c | 41 PTR (dest) = __GMP_ALLOCATE_FUNC_LIMBS (1); 45 PTR (dest)[0] = vl & GMP_NUMB_MASK; 52 PTR (dest)[1] = vl >> GMP_NUMB_BITS;
|
| /src/external/gpl3/gcc/dist/gcc/ginclude/ |
| stdatomic.h | 86 /* Initialize an atomic object pointed to by PTR with VAL. */ 87 #define atomic_init(PTR, VAL) \ 88 atomic_store_explicit (PTR, VAL, __ATOMIC_RELAXED) 129 #define atomic_store_explicit(PTR, VAL, MO) \ 132 __auto_type __atomic_store_ptr = (PTR); \ 137 #define atomic_store(PTR, VAL) \ 138 atomic_store_explicit (PTR, VAL, __ATOMIC_SEQ_CST) 141 #define atomic_load_explicit(PTR, MO) \ 144 __auto_type __atomic_load_ptr = (PTR); \ 150 #define atomic_load(PTR) atomic_load_explicit (PTR, __ATOMIC_SEQ_CST [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ginclude/ |
| stdatomic.h | 81 /* Initialize an atomic object pointed to by PTR with VAL. */ 82 #define atomic_init(PTR, VAL) \ 83 atomic_store_explicit (PTR, VAL, __ATOMIC_RELAXED) 121 #define atomic_store_explicit(PTR, VAL, MO) \ 124 __auto_type __atomic_store_ptr = (PTR); \ 129 #define atomic_store(PTR, VAL) \ 130 atomic_store_explicit (PTR, VAL, __ATOMIC_SEQ_CST) 133 #define atomic_load_explicit(PTR, MO) \ 136 __auto_type __atomic_load_ptr = (PTR); \ 142 #define atomic_load(PTR) atomic_load_explicit (PTR, __ATOMIC_SEQ_CST [all...] |
| /src/external/lgpl3/gmp/dist/mpq/ |
| init.c | 39 PTR(NUM(x)) = (mp_ptr) &dummy_limb; 42 PTR(DEN(x)) = __GMP_ALLOCATE_FUNC_LIMBS (1); 43 PTR(DEN(x))[0] = 1;
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| EvaluatedExprVisitor.h | 29 template<template <typename> class Ptr, typename ImplClass> 30 class EvaluatedExprVisitorBase : public StmtVisitorBase<Ptr, ImplClass, void> { 38 #define PTR(CLASS) typename Ptr<CLASS>::type 44 void VisitDeclRefExpr(PTR(DeclRefExpr) E) { } 45 void VisitOffsetOfExpr(PTR(OffsetOfExpr) E) { } 46 void VisitUnaryExprOrTypeTraitExpr(PTR(UnaryExprOrTypeTraitExpr) E) { } 47 void VisitExpressionTraitExpr(PTR(ExpressionTraitExpr) E) { } 48 void VisitBlockExpr(PTR(BlockExpr) E) { } 49 void VisitCXXUuidofExpr(PTR(CXXUuidofExpr) E) { [all...] |