/external/virglrenderer/src/gallium/include/c11/ |
D | threads_posix.h | 135 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const xtime *xt) in cnd_timedwait() argument 142 assert(xt != NULL); in cnd_timedwait() 144 abs_time.tv_sec = xt->sec; in cnd_timedwait() 145 abs_time.tv_nsec = xt->nsec; in cnd_timedwait() 207 mtx_timedlock(mtx_t *mtx, const xtime *xt) in mtx_timedlock() argument 210 assert(xt != NULL); in mtx_timedlock() 216 ts.tv_sec = xt->sec; in mtx_timedlock() 217 ts.tv_nsec = xt->nsec; in mtx_timedlock() 224 expire += xt->sec; in mtx_timedlock() 314 thrd_sleep(const xtime *xt) in thrd_sleep() argument [all …]
|
D | threads_win32.h | 149 static DWORD impl_xtime2msec(const xtime *xt) in impl_xtime2msec() argument 151 return (DWORD)((xt->sec * 1000U) + (xt->nsec / 1000000L)); in impl_xtime2msec() 209 static int impl_cond_do_wait(cnd_t *cond, mtx_t *mtx, const xtime *xt) in impl_cond_do_wait() argument 222 w = WaitForSingleObject(cond->sem_queue, xt ? impl_xtime2msec(xt) : INFINITE); in impl_cond_do_wait() 381 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const xtime *xt) in cnd_timedwait() argument 383 if (!cond || !mtx || !xt) return thrd_error; in cnd_timedwait() 385 if (SleepConditionVariableCS(&cond->condvar, mtx, impl_xtime2msec(xt))) in cnd_timedwait() 389 return impl_cond_do_wait(cond, mtx, xt); in cnd_timedwait() 441 mtx_timedlock(mtx_t *mtx, const xtime *xt) in mtx_timedlock() argument 444 if (!mtx || !xt) return thrd_error; in mtx_timedlock() [all …]
|
/external/u-boot/arch/xtensa/include/asm/ |
D | ldscript.h | 188 .xt.insn 0 : \ 190 KEEP (*(.xt.insn)) \ 193 .xt.prop 0 : \ 195 KEEP (*(.xt.prop)) \ 196 KEEP (*(.xt.prop.*)) \ 199 .xt.lit 0 : \ 201 KEEP (*(.xt.lit)) \ 202 KEEP (*(.xt.lit.*)) \ 205 .xt.profile_range 0 : \ 207 KEEP (*(.xt.profile_range)) \ [all …]
|
/external/compiler-rt/test/builtins/Unit/ |
D | muloti4_test.c | 34 twords xt; in test__muloti4() local 35 xt.all = x; in test__muloti4() 43 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low, in test__muloti4() 53 twords xt; in test__muloti4() local 54 xt.all = x; in test__muloti4() 59 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low, in test__muloti4()
|
D | fixtfti_test.c | 30 twords xt; in test__fixtfti() local 31 xt.all = x; in test__fixtfti() 38 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low); in test__fixtfti()
|
D | fixunstfti_test.c | 36 twords xt; in test__fixunstfti() local 37 xt.all = x; in test__fixunstfti() 44 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low); in test__fixunstfti()
|
D | fixsfti_test.c | 34 twords xt; in test__fixsfti() local 35 xt.all = x; in test__fixsfti() 39 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low); in test__fixsfti()
|
D | fixdfti_test.c | 34 twords xt; in test__fixdfti() local 35 xt.all = x; in test__fixdfti() 39 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low); in test__fixdfti()
|
D | fixunssfti_test.c | 36 utwords xt; in test__fixunssfti() local 37 xt.all = x; in test__fixunssfti() 41 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low); in test__fixunssfti()
|
D | fixunsxfti_test.c | 37 utwords xt; in test__fixunsxfti() local 38 xt.all = x; in test__fixunsxfti() 42 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low); in test__fixunsxfti()
|
D | absvti2_test.c | 36 twords xt; in test__absvti2() local 37 xt.all = x; in test__absvti2() 42 at.s.high, at.s.low, xt.s.high, xt.s.low, in test__absvti2()
|
D | subvti3_test.c | 36 twords xt; in test__subvti3() local 37 xt.all = x; in test__subvti3() 42 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low, in test__subvti3()
|
D | fixunsdfti_test.c | 36 utwords xt; in test__fixunsdfti() local 37 xt.all = x; in test__fixunsdfti() 41 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low); in test__fixunsdfti()
|
D | divti3_test.c | 32 twords xt; in test__divti3() local 33 xt.all = x; in test__divti3() 38 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low, in test__divti3()
|
D | modti3_test.c | 32 twords xt; in test__modti3() local 33 xt.all = x; in test__modti3() 38 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low, in test__modti3()
|
D | fixxfti_test.c | 35 utwords xt; in test__fixxfti() local 36 xt.all = x; in test__fixxfti() 40 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low); in test__fixxfti()
|
D | addvti3_test.c | 35 twords xt; in test__addvti3() local 36 xt.all = x; in test__addvti3() 41 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low, in test__addvti3()
|
D | negvti2_test.c | 34 twords xt; in test__negvti2() local 35 xt.all = x; in test__negvti2() 40 at.s.high, at.s.low, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low); in test__negvti2()
|
D | multi3_test.c | 30 twords xt; in test__multi3() local 31 xt.all = x; in test__multi3() 36 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low, in test__multi3()
|
D | negti2_test.c | 30 twords xt; in test__negti2() local 31 xt.all = x; in test__negti2() 36 at.s.high, at.s.low, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low); in test__negti2()
|
D | mulvti3_test.c | 34 twords xt; in test__mulvti3() local 35 xt.all = x; in test__mulvti3() 40 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low, in test__mulvti3()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_tiled_memcpy.c | 642 uint32_t xt, yt; in linear_to_tiled() local 673 for (xt = xt0; xt < xt3; xt += tw) { in linear_to_tiled() 677 uint32_t x0 = MAX2(xt1, xt); in linear_to_tiled() 679 uint32_t x3 = MIN2(xt2, xt + tw); in linear_to_tiled() 699 tile_copy(x0-xt, x1-xt, x2-xt, x3-xt, in linear_to_tiled() 701 dst + (ptrdiff_t) xt * th + (ptrdiff_t) yt * dst_pitch, in linear_to_tiled() 702 src + (ptrdiff_t) xt + (ptrdiff_t) yt * src_pitch, in linear_to_tiled() 733 uint32_t xt, yt; in tiled_to_linear() local 764 for (xt = xt0; xt < xt3; xt += tw) { in tiled_to_linear() 768 uint32_t x0 = MAX2(xt1, xt); in tiled_to_linear() [all …]
|
/external/testng/src/test/java/test/preserveorder/ |
D | PreserveOrderTest.java | 37 XmlTest xt = createXmlTest(s, "Test", fullTestNames); in preserveClassOrder() local 38 xt.setPreserveOrder("true"); in preserveClassOrder() 75 XmlTest xt = createXmlTest(s, "Test", testName); in preserveMethodOrder() local 76 addMethods(xt.getXmlClasses().get(0), m); in preserveMethodOrder() 77 xt.setPreserveOrder("true"); in preserveMethodOrder()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | cwise_ops_test.py | 131 xt = x.astype(t) 133 self._compare(xt, yt, np.less, math_ops.less) 134 self._compare(xt, yt, np.less_equal, math_ops.less_equal) 135 self._compare(xt, yt, np.greater, math_ops.greater) 136 self._compare(xt, yt, np.greater_equal, math_ops.greater_equal) 137 self._compare(xt, yt, np.equal, math_ops.equal) 138 self._compare(xt, yt, np.not_equal, math_ops.not_equal) 141 xt = x.astype(t) 142 xt -= 1j * xt 145 self._compare(xt, yt, np.equal, math_ops.equal) [all …]
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
D | 9339c173e9a4821813910b92c6caab43.00002675.honggfuzz.cov | 15 …^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^xt/html,application/xht… 18 …^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^xt/html,application/xht… 21 …^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^xt/html,application/xht… 24 …^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^xt/html,application/xht… 27 …^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^xt/html,application/xht…
|