Home
last modified time | relevance | path

Searched refs:window (Results 1 – 25 of 648) sorted by relevance

12345678910>>...26

/external/flac/libFLAC/
Dwindow.c46 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
71window[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
80window[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/
Dwindow.h54 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/
DtcuAndroidWindow.cpp35 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 …]
DtcuAndroidNativeActivity.cpp64 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 …]
DtcuAndroidRenderActivity.hpp62 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 …]
DtcuAndroidRenderActivity.cpp131 …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 …]
DtcuAndroidTestActivity.cpp61 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/
Dweb_socket.js8 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/
Dstereo.cpp158 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 …]
Daacdec_tns.cpp135 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/
Dannotate.c88 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/
Dutil.js77 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/
DCustomElements.min.js11window.WeakMap=o}(),window.CustomElements=window.CustomElements||{flags:{}},function(e){var t=e.fl…
DCustomElements.js43 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 …]
Dwebcomponents.min.js11 window.WebComponents=window.WebComponents||{},function(e){var t=e.flags||{},n="webcomponents.js",r=…
12window.ShadowDOMPolyfill),function(e){"use strict";function t(e){for(;e&&e.nodeType!==Node.ELEMENT…
13window.Document,t,document.implementation.createHTMLDocument("")),window.HTMLDocument&&S(window.HT…
14window.HTMLImports&&(HTMLImports.__importsParsingHook=function(e){a(wrap(e["import"]))}),CustomEle…
Dwebcomponents.js11 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 …]
DShadowDOM.js43 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 …]
DShadowDOM.min.js11window.WeakMap=n}(),window.ShadowDOMPolyfill={},function(e){"use strict";function t(){if("undefine…
12window.ShadowDOMPolyfill),function(e){"use strict";function t(e){r.call(this,e)}var n=e.ChildNodeI…
13window.ShadowDOMPolyfill),function(e){"use strict";function t(e){n.call(this,e)}var n=e.wrappers.E…
/external/mesa3d/src/egl/drivers/dri2/
Dplatform_android.c82 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/
DAppDelegate_iPhone.mm4 @synthesize window, fRoot;
7 [window addSubview:fRoot.view];
8 [window makeKeyAndVisible];
10 self.window.rootViewController = fRoot;
16 [window release];
/external/skia/experimental/iOSSampleApp/iPad/
DAppDelegate_iPad.mm5 @synthesize window, splitViewController;
8 [window addSubview:[splitViewController view]];
9 [window makeKeyAndVisible];
11 self.window.rootViewController = splitViewController;
17 [window release];
/external/deqp/framework/platform/ios/
DtcuIOSAppDelegate.m30 @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/
Dentenc.c194 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/
DNSWindow.m48 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/
Ddoclava-developer-docs.js17 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 …]

12345678910>>...26