Home
last modified time | relevance | path

Searched refs:Declare (Results 1 – 25 of 92) sorted by relevance

1234

/external/zlib/src/old/
Dvisual-basic.txt32 Declare Function compress Lib "ZLIB.DLL" (ByVal compr As
35 Declare Function uncompress Lib "ZLIB.DLL" (ByVal uncompr
38 Declare Function gzopen Lib "ZLIB.DLL" (ByVal filePath As
40 Declare Function gzread Lib "ZLIB.DLL" (ByVal file As
43 Declare Function gzwrite Lib "ZLIB.DLL" (ByVal file As
46 Declare Function gzclose Lib "ZLIB.DLL" (ByVal file As
49 Declare Function compress Lib "ZLIB32.DLL"
52 Declare Function uncompress Lib "ZLIB32.DLL"
55 Declare Function gzopen Lib "ZLIB32.DLL"
57 Declare Function gzread Lib "ZLIB32.DLL"
[all …]
/external/vixl/tools/test_generator/
Ddata_types.py64 def Declare(): member in OperandBase
110 def Declare(self): member in Operand
153 def Declare(self): member in OperandWrapper
158 return "\n".join([operand.Declare() for operand in self.operand_list])
226 def Declare(): member in Input
310 def Declare(self): member in Scalar
509 def Declare(self): member in MemOperand
Dgenerator.py363 return "".join([operand.Declare() for operand in self.operands])
374 return "".join([input.Declare() for input in self.inputs])
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DStripSymbols.cpp243 if (Function *Declare = M.getFunction("llvm.dbg.declare")) { in StripDebugInfo() local
244 while (!Declare->use_empty()) { in StripDebugInfo()
245 CallInst *CI = cast<CallInst>(Declare->use_back()); in StripDebugInfo()
248 Declare->eraseFromParent(); in StripDebugInfo()
299 Function *Declare = M.getFunction("llvm.dbg.declare"); in runOnModule() local
302 if (Declare) { in runOnModule()
303 while (!Declare->use_empty()) { in runOnModule()
304 CallInst *CI = cast<CallInst>(Declare->use_back()); in runOnModule()
319 Declare->eraseFromParent(); in runOnModule()
/external/elfutils/libebl/
DChangeLog245 * libebl.h: Declare ebl_abi_cfi.
279 * libebl.h: Declare ebl_syscall_abi.
295 * libebl.h: Declare it.
299 * libebl.h: Declare ebl_check_object_attribute.
339 * libebl.h: Declare ebl_auxv_info.
367 * libebl.h: Declare ebl_machine_section_flag_check.
409 * libebl.h: Declare ebl_relative_reloc_p.
418 * libebl.h: Declare ebl_none_reloc_p.
428 * ebl-hooks.h: Declare register_name hook.
429 * libebl.h: Declare ebl_register_name.
[all …]
/external/llvm/lib/Transforms/IPO/
DStripSymbols.cpp253 Function *Declare = M.getFunction("llvm.dbg.declare"); in runOnModule() local
256 if (Declare) { in runOnModule()
257 while (!Declare->use_empty()) { in runOnModule()
258 CallInst *CI = cast<CallInst>(Declare->user_back()); in runOnModule()
273 Declare->eraseFromParent(); in runOnModule()
/external/elfutils/libdwelf/
DChangeLog24 * libdwelf.h (dwelf_elf_gnu_build_id): Declare new function.
31 * libdwelf.h (dwelf_dwarf_gnu_debugaltlink): Declare new function.
/external/elfutils/lib/
DChangeLog56 * system.h: Declare color_argp. Define color_enum. Declare
62 * system.h: Declare __cxa_demangle.
144 * system.h: Declare crc32_file.
/external/elfutils/libdw/
DChangeLog833 * libdwP.h: Declare internal dwarf_getlocation_die.
1071 Declare __libdw_free_zdata.
1094 * libdw.h: Declare it.
1098 * libdwP.h: Declare it.
1141 * libdw.h: Declare it.
1159 * libdwP.h: Declare it.
1173 * libdw.h: Declare it.
1200 * cfi.h: Declare __libdw_fde_by_offset.
1202 * libdw.h: Declare it.
1226 * libdw.h: Declare them.
[all …]
/external/v8/src/ast/
Dscopes.cc30 Variable* VariableMap::Declare(Zone* zone, Scope* scope, in Declare() function in v8::internal::VariableMap
80 void SloppyBlockFunctionMap::Declare(Zone* zone, const AstRawString* name, in Declare() function in v8::internal::SloppyBlockFunctionMap
246 Variable* variable = Declare(zone, this, catch_variable_name, VAR, in Scope()
581 Variable* var = Declare( in DeclareThis()
597 arguments_ = Declare(zone(), this, ast_value_factory->arguments_string(), in DeclareArguments()
612 new_target_ = Declare(zone(), this, ast_value_factory->new_target_string(), in DeclareDefaultFunctionVariables()
618 Declare(zone(), this, ast_value_factory->this_function_string(), CONST, in DeclareDefaultFunctionVariables()
718 Variable* Scope::Declare(Zone* zone, Scope* scope, const AstRawString* name, in Declare() function in v8::internal::Scope
724 variables_.Declare(zone, scope, name, mode, kind, initialization_flag, in Declare()
849 Variable* var = variables_.Declare(zone(), this, name, mode, kind, init_flag, in LookupInScopeInfo()
[all …]
Dscopes.h31 Variable* Declare(Zone* zone, Scope* scope, const AstRawString* name,
47 void Declare(Zone* zone, const AstRawString* name,
434 Variable* Declare(Zone* zone, Scope* scope, const AstRawString* name, in NON_EXPORTED_BASE()
741 sloppy_block_function_map_.Declare(zone(), name, statement); in DeclareSloppyBlockFunction()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DAutoUpgrade.cpp409 if (Function *Declare = M->getFunction("llvm.dbg.declare")) { in CheckDebugInfoIntrinsics() local
410 if (!Declare->use_empty()) { in CheckDebugInfoIntrinsics()
411 DbgDeclareInst *DDI = cast<DbgDeclareInst>(Declare->use_back()); in CheckDebugInfoIntrinsics()
414 while (!Declare->use_empty()) { in CheckDebugInfoIntrinsics()
415 CallInst *CI = cast<CallInst>(Declare->use_back()); in CheckDebugInfoIntrinsics()
418 Declare->eraseFromParent(); in CheckDebugInfoIntrinsics()
/external/elfutils/libdwfl/
DChangeLog1499 * libdwfl.h: Declare dwfl_core_file_report.
1555 * libdwflP.h: Declare __libdw_image_header.
1573 * libdwflP.h: Declare it.
1644 * libdwflP.h: Declare __libdwfl_getelf.
1740 * libdwflP.h: Declare __libdw_open_file.
1748 * libdwflP.h: Declare __libdw_gunzip, __libdw_bunzip2.
1826 * libdwflP.h (dwfl_core_file_report): Declare it.
1830 * libdwflP.h (dwfl_link_map_report): Declare it.
1835 (dwfl_segment_report_module): Declare it.
1844 * libdwfl.h: Declare dwfl_addrsegment, dwfl_report_segment.
[all …]
/external/llvm/unittests/IR/
DCMakeLists.txt36 # HACK: Declare a couple of source files as optionally compiled to satisfy the
/external/swiftshader/third_party/LLVM/lib/Target/XCore/
DXCore.td40 // Declare the target which we are implementing
/external/mesa3d/src/gallium/drivers/radeon/
DAMDGPU.td17 // Declare the target which we are implementing
/external/llvm/lib/Target/XCore/
DXCore.td41 // Declare the target which we are implementing
/external/llvm/test/Transforms/LoopStrengthReduce/
Ddont_reverse.ll8 ; Declare i2 as legal so that IVUsers accepts to consider %indvar3451
/external/llvm/lib/Target/Lanai/
DLanai.td40 // Declare the target which we are implementing
/external/bison/data/
Dc.m4296 # Declare the function NAME.
310 # Declare the function NAME in ANSI.
360 # Declare the function NAME ANSI C style.
369 # Declare the function NAME in both K&R and ANSI C.
555 # in the parser body. Declare YYSTYPE/YYLTYPE, and yylval/yylloc.
/external/elfutils/libelf/
DChangeLog403 * elf_getdata.c (__libelf_set_rawdata_wrlock): Declare offset, size
646 * libelf.h: Declare elf_getphdrnum.
647 * libelfP.h: Declare __elf_getphdrnum_rdlock.
923 Declare __elf_scnshndx_internal.
927 * libelf.h: Declare elf_scnshndx.
968 * libelf.h: Declare it.
977 * gelf.h: Declare gelf_getnote.
993 * gelf.h: Declare gelf_getauxv, gelf_update_auxv.
1026 [! ALLOW_UNALIGNED]: Declare __libc_type_aligns array.
1092 * libelf.h: Declare elf_gnu_hash.
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/Sparc/
DSparc.td66 // Declare the target which we are implementing
/external/bison/
DChangeLog-199864 * src/bison.simple (__yy_memcpy): Declare arg `count' as unsigned
74 Declare calloc and realloc to return void *.
91 (printable_version): Declare arg as int, not char.
399 * src/new.h: Declare it.
446 * src/bison.simple [__hpux, not __GNUC__]: Declare alloca.
463 * src/bison.simple [__GNUC__] (yyparse): Declare with prototype.
736 * src/closure.c (tags): Declare just once at start of file.
773 Declare as pointer.
882 * src/files.c: Declare exit and perror.
925 * src/files.c [MSDOS]: Declare xmalloc.
[all …]
/external/selinux/secilc/docs/
Dcil_mls_labeling_statements.md9 Declare a sensitivity identifier in the current namespace. Multiple [`sensitivity`](cil_mls_labelin…
162 Declare a category identifier in the current namespace. Multiple category statements declared in th…
300 Declare an identifier for a set of contiguous or non-contiguous categories in the current namespace.
350 ; Declare categories with two alias's:
421 Declare a [`level`](cil_mls_labeling_statements.md#level) identifier in the current namespace and a…
467 Declare a level range identifier in the current namespace and associate a current and clearance lev…
/external/dexmaker/
DREADME.md69 // Declare that method on the dexMaker. Use the returned Code instance
73 // Declare all the locals we'll need up front. The API requires this.

1234