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

1 2 3 4 5 6 7

  /external/srec/srec/include/
sizes.h 29 #define FOUR_BYTE_PTR(PTR,NAME,DUMMY) union { PTR NAME; asr_int32_t DUMMY; }
36 FOUR_BYTE_PTR(char*, ptr, dummy) tmp;
  /external/llvm/test/MC/X86/
intel-syntax-2.s 6 mov DWORD PTR [RSP - 4], 257
intel-syntax-encoding.s 25 mov QWORD PTR [RSP - 16], RAX
59 movsd XMM5, QWORD PTR [-8]
intel-syntax.s 9 mov DWORD PTR [RSP - 4], 257
11 mov DWORD PTR [RSP + 4], 258
13 mov QWORD PTR [RSP - 16], 123
15 mov BYTE PTR [RSP - 17], 97
17 mov EAX, DWORD PTR [RSP - 4]
19 mov RAX, QWORD PTR [RSP]
21 mov DWORD PTR [RSP - 4], -4
23 mov RCX, QWORD PTR [0]
25 mov EAX, DWORD PTR [RSP + 4*RAX - 24]
27 mov BYTE PTR [RDX + RCX], DI
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
sad_sse2.asm 32 movsxd rax, dword ptr arg(1) ;src_stride
33 movsxd rdx, dword ptr arg(3) ;ref_stride
42 movq xmm0, QWORD PTR [rsi]
43 movq xmm2, QWORD PTR [rsi+8]
45 movq xmm1, QWORD PTR [rdi]
46 movq xmm3, QWORD PTR [rdi+8]
48 movq xmm4, QWORD PTR [rsi+rax]
49 movq xmm5, QWORD PTR [rdi+rdx]
56 movq xmm2, QWORD PTR [rsi+rax+8]
58 movq xmm3, QWORD PTR [rdi+rdx+8
    [all...]
sad_sse3.asm 23 %define height dword ptr arg(4)
33 movsxd rax, dword ptr arg(1) ; src_stride
34 movsxd rdx, dword ptr arg(3) ; ref_stride
46 %define height dword ptr [rsp+xmm_stack_space+8+4*8]
109 movsxd rbx, dword ptr arg(1) ; src_stride
110 movsxd rbp, dword ptr arg(3) ; ref_stride
169 movdqa xmm0, XMMWORD PTR [%2]
170 lddqu xmm5, XMMWORD PTR [%3]
171 lddqu xmm6, XMMWORD PTR [%3+1]
172 lddqu xmm7, XMMWORD PTR [%3+2
    [all...]
subpixel_ssse3.asm 48 movsxd rdx, DWORD PTR arg(5) ;table index
58 cmp esi, DWORD PTR [rax]
61 movdqa xmm4, XMMWORD PTR [rax] ;k0_k5
62 movdqa xmm5, XMMWORD PTR [rax+256] ;k2_k4
63 movdqa xmm6, XMMWORD PTR [rax+128] ;k1_k3
66 movsxd rax, dword ptr arg(1) ;src_pixels_per_line
67 movsxd rcx, dword ptr arg(4) ;output_height
69 movsxd rdx, dword ptr arg(3) ;output_pitch
74 movq xmm0, MMWORD PTR [rsi - 2] ; -2 -1 0 1 2 3 4 5
76 movq xmm2, MMWORD PTR [rsi + 3] ; 3 4 5 6 7 8 9 1
    [all...]
sad_sse4.asm 16 movdqa xmm0, XMMWORD PTR [rsi]
17 movq xmm1, MMWORD PTR [rdi]
18 movq xmm3, MMWORD PTR [rdi+8]
19 movq xmm2, MMWORD PTR [rdi+16]
37 movdqa xmm0, XMMWORD PTR [rsi]
38 movq xmm5, MMWORD PTR [rdi]
39 movq xmm3, MMWORD PTR [rdi+8]
40 movq xmm2, MMWORD PTR [rdi+16]
60 movdqa xmm0, XMMWORD PTR [rsi + rax]
61 movq xmm5, MMWORD PTR [rdi+ rdx
    [all...]
sad_ssse3.asm 16 movdqa xmm0, XMMWORD PTR [rsi]
17 lddqu xmm5, XMMWORD PTR [rdi]
18 lddqu xmm6, XMMWORD PTR [rdi+1]
19 lddqu xmm7, XMMWORD PTR [rdi+2]
25 movdqa xmm0, XMMWORD PTR [rsi]
26 lddqu xmm1, XMMWORD PTR [rdi]
27 lddqu xmm2, XMMWORD PTR [rdi+1]
28 lddqu xmm3, XMMWORD PTR [rdi+2]
38 movdqa xmm0, XMMWORD PTR [rsi+rax]
39 lddqu xmm1, XMMWORD PTR [rdi+rdx
    [all...]
  /external/clang/include/clang/AST/
CommentVisitor.h 22 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void>
25 #define PTR(CLASS) typename Ptr<CLASS>::type
27 return static_cast<ImplClass*>(this)->visit ## NAME(static_cast<PTR(CLASS)>(C))
29 RetTy visit(PTR(Comment) C) {
48 RetTy visit ## CLASS(PTR(CLASS) C) { DISPATCH(PARENT, PARENT); }
53 RetTy visitComment(PTR(Comment) C) { return RetTy(); }
55 #undef PTR
DeclVisitor.h 30 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void>
34 #define PTR(CLASS) typename Ptr<CLASS>::type
36 return static_cast<ImplClass*>(this)->Visit##NAME(static_cast<PTR(CLASS)>(D))
38 RetTy Visit(PTR(Decl) D) {
51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); }
54 RetTy VisitDecl(PTR(Decl) D) { return RetTy(); }
56 #undef PTR
StmtVisitor.h 31 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void>
35 #define PTR(CLASS) typename Ptr<CLASS>::type
37 return static_cast<ImplClass*>(this)->Visit ## NAME(static_cast<PTR(CLASS)>(S))
39 RetTy Visit(PTR(Stmt) S) {
44 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) {
81 } else if (PTR(UnaryOperator) UnOp = dyn_cast<UnaryOperator>(S)) {
112 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); }
118 RetTy VisitBin ## NAME(PTR(BinaryOperator) S) { \
138 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S) {
    [all...]
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_sad_sse3.asm 23 %define height dword ptr arg(4)
33 movsxd rax, dword ptr arg(1) ; src_stride
34 movsxd rdx, dword ptr arg(3) ; ref_stride
46 %define height dword ptr [rsp+xmm_stack_space+8+4*8]
88 movdqa xmm0, XMMWORD PTR [%2]
89 lddqu xmm5, XMMWORD PTR [%3]
90 lddqu xmm6, XMMWORD PTR [%3+1]
91 lddqu xmm7, XMMWORD PTR [%3+2]
97 movdqa xmm0, XMMWORD PTR [%2]
98 lddqu xmm1, XMMWORD PTR [%3
    [all...]
vp9_sad_sse4.asm 16 movdqa xmm0, XMMWORD PTR [rsi]
17 movq xmm1, MMWORD PTR [rdi]
18 movq xmm3, MMWORD PTR [rdi+8]
19 movq xmm2, MMWORD PTR [rdi+16]
37 movdqa xmm0, XMMWORD PTR [rsi]
38 movq xmm5, MMWORD PTR [rdi]
39 movq xmm3, MMWORD PTR [rdi+8]
40 movq xmm2, MMWORD PTR [rdi+16]
60 movdqa xmm0, XMMWORD PTR [rsi + rax]
61 movq xmm5, MMWORD PTR [rdi+ rdx
    [all...]
vp9_sad_ssse3.asm 16 movdqa xmm0, XMMWORD PTR [rsi]
17 lddqu xmm5, XMMWORD PTR [rdi]
18 lddqu xmm6, XMMWORD PTR [rdi+1]
19 lddqu xmm7, XMMWORD PTR [rdi+2]
25 movdqa xmm0, XMMWORD PTR [rsi]
26 lddqu xmm1, XMMWORD PTR [rdi]
27 lddqu xmm2, XMMWORD PTR [rdi+1]
28 lddqu xmm3, XMMWORD PTR [rdi+2]
38 movdqa xmm0, XMMWORD PTR [rsi+rax]
39 lddqu xmm1, XMMWORD PTR [rdi+rdx
    [all...]
  /external/clang/test/CodeGen/
debug-info.c 11 typedef struct OPAQUE *PTR;
12 PTR p;
  /external/libvpx/libvpx/vpx_mem/memory_manager/include/
hmm_intrnl.h 32 #define AAUS_FORWARD(PTR, AAU_OFFSET) \
33 (((char *) (PTR)) + ((AAU_OFFSET) * ((U(size_aau)) HMM_ADDR_ALIGN_UNIT)))
36 #define AAUS_BACKWARD(PTR, AAU_OFFSET) \
37 (((char *) (PTR)) - ((AAU_OFFSET) * ((U(size_aau)) HMM_ADDR_ALIGN_UNIT)))
40 #define BAUS_FORWARD(PTR, BAU_OFFSET) \
41 AAUS_FORWARD((PTR), (BAU_OFFSET) * ((U(size_aau)) HMM_BLOCK_ALIGN_UNIT))
44 #define BAUS_BACKWARD(PTR, BAU_OFFSET) \
45 AAUS_BACKWARD((PTR), (BAU_OFFSET) * ((U(size_aau)) HMM_BLOCK_ALIGN_UNIT))
  /hardware/ti/omap4xxx/domx/domx/omx_rpc/inc/
omx_rpc_utils.h 96 #define RPC_UTIL_GETSTRUCTSIZE(PTR) *((OMX_U32*)PTR)
111 #define RPC_SETFIELDCOPYGEN(MSGBODY, POS, PTR, SIZE) do { \
112 TIMM_OSAL_Memcpy((OMX_U8*)((OMX_U32)MSGBODY+POS), PTR, SIZE); \
134 #define RPC_GETFIELDCOPYGEN(MSGBODY, POS, PTR, SIZE) do { \
135 TIMM_OSAL_Memcpy(PTR, (OMX_U8*)((OMX_U32)MSGBODY+POS), SIZE); \
144 #define RPC_GETFIELDPATCHED(MSGBODY, OFFSET, PTR, TYPE) \
145 PTR = (TYPE *) (MSGBODY+OFFSET);
  /external/libvpx/libvpx/vp8/encoder/x86/
dct_mmx.asm 28 movsxd rax, dword ptr arg(2) ;pitch
94 pmaddwd mm1, MMWORD PTR[GLOBAL (_5352_2217)] ; c1*2217 + d1*5352
95 pmaddwd mm4, MMWORD PTR[GLOBAL (_5352_2217)] ; c1*2217 + d1*5352
97 pmaddwd mm3, MMWORD PTR[GLOBAL(_2217_neg5352)] ; d1*2217 - c1*5352
98 pmaddwd mm5, MMWORD PTR[GLOBAL(_2217_neg5352)] ; d1*2217 - c1*5352
100 paddd mm1, MMWORD PTR[GLOBAL(_14500)]
101 paddd mm4, MMWORD PTR[GLOBAL(_14500)]
102 paddd mm3, MMWORD PTR[GLOBAL(_7500)]
103 paddd mm5, MMWORD PTR[GLOBAL(_7500)]
152 pandn mm6, MMWORD PTR[GLOBAL(_cmp_mask)] ; clear upper
    [all...]
dct_sse2.asm 29 movsxd rax, dword ptr arg(2)
69 movq xmm0, MMWORD PTR[input ] ;03 02 01 00
70 movq xmm2, MMWORD PTR[input+ pitch] ;13 12 11 10
72 movq xmm1, MMWORD PTR[input ] ;23 22 21 20
73 movq xmm3, MMWORD PTR[input+ pitch] ;33 32 31 30
94 pmaddwd xmm0, XMMWORD PTR[GLOBAL(_mult_add)] ;a1 + b1
95 pmaddwd xmm1, XMMWORD PTR[GLOBAL(_mult_sub)] ;a1 - b1
97 pmaddwd xmm3, XMMWORD PTR[GLOBAL(_5352_2217)] ;c1*2217 + d1*5352
98 pmaddwd xmm4, XMMWORD PTR[GLOBAL(_2217_neg5352)];d1*2217 - c1*5352
100 paddd xmm3, XMMWORD PTR[GLOBAL(_14500)
    [all...]
  /external/smack/src/org/xbill/DNS/
PTRRecord.java 24 * Creates a new PTR Record with the given data
29 super(name, Type.PTR, dclass, ttl, target, "target");
32 /** Gets the target of the PTR Record */
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ipa-utils.h 36 PTR aux;
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-utils.h 36 PTR aux;
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ipa-utils.h 36 PTR aux;
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-utils.h 36 PTR aux;

Completed in 1286 milliseconds

1 2 3 4 5 6 7