Home
last modified time | relevance | path

Searched refs:dcl (Results 1 – 23 of 23) sorted by relevance

/netbsd-src/external/bsd/libevent/dist/
H A Devent_rpcgen.py121 dcl = entry.AssignDeclaration("(*%s_assign)" % entry.Name())
122 dcl.extend(entry.GetDeclaration("(*%s_get)" % entry.Name()))
124 dcl.extend(entry.AddDeclaration("(*%s_add)" % entry.Name()))
125 self.PrintIndented(filep, " ", dcl)
131 dcl = entry.Declaration()
132 self.PrintIndented(filep, " ", dcl)
622 dcl = ["ev_uint8_t %s_data[%s];" % (self._name, self._length)]
624 return dcl
751 dcl = ["%s %s_data;" % (self._ctype, self._name)]
753 return dcl
[all …]
/netbsd-src/external/bsd/pcc/dist/pcc/f77/fcom/
H A Dgram.dcl1 spec: dcl
16 dcl: type name in_dcl dims lengspec
20 | dcl SCOMMA name dims lengspec
H A Dgram.head47 %type <num> SLABEL type dcl typename addop relop
H A DMakefile.in53 GSRC= $(srcdir)/gram.head $(srcdir)/gram.dcl $(srcdir)/gram.expr \
/netbsd-src/sys/arch/sparc64/dev/
H A Dffb.c1453 uint32_t pll, pfc, ucl, dcl, tgc; in ffb_set_vmode() local
1518 dcl = FFB_DAC_DAC_CTRL_POS_VSYNC; in ffb_set_vmode()
1520 dcl = 0; in ffb_set_vmode()
1524 dcl |= FFB_DAC_DAC_CTRL_VSYNC_DIS; in ffb_set_vmode()
1527 dcl |= FFB_DAC_DAC_CTRL_SYNC_G; in ffb_set_vmode()
1534 dcl |= FFB_DAC_DAC_CTRL_PED_ENABLE; in ffb_set_vmode()
1567 pll, pfc, ucl, dcl, tgc)); in ffb_set_vmode()
1590 DAC_WRITE(sc, FFB_DAC_VALUE, dcl); in ffb_set_vmode()
/netbsd-src/crypto/external/bsd/openssl/dist/
H A DNOTES-VMS.md7 - [About MMS and DCL](#about-mms-and-dcl)
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/
H A Dcp-demangle.c4851 struct demangle_component *dcl; in d_print_comp_inner() local
4866 dcl = d_left (dc); in d_print_comp_inner()
4869 && dcl->type == DEMANGLE_COMPONENT_NAME in d_print_comp_inner()
4870 && dcl->u.s_name.len == 6 in d_print_comp_inner()
4871 && strncmp (dcl->u.s_name.s, "JArray", 6) == 0) in d_print_comp_inner()
4881 d_print_comp (dpi, options, dcl); in d_print_comp_inner()
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/
H A Dcp-demangle.c5049 struct demangle_component *dcl; in d_print_comp_inner() local
5064 dcl = d_left (dc); in d_print_comp_inner()
5067 && dcl->type == DEMANGLE_COMPONENT_NAME in d_print_comp_inner()
5068 && dcl->u.s_name.len == 6 in d_print_comp_inner()
5069 && strncmp (dcl->u.s_name.s, "JArray", 6) == 0) in d_print_comp_inner()
5079 d_print_comp (dpi, options, dcl); in d_print_comp_inner()
/netbsd-src/external/gpl3/gcc/dist/libiberty/
H A Dcp-demangle.c4985 struct demangle_component *dcl; in d_print_comp_inner() local
5000 dcl = d_left (dc); in d_print_comp_inner()
5003 && dcl->type == DEMANGLE_COMPONENT_NAME in d_print_comp_inner()
5004 && dcl->u.s_name.len == 6 in d_print_comp_inner()
5005 && strncmp (dcl->u.s_name.s, "JArray", 6) == 0) in d_print_comp_inner()
5015 d_print_comp (dpi, options, dcl); in d_print_comp_inner()
/netbsd-src/external/gpl3/binutils/dist/libiberty/
H A Dcp-demangle.c5287 struct demangle_component *dcl; in d_print_comp_inner() local
5302 dcl = d_left (dc); in d_print_comp_inner()
5305 && dcl->type == DEMANGLE_COMPONENT_NAME in d_print_comp_inner()
5306 && dcl->u.s_name.len == 6 in d_print_comp_inner()
5307 && strncmp (dcl->u.s_name.s, "JArray", 6) == 0) in d_print_comp_inner()
5317 d_print_comp (dpi, options, dcl); in d_print_comp_inner()
/netbsd-src/external/gpl2/xcvs/dist/src/
H A DChangeLog-9395908 * entries.c (ParseTag): Remove dcl of unused local.
1140 * lock.c (unlock): Remove dcl of unused variable.
1748 (wrap_matching_entry): Remove dcl of unused TEMP.
1749 (wrap_tocvs_process_file): Remove dcl of unused ERR.
1947 * client.c (get_short_pathname): Add const qualifier to parameter dcl.
1955 Remove dcl of unused file-static, SEND_CONTENTS.
1961 * import.c (add_rev): Remove dcl of set-but-not-used local, RETCODE.
1963 * repos.c (Name_Repository): Remove dcl of set-but-not-used local,
2113 * checkout.c (checkout): Remove dcl of unused variable.
2119 * subr.c (copy_file): Remove dcl of unused variable.
[all …]
H A DChangeLog13061 Rename global `ulist' to `saved_ulist' and move dcl up with others.
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp13485 ValueDecl *dcl = getPrimaryDecl(op); in CheckAddressOfOperand() local
13487 if (auto *FD = dyn_cast_or_null<FunctionDecl>(dcl)) in CheckAddressOfOperand()
13571 } else if (dcl) { // C99 6.5.3.2p1 in CheckAddressOfOperand()
13574 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { in CheckAddressOfOperand()
13581 } else if (isa<MSPropertyDecl>(dcl)) { in CheckAddressOfOperand()
13583 } else if (isa<FunctionTemplateDecl>(dcl)) { in CheckAddressOfOperand()
13585 } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) { in CheckAddressOfOperand()
13590 DeclContext *Ctx = dcl->getDeclContext(); in CheckAddressOfOperand()
13592 if (dcl->getType()->isReferenceType()) { in CheckAddressOfOperand()
13595 << dcl->getDeclName() << dcl->getType(); in CheckAddressOfOperand()
[all …]
H A DSemaDecl.cpp14419 Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body, in ActOnFinishFunctionBody() argument
14422 FunctionDecl *FD = dcl ? dcl->getAsFunction() : nullptr; in ActOnFinishFunctionBody()
14449 Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto) in ActOnFinishFunctionBody()
14623 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) { in ActOnFinishFunctionBody()
14677 PopFunctionScopeInfo(ActivePolicy, dcl); in ActOnFinishFunctionBody()
14682 DiagnoseUnguardedAvailabilityViolations(dcl); in ActOnFinishFunctionBody()
14701 if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) { in ActOnFinishFunctionBody()
14717 !isa<FunctionTemplateDecl>(dcl)) { in ActOnFinishFunctionBody()
14764 PopFunctionScopeInfo(ActivePolicy, dcl); in ActOnFinishFunctionBody()
14779 return dcl; in ActOnFinishFunctionBody()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp7861 NamedDecl *dcl = CurLayObj->second; in getObjCEncodingForStructureImpl() local
7862 if (!dcl) in getObjCEncodingForStructureImpl()
7865 if (auto *base = dyn_cast<CXXRecordDecl>(dcl)) { in getObjCEncodingForStructureImpl()
7877 const auto *field = cast<FieldDecl>(dcl); in getObjCEncodingForStructureImpl()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h2763 void AddInitializerToDecl(Decl *dcl, Expr *init, bool DirectInit);
2764 void ActOnUninitializedDecl(Decl *dcl);
2773 void SetDeclDeleted(Decl *dcl, SourceLocation DelLoc);
2774 void SetDeclDefaulted(Decl *dcl, SourceLocation DefaultLoc);
/netbsd-src/share/man/tools/
H A Dnewsp.errs1951 dcl
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A DChangeLog-20205844 selection per n4849, dcl.fct.def.coroutine bullet 12.
5846 n4849, dcl.fct.def.coroutine bullets 9 and 10.
/netbsd-src/external/gpl2/grep/dist/
H A DChangeLog2320 * grep.c: move dcl of struct stat st into "else" where it's used.
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/
H A Dextend.texi24577 @b{[dcl.stc]}
25399 Requires: @code{type} shall be an enumeration type ([dcl.enum]).
H A Dgcc.info56572 * [dcl.stc]
57337 enumeration type ([dcl.enum]).
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/
H A Dextend.texi24348 @b{[dcl.stc]}
25170 Requires: @code{type} shall be an enumeration type ([dcl.enum]).
H A Dgcc.info53587 * [dcl.stc]
54351 enumeration type ([dcl.enum]).