Home
last modified time | relevance | path

Searched refs:flush (Results 1 - 25 of 1373) sorted by relevance

12345678910>>...55

/third_party/mesa3d/src/intel/vulkan/
H A Danv_utrace.c55 struct anv_utrace_flush_copy *flush = flush_data; in anv_utrace_delete_flush_data() local
57 intel_ds_flush_data_fini(&flush->ds); in anv_utrace_delete_flush_data()
59 if (flush->trace_bo) { in anv_utrace_delete_flush_data()
60 assert(flush->batch_bo); in anv_utrace_delete_flush_data()
61 anv_reloc_list_finish(&flush->relocs, &device->vk.alloc); in anv_utrace_delete_flush_data()
62 anv_device_release_bo(device, flush->batch_bo); in anv_utrace_delete_flush_data()
63 anv_device_release_bo(device, flush->trace_bo); in anv_utrace_delete_flush_data()
66 vk_sync_destroy(&device->vk, flush->sync); in anv_utrace_delete_flush_data()
68 vk_free(&device->vk.alloc, flush); in anv_utrace_delete_flush_data()
80 struct anv_utrace_flush_copy *flush in anv_device_utrace_emit_copy_ts_buffer() local
108 struct anv_utrace_flush_copy *flush = anv_device_utrace_flush_cmd_buffers() local
156 flush, anv_device_utrace_flush_cmd_buffers() local
244 struct anv_utrace_flush_copy *flush = flush_data; anv_utrace_read_ts() local
[all...]
/third_party/skia/tests/
H A DGrFinishedFlushTest.cpp50 dContext->flush(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
59 surface->flush(flushInfoFinishedProc); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
67 surface->flush(flushInfoFinishedProc); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
84 dContext->flush(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
90 image->flush(dContext, flushInfoFinishedProc); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
99 dContext->flush(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
105 dContext->flush(flushInfoFinishedProc); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
114 dContext->flush(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
119 dContext->flush(flushInfoFinishedProc); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
127 surface->flush(flushInfoFinishedPro in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
[all...]
H A DGrSubmittedFlushTest.cpp46 ctx->flush(flushInfo); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
53 // There should be no work so if we flush again the submittedProc should be called immediately in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
54 surface->flush(SkSurface::BackendSurfaceAccess::kNoAccess, flushInfo); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
60 ctx->flush(flushInfo); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
69 surface->flush(SkSurface::BackendSurfaceAccess::kNoAccess, flushInfo); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
72 surface->flush(SkSurface::BackendSurfaceAccess::kNoAccess, flushInfo); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
79 // Test an abandoned context to get a failed submit immediately when flush is called in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
82 surface->flush(SkSurface::BackendSurfaceAccess::kNoAccess, flushInfo); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
85 ctx->flush(flushInfo); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/third_party/python/Lib/test/
H A Dtest_zlib.py32 # x2 = co.flush()
149 # verify failure on calling decompressobj.flush with bad params
150 self.assertRaises(ValueError, zlib.decompressobj().flush, 0)
151 self.assertRaises(ValueError, zlib.decompressobj().flush, -1)
160 zlib.decompressobj().flush(sys.maxsize + 1)
276 x2 = co.flush()
277 self.assertRaises(zlib.error, co.flush) # second flush should not work
282 y2 = dco.flush()
304 x = co.compress(HAMLET_SCENE) + co.flush()
[all...]
/third_party/node/deps/zlib/
H A Ddeflate.h115 int last_flush; /* value of flush param for previous deflate call */
336 # define _tr_tally_lit(s, c, flush) \
341 flush = (s->sym_next == s->sym_end); \
343 # define _tr_tally_dist(s, distance, length, flush) \
351 flush = (s->sym_next == s->sym_end); \
354 # define _tr_tally_lit(s, c, flush) \
360 flush = (s->sym_next == s->sym_end); \
362 # define _tr_tally_dist(s, distance, length, flush) \
371 flush = (s->sym_next == s->sym_end); \
375 # define _tr_tally_lit(s, c, flush) flus
[all...]
/third_party/zlib/
H A Ddeflate.h115 int last_flush; /* value of flush param for previous deflate call */
333 # define _tr_tally_lit(s, c, flush) \
338 flush = (s->sym_next == s->sym_end); \
340 # define _tr_tally_dist(s, distance, length, flush) \
348 flush = (s->sym_next == s->sym_end); \
351 # define _tr_tally_lit(s, c, flush) \
357 flush = (s->sym_next == s->sym_end); \
359 # define _tr_tally_dist(s, distance, length, flush) \
368 flush = (s->sym_next == s->sym_end); \
372 # define _tr_tally_lit(s, c, flush) flus
[all...]
/third_party/python/Lib/unittest/
H A Drunner.py58 self.stream.flush()
71 self.stream.flush()
86 self.stream.flush()
95 self.stream.flush()
103 self.stream.flush()
111 self.stream.flush()
119 self.stream.flush()
125 self.stream.flush()
128 self.stream.flush()
134 self.stream.flush()
[all...]
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetDecoderICU.java234 * the flush method.
270 abstract CoderResult decodeLoop(ByteBuffer in, CharBuffer out, IntBuffer offsets, boolean flush); in decodeLoop() argument
277 * @param flush true if, and only if, the invoker can provide no
282 final CoderResult decode(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) { in decode() argument
311 /* flush the target overflow buffer */ in decode()
338 if (!flush && !source.hasRemaining() && toULength == 0 && preToULength >= 0) { in decode()
345 * !flush && t==targetLimit in decode()
351 return toUnicodeWithCallback(source, target, offsets, flush); in decode()
396 final CoderResult toUnicodeWithCallback(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush){ in toUnicodeWithCallback() argument
426 realFlush=flush; in toUnicodeWithCallback()
[all...]
H A DCharsetASCII.java41 boolean flush) { in decodeLoop()
191 boolean flush) { in encodeLoop()
211 cr = encodeTrail(source, (char) fromUChar32, flush); in encodeLoop()
238 cr = encodeLoopCoreOptimized(source, target, sourceArray, targetArray, sourceIndex, offset, limit, flush); in encodeLoop()
253 cr = encodeLoopCoreUnoptimized(source, target, flush); in encodeLoop()
273 boolean flush) { in encodeLoopCoreOptimized()
291 return encodeMalformedOrUnmappable(source, ch, flush); in encodeLoopCoreOptimized()
296 protected CoderResult encodeLoopCoreUnoptimized(CharBuffer source, ByteBuffer target, boolean flush) { in encodeLoopCoreUnoptimized() argument
317 return encodeMalformedOrUnmappable(source, ch, flush); in encodeLoopCoreUnoptimized()
324 protected final CoderResult encodeMalformedOrUnmappable(CharBuffer source, int ch, boolean flush) { in encodeMalformedOrUnmappable() argument
40 decodeLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) decodeLoop() argument
190 encodeLoop(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) encodeLoop() argument
271 encodeLoopCoreOptimized(CharBuffer source, ByteBuffer target, char[] sourceArray, byte[] targetArray, int oldSource, int offset, int limit, boolean flush) encodeLoopCoreOptimized() argument
334 encodeTrail(CharBuffer source, char lead, boolean flush) encodeTrail() argument
[all...]
H A DCharsetEncoderICU.java288 IntBuffer offsets, boolean flush); in encodeLoop()
295 * @param flush true if, and only if, the invoker can provide no
300 IntBuffer offsets, boolean flush) { in encode()
320 /* flush the target overflow buffer */ in encode()
352 if (!flush && source.remaining() == 0 && preFromULength >= 0) { in encode()
359 * !flush && t==targetLimit in encode()
365 return fromUnicodeWithCallback(source, target, offsets, flush); in encode()
391 ByteBuffer target, IntBuffer offsets, boolean flush) { in fromUnicodeWithCallback()
419 realFlush = flush; in fromUnicodeWithCallback()
426 flush in fromUnicodeWithCallback()
287 encodeLoop(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) encodeLoop() argument
299 encode(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) encode() argument
390 fromUnicodeWithCallback(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) fromUnicodeWithCallback() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmpegaudiodec_float.c87 .flush = flush,
105 .flush = flush,
123 .flush = flush,
141 .flush = flush,
160 .flush = flush_mp3on4,
H A Dmpegaudiodec_fixed.c74 .flush = flush,
92 .flush = flush,
110 .flush = flush,
128 .flush = flush,
147 .flush = flush_mp3on4,
/third_party/zlib/examples/
H A Dfitblk.c75 int ret, flush; in partcompress() local
78 flush = Z_NO_FLUSH; in partcompress()
85 flush = Z_FINISH; in partcompress()
86 ret = deflate(def, flush); in partcompress()
88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH); in partcompress()
98 int ret, flush; in recompress() local
101 flush = Z_NO_FLUSH; in recompress()
116 flush = Z_FINISH; in recompress()
117 ret = deflate(def, flush); in recompress()
/third_party/node/deps/npm/node_modules/minipass-flush/
H A Dindex.js8 opt = { flush: opt }
12 // or extend this class and provide a 'flush' method in your subclass
13 if (typeof opt.flush !== 'function' && typeof this.flush !== 'function')
14 throw new TypeError('must provide flush function in options')
16 this[_flush] = opt.flush || this.flush
/third_party/node/test/parallel/
H A Dtest-zlib-flush-drain.js15 // Shim deflater.flush so we can count times executed
19 const flush = deflater.flush;
20 deflater.flush = function(kind, callback) {
22 flush.call(this, kind, callback);
34 deflater.flush(function(err) {
/third_party/vulkan-loader/scripts/gn/
H A Dgn.py18 print("Cloning Chromium depot_tools\n", flush=True)
24 print("Updating Repo Dependencies and GN Toolchain\n", flush=True)
28 print("Checking Header Dependencies\n", flush=True)
32 print("Generating Ninja Files\n", flush=True)
36 print("Running Ninja Build\n", flush=True)
/third_party/node/deps/v8/third_party/zlib/
H A Ddeflate.c82 block_done, /* block flush performed */
87 typedef block_state (*compress_func) OF((deflate_state *s, int flush));
93 local block_state deflate_stored OF((deflate_state *s, int flush));
94 local block_state deflate_fast OF((deflate_state *s, int flush));
96 local block_state deflate_slow OF((deflate_state *s, int flush));
98 local block_state deflate_rle OF((deflate_state *s, int flush));
99 local block_state deflate_huff OF((deflate_state *s, int flush));
815 int ZEXPORT deflate (strm, flush) in deflate()
817 int flush;
819 int old_flush; /* value of flush para
[all...]
H A Ddeflate.h111 int last_flush; /* value of flush param for previous deflate call */
321 # define _tr_tally_lit(s, c, flush) \
327 flush = (s->sym_next == s->sym_end); \
329 # define _tr_tally_dist(s, distance, length, flush) \
338 flush = (s->sym_next == s->sym_end); \
341 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
342 # define _tr_tally_dist(s, distance, length, flush) \
343 flush = _tr_tally(s, distance, length)
/third_party/skia/third_party/externals/zlib/
H A Ddeflate.c82 block_done, /* block flush performed */
87 typedef block_state (*compress_func) OF((deflate_state *s, int flush));
93 local block_state deflate_stored OF((deflate_state *s, int flush));
94 local block_state deflate_fast OF((deflate_state *s, int flush));
96 local block_state deflate_slow OF((deflate_state *s, int flush));
98 local block_state deflate_rle OF((deflate_state *s, int flush));
99 local block_state deflate_huff OF((deflate_state *s, int flush));
809 int ZEXPORT deflate (strm, flush) in deflate()
811 int flush;
813 int old_flush; /* value of flush para
[all...]
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_dirty_surfaces.h57 util_dirty_surfaces_use_for_sampling(struct pipe_context *pipe, struct util_dirty_surfaces *dss, util_dirty_surface_flush_t flush) in util_dirty_surfaces_use_for_sampling() argument
65 flush(pipe, &ds->base); in util_dirty_surfaces_use_for_sampling()
70 util_dirty_surfaces_use_levels_for_sampling(struct pipe_context *pipe, struct util_dirty_surfaces *dss, unsigned first, unsigned last, util_dirty_surface_flush_t flush) in util_dirty_surfaces_use_levels_for_sampling() argument
81 flush(pipe, &ds->base); in util_dirty_surfaces_use_levels_for_sampling()
86 util_dirty_surfaces_use_for_sampling_with(struct pipe_context *pipe, struct util_dirty_surfaces *dss, struct pipe_sampler_view *psv, struct pipe_sampler_state *pss, util_dirty_surface_flush_t flush) in util_dirty_surfaces_use_for_sampling_with() argument
90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush); in util_dirty_surfaces_use_for_sampling_with()
/third_party/rust/crates/cxx/gen/cmd/src/gen/
H A Dout.rs69 self.flush(); in content()
90 fn flush(&mut self) { in flush() functions
91 self.include.content.flush(); in flush()
92 self.builtin.content.flush(); in flush()
93 self.content.get_mut().flush(); in flush()
165 fn flush(&mut self) { in flush() functions
/third_party/rust/crates/cxx/gen/src/
H A Dout.rs69 self.flush(); in content()
90 fn flush(&mut self) { in flush() functions
91 self.include.content.flush(); in flush()
92 self.builtin.content.flush(); in flush()
93 self.content.get_mut().flush(); in flush()
165 fn flush(&mut self) { in flush() functions
/third_party/rust/crates/cxx/gen/lib/src/gen/
H A Dout.rs69 self.flush(); in content()
90 fn flush(&mut self) { in flush() functions
91 self.include.content.flush(); in flush()
92 self.builtin.content.flush(); in flush()
93 self.content.get_mut().flush(); in flush()
165 fn flush(&mut self) { in flush() functions
/third_party/rust/crates/cxx/gen/build/src/gen/
H A Dout.rs69 self.flush(); in content()
90 fn flush(&mut self) { in flush() functions
91 self.include.content.flush(); in flush()
92 self.builtin.content.flush(); in flush()
93 self.content.get_mut().flush(); in flush()
165 fn flush(&mut self) { in flush() functions
/third_party/libwebsockets/win32port/zlib/
H A Ddeflate.h105 int last_flush; /* value of flush param for previous deflate call */
314 # define _tr_tally_lit(s, c, flush) \
320 flush = (s->sym_next == s->sym_end); \
322 # define _tr_tally_dist(s, distance, length, flush) \
331 flush = (s->sym_next == s->sym_end); \
334 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
335 # define _tr_tally_dist(s, distance, length, flush) \
336 flush = _tr_tally(s, distance, length)

Completed in 14 milliseconds

12345678910>>...55