/external/flac/libFLAC/ |
D | window.c | 46 void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L) in FLAC__window_bartlett() argument 53 window[n] = 2.0f * n / (float)N; in FLAC__window_bartlett() 55 window[n] = 2.0f - 2.0f * n / (float)N; in FLAC__window_bartlett() 59 window[n] = 2.0f * n / (float)N; in FLAC__window_bartlett() 61 window[n] = 2.0f - 2.0f * n / (float)N; in FLAC__window_bartlett() 65 void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L) in FLAC__window_bartlett_hann() argument 71 …window[n] = (FLAC__real)(0.62f - 0.48f * fabs((float)n/(float)N-0.5f) - 0.38f * cos(2.0f * M_PI * … in FLAC__window_bartlett_hann() 74 void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L) in FLAC__window_blackman() argument 80 …window[n] = (FLAC__real)(0.42f - 0.5f * cos(2.0f * M_PI * n / N) + 0.08f * cos(4.0f * M_PI * n / N… in FLAC__window_blackman() 84 void FLAC__window_blackman_harris_4term_92db_sidelobe(FLAC__real *window, const FLAC__int32 L) in FLAC__window_blackman_harris_4term_92db_sidelobe() argument [all …]
|
/external/flac/libFLAC/include/private/ |
D | window.h | 54 void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L); 55 void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L); 56 void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L); 57 void FLAC__window_blackman_harris_4term_92db_sidelobe(FLAC__real *window, const FLAC__int32 L); 58 void FLAC__window_connes(FLAC__real *window, const FLAC__int32 L); 59 void FLAC__window_flattop(FLAC__real *window, const FLAC__int32 L); 60 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev); /* 0.0 <… 61 void FLAC__window_hamming(FLAC__real *window, const FLAC__int32 L); 62 void FLAC__window_hann(FLAC__real *window, const FLAC__int32 L); 63 void FLAC__window_kaiser_bessel(FLAC__real *window, const FLAC__int32 L); [all …]
|
/external/deqp/framework/platform/android/ |
D | tcuAndroidWindow.cpp | 35 Window::Window (ANativeWindow* window) in Window() argument 36 : m_window (window) in Window() 124 Window* const window = *winIter; in ~WindowRegistry() local 126 if (window->tryAcquireForDestroy(false)) in ~WindowRegistry() 127 delete window; in ~WindowRegistry() 136 void WindowRegistry::addWindow (ANativeWindow* window) in addWindow() argument 139 m_windows.push_back(new Window(window)); in addWindow() 146 Window* const window = m_windows[ndx]; in destroyWindow() local 148 if (window->getNativeWindow() == rawHandle) in destroyWindow() 150 if (window->tryAcquireForDestroy(false)) in destroyWindow() [all …]
|
D | tcuAndroidNativeActivity.cpp | 64 static void onNativeWindowCreatedCallback (ANativeActivity* activity, ANativeWindow* window) in onNativeWindowCreatedCallback() argument 66 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onNativeWindowCreated(window); in onNativeWindowCreatedCallback() 69 static void onNativeWindowResizedCallback (ANativeActivity* activity, ANativeWindow* window) in onNativeWindowResizedCallback() argument 71 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onNativeWindowResized(window); in onNativeWindowResizedCallback() 74 static void onNativeWindowRedrawNeededCallback (ANativeActivity* activity, ANativeWindow* window) in onNativeWindowRedrawNeededCallback() argument 76 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onNativeWindowRedrawNeeded(window); in onNativeWindowRedrawNeededCallback() 79 static void onNativeWindowDestroyedCallback (ANativeActivity* activity, ANativeWindow* window) in onNativeWindowDestroyedCallback() argument 81 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onNativeWindowDestroyed(window); in onNativeWindowDestroyedCallback() 173 void NativeActivity::onNativeWindowCreated (ANativeWindow* window) in onNativeWindowCreated() argument 175 DE_UNREF(window); in onNativeWindowCreated() [all …]
|
D | tcuAndroidRenderActivity.hpp | 62 ANativeWindow* window; member 80 Message (MessageType type_, ANativeWindow* window) in Message() 86 DE_ASSERT(window); in Message() 87 payload.window = window; in Message() 138 virtual void onWindowCreated (ANativeWindow* window) = 0; 139 virtual void onWindowResized (ANativeWindow* window) = 0; 140 virtual void onWindowDestroyed (ANativeWindow* window) = 0; 175 virtual void onNativeWindowCreated (ANativeWindow* window); 176 virtual void onNativeWindowResized (ANativeWindow* window); 177 virtual void onNativeWindowRedrawNeeded (ANativeWindow* window); [all …]
|
D | tcuAndroidRenderActivity.cpp | 131 …cessMessage(): message = { %s, %p }\n", getMessageTypeName(message.type), message.payload.window)); in processMessage() 147 m_window = message.payload.window; in processMessage() 151 if (m_window != message.payload.window) in processMessage() 158 onWindowCreated(message.payload.window); in processMessage() 161 onWindowResized(message.payload.window); in processMessage() 168 if (m_window != message.payload.window) in processMessage() 175 onWindowDestroyed(message.payload.window); in processMessage() 328 void RenderActivity::onNativeWindowCreated (ANativeWindow* window) in onNativeWindowCreated() argument 331 m_thread->enqueue(Message(MESSAGE_WINDOW_CREATED, window)); in onNativeWindowCreated() 334 void RenderActivity::onNativeWindowResized (ANativeWindow* window) in onNativeWindowResized() argument [all …]
|
D | tcuAndroidTestActivity.cpp | 61 void TestThread::onWindowCreated (ANativeWindow* window) in onWindowCreated() argument 63 m_platform.getWindowRegistry().addWindow(window); in onWindowCreated() 66 void TestThread::onWindowDestroyed (ANativeWindow* window) in onWindowDestroyed() argument 68 m_platform.getWindowRegistry().destroyWindow(window); in onWindowDestroyed() 71 void TestThread::onWindowResized (ANativeWindow* window) in onWindowResized() argument 73 DE_UNREF(window); in onWindowResized()
|
/external/libvncserver/webclients/novnc/include/web-socket-js/ |
D | web_socket.js | 8 if (window.WebSocket) return; 10 var console = window.console; 163 if (document.createEvent && window.Event) { 173 if (document.createEvent && window.MessageEvent && !window.opera) { 175 event.initMessageEvent("message", false, false, data, null, null, window, null); 214 window.WEB_SOCKET_SWF_LOCATION = WebSocket.__swfLocation; 216 if (!window.WEB_SOCKET_SWF_LOCATION) { 268 WebSocket.__flash.setDebug(!!window.WEB_SOCKET_DEBUG); 319 if (!window.navigator || !window.navigator.mimeTypes) { 322 var mimeType = window.navigator.mimeTypes["application/x-shockwave-flash"]; [all …]
|
/external/aac/libAACdec/src/ |
D | stereo.cpp | 158 int window, group, scaleFactorBandsTransmitted; in CJointStereo_ApplyMS() local 162 for (window = 0, group = 0; group < windowGroups; group++) in CJointStereo_ApplyMS() 166 for (int groupwin=0; groupwin<pWindowGroupLength[group]; groupwin++, window++) in CJointStereo_ApplyMS() 170 SHORT *leftScale = &pAacDecoderChannelInfo[L]->pDynData->aSfbScale[window*16]; in CJointStereo_ApplyMS() 171 SHORT *rightScale = &pAacDecoderChannelInfo[R]->pDynData->aSfbScale[window*16]; in CJointStereo_ApplyMS() 173 …leftSpectrum = SPEC(pAacDecoderChannelInfo[L]->pSpectralCoefficient, window, pAacDecoderChannelInf… in CJointStereo_ApplyMS() 174 …rightSpectrum = SPEC(pAacDecoderChannelInfo[R]->pSpectralCoefficient, window, pAacDecoderChannelIn… in CJointStereo_ApplyMS() 232 for (int window=0,group=0; group<windowGroups; group++) in CJointStereo_ApplyIS() local 241 for (int groupwin=0; groupwin<pWindowGroupLength[group]; groupwin++, window++) in CJointStereo_ApplyIS() 244 SHORT *leftScale = &pAacDecoderChannelInfo[L]->pDynData->aSfbScale[window*16]; in CJointStereo_ApplyIS() [all …]
|
D | aacdec_tns.cpp | 135 UCHAR window; in CTns_Read() local 144 for (window = 0; window < wins_per_frame; window++) in CTns_Read() 146 pTnsData->NumberOfFilters[window] = n_filt = (UCHAR) FDKreadBits(bs, isLongFlag ? 2 : 1); in CTns_Read() 148 if (pTnsData->NumberOfFilters[window] > TNS_MAXIMUM_FILTERS){ in CTns_Read() 149 pTnsData->NumberOfFilters[window] = n_filt = TNS_MAXIMUM_FILTERS; in CTns_Read() 163 CFilter *filter = &pTnsData->Filter[window][index]; in CTns_Read() 341 int window,index,start,stop,size; in CTns_Apply() local 348 for (window=0; window < GetWindowsPerFrame(pIcsInfo); window++) in CTns_Apply() 350 FIXP_DBL *pSpectrum = SPEC(pSpectralCoefficient, window, granuleLength); in CTns_Apply() 352 for (index=0; index < pTnsData->NumberOfFilters[window]; index++) in CTns_Apply() [all …]
|
/external/linux-tools-perf/src/tools/perf/ui/gtk/ |
D | annotate.c | 88 static int perf_gtk__annotate_symbol(GtkWidget *window, struct symbol *sym, in perf_gtk__annotate_symbol() argument 147 gtk_container_add(GTK_CONTAINER(window), view); in perf_gtk__annotate_symbol() 161 GtkWidget *window; in symbol__gtk_annotate() local 175 window = pgctx->main_window; in symbol__gtk_annotate() 188 window = gtk_window_new(GTK_WINDOW_TOPLEVEL); in symbol__gtk_annotate() 189 gtk_window_set_title(GTK_WINDOW(window), "perf annotate"); in symbol__gtk_annotate() 191 g_signal_connect(window, "delete_event", gtk_main_quit, NULL); in symbol__gtk_annotate() 193 pgctx = perf_gtk__activate_context(window); in symbol__gtk_annotate() 212 gtk_container_add(GTK_CONTAINER(window), vbox); in symbol__gtk_annotate() 231 GtkWidget *window; in perf_gtk__show_annotations() local [all …]
|
/external/libvncserver/webclients/novnc/include/ |
D | util.js | 77 if (typeof window.console === "undefined") { 78 if (typeof window.opera !== "undefined") { 79 window.console = { 80 'log' : window.opera.postError, 81 'warn' : window.opera.postError, 82 'error': window.opera.postError }; 84 window.console = { 210 evt = (e ? e : window.event); 264 Util.Features = {xpath: !!(document.evaluate), air: !!(window.runtime), query: !!(document.querySel… 270 'presto': (function() { return (!window.opera) ? false : true; }()), [all …]
|
/external/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/ |
D | CustomElements.min.js | 11 …window.WeakMap=o}(),window.CustomElements=window.CustomElements||{flags:{}},function(e){var t=e.fl…
|
D | CustomElements.js | 43 window.WeakMap = WeakMap; 47 window.CustomElements = window.CustomElements || { 65 …scope.useNative = !flags.register && scope.hasNative && !window.ShadowDOMPolyfill && (!window.HTML… 69 var IMPORT_LINK_TYPE = window.HTMLImports ? HTMLImports.IMPORT_LINK_TYPE : "none"; 154 …var hasPolyfillMutations = !window.MutationObserver || window.MutationObserver === window.JsMutati… 589 if (!window.wrap) { 590 if (window.ShadowDOMPolyfill) { 591 window.wrap = ShadowDOMPolyfill.wrapIfNeeded; 592 window.unwrap = ShadowDOMPolyfill.unwrapIfNeeded; 594 window.wrap = window.unwrap = function(node) { [all …]
|
D | webcomponents.min.js | 11 window.WebComponents=window.WebComponents||{},function(e){var t=e.flags||{},n="webcomponents.js",r=… 12 …window.ShadowDOMPolyfill),function(e){"use strict";function t(e){for(;e&&e.nodeType!==Node.ELEMENT… 13 …window.Document,t,document.implementation.createHTMLDocument("")),window.HTMLDocument&&S(window.HT… 14 …window.HTMLImports&&(HTMLImports.__importsParsingHook=function(e){a(wrap(e["import"]))}),CustomEle…
|
D | webcomponents.js | 11 window.WebComponents = window.WebComponents || {}; 46 window.CustomElements = window.CustomElements || { 49 window.CustomElements.flags.register = flags.register; 87 window.WeakMap = WeakMap; 90 window.ShadowDOMPolyfill = {}; 157 getOwnPropertyNames(window); 362 })(window.ShadowDOMPolyfill); 518 })(window.ShadowDOMPolyfill); 521 var OriginalMutationObserver = window.MutationObserver; 545 timerFunc = window.setTimeout; [all …]
|
D | ShadowDOM.js | 43 window.WeakMap = WeakMap; 47 window.ShadowDOMPolyfill = {}; 115 getOwnPropertyNames(window); 320 })(window.ShadowDOMPolyfill); 477 })(window.ShadowDOMPolyfill); 481 var OriginalMutationObserver = window.MutationObserver; 505 timerFunc = window.setTimeout; 514 })(window.ShadowDOMPolyfill); 729 })(window.ShadowDOMPolyfill); 775 })(window.ShadowDOMPolyfill); [all …]
|
D | ShadowDOM.min.js | 11 …window.WeakMap=n}(),window.ShadowDOMPolyfill={},function(e){"use strict";function t(){if("undefine… 12 …window.ShadowDOMPolyfill),function(e){"use strict";function t(e){r.call(this,e)}var n=e.ChildNodeI… 13 …window.ShadowDOMPolyfill),function(e){"use strict";function t(e){n.call(this,e)}var n=e.wrappers.E…
|
/external/mesa3d/src/egl/drivers/dri2/ |
D | platform_android.c | 82 if (dri2_surf->window->dequeueBuffer(dri2_surf->window, &dri2_surf->buffer)) in droid_window_dequeue_buffer() 86 dri2_surf->window->lockBuffer(dri2_surf->window, dri2_surf->buffer); in droid_window_dequeue_buffer() 94 dri2_surf->window->queueBuffer(dri2_surf->window, dri2_surf->buffer); in droid_window_enqueue_buffer() 146 _EGLConfig *conf, EGLNativeWindowType window, in droid_create_surface() argument 164 if (!window || window->common.magic != ANDROID_NATIVE_WINDOW_MAGIC) { in droid_create_surface() 168 if (window->query(window, NATIVE_WINDOW_FORMAT, &format)) { in droid_create_surface() 178 window->query(window, NATIVE_WINDOW_WIDTH, &dri2_surf->base.Width); in droid_create_surface() 179 window->query(window, NATIVE_WINDOW_HEIGHT, &dri2_surf->base.Height); in droid_create_surface() 191 if (window) { in droid_create_surface() 192 window->common.incRef(&window->common); in droid_create_surface() [all …]
|
/external/skia/experimental/iOSSampleApp/iPhone/ |
D | AppDelegate_iPhone.mm | 4 @synthesize window, fRoot; 7 [window addSubview:fRoot.view]; 8 [window makeKeyAndVisible]; 10 self.window.rootViewController = fRoot; 16 [window release];
|
/external/skia/experimental/iOSSampleApp/iPad/ |
D | AppDelegate_iPad.mm | 5 @synthesize window, splitViewController; 8 [window addSubview:[splitViewController view]]; 9 [window makeKeyAndVisible]; 11 self.window.rootViewController = splitViewController; 17 [window release];
|
/external/deqp/framework/platform/ios/ |
D | tcuIOSAppDelegate.m | 30 @synthesize window = _window; 37 // Construct window. 38 self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 39 if (!self.window) 45 self.window.backgroundColor = [UIColor whiteColor]; 50 [self.window setRootViewController:self.viewController]; 52 [self.window makeKeyAndVisible]; 53 [self.window layoutSubviews];
|
/external/libopus/celt/ |
D | entenc.c | 194 ec_window window; in ec_enc_bits() local 196 window=_this->end_window; in ec_enc_bits() 201 _this->error|=ec_write_byte_at_end(_this,(unsigned)window&EC_SYM_MAX); in ec_enc_bits() 202 window>>=EC_SYM_BITS; in ec_enc_bits() 207 window|=(ec_window)_fl<<used; in ec_enc_bits() 209 _this->end_window=window; in ec_enc_bits() 245 ec_window window; in ec_enc_done() local 268 window=_this->end_window; in ec_enc_done() 271 _this->error|=ec_write_byte_at_end(_this,(unsigned)window&EC_SYM_MAX); in ec_enc_done() 272 window>>=EC_SYM_BITS; in ec_enc_done() [all …]
|
/external/clang/test/Analysis/ |
D | NSWindow.m | 48 NSWindow *window = [[NSWindow alloc] 54 [window orderFrontRegardless]; // no-warning 58 NSWindow *window = [[NSWindow alloc] 65 [window orderFrontRegardless]; // no-warning 70 NSWindow *window = [[NSWindow alloc] // no-warning 77 [window orderFrontRegardless]; 79 [window retain]; 85 NSWindow *window = [NSWindow alloc]; // expected-warning{{never read}}
|
/external/doclava/res/assets/templates/assets/ |
D | doclava-developer-docs.js | 17 var current = window.onload; 18 if (typeof window.onload != 'function') { 19 window.onload = newfun; 21 window.onload = function() { 40 window.onresize = resizeAll; 44 window.onresize = resizeHeight; 77 var windowWidth = $(window).width() + "px"; 91 var windowHeight = ($(window).height() - HEADER_HEIGHT); 234 var windowHeight = ($(window).height() - HEADER_HEIGHT); 252 var windowHeight = ($(window).height() - HEADER_HEIGHT); [all …]
|