Home
last modified time | relevance | path

Searched refs:fine (Results 1 – 25 of 909) sorted by relevance

12345678910>>...37

/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_fine_fence.c41 struct crocus_fine_fence *fine) in crocus_fine_fence_destroy() argument
43 crocus_syncobj_reference(screen, &fine->syncobj, NULL); in crocus_fine_fence_destroy()
44 pipe_resource_reference(&fine->ref.res, NULL); in crocus_fine_fence_destroy()
45 free(fine); in crocus_fine_fence_destroy()
51 struct crocus_fine_fence *fine = calloc(1, sizeof(*fine)); in crocus_fine_fence_new() local
52 if (!fine) in crocus_fine_fence_new()
55 pipe_reference_init(&fine->reference, 1); in crocus_fine_fence_new()
57 fine->seqno = crocus_fine_fence_next(batch); in crocus_fine_fence_new()
59 crocus_syncobj_reference(batch->screen, &fine->syncobj, in crocus_fine_fence_new()
63 return fine; in crocus_fine_fence_new()
[all …]
Dcrocus_fence.c167 struct crocus_fine_fence *fine[CROCUS_BATCH_COUNT]; member
176 for (unsigned i = 0; i < ARRAY_SIZE(fence->fine); i++) in crocus_fence_destroy()
177 crocus_fine_fence_reference(screen, &fence->fine[i], NULL); in crocus_fence_destroy()
239 struct crocus_fine_fence *fine = in crocus_fence_flush() local
241 crocus_fine_fence_reference(screen, &fence->fine[b], fine); in crocus_fence_flush()
242 crocus_fine_fence_reference(screen, &fine, NULL); in crocus_fence_flush()
251 crocus_fine_fence_reference(screen, &fence->fine[b], in crocus_fence_flush()
269 for (unsigned i = 0; i < ARRAY_SIZE(fence->fine); i++) { in crocus_fence_await()
270 struct crocus_fine_fence *fine = fence->fine[i]; in crocus_fence_await() local
272 if (crocus_fine_fence_signaled(fine)) in crocus_fence_await()
[all …]
/third_party/mesa3d/src/gallium/drivers/iris/
Diris_fine_fence.c37 struct iris_fine_fence *fine) in iris_fine_fence_destroy() argument
39 iris_syncobj_reference(screen->bufmgr, &fine->syncobj, NULL); in iris_fine_fence_destroy()
40 pipe_resource_reference(&fine->ref.res, NULL); in iris_fine_fence_destroy()
41 free(fine); in iris_fine_fence_destroy()
47 struct iris_fine_fence *fine = calloc(1, sizeof(*fine)); in iris_fine_fence_new() local
48 if (!fine) in iris_fine_fence_new()
51 pipe_reference_init(&fine->reference, 1); in iris_fine_fence_new()
53 fine->seqno = iris_fine_fence_next(batch); in iris_fine_fence_new()
55 iris_syncobj_reference(batch->screen->bufmgr, &fine->syncobj, in iris_fine_fence_new()
58 pipe_resource_reference(&fine->ref.res, batch->fine_fences.ref.res); in iris_fine_fence_new()
[all …]
Diris_fence.c187 struct iris_fine_fence *fine[IRIS_BATCH_COUNT]; member
196 for (unsigned i = 0; i < ARRAY_SIZE(fence->fine); i++) in iris_fence_destroy()
197 iris_fine_fence_reference(screen, &fence->fine[i], NULL); in iris_fence_destroy()
290 struct iris_fine_fence *fine = in iris_fence_flush() local
292 iris_fine_fence_reference(screen, &fence->fine[b], fine); in iris_fence_flush()
293 iris_fine_fence_reference(screen, &fine, NULL); in iris_fence_flush()
302 iris_fine_fence_reference(screen, &fence->fine[b], batch->last_fence); in iris_fence_flush()
333 for (unsigned i = 0; i < ARRAY_SIZE(fence->fine); i++) { in iris_fence_await()
334 struct iris_fine_fence *fine = fence->fine[i]; in iris_fence_await() local
336 if (iris_fine_fence_signaled(fine)) in iris_fence_await()
[all …]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_fence.c51 struct si_fine_fence fine; member
194 si_resource_reference(&(*sdst)->fine.buf, NULL); in si_fence_reference()
225 static bool si_fine_fence_signaled(struct radeon_winsys *rws, const struct si_fine_fence *fine) in si_fine_fence_signaled() argument
228 rws->buffer_map(rws, fine->buf->buf, NULL, PIPE_MAP_READ | PIPE_MAP_UNSYNCHRONIZED); in si_fine_fence_signaled()
232 uint32_t *fence = (uint32_t *)(map + fine->offset); in si_fine_fence_signaled()
236 static void si_fine_fence_set(struct si_context *ctx, struct si_fine_fence *fine, unsigned flags) in si_fine_fence_set() argument
243 u_upload_alloc(ctx->cached_gtt_allocator, 0, 4, 4, &fine->offset, in si_fine_fence_set()
244 (struct pipe_resource **)&fine->buf, (void **)&fence_ptr); in si_fine_fence_set()
245 if (!fine->buf) in si_fine_fence_set()
253 si_cp_write_data(ctx, fine->buf, fine->offset, 4, V_370_MEM, V_370_PFP, &value); in si_fine_fence_set()
[all …]
/third_party/ffmpeg/libavfilter/
Dmedian_template.c58 htype *cfine = s->fine[jobnr]; in fn()
94 htype fine[BINS][BINS] = { { 0 } }; in fn() local
113 s->hmuladd(&fine[k][0], &cfine[BINS * width * k], 2 * radius + 1, BINS); in fn()
131 memset(&fine[k], 0, BINS * sizeof(htype)); in fn()
133 s->hadd(fine[k], &cfine[BINS * (width * k + luc[k])], BINS); in fn()
135 … s->hmuladd(&fine[k][0], &cfine[BINS * (width * k + width - 1)], j + radius + 1 - width, BINS); in fn()
140 … s->hsub(fine[k], &cfine[BINS * (width * k + FFMAX(luc[k] - 2 * radius - 1, 0))], BINS); in fn()
141 s->hadd(fine[k], &cfine[BINS * (width * k + FFMIN(luc[k], width - 1))], BINS); in fn()
147 segment = fine[k]; in fn()
Dvf_median.c155 s->fine = av_calloc(s->nb_threads, sizeof(*s->fine)); in config_input()
156 if (!s->coarse || !s->fine) in config_input()
160 s->fine[i] = av_malloc_array(s->fine_size, sizeof(**s->fine)); in config_input()
161 if (!s->coarse[i] || !s->fine[i]) in config_input()
244 for (int i = 0; i < s->nb_threads && s->coarse && s->fine; i++) { in uninit()
246 av_freep(&s->fine[i]); in uninit()
250 av_freep(&s->fine); in uninit()
/third_party/curl/tests/data/
Dtest109715 HTTP/1.1 200 We are fine and cool
19 This is all fine and dandy
24 HTTP/1.1 200 We are fine and cool
30 HTTP/1.1 200 We are fine and cool
33 HTTP/1.1 200 We are fine and cool
37 This is all fine and dandy
Dtest25726 HTTP/1.1 302 Followed here fine swsclose
35 HTTP/1.1 200 Followed here fine swsclose
50 HTTP/1.1 302 Followed here fine swsclose
55 HTTP/1.1 200 Followed here fine swsclose
Dtest131617 HTTP/1.1 200 Mighty fine indeed
25 HTTP/1.1 200 Mighty fine indeed
28 HTTP/1.1 200 Mighty fine indeed
Dtest8931 HTTP/1.1 301 Things are fine in server land swsclose
52 HTTP/1.1 200 Things are fine in server land swsclose
67 HTTP/1.1 301 Things are fine in server land swsclose
78 HTTP/1.1 200 Things are fine in server land swsclose
Dtest202325 HTTP/1.1 200 Things are fine in server land
57 HTTP/1.1 200 Things are fine in server land (2)
73 HTTP/1.1 200 Things are fine in server land
93 HTTP/1.1 200 Things are fine in server land (2)
Dtest53528 fine content
32 fine content
Dtest141917 HTTP/1.1 200 fine!
32 HTTP/1.1 200 fine!
Dtest202430 HTTP/1.1 200 Things are fine in server land
64 HTTP/1.1 200 Things are fine in server land (2)
81 HTTP/1.1 200 Things are fine in server land
103 HTTP/1.1 200 Things are fine in server land (2)
Dtest205613 HTTP/1.1 200 Things are fine in server land
22 HTTP/1.1 200 Things are fine in server land
/third_party/typescript/tests/baselines/reference/
DpropertyAccessStringIndexSignatureNoImplicitAny.types23 flags['this is fine'];
24 >flags['this is fine'] : boolean
26 >'this is fine' : "this is fine"
DpropertyAccessStringIndexSignature.types23 flags['this is fine'];
24 >flags['this is fine'] : boolean
26 >'this is fine' : "this is fine"
DcheckJsxUnionSFXContextualTypeInferredCorrectly.types78 …i: false, value: 's', onChange: val => console.log(val) // <- this works fine}) : JSX.Element
80 >{ multi: false, value: 's', onChange: val => console.log(val) // <- this works fine} : { …
90 onChange: val => console.log(val) // <- this works fine
/third_party/flutter/flutter/packages/fuchsia_remote_debug_protocol/lib/src/common/
Dlogging.dart10 /// Verbosity is increasing from one (none) to five (fine). The sixth level
34 /// Logs fine logs at the most.
36 /// A fine message is one that is not important for logging outside of
38 fine,
142 /// Logs a [LoggingLevel.fine] level `message`.
143 void fine(String message) {
144 if (globalLevel.index >= LoggingLevel.fine.index) {
145 loggingFunction(LogMessage(message, tag, LoggingLevel.fine));
/third_party/curl/scripts/
Dcopyright.pl119 my $fine = 0;
151 $fine = 1;
153 return $fine;
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/testutils/
DTestFontUtils.java155 logger.fine("magic number = " + Long.toHexString(magicNumber)); in buildAndCheckFont()
157 logger.fine("Number of glyphs = " + maxp.numGlyphs()); in buildAndCheckFont()
158 logger.fine("\n------ Tables by File Location"); in buildAndCheckFont()
186 logger.fine("\n------ CMap Tables"); in buildAndCheckFont()
189 logger.fine(cmt.toString()); in buildAndCheckFont()
195 logger.fine("\n----- Name Tables"); in buildAndCheckFont()
/third_party/flutter/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/testutils/
DTestFontUtils.java155 logger.fine("magic number = " + Long.toHexString(magicNumber)); in buildAndCheckFont()
157 logger.fine("Number of glyphs = " + maxp.numGlyphs()); in buildAndCheckFont()
158 logger.fine("\n------ Tables by File Location"); in buildAndCheckFont()
186 logger.fine("\n------ CMap Tables"); in buildAndCheckFont()
189 logger.fine(cmt.toString()); in buildAndCheckFont()
195 logger.fine("\n----- Name Tables"); in buildAndCheckFont()
/third_party/iptables/extensions/
Dlibxt_TCPMSS.man11 problem are that everything works fine from your Linux
17 Small mail works fine, but large emails hang.
19 ssh works fine, but scp hangs after initial handshaking.
/third_party/curl/packages/DOS/
DREADME1 Gisle Vanem made curl build fine on DOS (and MingW) with djgpp, OpenSSL and his
4 'make -f Makefile.dist djgpp' in the root curl dir should build it fine.

12345678910>>...37