HomeSort by relevance Sort by last modified time
    Searched defs:Closure (Results 1 - 25 of 53) sorted by null

1 2 3

  /frameworks/rs/
rsClosure.cpp 23 Closure* c = new Closure(
26 sizes, (const Closure**)depClosures,
38 Closure* c = new Closure(
46 void rsi_ClosureSetArg(Context* rsc, RsClosure closure, uint32_t index,
48 ((Closure*)closure)->setArg(index, (const void*)value, size);
51 void rsi_ClosureSetGlobal(Context* rsc, RsClosure closure,
54 ((Closure*)closure)->setGlobal((const ScriptFieldID*)fieldID
    [all...]
rsClosure.h 20 class Closure : public ObjectBase {
22 Closure(Context* context,
29 const Closure** depClosures,
31 Closure(Context* context,
40 virtual ~Closure();
56 // Flag indicating if this closure is for a kernel (true) or invocable
71 // All the other closures which this closure depends on for one of its
73 Map<const Closure*, Map<int, ObjectBaseRef<ScriptFieldID>>*> mArgDeps;
75 // All the other closures that this closure depends on for one of its fields,
77 Map<const Closure*, Map<const ScriptFieldID*
    [all...]
  /external/clang/test/Misc/
diagnostic-crash.cpp 9 class Closure {
38 Closure* cb = NewCallback(this, &xxxxxxxxxxxxxxxxx::Bar, s, status); // expected-error{{cannot initialize}}
  /art/runtime/
thread_pool.h 31 class Closure {
33 virtual ~Closure() { }
37 class Task : public Closure {
39 // Called after Closure::Run has been called.
  /external/tensorflow/tensorflow/core/kernels/
critical_section.cc 45 void Acquire(std::function<void()> closure) {
50 closures_.push_back(std::move(closure));
54 next = std::move(closure);
112 // No need to Unref critical_section; the Closure below will take
115 auto* execution = new Closure{std::move(done), c, critical_section, &func_};
120 class Closure {
131 explicit Closure(AsyncOpKernel::DoneCallback done, OpKernelContext* ctx,
139 ~Closure();
160 void ExecuteInCriticalSectionOp::Closure::ExecuteFunction() {
196 void ExecuteInCriticalSectionOp::Closure::DoneAndDelete(const Status& status)
    [all...]
  /frameworks/wilhelm/src/
ThreadPool.h 19 /** Kind of closure */
27 /** Closure handlers */
34 /** \brief Closure represents a deferred computation */
48 } Closure;
62 Closure **mClosureArray; ///< The circular buffer of closures
63 Closure **mClosureFront, **mClosureRear;
66 Closure *mClosureTypical[CLOSURE_TYPICAL+1];
91 extern Closure *ThreadPool_remove(ThreadPool *tp);
  /external/tensorflow/tensorflow/core/common_runtime/
executor.h 96 typedef std::function<void()> Closure;
97 typedef std::function<void(Closure)> Runner;
170 // Returns a closure that Executors must call when they are done
  /external/protobuf/src/google/protobuf/stubs/
callback.h 14 // a Closure to call when the procedure completes. See the Service interface
17 // To automatically construct a Closure which calls a particular function or
27 // Closure* callback = NewCallback(&FooDone, response);
44 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
70 class LIBPROTOBUF_EXPORT Closure {
72 Closure() {}
73 virtual ~Closure();
78 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Closure);
119 class LIBPROTOBUF_EXPORT FunctionClosure0 : public Closure {
139 class MethodClosure0 : public Closure {
    [all...]
common.cc 304 Closure::~Closure() {}
  /external/v8/src/inspector/
debugger_script_externs.js 157 Closure: 3,
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
ast.go 1083 // return type in a closure.
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
ast.go 1083 // return type in a closure.
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
callback.h 14 // a Closure to call when the procedure completes. See the Service interface
17 // To automatically construct a Closure which calls a particular function or
27 // Closure* callback = NewCallback(&FooDone, response);
44 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
70 class LIBPROTOBUF_EXPORT Closure {
72 Closure() {}
73 virtual ~Closure();
78 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Closure);
119 class LIBPROTOBUF_EXPORT FunctionClosure0 : public Closure {
139 class MethodClosure0 : public Closure {
    [all...]
  /external/valgrind/drd/tests/
tsan_thread_wrappers_pthread.h 434 struct Closure {
456 Closure *NewCallback(void (*f)()) {
457 Closure *res = new Closure;
466 Closure *NewCallback(void (*f)(P1), P1 p1) {
468 Closure *res = new Closure;
477 Closure *NewCallback(void (*f)(P1, P2), P1 p1, P2 p2) {
479 Closure *res = new Closure;
543 Closure *closure = reinterpret_cast<Closure*>(pool->queue_.Get()); local
    [all...]
  /frameworks/base/rs/java/android/renderscript/
ScriptGroup.java 92 * A closure represents a function call to a kernel or invocable function,
93 * combined with arguments and values for global variables. A closure is
99 public static final class Closure extends BaseObj {
109 private static final String TAG = "Closure";
111 Closure(long id, RenderScript rs) {
115 Closure(RenderScript rs, Script.KernelID kernelID, Type returnType,
155 Closure(RenderScript rs, Script.InvokeID invokeID,
191 * Destroys this Closure and the Allocation for its return value
265 // If the field is not bound to this closure, this will return a future
330 * A future represents an output of a closure, either the return value o
385 Closure closure = p.first; local
390 Closure closure = p.first; local
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 794 // a Closure to call when the procedure completes. See the Service interface
797 // To automatically construct a Closure which calls a particular function or
807 // Closure* callback = NewCallback(&FooDone, response);
824 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
850 class LIBPROTOBUF_EXPORT Closure {
852 Closure() {}
853 virtual ~Closure();
858 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Closure);
863 class LIBPROTOBUF_EXPORT FunctionClosure0 : public Closure {
883 class MethodClosure0 : public Closure {
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 794 // a Closure to call when the procedure completes. See the Service interface
797 // To automatically construct a Closure which calls a particular function or
807 // Closure* callback = NewCallback(&FooDone, response);
824 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
850 class LIBPROTOBUF_EXPORT Closure {
852 Closure() {}
853 virtual ~Closure();
858 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Closure);
863 class LIBPROTOBUF_EXPORT FunctionClosure0 : public Closure {
883 class MethodClosure0 : public Closure {
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
common.h 794 // a Closure to call when the procedure completes. See the Service interface
797 // To automatically construct a Closure which calls a particular function or
807 // Closure* callback = NewCallback(&FooDone, response);
824 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
850 class LIBPROTOBUF_EXPORT Closure {
852 Closure() {}
853 virtual ~Closure();
858 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Closure);
863 class LIBPROTOBUF_EXPORT FunctionClosure0 : public Closure {
883 class MethodClosure0 : public Closure {
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
common.h 794 // a Closure to call when the procedure completes. See the Service interface
797 // To automatically construct a Closure which calls a particular function or
807 // Closure* callback = NewCallback(&FooDone, response);
824 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
850 class LIBPROTOBUF_EXPORT Closure {
852 Closure() {}
853 virtual ~Closure();
858 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Closure);
863 class LIBPROTOBUF_EXPORT FunctionClosure0 : public Closure {
883 class MethodClosure0 : public Closure {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lobject.h 46 ** 2 - regular C function (closure)
50 #define LUA_TLCL (LUA_TFUNCTION | (0 << 4)) /* Lua closure */
52 #define LUA_TCCL (LUA_TFUNCTION | (2 << 4)) /* C closure */
475 union Closure *cache; /* last created closure with this prototype */
530 typedef union Closure {
533 } Closure;
  /external/syslinux/com32/lua/src/
lobject.h 46 ** 2 - regular C function (closure)
50 #define LUA_TLCL (LUA_TFUNCTION | (0 << 4)) /* Lua closure */
52 #define LUA_TCCL (LUA_TFUNCTION | (2 << 4)) /* C closure */
475 union Closure *cache; /* last created closure with this prototype */
530 typedef union Closure {
533 } Closure;
  /external/v8/src/debug/
mirrors.js 186 Closure: 3,
    [all...]
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
ScriptGroup.java 101 * A closure represents a function call to a kernel or invocable function,
102 * combined with arguments and values for global variables. A closure is
108 public static final class Closure extends BaseObj {
118 private static final String TAG = "Closure";
120 Closure(long id, RenderScript rs) {
124 Closure(RenderScript rs, Script.KernelID kernelID, Type returnType,
166 Closure(RenderScript rs, Script.InvokeID invokeID,
262 // If the field is not bound to this closure, this will return a future
325 * A future represents an output of a closure, either the return value of
327 * A future is created by calling the {@link Closure#getReturn} o
380 Closure closure = p.first; local
385 Closure closure = p.first; local
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
  /external/protobuf/php/ext/google/protobuf/
upb.h 454 typedef bool upb_errcb_t(void *closure, const upb_status* status);
5521 void *closure; member in class:upb::HandlerAttributes::upb::BufferHandle::upb::Handlers::upb::BytesHandler::upb::Sink
5546 void *closure; member in struct:upb::HandlerAttributes::upb::BufferHandle::upb::Handlers::upb::BytesHandler::upb::BytesSink::upb_bytessink
    [all...]

Completed in 868 milliseconds

1 2 3