Home
last modified time | relevance | path

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

123456789

/external/skia/tests/sksl/dslfp/
DGrDSLFPTest_Ternary.dsl.cpp29 Declare(_primaryColors); in emitCode()
37 Declare(_colorGreen); in emitCode()
46 Declare(_colorRed); in emitCode()
55 Declare(_colorOrange); in emitCode()
64 Declare(_colorPurple); in emitCode()
70 Declare(_green); in emitCode()
71 Declare(_red); in emitCode()
72 Declare(_t); in emitCode()
73 Declare(_f); in emitCode()
DGrDSLFPTest_ForStatement.dsl.cpp29 Declare(_colorWhite); in emitCode()
36 Declare(_color); in emitCode()
37 For(Declare(_a), _a <= 1.0f, ++_a, /*Body:*/ _color.w() = _a); in emitCode()
38 For(Declare(_r), _r < 5.0f, _r += 1.0f, /*Body:*/ Block(_color.x() = _r, If(_color.x() == 0.0f, /*T… in emitCode()
39 For(Declare(_b), _b >= 0.0f, _b -= 1.0f, /*Body:*/ Block(_color.z() = _b, If(_color.w() == 1.0f, /*… in emitCode()
40 Block(Declare(_x), Declare(_y), For(Statement(), _x <= _y, ++_x, /*Body:*/ Block(_color.w() = Half(… in emitCode()
DGrDSLFPTest_IfStatement.dsl.cpp29 Declare(_one); in emitCode()
32 Declare(_unused); in emitCode()
35 Declare(_alsoUnused); in emitCode()
37 Declare(_color); in emitCode()
DGrDSLFPTest_Builtins.dsl.cpp30 Declare(_zero); in emitCode()
32 Declare(_one); in emitCode()
36 Declare(_m); in emitCode()
37 Declare(_n); in emitCode()
38 Declare(_b); in emitCode()
DGrDSLFPTest_Sample.dsl.cpp29 Declare(_coords); in emitCode()
30 Declare(_inColor); in emitCode()
DGrDSLFPTest_DoStatement.dsl.cpp29 Declare(_shouldLoop); in emitCode()
31 Declare(_color); in emitCode()
DGrDSLFPTest_SwitchStatement.dsl.cpp29 Declare(_ten); in emitCode()
31 Declare(_color); in emitCode()
DGrDSLFPTest_Swizzle.dsl.cpp29 Declare(_v); in emitCode()
61 Declare(_b); in emitCode()
/external/rust/crates/libz-sys/src/zlib/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
560 def Declare(self): member in MemOperand
/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/libebl/
DChangeLog522 * libebl.h: Declare ebl_abi_cfi.
556 * libebl.h: Declare ebl_syscall_abi.
572 * libebl.h: Declare it.
576 * libebl.h: Declare ebl_check_object_attribute.
616 * libebl.h: Declare ebl_auxv_info.
644 * libebl.h: Declare ebl_machine_section_flag_check.
686 * libebl.h: Declare ebl_relative_reloc_p.
695 * libebl.h: Declare ebl_none_reloc_p.
705 * ebl-hooks.h: Declare register_name hook.
706 * libebl.h: Declare ebl_register_name.
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DStripSymbols.cpp254 Function *Declare = M.getFunction("llvm.dbg.declare"); in runOnModule() local
257 if (Declare) { in runOnModule()
258 while (!Declare->use_empty()) { in runOnModule()
259 CallInst *CI = cast<CallInst>(Declare->user_back()); in runOnModule()
274 Declare->eraseFromParent(); in runOnModule()
/external/skia/tests/
DSkSLDSLTest.cpp144 EXPECT_EQUAL(Declare(x), "int x;"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
156 EXPECT_EQUAL(Declare(x), "int _0_x;"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1234 EXPECT_EQUAL(Block(Declare(a), Declare(b), a = b), "{ int a = 1; int b = 2; (a = b); }"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1248 For(Declare(i), i < 10, ++i, Block( in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1268 For(Declare(i), i < 10, ++i, Block( in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1287 Statement x = Declare(a); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1289 Statement y = Declare(b); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1295 Declare(c).release(); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1300 Declare(d).release(); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1302 Declare(d).release(); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
[all …]
/external/llvm-project/mlir/cmake/modules/
DAddMLIR.cmake7 # Declare a dialect in the include directory
19 # Declare a dialect in the include directory
44 # Declare an mlir library which can be compiled in libMLIR.so
168 # Declare an mlir library which is part of the public C-API and will be
195 # Declare the library associated with a dialect.
201 # Declare the library associated with a conversion.
207 # Declare the library associated with a translation.
/external/llvm-project/llvm/lib/Transforms/IPO/
DStripSymbols.cpp257 Function *Declare = M.getFunction("llvm.dbg.declare"); in stripDebugDeclareImpl() local
260 if (Declare) { in stripDebugDeclareImpl()
261 while (!Declare->use_empty()) { in stripDebugDeclareImpl()
262 CallInst *CI = cast<CallInst>(Declare->user_back()); in stripDebugDeclareImpl()
277 Declare->eraseFromParent(); in stripDebugDeclareImpl()
/external/skia/gm/
Ddsl_processor_test.cpp39 Declare(x); in onMakeProgramImpl()
46 Declare(coords); in onMakeProgramImpl()
/external/skia/src/gpu/effects/
DGrGaussianConvolutionFragmentProcessor.cpp91 Declare(color); in emitCode()
94 Declare(coord); in emitCode()
105 For(Declare(i), i < width, i++, in emitCode()
115 For(Declare(i), i < kernelWidth, i++, in emitCode()
DGrConvexPolyEffect.cpp49 Declare(alpha); in emitCode()
51 Declare(edge); in emitCode()
/external/elfutils/libdwelf/
DChangeLog79 * libdwelf.h (dwelf_elf_gnu_build_id): Declare new function.
86 * libdwelf.h (dwelf_dwarf_gnu_debugaltlink): Declare new function.
/external/elfutils/libdw/
DChangeLog44 * dwarf_frame_register.c (dwarf_frame_register): Declare ops_mem
789 * libdw.h (dwarf_getabbrevattr_data): Declare new function.
879 (filepath): Declare new internal function.
1923 * libdwP.h: Declare internal dwarf_getlocation_die.
2161 Declare __libdw_free_zdata.
2184 * libdw.h: Declare it.
2188 * libdwP.h: Declare it.
2231 * libdw.h: Declare it.
2249 * libdwP.h: Declare it.
2263 * libdw.h: Declare it.
[all …]
/external/boringssl/src/ssl/test/
DCMakeLists.txt38 # Declare a dummy target for run_tests to depend on.
/external/rust/crates/quiche/deps/boringssl/src/ssl/test/
DCMakeLists.txt38 # Declare a dummy target for run_tests to depend on.
/external/llvm/unittests/IR/
DCMakeLists.txt36 # HACK: Declare a couple of source files as optionally compiled to satisfy the
/external/llvm-project/llvm/test/Transforms/LoopStrengthReduce/
Ddont_reverse.ll8 ; Declare i2 as legal so that IVUsers accepts to consider %indvar3451

123456789