HomeSort by relevance Sort by last modified time
    Searched refs:PTR (Results 1 - 25 of 468) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/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);
xmemdup.c 34 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);
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;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/config/i386/
gas.h 83 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) += 5;
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
disp.s 15 mov DWORD PTR [eax+0xEE000F0], ebx
17 mov DWORD PTR gs:[eax+0xEE000F0], ebx
20 mov DWORD PTR [0xEE000F0], ebx
21 mov DWORD PTR gs:0xEE000F0, ebx
22 mov DWORD PTR [0xFEE000F0], ebx
23 mov DWORD PTR gs:0xFEE000F0, ebx
25 mov DWORD PTR [0xEE000F0], eax
26 mov DWORD PTR gs:0xEE000F0, eax
27 mov DWORD PTR [0xFEE000F0], eax
28 mov DWORD PTR gs:0xFEE000F0, ea
    [all...]
prefetch-intel.d 10 \s*[a-f0-9]+: 0f 0d 00 prefetch BYTE PTR \[eax\]
11 \s*[a-f0-9]+: 0f 0d 08 prefetchw BYTE PTR \[eax\]
12 \s*[a-f0-9]+: 0f 0d 10 prefetchwt1 BYTE PTR \[eax\]
13 \s*[a-f0-9]+: 0f 0d 18 prefetch BYTE PTR \[eax\]
14 \s*[a-f0-9]+: 0f 0d 20 prefetch BYTE PTR \[eax\]
15 \s*[a-f0-9]+: 0f 0d 28 prefetch BYTE PTR \[eax\]
16 \s*[a-f0-9]+: 0f 0d 30 prefetch BYTE PTR \[eax\]
17 \s*[a-f0-9]+: 0f 0d 38 prefetch BYTE PTR \[eax\]
20 \s*[a-f0-9]+: 0f 18 00 prefetchnta BYTE PTR \[eax\]
21 \s*[a-f0-9]+: 0f 18 08 prefetcht0 BYTE PTR \[eax\
    [all...]
x86-64-prefetch-intel.d 10 \s*[a-f0-9]+: 0f 0d 00 prefetch BYTE PTR \[rax\]
11 \s*[a-f0-9]+: 0f 0d 08 prefetchw BYTE PTR \[rax\]
12 \s*[a-f0-9]+: 0f 0d 10 prefetchwt1 BYTE PTR \[rax\]
13 \s*[a-f0-9]+: 0f 0d 18 prefetch BYTE PTR \[rax\]
14 \s*[a-f0-9]+: 0f 0d 20 prefetch BYTE PTR \[rax\]
15 \s*[a-f0-9]+: 0f 0d 28 prefetch BYTE PTR \[rax\]
16 \s*[a-f0-9]+: 0f 0d 30 prefetch BYTE PTR \[rax\]
17 \s*[a-f0-9]+: 0f 0d 38 prefetch BYTE PTR \[rax\]
20 \s*[a-f0-9]+: 0f 18 00 prefetchnta BYTE PTR \[rax\]
21 \s*[a-f0-9]+: 0f 18 08 prefetcht0 BYTE PTR \[rax\
    [all...]
simd.s 104 addsubps xmm1,XMMWORD PTR ds:0x12345678
105 comisd xmm1,QWORD PTR ds:0x12345678
106 comiss xmm1,DWORD PTR ds:0x12345678
107 cvtdq2pd xmm1,QWORD PTR ds:0x12345678
108 cvtpd2dq xmm1,XMMWORD PTR ds:0x12345678
109 cvtps2pd xmm1,QWORD PTR ds:0x12345678
110 cvttps2dq xmm1,XMMWORD PTR ds:0x12345678
111 haddps xmm1,XMMWORD PTR ds:0x12345678
112 movdqu XMMWORD PTR ds:0x12345678,xmm1
113 movdqu xmm1,XMMWORD PTR ds:0x1234567
    [all...]
x86-64-ept-intel.d 10 [ ]*[a-f0-9]+: 66 0f 38 80 19 invept rbx,OWORD PTR \[rcx\]
11 [ ]*[a-f0-9]+: 66 44 0f 38 80 19 invept r11,OWORD PTR \[rcx\]
12 [ ]*[a-f0-9]+: 66 0f 38 81 19 invvpid rbx,OWORD PTR \[rcx\]
13 [ ]*[a-f0-9]+: 66 44 0f 38 81 19 invvpid r11,OWORD PTR \[rcx\]
14 [ ]*[a-f0-9]+: 66 0f 38 80 19 invept rbx,OWORD PTR \[rcx\]
15 [ ]*[a-f0-9]+: 66 44 0f 38 80 19 invept r11,OWORD PTR \[rcx\]
16 [ ]*[a-f0-9]+: 66 0f 38 81 19 invvpid rbx,OWORD PTR \[rcx\]
17 [ ]*[a-f0-9]+: 66 44 0f 38 81 19 invvpid r11,OWORD PTR \[rcx\]
  /external/clang/include/clang/AST/
EvaluatedExprVisitor.h 29 template<template <typename> class Ptr, typename ImplClass>
30 class EvaluatedExprVisitorBase : public StmtVisitorBase<Ptr, ImplClass, void> {
35 #define PTR(CLASS) typename Ptr<CLASS>::type
41 void VisitDeclRefExpr(PTR(DeclRefExpr) E) { }
42 void VisitOffsetOfExpr(PTR(OffsetOfExpr) E) { }
43 void VisitUnaryExprOrTypeTraitExpr(PTR(UnaryExprOrTypeTraitExpr) E) { }
44 void VisitExpressionTraitExpr(PTR(ExpressionTraitExpr) E) { }
45 void VisitBlockExpr(PTR(BlockExpr) E) { }
46 void VisitCXXUuidofExpr(PTR(CXXUuidofExpr) E) {
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9/include/
stdatomic.h 80 #define atomic_init(PTR, VAL) \
83 *(PTR) = (VAL); \
135 #define atomic_store_explicit(PTR, VAL, MO) \
138 __auto_type __atomic_store_ptr = (PTR); \
143 #define atomic_store(PTR, VAL) \
144 atomic_store_explicit (PTR, VAL, __ATOMIC_SEQ_CST)
147 #define atomic_load_explicit(PTR, MO) \
150 __auto_type __atomic_load_ptr = (PTR); \
156 #define atomic_load(PTR) atomic_load_explicit (PTR, __ATOMIC_SEQ_CST
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9/include/
stdatomic.h 80 #define atomic_init(PTR, VAL) \
83 *(PTR) = (VAL); \
135 #define atomic_store_explicit(PTR, VAL, MO) \
138 __auto_type __atomic_store_ptr = (PTR); \
143 #define atomic_store(PTR, VAL) \
144 atomic_store_explicit (PTR, VAL, __ATOMIC_SEQ_CST)
147 #define atomic_load_explicit(PTR, MO) \
150 __auto_type __atomic_load_ptr = (PTR); \
156 #define atomic_load(PTR) atomic_load_explicit (PTR, __ATOMIC_SEQ_CST
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9/include/
stdatomic.h 80 #define atomic_init(PTR, VAL) \
83 *(PTR) = (VAL); \
135 #define atomic_store_explicit(PTR, VAL, MO) \
138 __auto_type __atomic_store_ptr = (PTR); \
143 #define atomic_store(PTR, VAL) \
144 atomic_store_explicit (PTR, VAL, __ATOMIC_SEQ_CST)
147 #define atomic_load_explicit(PTR, MO) \
150 __auto_type __atomic_load_ptr = (PTR); \
156 #define atomic_load(PTR) atomic_load_explicit (PTR, __ATOMIC_SEQ_CST
    [all...]
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/include/
stdatomic.h 80 #define atomic_init(PTR, VAL) \
83 *(PTR) = (VAL); \
135 #define atomic_store_explicit(PTR, VAL, MO) \
138 __auto_type __atomic_store_ptr = (PTR); \
143 #define atomic_store(PTR, VAL) \
144 atomic_store_explicit (PTR, VAL, __ATOMIC_SEQ_CST)
147 #define atomic_load_explicit(PTR, MO) \
150 __auto_type __atomic_load_ptr = (PTR); \
156 #define atomic_load(PTR) atomic_load_explicit (PTR, __ATOMIC_SEQ_CST
    [all...]
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9/include/
stdatomic.h 80 #define atomic_init(PTR, VAL) \
83 *(PTR) = (VAL); \
135 #define atomic_store_explicit(PTR, VAL, MO) \
138 __auto_type __atomic_store_ptr = (PTR); \
143 #define atomic_store(PTR, VAL) \
144 atomic_store_explicit (PTR, VAL, __ATOMIC_SEQ_CST)
147 #define atomic_load_explicit(PTR, MO) \
150 __auto_type __atomic_load_ptr = (PTR); \
156 #define atomic_load(PTR) atomic_load_explicit (PTR, __ATOMIC_SEQ_CST
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9/include/
stdatomic.h 80 #define atomic_init(PTR, VAL) \
83 *(PTR) = (VAL); \
135 #define atomic_store_explicit(PTR, VAL, MO) \
138 __auto_type __atomic_store_ptr = (PTR); \
143 #define atomic_store(PTR, VAL) \
144 atomic_store_explicit (PTR, VAL, __ATOMIC_SEQ_CST)
147 #define atomic_load_explicit(PTR, MO) \
150 __auto_type __atomic_load_ptr = (PTR); \
156 #define atomic_load(PTR) atomic_load_explicit (PTR, __ATOMIC_SEQ_CST
    [all...]
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9/include/
stdatomic.h 80 #define atomic_init(PTR, VAL) \
83 *(PTR) = (VAL); \
135 #define atomic_store_explicit(PTR, VAL, MO) \
138 __auto_type __atomic_store_ptr = (PTR); \
143 #define atomic_store(PTR, VAL) \
144 atomic_store_explicit (PTR, VAL, __ATOMIC_SEQ_CST)
147 #define atomic_load_explicit(PTR, MO) \
150 __auto_type __atomic_load_ptr = (PTR); \
156 #define atomic_load(PTR) atomic_load_explicit (PTR, __ATOMIC_SEQ_CST
    [all...]
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/include/
stdatomic.h 80 #define atomic_init(PTR, VAL) \
83 *(PTR) = (VAL); \
135 #define atomic_store_explicit(PTR, VAL, MO) \
138 __auto_type __atomic_store_ptr = (PTR); \
143 #define atomic_store(PTR, VAL) \
144 atomic_store_explicit (PTR, VAL, __ATOMIC_SEQ_CST)
147 #define atomic_load_explicit(PTR, MO) \
150 __auto_type __atomic_load_ptr = (PTR); \
156 #define atomic_load(PTR) atomic_load_explicit (PTR, __ATOMIC_SEQ_CST
    [all...]
  /external/llvm/test/MC/X86/
intel-syntax-x86-64-avx512f_vl.s 15 // CHECK: vcmppd k3 , xmm27, xmmword ptr [rcx], 123
17 vcmppd k3,xmm27,XMMWORD PTR [rcx],0x7b
19 // CHECK: vcmppd k3 , xmm27, xmmword ptr [rax + 8*r14 + 291], 123
21 vcmppd k3,xmm27,XMMWORD PTR [rax+r14*8+0x123],0x7b
23 // CHECK: vcmppd k3 , xmm27, qword ptr [rcx]{1to2}, 123
25 vcmppd k3,xmm27,QWORD PTR [rcx]{1to2},0x7b
27 // CHECK: vcmppd k3 , xmm27, xmmword ptr [rdx + 2032], 123
29 vcmppd k3,xmm27,XMMWORD PTR [rdx+0x7f0],0x7b
31 // CHECK: vcmppd k3 , xmm27, xmmword ptr [rdx + 2048], 123
33 vcmppd k3,xmm27,XMMWORD PTR [rdx+0x800],0x7
    [all...]

Completed in 964 milliseconds

1 2 3 4 5 6 7 8 91011>>