Home
last modified time | relevance | path

Searched refs:create_function (Results 1 – 25 of 49) sorted by relevance

12

/external/python/cpython3/Lib/test/test_sqlite3/
Dtest_userfunctions.py150 self.con.create_function("returntext", 0, func_returntext)
151 self.con.create_function("returntextwithnull", 0, func_returntextwithnull)
152 self.con.create_function("returnunicode", 0, func_returnunicode)
153 self.con.create_function("returnint", 0, func_returnint)
154 self.con.create_function("returnfloat", 0, func_returnfloat)
155 self.con.create_function("returnnull", 0, func_returnnull)
156 self.con.create_function("returnblob", 0, func_returnblob)
157 self.con.create_function("returnlonglong", 0, func_returnlonglong)
158 self.con.create_function("returnnan", 0, lambda: float("nan"))
159 self.con.create_function("return_noncont_blob", 0,
[all …]
Dtest_regression.py449 con.create_function("dup", 1, dup)
463 con.create_function("step", 1, lambda x: steps.append((x,)))
/external/tensorflow/tensorflow/core/util/
Dtensor_slice_reader_test.cc62 const TensorSliceWriter::CreateBuilderFunction& create_function, in SimpleFloatHelper() argument
76 TensorSliceWriter writer(fname, create_function); in SimpleFloatHelper()
98 TensorSliceWriter writer(fname, create_function); in SimpleFloatHelper()
186 const TensorSliceWriter::CreateBuilderFunction& create_function, in SimpleIntXHelper() argument
201 TensorSliceWriter writer(fname, create_function); in SimpleIntXHelper()
223 TensorSliceWriter writer(fname, create_function); in SimpleIntXHelper()
490 const TensorSliceWriter::CreateBuilderFunction& create_function, in CachedTensorSliceReaderTesterHelper() argument
504 TensorSliceWriter writer(fname, create_function); in CachedTensorSliceReaderTesterHelper()
526 TensorSliceWriter writer(fname, create_function); in CachedTensorSliceReaderTesterHelper()
/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/functions/
DBUILD.gn27 "create_function.cc",
28 "create_function.h",
/external/ComputeLibrary/tests/framework/
DFramework.h362 using create_function = std::unique_ptr<Instrument>(); variable
363 std::map<InstrumentsDescription, create_function *> _available_instruments{};
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
Dtoy.ml26 let the_fpm = PassManager.create_function Codegen.the_module in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
Dtoy.ml26 let the_fpm = PassManager.create_function Codegen.the_module in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
Dtoy.ml26 let the_fpm = PassManager.create_function Codegen.the_module in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
Dtoy.ml27 let the_fpm = PassManager.create_function Codegen.the_module in
/external/llvm/test/Bindings/OCaml/
Dpassmgr_builder.ml40 let func_passmgr = PassManager.create_function m in
Dscalar_opts.ml44 ignore (PassManager.create_function m
/external/pytorch/test/jit/
Dtest_python_bindings.py33 cu.create_function("test_fn", fn.graph)
/external/tensorflow/tensorflow/c/
Dkernels.cc47 void* (*create_function)(TF_OpKernelConstruction*); member
60 result->create_function = create_func; in TF_NewKernelBuilder()
183 return new ::tensorflow::COpKernel(context, builder_->create_function, in Create()
/external/mesa3d/src/amd/vulkan/
Dradv_nir_to_llvm.c98 create_function(struct radv_shader_context *ctx, gl_shader_stage stage, bool has_previous_stage) in create_function() function
269 create_function(&ctx, shaders[shader_count - 1]->info.stage, shader_count >= 2); in ac_translate_nir_to_llvm()
/external/pytorch/torchgen/dest/
Dlazy_ir.py191 def create_function(self, schema: LazyIrSchema, node_ctor_args: str) -> str: member in GenLazyIR
358 def create_function(self, schema: LazyIrSchema, node_ctor_args: str) -> str: member in GenTSLazyIR
/external/mesa3d/src/mapi/glapi/gen/
Dmarshal_XML.py39 def create_function(self, element, context): member in marshal_item_factory
Dgl_XML.py854 def create_function(self, element, context): member in gl_item_factory
931 func = self.factory.create_function( child, self )
DglX_XML.py35 def create_function(self, element, context): member in glx_item_factory
/external/pytorch/torch/csrc/jit/python/
Dscript_init.cpp483 module._ivalue()->compilation_unit()->create_function(name, graph); in addFunctionToModule()
1172 auto fn = self._ivalue()->compilation_unit()->create_function( in initJitScriptBindings()
1214 auto fn = self._ivalue()->compilation_unit()->create_function( in initJitScriptBindings()
1411 Function* fn = self->create_function( in initJitScriptBindings()
1664 auto result = cu->create_function( in initJitScriptBindings()
1701 auto result = cu->create_function( in initJitScriptBindings()
2046 auto fn = cu->create_function(std::move(name), std::move(graph)); in initJitScriptBindings()
/external/pytorch/torch/csrc/jit/api/
Dcompilation_unit.h126 Function* create_function(
/external/sqlite/dist/sqlite-autoconf-3440300/orig/
Dsqlite3ext.h82 int (*create_function)(sqlite3*,const char*,int,int,void*, member
440 #define sqlite3_create_function sqlite3_api->create_function
/external/sqlite/dist/sqlite-autoconf-3440400/
Dsqlite3ext.h82 int (*create_function)(sqlite3*,const char*,int,int,void*, member
440 #define sqlite3_create_function sqlite3_api->create_function
/external/sqlite/dist/sqlite-autoconf-3440400/orig/
Dsqlite3ext.h82 int (*create_function)(sqlite3*,const char*,int,int,void*, member
440 #define sqlite3_create_function sqlite3_api->create_function
/external/sqlite/dist/sqlite-autoconf-3440300/
Dsqlite3ext.h82 int (*create_function)(sqlite3*,const char*,int,int,void*, member
440 #define sqlite3_create_function sqlite3_api->create_function
/external/javasqlite/src/main/java/SQLite/
DDatabase.java466 public void create_function(String name, int nargs, Function f) { in create_function() method in Database

12