| /freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/ |
| HD | z_Windows_NT-586_asm.asm | 88 mov eax, DWORD PTR _mode$[ebp] 89 mov ecx, DWORD PTR _mode2$[ebp] 92 mov edi, DWORD PTR _p$[ebp] 93 mov DWORD PTR _eax$[ edi ], eax 94 mov DWORD PTR _ebx$[ edi ], ebx 95 mov DWORD PTR _ecx$[ edi ], ecx 96 mov DWORD PTR _edx$[ edi ], edx 122 mov eax, DWORD PTR _d$[esp] 123 mov ecx, DWORD PTR _p$[esp] 124 lock xadd DWORD PTR [ecx], eax [all …]
|
| /freebsd-13-stable/sys/netgraph/atm/sscfu/ |
| HD | ng_sscfu_cust.h | 53 #define MEMZALLOC(PTR, CAST, SIZE) \ argument 54 ((PTR) = (CAST)malloc((SIZE), M_NG_SSCFU, M_NOWAIT | M_ZERO)) 55 #define MEMFREE(PTR) \ argument 56 free(PTR, M_NG_SSCFU) 58 #define SIG_ALLOC(PTR) \ argument 59 MEMZALLOC(PTR, struct sscfu_sig *, sizeof(struct sscfu_sig)) 60 #define SIG_FREE(PTR) \ argument 61 MEMFREE(PTR) 70 #define MEMZALLOC(PTR, CAST, SIZE) \ argument 71 ((PTR) = (CAST)malloc((SIZE), M_NG_SSCFU_INS, M_NOWAIT | M_ZERO)) [all …]
|
| /freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/ |
| HD | EvaluatedExprVisitor.h | 38 #define PTR(CLASS) typename Ptr<CLASS>::type macro 44 void VisitDeclRefExpr(PTR(DeclRefExpr) E) { } in VisitDeclRefExpr() 45 void VisitOffsetOfExpr(PTR(OffsetOfExpr) E) { } in VisitOffsetOfExpr() 46 void VisitUnaryExprOrTypeTraitExpr(PTR(UnaryExprOrTypeTraitExpr) E) { } in VisitUnaryExprOrTypeTraitExpr() 47 void VisitExpressionTraitExpr(PTR(ExpressionTraitExpr) E) { } in VisitExpressionTraitExpr() 48 void VisitBlockExpr(PTR(BlockExpr) E) { } in VisitBlockExpr() 49 void VisitCXXUuidofExpr(PTR(CXXUuidofExpr) E) { } in VisitCXXUuidofExpr() 50 void VisitCXXNoexceptExpr(PTR(CXXNoexceptExpr) E) { } in VisitCXXNoexceptExpr() 52 void VisitMemberExpr(PTR(MemberExpr) E) { in VisitMemberExpr() 57 void VisitChooseExpr(PTR(ChooseExpr) E) { in VisitChooseExpr() [all …]
|
| HD | AttrVisitor.h | 27 #define PTR(CLASS) typename Ptr<CLASS>::type macro 29 return static_cast<ImplClass *>(this)->Visit##NAME(static_cast<PTR(NAME)>(A)) 31 RetTy Visit(PTR(Attr) A) { in Visit() 45 RetTy Visit##NAME##Attr(PTR(NAME##Attr) A) { DISPATCH(Attr); } 48 RetTy VisitAttr(PTR(Attr)) { return RetTy(); } in VisitAttr() 50 #undef PTR
|
| HD | DeclVisitor.h | 33 #define PTR(CLASS) typename Ptr<CLASS>::type macro 35 return static_cast<ImplClass*>(this)->Visit##NAME(static_cast<PTR(CLASS)>(D)) 37 RetTy Visit(PTR(Decl) D) { in Visit() 50 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); } 53 RetTy VisitDecl(PTR(Decl) D) { return RetTy(); } in VisitDecl() 55 #undef PTR
|
| HD | CommentVisitor.h | 22 #define PTR(CLASS) typename Ptr<CLASS>::type macro 25 static_cast<PTR(CLASS)>(C), std::forward<ParamTys>(P)...) 27 RetTy visit(PTR(Comment) C, ParamTys... P) { in visit() 47 RetTy visit##CLASS(PTR(CLASS) C, ParamTys... P) { DISPATCH(PARENT, PARENT); } 52 RetTy visitComment(PTR(Comment) C, ParamTys... P) { return RetTy(); } in visitComment() 54 #undef PTR
|
| HD | StmtVisitor.h | 39 #define PTR(CLASS) typename Ptr<CLASS>::type macro 42 static_cast<PTR(CLASS)>(S), std::forward<ParamTys>(P)...) 44 RetTy Visit(PTR(Stmt) S, ParamTys... P) { in Visit() 48 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) { in Visit() 86 } else if (PTR(UnaryOperator) UnOp = dyn_cast<UnaryOperator>(S)) { in Visit() 118 RetTy Visit ## CLASS(PTR(CLASS) S, ParamTys... P) { DISPATCH(PARENT, PARENT); } 124 RetTy VisitBin ## NAME(PTR(BinaryOperator) S, ParamTys... P) { \ 146 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S, ParamTys... P) { \ in BINOP_FALLBACK() 158 RetTy VisitUnary ## NAME(PTR(UnaryOperator) S, ParamTys... P) { \ 172 RetTy VisitStmt(PTR(Stmt) Node, ParamTys... P) { return RetTy(); } [all …]
|
| /freebsd-13-stable/sys/netgraph/atm/sscop/ |
| HD | ng_sscop_cust.h | 61 #define MEMZALLOC(PTR, CAST, SIZE) \ argument 62 ((PTR) = (CAST)malloc((SIZE), M_NG_SSCOP, M_NOWAIT | M_ZERO)) 63 #define MEMFREE(PTR) \ argument 64 free((PTR), M_NG_SSCOP) 66 #define MSG_ALLOC(PTR) \ argument 67 MEMZALLOC(PTR, struct sscop_msg *, sizeof(struct sscop_msg)) 68 #define MSG_FREE(PTR) \ argument 69 MEMFREE(PTR) 71 #define SIG_ALLOC(PTR) \ argument 72 MEMZALLOC(PTR, struct sscop_sig *, sizeof(struct sscop_sig)) [all …]
|
| /freebsd-13-stable/contrib/bsnmp/snmpd/ |
| HD | snmpmod.h | 66 #define INSERT_OBJECT_OID_LINK_INDEX_TYPE(PTR, LIST, LINK, INDEX, SUBF) do {\ argument 67 typedef __typeof ((PTR)->SUBF) _subf_type; \ 71 if (asn_compare_oid(&_lelem->INDEX, &(PTR)->SUBF.INDEX) > 0)\ 74 TAILQ_INSERT_TAIL((LIST), &(PTR)->SUBF, LINK); \ 76 TAILQ_INSERT_BEFORE(_lelem, &(PTR)->SUBF, LINK); \ 101 #define INSERT_OBJECT_OID_LINK_INDEX(PTR, LIST, LINK, INDEX) do { \ argument 102 __typeof (PTR) _lelem; \ 105 if (asn_compare_oid(&_lelem->INDEX, &(PTR)->INDEX) > 0) \ 108 TAILQ_INSERT_TAIL((LIST), (PTR), LINK); \ 110 TAILQ_INSERT_BEFORE(_lelem, (PTR), LINK); \ [all …]
|
| /freebsd-13-stable/contrib/ngatm/libngatm/ |
| HD | sscfucust.h | 50 #define MEMZALLOC(PTR,CAST,SIZE) do { \ argument 54 (PTR) = (CAST)_m; \ 57 #define MEMFREE(PTR) \ argument 58 free(PTR) 60 #define SIG_ALLOC(PTR) \ argument 61 MEMZALLOC(PTR, struct sscfu_sig *, sizeof(struct sscfu_sig)) 62 #define SIG_FREE(PTR) \ argument 63 MEMFREE(PTR)
|
| HD | sscopcust.h | 53 #define MEMZALLOC(PTR,CAST,SIZE) do { \ argument 57 (PTR) = (CAST)_m; \ 60 #define MEMFREE(PTR) free(PTR); argument 62 #define MSG_ALLOC(PTR) \ argument 63 MEMZALLOC(PTR, struct sscop_msg *, sizeof(struct sscop_msg)) 64 #define MSG_FREE(PTR) \ argument 65 MEMFREE(PTR) 67 #define SIG_ALLOC(PTR) \ argument 68 MEMZALLOC(PTR, struct sscop_sig *, sizeof(struct sscop_sig)) 69 #define SIG_FREE(PTR) \ argument [all …]
|
| /freebsd-13-stable/contrib/llvm-project/libunwind/src/ |
| HD | UnwindRegistersSave.S | 78 #define PTR %rcx macro 81 #define PTR %rdi macro 86 movq %rax, (PTR) 87 movq %rbx, 8(PTR) 88 movq %rcx, 16(PTR) 89 movq %rdx, 24(PTR) 90 movq %rdi, 32(PTR) 91 movq %rsi, 40(PTR) 92 movq %rbp, 48(PTR) 93 movq %rsp, 56(PTR) [all …]
|
| /freebsd-13-stable/sys/compat/cloudabi32/ |
| HD | cloudabi32_module.c | 118 #define PTR(type, ptr) { .a_type = (type), .a_ptr = (uintptr_t)(ptr) } in cloudabi32_fixup() macro 119 PTR(CLOUDABI_AT_ARGDATA, argdata), in cloudabi32_fixup() 122 PTR(CLOUDABI_AT_CANARY, canary), in cloudabi32_fixup() 126 PTR(CLOUDABI_AT_PHDR, args->phdr), in cloudabi32_fixup() 128 PTR(CLOUDABI_AT_PID, pid), in cloudabi32_fixup() 129 PTR(CLOUDABI_AT_SYSINFO_EHDR, in cloudabi32_fixup() 133 #undef PTR in cloudabi32_fixup()
|
| /freebsd-13-stable/sys/compat/cloudabi64/ |
| HD | cloudabi64_module.c | 118 #define PTR(type, ptr) { .a_type = (type), .a_ptr = (uintptr_t)(ptr) } in cloudabi64_fixup() macro 119 PTR(CLOUDABI_AT_ARGDATA, argdata), in cloudabi64_fixup() 122 PTR(CLOUDABI_AT_CANARY, canary), in cloudabi64_fixup() 126 PTR(CLOUDABI_AT_PHDR, args->phdr), in cloudabi64_fixup() 128 PTR(CLOUDABI_AT_PID, pid), in cloudabi64_fixup() 129 PTR(CLOUDABI_AT_SYSINFO_EHDR, in cloudabi64_fixup() 133 #undef PTR in cloudabi64_fixup()
|
| /freebsd-13-stable/sys/contrib/vchiq/interface/compat/ |
| HD | list.h | 201 #define list_entry(PTR, TYPE, FIELD) container_of(PTR, TYPE, FIELD) argument 202 #define list_first_entry(PTR, TYPE, FIELD) \ argument 203 list_entry(list_first((PTR)), TYPE, FIELD) 204 #define list_last_entry(PTR, TYPE, FIELD) \ argument 205 list_entry(list_last((PTR)), TYPE, FIELD)
|
| /freebsd-13-stable/crypto/openssl/crypto/perlasm/ |
| HD | x86_64-xlate.pl | 81 my $PTR=" PTR"; 92 elsif ($flavour eq "nasm") { $gas=0; $elf=0; $nasm=$nasmref; $win64=1; $decor="\$L\$"; $PTR=""; } 95 { $nasm = $1 + $2*0.01; $PTR=""; } 168 $self->{op} = "mov rdi,QWORD$PTR\[8+rsp\]\t;WIN64 epilogue\n\t". 169 "mov rsi,QWORD$PTR\[16+rsp\]\n\t"; 223 my %szmap = ( b=>"BYTE$PTR", w=>"WORD$PTR", 224 l=>"DWORD$PTR", d=>"DWORD$PTR", 225 q=>"QWORD$PTR", o=>"OWORD$PTR", 226 x=>"XMMWORD$PTR", y=>"YMMWORD$PTR", 420 $func .= " mov QWORD$PTR\[8+rsp\],rdi\t;WIN64 prologue\n"; [all …]
|
| HD | x86masm.pl | 26 if ($opcode =~ /lea/ && @arg[1] =~ s/.*PTR\s+(\(.*\))$/OFFSET $1/) # no []
|
| /freebsd-13-stable/contrib/llvm-project/llvm/tools/bugpoint/ |
| HD | BugDriver.h | 76 void setPassesToRun(const std::vector<std::string> &PTR) { in setPassesToRun() argument 77 PassesToRun = PTR; in setPassesToRun()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/BTF/ |
| HD | BTF.def | 19 HANDLE_BTF_KIND(2, PTR)
|
| /freebsd-13-stable/sys/dev/smc/ |
| HD | if_smcreg.h | 179 #define PTR 0x6 macro
|
| HD | if_smc.c | 630 smc_write_2(sc, PTR, 0 | PTR_AUTO_INCR); in smc_task_tx() 724 smc_write_2(sc, PTR, 0 | PTR_READ | PTR_RCV | PTR_AUTO_INCR); in smc_task_rx() 760 smc_write_2(sc, PTR, 4 | PTR_READ | PTR_RCV | PTR_AUTO_INCR); in smc_task_rx() 881 smc_write_2(sc, PTR, 0 | PTR_READ | in smc_task_intr()
|
| /freebsd-13-stable/contrib/unbound/doc/ |
| HD | control_proto_spec.txt | 47 removes the A, AAAA, NS, SOA, CNAME, DNAME, MX, PTR, SRV, NAPTR types.
|
| HD | TODO | 23 o library add convenience functions for A, AAAA, PTR, getaddrinfo, libresolve.
|
| /freebsd-13-stable/contrib/tcp_wrappers/ |
| HD | README.NIS | 32 And of course there are PTR records in zones 210.155.131.in-addr.arpa
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/ |
| HD | Mips.td | 26 // Predicates for the PTR size such as IsPTR64bit
|