Home
last modified time | relevance | path

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

12345678910>>...29

/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()
293 struct iris_fine_fence *fine = in iris_fence_flush() local
295 iris_fine_fence_reference(screen, &fence->fine[b], fine); in iris_fence_flush()
296 iris_fine_fence_reference(screen, &fine, NULL); in iris_fence_flush()
305 iris_fine_fence_reference(screen, &fence->fine[b], batch->last_fence); in iris_fence_flush()
336 for (unsigned i = 0; i < ARRAY_SIZE(fence->fine); i++) { in iris_fence_await()
337 struct iris_fine_fence *fine = fence->fine[i]; in iris_fence_await() local
339 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
210 si_resource_reference(&(*sdst)->fine.buf, NULL); in si_fence_reference()
241 static bool si_fine_fence_signaled(struct radeon_winsys *rws, const struct si_fine_fence *fine) in si_fine_fence_signaled() argument
244 rws->buffer_map(rws, fine->buf->buf, NULL, PIPE_MAP_READ | PIPE_MAP_UNSYNCHRONIZED); in si_fine_fence_signaled()
248 uint32_t *fence = (uint32_t *)(map + fine->offset); in si_fine_fence_signaled()
252 static void si_fine_fence_set(struct si_context *ctx, struct si_fine_fence *fine, unsigned flags) in si_fine_fence_set() argument
259 u_upload_alloc(ctx->cached_gtt_allocator, 0, 4, 4, &fine->offset, in si_fine_fence_set()
260 (struct pipe_resource **)&fine->buf, (void **)&fence_ptr); in si_fine_fence_set()
261 if (!fine->buf) in si_fine_fence_set()
269 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
Dtest8932 HTTP/1.1 301 Things are fine in server land swsclose
53 HTTP/1.1 200 Things are fine in server land swsclose
68 HTTP/1.1 301 Things are fine in server land swsclose
79 HTTP/1.1 200 Things are fine in server land swsclose
Dtest118415 HTTP/1.1 200 Mighty fine indeed
87 HTTP/1.1 200 Mighty fine indeed
99 HTTP/1.1 200 Mighty fine indeed
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)
Dtest9042 HTTP/1.1 301 Things are fine in server land swsclose
75 HTTP/1.1 200 Things are fine in server land swsclose
98 HTTP/1.1 301 Things are fine in server land swsclose
117 HTTP/1.1 200 Things are fine in server land swsclose
Dtest205613 HTTP/1.1 200 Things are fine in server land
22 HTTP/1.1 200 Things are fine in server land
Dtest8325 HTTP/1.1 200 Mighty fine indeed
29 HTTP/1.1 200 Mighty fine indeed
/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"
DspellingUncheckedJS.types35 "this is fine"
36 >"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/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/libabigail/tests/data/test-diff-suppr/
Dtest7-var-suppr-9.suppr2 # This one shouldn't catch anything, but it must be parsed fine.
6 # This one should be parsed fine too.

12345678910>>...29