/frameworks/rs/cpp/ |
Allocation.cpp | 127 const void *typeID = RS::dispatch->AllocationGetType(mRS->getContext(), getID()); 149 tryDispatch(mRS, RS::dispatch->AllocationSyncAll(mRS->getContext(), getIDSafe(), srcLocation)); 158 tryDispatch(mRS, RS::dispatch->AllocationIoSend(mRS->getContext(), getID())); 168 tryDispatch(mRS, RS::dispatch->AllocationIoReceive(mRS->getContext(), getID())); 173 tryDispatch(mRS, RS::dispatch->AllocationGenerateMipmaps(mRS->getContext(), getID())); 188 tryDispatch(mRS, RS::dispatch->Allocation1DData(mRS->getContext(), getIDSafe(), off, mSelectedLOD, 203 tryDispatch(mRS, RS::dispatch->Allocation1DRead(mRS->getContext(), getIDSafe(), off, mSelectedLOD, 210 tryDispatch(mRS, RS::dispatch->AllocationCopy2DRange(mRS->getContext(), getIDSafe(), off, 0, 238 tryDispatch(mRS, RS::dispatch->Allocation2DData(mRS->getContext(), getIDSafe(), xoff, 247 tryDispatch(mRS, RS::dispatch->AllocationCopy2DRange(mRS->getContext(), getIDSafe(), xoff, yoff [all...] |
/external/valgrind/main/coregrind/ |
Makefile.in | 170 m_dispatch/dispatch-x86-linux.S \ 171 m_dispatch/dispatch-amd64-linux.S \ 172 m_dispatch/dispatch-ppc32-linux.S \ 173 m_dispatch/dispatch-ppc64-linux.S \ 174 m_dispatch/dispatch-arm-linux.S \ 175 m_dispatch/dispatch-s390x-linux.S \ 176 m_dispatch/dispatch-mips32-linux.S \ 177 m_dispatch/dispatch-x86-darwin.S \ 178 m_dispatch/dispatch-amd64-darwin.S m_gdbserver/inferiors.c \ 280 libcoregrind_@VGCONF_ARCH_PRI@_@VGCONF_OS@_a-dispatch-x86-linux.$(OBJEXT) [all...] |
/external/chromium_org/base/message_loop/ |
message_pump_glib.h | 25 // MessagePumpDispatcher is used during a nested invocation of Run to dispatch 27 // does not dispatch events (or invoke gtk_main_do_event), rather every event is 28 // passed to Dispatcher's Dispatch method for dispatch. It is up to the 29 // Dispatcher to dispatch, or not, the event. The platform specific 86 // Dispatch() will be called.
|
message_pump_ozone.cc | 46 bool MessagePumpOzone::Dispatch(const NativeEvent& dev) { 48 return dispatcher_[0]->Dispatch(dev);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementCallbackInvocation.cpp | 47 virtual void dispatch(Element*) OVERRIDE; 51 void CreatedInvocation::dispatch(Element* element) function in class:WebCore::CreatedInvocation 63 virtual void dispatch(Element*) OVERRIDE; 75 void AttachedDetachedInvocation::dispatch(Element* element) function in class:WebCore::AttachedDetachedInvocation 94 virtual void dispatch(Element*) OVERRIDE; 109 void AttributeChangedInvocation::dispatch(Element* element) function in class:WebCore::AttributeChangedInvocation
|
/external/llvm/lib/Target/PowerPC/ |
PPCHazardRecognizers.h | 40 /// models the dispatch logic on the PowerPC 970 (aka G5) processor. This 41 /// promotes good dispatch group formation and implements noop insertion to 43 /// setting the CTR register then branching through it within a dispatch group), 44 /// or storing then loading from the same address within a dispatch group. 57 // up to four stores in one dispatch group, hence we track up to 4. 74 /// EndDispatchGroup - Called when we are finishing a new dispatch group.
|
PPCHazardRecognizers.cpp | 51 // This models the dispatch group formation of the PPC970 processor. Dispatch 53 // of instructions. The PPC970 can dispatch a peak of 4 non-branch and one 56 // There are a number of restrictions to dispatch group formation: some 57 // instructions can only be issued in the first slot of a dispatch group, & some 58 // instructions fill an entire dispatch group. Additionally, only branches can 64 // branching through it in the same dispatch group, and storing to an address, 65 // then loading from the same address within a dispatch group. To avoid these 80 DEBUG(errs() << "=== Start of dispatch group\n"); 133 /// terminate the dispatch group. We turn NoopHazard for an [all...] |
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/ |
remote_to_local_syncer.h | 66 // - Dispatch to HandleMissingRemoteMetadata to fetch remote metadata. 74 // - If the file is remotely deleted, do nothing to local file and dispatch 76 // - Else, if the file is a regular file, dispatch to HandleNewFile(). 77 // - Else, if the file is a folder, dispatch to HandleFolderUpdate(). 82 // - Dispatch to HandleDeletion(). 89 // - Dispatch to HandleRemoteRename(). 93 // - Dispatch to HandreReorganize(). 97 // - Dispatch to HandleContentUpdate(). 99 // - Dispatch to HandleFolderContentListing() 101 // - Dispatch to HandleOfflineSolvable( [all...] |
/external/chromium_org/chrome/renderer/resources/extensions/ |
app_runtime_custom_bindings.js | 19 function(args, dispatch) { 37 dispatch([data]); 52 dispatch([launchData]);
|
unload_event.js | 28 // dispatch() is called from C++. 29 exports.dispatch = function() {
|
/external/chromium_org/chrome_frame/test/ |
ie_event_sink.h | 29 virtual void OnNavigateError(IDispatch* dispatch, VARIANT* url, 34 virtual void OnBeforeNavigate2(IDispatch* dispatch, VARIANT* url, 39 virtual void OnNavigateComplete2(IDispatch* dispatch, VARIANT* url) {} 40 virtual void OnNewWindow2(IDispatch** dispatch, VARIANT_BOOL* cancel) {} 41 virtual void OnNewWindow3(IDispatch** dispatch, VARIANT_BOOL* cancel, 44 virtual void OnDocumentComplete(IDispatch* dispatch, VARIANT* url_variant) {} 191 STDMETHOD_(void, OnNavigateError)(IDispatch* dispatch, VARIANT* url, 194 STDMETHOD(OnBeforeNavigate2)(IDispatch* dispatch, VARIANT* url, 199 STDMETHOD_(void, OnNavigateComplete2)(IDispatch* dispatch, VARIANT* url); 200 STDMETHOD_(void, OnNewWindow2)(IDispatch** dispatch, VARIANT_BOOL* cancel) [all...] |
/external/chromium_org/third_party/mesa/src/docs/ |
libGL.txt | 112 The glapi_x86.X and assyntax.h files implement x86-optimized dispatch 113 of GL functions. They are not required; C-based dispatch can be used 156 offset of the dispatch slot in the API dispatch table. The return value 166 The dispatch offset number MUST be a number allocated by SGI in the same 172 Dispatch Management 174 When a GL context is made current, the driver must install its dispatch 175 table as the current dispatch table. This is done by calling 177 void _glapi_set_dispatch(struct _glapi_table *dispatch); 179 This will install the named dispatch table for the calling thread [all...] |
/external/clang/test/Driver/ |
darwin-objc-options.m | 9 // CHECK-CHECK-X86_64_ABI1-NOT: -fobjc-dispatch-method 20 // CHECK-CHECK-I386_ABI2-NOT: -fobjc-dispatch-method 31 // CHECK-CHECK-I386_IOS-NOT: -fobjc-dispatch-method
|
/external/mesa3d/docs/ |
libGL.txt | 112 The glapi_x86.X and assyntax.h files implement x86-optimized dispatch 113 of GL functions. They are not required; C-based dispatch can be used 156 offset of the dispatch slot in the API dispatch table. The return value 166 The dispatch offset number MUST be a number allocated by SGI in the same 172 Dispatch Management 174 When a GL context is made current, the driver must install its dispatch 175 table as the current dispatch table. This is done by calling 177 void _glapi_set_dispatch(struct _glapi_table *dispatch); 179 This will install the named dispatch table for the calling thread [all...] |
/development/host/windows/usb/api/ |
adb_api.cpp | 208 // Dispatch call to the found object
227 // Dispatch call to the found object
244 // Dispatch close to the found object
261 // Dispatch close to the found object
278 // Dispatch close to the found object
296 // Dispatch close to the found object
329 // Dispatch close to the found object
364 // Dispatch the call to the found object
381 // Dispatch the call to the found object
402 // Dispatch the call to the found object [all...] |
/external/chromium/base/ |
message_pump_glib.h | 38 // Dispatcher is used during a nested invocation of Run to dispatch events. 40 // dispatch events (or invoke gtk_main_do_event), rather every event is 41 // passed to Dispatcher's Dispatch method for dispatch. It is up to the 42 // Dispatcher to dispatch, or not, the event. 45 // from Dispatch. 51 virtual bool Dispatch(GdkEvent* event) = 0; 82 // Dispatch an available GdkEvent. Essentially this allows a subclass to do 129 // Dispatch() will be called.
|
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/ |
thread_pool.cc | 17 // num_threads, all work will be performed on the dispatch thread. 54 // Setup work parameters. This function is called from the dispatch thread, 69 // called only from the dispatch thread, and only when all worker threads are 94 // Post to dispatch thread work is done. 105 // DispatchMany() will dispatch a set of tasks across worker threads. 117 // This dispatch thread will now sleep-wait for the worker threads to finish. 123 // DispatchHere will dispatch all tasks on this thread. 129 // Dispatch() will invoke the user supplied work function across 132 void ThreadPool::Dispatch(int num_tasks, WorkFunction work, void* data) {
|
/external/chromium_org/ui/aura/ |
root_window_host_x11_unittest.cc | 139 root_window_host->Dispatch(scoped_xevent); 148 root_window_host->Dispatch(scoped_xevent); 155 root_window_host->Dispatch(scoped_xevent); 162 root_window_host->Dispatch(scoped_xevent); 212 root_window_host1->Dispatch(scoped_xevent); 213 root_window_host2->Dispatch(scoped_xevent); 224 root_window_host1->Dispatch(scoped_xevent); 225 root_window_host2->Dispatch(scoped_xevent); 236 root_window_host1->Dispatch(scoped_xevent); 237 root_window_host2->Dispatch(scoped_xevent) [all...] |
/external/chromium_org/ui/views/focus/ |
accelerator_handler_aura.cc | 12 bool AcceleratorHandler::Dispatch(const base::NativeEvent& event) {
|
/external/chromium_org/ui/views/ime/ |
input_method_delegate.h | 24 // Dispatch a key event already processed by the input method.
|
/external/clang/include/clang/AST/ |
CommentVisitor.h | 26 #define DISPATCH(NAME, CLASS) \ 37 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS); 48 RetTy visit ## CLASS(PTR(CLASS) C) { DISPATCH(PARENT, PARENT); } 56 #undef DISPATCH
|
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/ |
glapi_entrypoint.c | 28 * Arch-specific code for manipulating GL API entrypoints (dispatch stubs). 87 * Generate a dispatch function (entrypoint) which jumps through 88 * the given slot number (offset) in the current dispatch table. 94 /* 32 is chosen as something of a magic offset. For x86, the dispatch 113 * This function inserts a new dispatch offset into the assembly language 196 unsigned long dispatch = __glapi_sparc_get_dispatch(); local 200 unsigned long dispatch = (unsigned long) &_glapi_Dispatch; local 206 code[0] = template[0] | (dispatch >> 10); 209 code[2] = template[2] | (dispatch & 0x3ff); 219 code[0] = template[0] | (dispatch >> (32 + 10)) [all...] |
/external/mesa3d/src/mapi/glapi/ |
glapi_entrypoint.c | 28 * Arch-specific code for manipulating GL API entrypoints (dispatch stubs). 87 * Generate a dispatch function (entrypoint) which jumps through 88 * the given slot number (offset) in the current dispatch table. 94 /* 32 is chosen as something of a magic offset. For x86, the dispatch 113 * This function inserts a new dispatch offset into the assembly language 196 unsigned long dispatch = __glapi_sparc_get_dispatch(); local 200 unsigned long dispatch = (unsigned long) &_glapi_Dispatch; local 206 code[0] = template[0] | (dispatch >> 10); 209 code[2] = template[2] | (dispatch & 0x3ff); 219 code[0] = template[0] | (dispatch >> (32 + 10)) [all...] |
/external/chromium-trace/trace-viewer/src/base/ |
events.js | 34 * @param {!EventTarget} target The event target to dispatch the event on. 40 * during the dispatch this will return false.
|
/external/chromium_org/chrome/test/chromedriver/js/ |
dispatch_context_menu_event.js | 19 * @param {number} x The X coordinate to dispatch the event at. 20 * @param {number} y The Y coordinate to dispatch the event at.
|