Searched refs:UD (Results 1 - 22 of 22) sorted by relevance

/freebsd-10-stable/contrib/ofed/libibverbs/include/infiniband/
H A Dopcode.h142 /* UD */
143 IBV_OPCODE(UD, SEND_ONLY),
144 IBV_OPCODE(UD, SEND_ONLY_WITH_IMMEDIATE)
/freebsd-10-stable/sys/ofed/include/rdma/
H A Dib_pack.h165 /* UD */
166 IB_OPCODE(UD, SEND_ONLY),
167 IB_OPCODE(UD, SEND_ONLY_WITH_IMMEDIATE)
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.h271 void EmitUsingDirective(const UsingDirectiveDecl &UD);
274 void EmitUsingDecl(const UsingDecl &UD);
H A DCGDebugInfo.cpp3199 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) { argument
3203 getCurrentContextDescriptor(cast<Decl>(UD.getDeclContext())),
3204 getOrCreateNameSpace(UD.getNominatedNamespace()),
3205 getLineNumber(UD.getLocation()));
3208 void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) { argument
3211 assert(UD.shadow_size() &&
3215 const UsingShadowDecl &USD = **UD.shadow_begin();
/freebsd-10-stable/sys/ofed/drivers/infiniband/hw/mthca/
H A Dmthca_qp.c55 MTHCA_UD_HEADER_SIZE = 72, /* largest UD header possible */
284 enum { RC, UC, UD, RD, RDEE, MLX, NUM_TRANS }; enumerator in enum:__anon11118
291 case UD: return MTHCA_QP_ST_UD;
593 if (qp->transport == MLX || qp->transport == UD)
933 case UD:
1002 case UD:
1298 case IB_QPT_UD: qp->transport = UD; break;
1489 /* Create UD header for an MLX send and build a data segment for it */
1724 case UD:
2065 case UD
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp2221 NamedDecl *UD = local
2226 if (UD)
2227 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
2229 return UD;
2245 NamedDecl *UD = local
2250 if (UD)
2251 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
2253 return UD;
4224 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
4225 return isInstantiationOf(UUD, UD, Ct
[all...]
H A DSemaDeclCXX.cpp6619 UsingDirectiveDecl* UD local
6627 UD->setImplicit();
6628 Parent->addDecl(UD);
7026 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
7030 if (UD)
7031 PushOnScopeChains(UD, S, /*AddToContext*/ false);
7033 return UD;
7190 UsingDecl *UD,
7203 UD->getLocation(), UD, Targe
7189 BuildUsingShadowDecl(Scope *S, UsingDecl *UD, NamedDecl *Orig, UsingShadowDecl *PrevDecl) argument
7484 CheckInheritingConstructorUsingDecl(UsingDecl *UD) argument
[all...]
H A DSemaLookup.cpp141 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { argument
142 DeclContext *NS = UD->getNominatedNamespace();
146 addUsingDirective(UD, EffectiveDC);
158 UsingDirectiveDecl *UD = *I; local
159 DeclContext *NS = UD->getNominatedNamespace();
161 addUsingDirective(UD, EffectiveDC);
180 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { argument
183 DeclContext *Common = UD->getNominatedNamespace();
188 list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(), Common));
H A DTreeTransform.h7833 UsingDecl *UD = cast<UsingDecl>(InstD); local
7834 for (UsingDecl::shadow_iterator I = UD->shadow_begin(),
7835 E = UD->shadow_end(); I != E; ++I)
8738 UsingDecl *UD = cast<UsingDecl>(InstD); local
8739 for (UsingDecl::shadow_iterator I = UD->shadow_begin(),
8740 E = UD->shadow_end(); I != E; ++I)
H A DSemaDeclAttr.cpp1386 RecordDecl *UD = UT->getDecl(); local
1387 for (RecordDecl::field_iterator it = UD->field_begin(),
1388 itend = UD->field_end(); it != itend; ++it) {
H A DSemaOverload.cpp1708 RecordDecl *UD = UT->getDecl();
1710 for (RecordDecl::field_iterator it = UD->field_begin(),
1711 itend = UD->field_end();
H A DSemaExpr.cpp6480 RecordDecl *UD = UT->getDecl();
6483 for (RecordDecl::field_iterator it = UD->field_begin(),
6484 itend = UD->field_end();
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
H A DDeclBase.cpp157 if (const UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(this))
158 return UD->getTargetDecl()->isFunctionOrFunctionTemplate();
H A DDecl.cpp1437 while (UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(ND))
1438 ND = UD->getTargetDecl();
H A DASTContext.cpp6892 RecordDecl *UD = UT->getDecl(); local
6893 if (UD->hasAttr<TransparentUnionAttr>()) {
6894 for (RecordDecl::field_iterator it = UD->field_begin(),
6895 itend = UD->field_end(); it != itend; ++it) {
/freebsd-10-stable/sys/boot/i386/btx/btx/
H A Dbtx.S325 push $0x6 # Int 0x6: #UD
/freebsd-10-stable/sys/boot/pc98/btx/btx/
H A Dbtx.S327 push $0x6 # Int 0x6: #UD
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h3671 bool CheckUsingShadowDecl(UsingDecl *UD, NamedDecl *Target,
3674 UsingShadowDecl *BuildUsingShadowDecl(Scope *S, UsingDecl *UD,
3696 bool CheckInheritingConstructorUsingDecl(UsingDecl *UD);
/freebsd-10-stable/sys/dev/hptmv/
H A Di386-elf.raid.o.uu310 M1P@/E<`/ML#K';@`````@_E_=Q.#Z6")\-/@A4<,#Y7`#[;`C78`A<!UD+`!
/freebsd-10-stable/sys/contrib/dev/uath/
H A Dar5523.bin.uu390 M@@`6,$4`#U"@``NF(``T``,1`J""`!>2(@`UD(,``3!"``\``A$``*(0)31C
1174 M@R`EC4H`!*^F`#ROI0!$KZ<`0*^I`$BM!!AHC:4``(UD`#@\`H#_`*XH(8RC
1175 M&&@T0O__``0F``!B&"0\`G\``((@)`!D&"6LHQAHC:4``(UD`$`D`__@`*XH
1237 M/`2``@!#$"$DA!UD`,0@(9!%``"0@P```!$00`!1$"$`Q2@'`&(8(3"B`/]P
2124 M!(UD`!@,`&'F)`4``1``_]B/OP``)[W_\#P"@`*OOP``D$-4"``%$(``H$`A
/freebsd-10-stable/sys/dev/hptrr/
H A Damd64-elf.hptrr_lib.o.uu1210 M$#")!0````!(B<6#Y1](:^U82HVL-5`"``"#?0`!=$Y(C5T@3(UD)!"+4P1$
1931 M$(M$$#")!0````!(B<6#Y1](:^U82HVL-5`"``"#?0`!=$Y(C5T@3(UD)!"+
2664 M``!(B<6#Y1](:^U82HVL-5`"``"#?0`!=$Y(C5T@3(UD)!"+4P1$#[;N3(GA
3633 M````@'T\'P^$V0```/^-Z`L``(N%Z`L``(N$A6@+``!!B<1-:^1838UD+%A!
4192 M=$Y(C5T@3(UD)!"+4P1$#[;N3(GA1(GNZ)S\__]!_HYE#0``2(M+($F+?C!,
4382 M`.FR````@+UD#0```'5$@[U``@```'4;#[;;B=Y,B??H3O'__XG>3(GWZ*3Q
5609 MWDB)[^@`````@$UD$$R)[^@`````2(/$"$B)[UM=05Q!7>D`````9F9FD&9F
7107 M28U\)&A(B=[H`````%M=05S#05=!5D%505154TB#[!A(B7PD$$&)]4F)UD&)
7267 M=^`/MM%$B<A)B<5(BTPD$$P#;-$(3(UD)"!!#[9O*$6)UH/]`7421(G22(MT
H A Di386-elf.hptrr_lib.o.uu4895 M+(M\)$"#_P>+="1$=V#_)+UD`P``D%;H_/___XG%BU@(6.L)B?8Y<PAT!HL;
8202 M6`$``=`!``!9`0`!T`$`"UD!``$)```;60$``0D``"I9`0`!"0``.ED!``$)

Completed in 780 milliseconds