HomeSort by: relevance | last modified time | path
    Searched defs:T1 (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
buffer_queue_test.cc 102 auto T1 = std::async(std::launch::async, F);
212 std::thread T0(Process), T1(Process);
229 T1.join();
function_call_trie_test.cc 146 // f0@t0 -> f1@t1 -> f2@t2
151 // as d' = (t3 - t1) - d, and then local time to `f0` as d'' = (t3 - t0) - d'.
264 FunctionCallTrie T1(A);
275 T1.enterFunction(1, 0, 0);
276 T1.enterFunction(2, 1, 0);
277 T1.enterFunction(3, 2, 0);
278 T1.exitFunction(3, 3, 0);
279 T1.exitFunction(2, 4, 0);
280 T1.exitFunction(1, 5, 0);
290 T1.mergeInto(Merged)
    [all...]
  /src/common/lib/libc/hash/sha2/
sha2.c 290 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
292 (d) += T1; \
293 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
301 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
303 (d) += T1; \
304 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
311 uint32_t T1, *W256;
362 a = b = c = d = e = f = g = h = T1 = 0;
371 uint32_t T1, T2, *W256;
391 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j]
    [all...]
  /src/lib/libm/ld80/
s_expl.c 121 * Our T1 and T2 are chosen to be approximately the points where method
122 * A and method B have the same accuracy. Tang's T1 and T2 are the
131 T1 = -0.1659, /* ~-30.625/128 * log(2) */
190 if (T1 < x && x < T2) {
  /src/lib/libm/ld128/
s_expl.c 106 * Our T1 and T2 are chosen to be approximately the points where method
107 * A and method B have the same accuracy. Tang's T1 and T2 are the
115 * Split the interval [T1, T2] into two intervals [T1, T3] and [T3, T2].
118 * into the [T1, T3] interval.
127 T1 = -0.1659, /* ~-30.625/128 * log(2) */
233 if (T1 < x && x < T2) {
  /src/usr.bin/rump_dhcpclient/
dhcp.h 64 #define T1 0.5
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/sse2/
poly1305_sse2.c 110 uint64_t t0, t1; local in function:poly1305_init_ext
123 memcpy(&t1, key + 8, 8);
126 t0 |= t1 << 20;
128 t1 >>= 24;
129 r2 = t1 & 0x00ffffffc0f;
207 xmmi T0, T1, T2, T3, T4, T5, T6, T7, T8;
240 T1 = _mm_loadu_si128((const xmmi *) (const void *) &st->H.hh[4]);
244 H2 = _mm_shuffle_epi32(T1, _MM_SHUFFLE(1, 1, 0, 0));
245 H3 = _mm_shuffle_epi32(T1, _MM_SHUFFLE(3, 3, 2, 2));
254 T1 = _mm_cvtsi32_si128(st->R2[4])
685 uint32_t t0, t1, t2, t3, t4, b; local in function:poly1305_blocks
    [all...]

Completed in 15 milliseconds