| /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/dagger2/javatests/dagger/hilt/android/ |
| D | ModuleTest.java | 58 private TestModule1() {} // This is fine because Dagger doesn't need an instance. in TestModule1() 70 TestModule2(String str) {} // This is fine because Dagger doesn't need an instance. in TestModule2() 87 TestModule3(String str) {} // This is fine because Dagger can use the other constructor in TestModule3() 100 private TestModule4() {} // This is fine because Dagger doesn't need an instance. in TestModule4() 110 TestModule5(String str) {} // This is fine because Dagger doesn't need an instance. in TestModule5() 119 private TestModule6() {} // This is fine because Dagger doesn't need an instance. in TestModule6() 126 TestModule7(String str) {} // This is fine because Dagger doesn't need an instance. in TestModule7() 134 private TestModule8() {} // This is fine because Dagger doesn't need an instance. in TestModule8() 142 TestModule9(String str) {} // This is fine because Dagger doesn't need an instance. in TestModule9()
|
| /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 | test89 | 32 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
|
| D | test535 | 22 HTTP/1.1 200 Fine 28 fine content 32 fine content
|
| 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)
|
| D | test1316 | 17 HTTP/1.1 200 Mighty fine indeed 25 HTTP/1.1 200 Mighty fine indeed 28 HTTP/1.1 200 Mighty fine indeed
|
| /external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/iterators/ |
| D | assert.prev.pass.cpp | 27 std::prev(bidi, -1); // should work fine in main() 28 std::prev(bidi, 0); // should work fine in main() 29 std::prev(bidi, 1); // should work fine in main() 32 std::prev(it, -1); // should work fine in main() 33 std::prev(it, 0); // should work fine in main()
|
| D | assert.advance.pass.cpp | 27 std::advance(bidi, 1); // should work fine in main() 28 std::advance(bidi, 0); // should work fine in main() 29 std::advance(bidi, -1); // should work fine in main() 32 std::advance(it, 1); // should work fine in main() 33 std::advance(it, 0); // should work fine in main()
|
| /external/arm-trusted-firmware/include/drivers/nxp/ddr/ |
| D | dimm.h | 95 signed char fine_tccdl_min; /* 117 Fine offset for tCCD_Lmin */ 96 signed char fine_trrdl_min; /* 118 Fine offset for tRRD_Lmin */ 97 signed char fine_trrds_min; /* 119 Fine offset for tRRD_Smin */ 98 signed char fine_trc_min; /* 120 Fine offset for tRCmin */ 99 signed char fine_trp_min; /* 121 Fine offset for tRPmin */ 100 signed char fine_trcd_min; /* 122 Fine offset for tRCDmin */ 101 signed char fine_taa_min; /* 123 Fine offset for tAAmin */ 102 signed char fine_tck_max; /* 124 Fine offset for tCKAVGmax */ 103 signed char fine_tck_min; /* 125 Fine offset for tCKAVGmin */ 287 int ftb_10th_ps; /* fine timebase, in 1/10 ps */
|
| /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/curl/docs/libcurl/opts/ |
| D | CURLOPT_ALTSVC_CTRL.3 | 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/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/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/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-commons-lang/src/test/java/org/apache/commons/lang3/text/ |
| D | WordUtilsTest.java | 212 assertEquals("I aM.Fine", WordUtils.capitalize("i aM.fine", chars) ); in testCapitalizeWithDelimiters_String() 213 assertEquals("I Am.fine", WordUtils.capitalize("i am.fine", null) ); in testCapitalizeWithDelimiters_String() 244 assertEquals("I am.Fine", WordUtils.capitalizeFully("i aM.fine", chars) ); in testCapitalizeFullyWithDelimiters_String() 245 assertEquals("I Am.fine", WordUtils.capitalizeFully("i am.fine", null) ); in testCapitalizeFullyWithDelimiters_String() 296 assertEquals("i AM.fINE", WordUtils.uncapitalize("I AM.FINE", chars) ); in testUncapitalizeWithDelimiters_String() 297 assertEquals("i aM.FINE", WordUtils.uncapitalize("I AM.FINE", null) ); in testUncapitalizeWithDelimiters_String()
|
| /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/iptables/extensions/ |
| D | libxt_TCPMSS.man | 11 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.
|
| /external/drm_hwcomposer/.ci/ |
| D | Makefile | 24 drm/DrmFbImporter.h:FINE \ 27 drm/DrmUnique.h:FINE \ 36 utils/UniqueFd.h:FINE \ 37 utils/log.h:FINE \ 38 utils/properties.h:FINE \
|
| /external/apache-commons-lang/src/main/java/org/apache/commons/lang3/text/ |
| D | WordUtils.java | 361 * WordUtils.capitalize("i am FINE") = "I Am FINE" 391 * WordUtils.capitalize("i am fine", null) = "I Am Fine" 392 * WordUtils.capitalize("i aM.fine", {'.'}) = "I aM.Fine" 434 * WordUtils.capitalizeFully("i am FINE") = "I Am Fine" 462 * WordUtils.capitalizeFully("i aM.fine", {'.'}) = "I am.Fine" 488 * WordUtils.uncapitalize("I Am FINE") = "i am fINE" 515 * WordUtils.uncapitalize("I AM.FINE", {'.'}) = "i AM.fINE"
|