/external/mesa3d/src/gallium/drivers/iris/ |
D | iris_fine_fence.c | 37 struct iris_fine_fence *fine) in iris_fine_fence_destroy() argument 39 iris_syncobj_reference(screen, &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, &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 …]
|
D | iris_fence.c | 169 struct iris_fine_fence *fine[IRIS_BATCH_COUNT]; member 178 for (unsigned i = 0; i < ARRAY_SIZE(fence->fine); i++) in iris_fence_destroy() 179 iris_fine_fence_reference(screen, &fence->fine[i], NULL); in iris_fence_destroy() 267 struct iris_fine_fence *fine = in iris_fence_flush() local 269 iris_fine_fence_reference(screen, &fence->fine[b], fine); in iris_fence_flush() 270 iris_fine_fence_reference(screen, &fine, NULL); in iris_fence_flush() 279 iris_fine_fence_reference(screen, &fence->fine[b], batch->last_fence); in iris_fence_flush() 310 for (unsigned i = 0; i < ARRAY_SIZE(fence->fine); i++) { in iris_fence_await() 311 struct iris_fine_fence *fine = fence->fine[i]; in iris_fence_await() local 313 if (iris_fine_fence_signaled(fine)) in iris_fence_await() [all …]
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_fence.c | 52 struct si_fine_fence fine; member 192 si_resource_reference(&(*sdst)->fine.buf, NULL); in si_fence_reference() 223 static bool si_fine_fence_signaled(struct radeon_winsys *rws, const struct si_fine_fence *fine) in si_fine_fence_signaled() argument 226 rws->buffer_map(fine->buf->buf, NULL, PIPE_MAP_READ | PIPE_MAP_UNSYNCHRONIZED); in si_fine_fence_signaled() 230 uint32_t *fence = (uint32_t *)(map + fine->offset); in si_fine_fence_signaled() 234 static void si_fine_fence_set(struct si_context *ctx, struct si_fine_fence *fine, unsigned flags) in si_fine_fence_set() argument 241 u_upload_alloc(ctx->cached_gtt_allocator, 0, 4, 4, &fine->offset, in si_fine_fence_set() 242 (struct pipe_resource **)&fine->buf, (void **)&fence_ptr); in si_fine_fence_set() 243 if (!fine->buf) in si_fine_fence_set() 251 si_cp_write_data(ctx, fine->buf, fine->offset, 4, V_370_MEM, V_370_PFP, &value); in si_fine_fence_set() [all …]
|
/external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/ |
D | JDK14LoggerAdapter.java | 160 * Is this logger instance enabled for the FINE level? 162 * @return True if this Logger is enabled for level FINE, false otherwise. 165 return logger.isLoggable(Level.FINE); in isDebugEnabled() 169 * Log a message object at level FINE. 175 if (logger.isLoggable(Level.FINE)) { in debug() 176 log(SELF, Level.FINE, msg, null); in debug() 181 * Log a message at level FINE according to the specified format and argument. 185 * for level FINE. 194 if (logger.isLoggable(Level.FINE)) { in debug() 196 log(SELF, Level.FINE, ft.getMessage(), ft.getThrowable()); in debug() [all …]
|
/external/curl/tests/data/ |
D | test1097 | 15 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
|
D | test257 | 26 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
|
D | test535 | 22 HTTP/1.1 200 Fine 28 fine content 32 fine content
|
D | test89 | 31 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
|
D | test2023 | 25 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)
|
/external/tensorflow/tensorflow/python/keras/datasets/ |
D | cifar100.py | 32 def load_data(label_mode='fine'): 36 10,000 test images, labeled over 100 fine-grained classes that are 41 label_mode: one of "fine", "coarse". If it is "fine" the category labels 42 are the fine-grained labels, if it is "coarse" the output labels are the 59 if label_mode not in ['fine', 'coarse']: 60 raise ValueError('`label_mode` must be one of `"fine"`, `"coarse"`.')
|
/external/llvm-project/libcxx/test/libcxx/iterators/ |
D | advance.debug1.pass.cpp | 29 std::advance(bidi, 1); // should work fine in main() 30 std::advance(bidi, 0); // should work fine in main() 31 std::advance(bidi, -1); // should work fine in main() 34 std::advance(it, 1); // should work fine in main() 35 std::advance(it, 0); // should work fine in main()
|
D | prev.debug1.pass.cpp | 29 std::prev(bidi, -1); // should work fine in main() 30 std::prev(bidi, 0); // should work fine in main() 31 std::prev(bidi, 1); // should work fine in main() 34 std::prev(it, -1); // should work fine in main() 35 std::prev(it, 0); // should work fine in main()
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | cppcoreguidelines-interfaces-global-init.cpp | 34 // "const int B::I;" is fine, it just ODR-defines B::I. See [9.4.3] Static 46 // This is fine, it's executed after dynamic initialization occurs. in f() 50 // Declaration then definition then usage is fine. 57 // Defined global variables are fine: 61 // Enums are fine. 76 // This is fine because the ODR-definitions are in the right order (C::J after
|
/external/curl/docs/libcurl/opts/ |
D | CURLOPT_ALTSVC_CTRL.3 | 31 #define CURLALTSVC_IMMEDIATELY (1<<0) 32 #define CURLALTSVC_READONLYFILE (1<<2) 33 #define CURLALTSVC_H1 (1<<3) 34 #define CURLALTSVC_H2 (1<<4) 35 #define CURLALTSVC_H3 (1<<5)
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
D | InternalSubchannel.java | 243 if (log.isLoggable(Level.FINE)) { in startNewTransport() 244 log.log(Level.FINE, "[{0}] Created {1} for {2}", in startNewTransport() 290 if (log.isLoggable(Level.FINE)) { in scheduleBackoff() 291 log.log(Level.FINE, "[{0}] Scheduling backoff for {1} ns", new Object[]{logId, delayNanos}); in scheduleBackoff() 404 if (log.isLoggable(Level.FINE)) { in shutdown() 405 log.log(Level.FINE, "[{0}] Terminated in shutdown()", logId); in shutdown() 423 // addressGroupsCopy being a little stale is fine, just avoid calling toString with the lock in toString() 547 if (log.isLoggable(Level.FINE)) { in transportReady() 548 log.log(Level.FINE, "[{0}] {1} for {2} is ready", in transportReady() 581 if (log.isLoggable(Level.FINE)) { in transportShutdown() [all …]
|
/external/llvm-project/clang/test/Sema/ |
D | builtin-align.c | 25 (void)ALIGN_BUILTIN((int)e, 2); // but with a cast it is fine in test_parameter_types() 26 (void)ALIGN_BUILTIN((int)b, 2); // but with a cast it is fine in test_parameter_types() 34 (void)ALIGN_BUILTIN(ptr, (int)e); // but with a cast enums are fine in test_parameter_types() 35 (void)ALIGN_BUILTIN(ptr, (int)b); // but with a cast booleans are fine in test_parameter_types() 92 (void)ALIGN_BUILTIN(c, 128); // this is fine in test_invalid_alignment_values() 94 (void)ALIGN_BUILTIN(x, 1ULL << 31); // this is also fine in test_invalid_alignment_values() 95 (void)ALIGN_BUILTIN(x, 1LL << 31); // this is also fine in test_invalid_alignment_values()
|
/external/sl4a/ScriptingLayerForAndroid/res/drawable/ |
D | atari_small_notice.txt | 1 COMMENT Copyright (c) 1999, Thomas A. Fine 8 COMMENT http://hea-www.harvard.edu/~fine/ 11 COMMENT written by Thomas A. Fine
|
/external/llvm-project/llvm/test/CodeGen/AArch64/ |
D | regcoal-physreg.mir | 21 ; It is fine to coalesce copies from reserved physregs 27 ; It is not fine to coalesce copies from reserved physregs when they are 35 ; Is is fine to coalesce copies from constant physregs even when they are 43 ; Is is fine to coalesce copies from constant physregs even when they are 64 ; It is not fine to coalesce copies from reserved physregs when they are
|
/external/llvm-project/llvm/test/MC/Disassembler/AArch64/ |
D | ldp-postind.predictable.txt | 8 # Stores from duplicated registers should be fine. 12 # d5 != x5 so "ldp d5, d6, [x5], #24" is fine. 16 # xzr != sp so "stp xzr, xzr, [sp], #8" is fine.
|
D | ldp-preind.predictable.txt | 8 # Stores from duplicated registers should be fine. 12 # d5 != x5 so "ldp d5, d6, [x5, #24]!" is fine. 16 # xzr != sp so "stp xzr, xzr, [sp, #8]!" is fine.
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | ldp-postind.predictable.txt | 8 # Stores from duplicated registers should be fine. 12 # d5 != x5 so "ldp d5, d6, [x5], #24" is fine. 16 # xzr != sp so "stp xzr, xzr, [sp], #8" is fine.
|
D | ldp-preind.predictable.txt | 8 # Stores from duplicated registers should be fine. 12 # d5 != x5 so "ldp d5, d6, [x5, #24]!" is fine. 16 # xzr != sp so "stp xzr, xzr, [sp, #8]!" is fine.
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
D | LevelTest.java | 116 assertSame(Level.FINE, Level.parse("FINE")); in testParse_PredefinedConstStrings() 155 assertSame(Level.FINE, Level.parse("FINE")); in testParse_PredefinedNumber() 164 assertSame(Level.FINE, Level.parse("500")); in testParse_PredefinedNumber() 366 assertEquals("FINE", MyLevel.parse("499").getName()); in testSubclassNewLevel() 367 assertEquals("FINE", MyLevel.parse("500").getName()); in testSubclassNewLevel() 368 assertEquals(500, MyLevel.parse("FINE").intValue()); in testSubclassNewLevel() 391 public static final Level DUPLICATENAME = new MyLevel("FINE", 499);
|
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/ |
D | ares_getsock.3 | 46 #define ARES_GETSOCK_MAXNUM 16 /* ares_getsock() can return info about 48 #define ARES_GETSOCK_READABLE(bits,num) (bits & (1<< (num))) 49 #define ARES_GETSOCK_WRITABLE(bits,num) (bits & (1 << ((num) + \
|
/external/openssh/ |
D | platform-pledge.c | 30 * Drop any fine-grained privileges that are not needed for post-startup 48 * Drop any fine-grained privileges that are not needed for post-startup 60 * Drop any fine-grained privileges that are not needed for the post-startup
|