Home
last modified time | relevance | path

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

1234

/device/generic/goldfish/camera/
DPreviewWindow.cpp48 status_t PreviewWindow::setPreviewWindow(struct preview_stream_ops* window, in setPreviewWindow() argument
51 ALOGV("%s: current: %p -> new: %p", __FUNCTION__, mPreviewWindow, window); in setPreviewWindow()
59 if (window != NULL) { in setPreviewWindow()
63 res = window->set_usage(window, GRALLOC_USAGE_SW_WRITE_OFTEN); in setPreviewWindow()
65 window = NULL; in setPreviewWindow()
71 mPreviewWindow = window; in setPreviewWindow()
DPreviewWindow.h63 status_t setPreviewWindow(struct preview_stream_ops* window,
/device/google/cuttlefish/guest/hals/camera/
DPreviewWindow.cpp45 status_t PreviewWindow::setPreviewWindow(struct preview_stream_ops* window, in setPreviewWindow() argument
47 ALOGV("%s: current: %p -> new: %p", __FUNCTION__, mPreviewWindow, window); in setPreviewWindow()
57 if (window != NULL) { in setPreviewWindow()
61 res = window->set_usage(window, GRALLOC_USAGE_SW_WRITE_OFTEN); in setPreviewWindow()
66 window = NULL; in setPreviewWindow()
72 mPreviewWindow = window; in setPreviewWindow()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Ddeflate.c185 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
190 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
287 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
297 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
339 zmemcpy(s->window, dictionary, length);
347 s->ins_h = s->window[0];
348 UPDATE_HASH(s, s->ins_h, s->window[1]);
881 TRY_FREE(strm, strm->state->window);
920 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
926 if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
[all …]
Dinflate.c183 state->window = Z_NULL;
333 if (state->window == Z_NULL) {
334 state->window = (unsigned char FAR *)
337 if (state->window == Z_NULL) return 1;
350 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
357 zmemcpy(state->window + state->write, strm->next_out - copy, dist);
360 zmemcpy(state->window, strm->next_out - copy, copy);
1053 from = state->window + (state->wsize - copy);
1056 from = state->window + (state->write - copy);
1162 if (state->window != Z_NULL) ZFREE(strm, state->window);
[all …]
Dinffast.c83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local
110 window = state->window;
194 from = window - OFF;
213 from = window - OFF;
Dinfback.c28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) in inflateBackInit_() argument
31 unsigned char FAR *window;
40 if (strm == Z_NULL || window == Z_NULL ||
57 state->window = window;
204 put = state->window; \
277 put = state->window;
593 if (out(out_desc, state->window, state->wsize - left))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Ddeflate.c182 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
187 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
305 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
368 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
1001 TRY_FREE(strm, strm->state->window);
1040 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1046 if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
1052 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
1153 register Bytef *scan = s->window + s->strstart; /* current string */
[all …]
Dinflate.c169 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
170 ZFREE(strm, state->window);
171 state->window = Z_NULL;
213 state->window = Z_NULL;
390 if (state->window == Z_NULL) {
391 state->window = (unsigned char FAR *)
394 if (state->window == Z_NULL) return 1;
406 zmemcpy(state->window, end - state->wsize, state->wsize);
413 zmemcpy(state->window + state->wnext, end - copy, dist);
416 zmemcpy(state->window, end - copy, copy);
[all …]
Dinffast.c83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local
110 window = state->window;
216 from = window - OFF;
235 from = window - OFF;
Dinfback.c28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) in inflateBackInit_() argument
31 unsigned char FAR *window;
40 if (strm == Z_NULL || window == Z_NULL ||
66 state->window = window;
213 put = state->window; \
286 put = state->window;
610 if (out(out_desc, state->window, state->wsize - left))
/device/linaro/bootloader/edk2/MdePkg/Library/BasePciExpressLib/
DBasePciExpressLib.uni2 // Instance of PCI Express Library using the 256 MB PCI Express MMIO window.
4 // PCI Express Library that uses the 256 MB PCI Express MMIO window to perform
19 … #language en-US "Instance of PCI Express Library using the 256 MB PCI Express MMIO window"
21 …anguage en-US "PCI Express Library that uses the 256 MB PCI Express MMIO window to perform PCI Con…
DBasePciExpressLib.inf2 # Instance of PCI Express Library using the 256 MB PCI Express MMIO window.
4 # PCI Express Library that uses the 256 MB PCI Express MMIO window to perform
/device/google/cuttlefish/host/frontend/gcastv2/webrtc/assets/js/
Dviewpane.js11 var viewportHeight = window.innerHeight;
12 var viewportWidth = window.innerWidth;
Dreceive.js343 if (window.PointerEvent) {
347 } else if (window.TouchEvent) {
351 } else if (window.MouseEvent) {
359 if (window.PointerEvent) {
363 } else if (window.TouchEvent) {
367 } else if (window.MouseEvent) {
/device/generic/opengl-transport/host/libs/virglrenderer/
DRenderControl.cpp90 static int dequeueBuffer_DEPRECATED(ANativeWindow* window, ANativeWindowBuffer** buffer) { in dequeueBuffer_DEPRECATED() argument
91 if (!window->oem[1]) in dequeueBuffer_DEPRECATED()
93 *buffer = reinterpret_cast<ANativeWindowBuffer*>(window->oem[1]); in dequeueBuffer_DEPRECATED()
94 window->oem[1] = 0; in dequeueBuffer_DEPRECATED()
108 static int query(const ANativeWindow* window, int what, int* value) { in query() argument
111 return static_cast<int>(window->oem[2]); in query()
113 return static_cast<int>(window->oem[3]); in query()
129 static int dequeueBuffer(ANativeWindow* window, ANativeWindowBuffer** buffer, int* fenceFd) { in dequeueBuffer() argument
131 return dequeueBuffer_DEPRECATED(window, buffer); in dequeueBuffer()
134 static int queueBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) { in queueBuffer() argument
[all …]
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
Dinflate.c184 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
185 ZFREE(strm, state->window);
186 state->window = Z_NULL;
229 state->window = Z_NULL;
407 if (state->window == Z_NULL) {
408 state->window = (unsigned char FAR *)
411 if (state->window == Z_NULL) return 1;
423 zmemcpy(state->window, end - state->wsize, state->wsize);
430 zmemcpy(state->window + state->wnext, end - copy, dist);
433 zmemcpy(state->window, end - copy, copy);
[all …]
Dinffast.c66 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local
93 window = state->window;
199 from = window;
218 from = window;
/device/linaro/bootloader/edk2/MdePkg/Library/DxeRuntimePciExpressLib/
DDxeRuntimePciExpressLib.uni2 // Instance of PCI Express Library using the 256 MB PCI Express MMIO window that
6 // PCI Express Library that uses the 256 MB PCI Express MMIO window to perform
25 … #language en-US "The PCI Express Library uses a 256 MB PCI Express MMIO window to perform PCI Con…
DDxeRuntimePciExpressLib.inf2 # Instance of PCI Express Library using the 256 MB PCI Express MMIO window that
5 # PCI Express Library that uses the 256 MB PCI Express MMIO window to perform
/device/generic/goldfish-opengl/system/renderControl_enc/
DREADME67 This function creates a 'window' surface on the host which can be then
69 The function returns a handle to the created window surface.
72 This function destoys a window surface.
76 be specified as a render target for a window surface through
77 rcSetWindowColorBuffer or to be displayed on the framebuffer window
91 This flushes the current window color buffer
104 displayed on the host framebuffer window. The function returns
108 Sets the swap interval for the host framebuffer window.
/device/linaro/bootloader/edk2/MdePkg/Library/BasePciLibPciExpress/
DBasePciLibPciExpress.uni4 // PCI Library that uses the 256 MB PCI Express MMIO window to perform PCI
21 … #language en-US "PCI Library that uses the 256 MB PCI Express MMIO window to perform PCI Con…
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/BaseCachingPciExpressLib/
DBaseCachingPciExpressLib.inf2 # Instance of PCI Express Library using the 256 MB PCI Express MMIO window.
4 # PCI Express Library that uses the 256 MB PCI Express MMIO window to perform
/device/linaro/bootloader/edk2/MdePkg/Library/SmmPciExpressLib/
DSmmPciExpressLib.inf2 # Instance of PCI Express Library using the 256 MB PCI Express MMIO window.
4 # PCI Express Library that uses the 256 MB PCI Express MMIO window to perform
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dfixdiv.py316 def __init__(self, fp, window=5, lineno=1): argument
318 self.window = 5
324 while len(self.lookahead) < self.window and not self.eoflookahead:
339 del self.buffer[-window:]

1234