HomeSort by relevance Sort by last modified time
    Searched defs:us (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/libcxx/test/utilities/time/time.duration/time.duration.cons/
convert_exact.pass.cpp 26 std::chrono::microseconds us = ms; local
27 assert(us.count() == 1000);
32 constexpr std::chrono::microseconds us = ms; local
33 static_assert(us.count() == 1000, "");
  /external/clang/test/SemaCXX/
PR9461.cpp 14 int us; member in struct:basic_string
26 :us(_S_construct)
  /external/chromium_org/third_party/icu/source/test/intltest/
itrbnfp.cpp 147 UnicodeString us; local
148 formatter->format((const Formattable)val, us, status);
150 us.insert(0, (UChar)'"');
151 us.append((UChar)'"');
152 logln(us);
160 UnicodeString us; local
161 formatter->format((const Formattable)(int32_t)val, us, status);
163 us.insert(0, (UChar)'"');
164 us.append((UChar)'"');
165 logln(us);
    [all...]
  /external/chromium_org/third_party/ots/test/
perf.cc 74 long long unsigned us local
76 std::fprintf(stderr, "%llu [us] %s (%llu bytes, %llu [byte/us])\n",
77 us, argv[1], static_cast<long long>(st.st_size),
78 (us ? st.st_size / us : 0));
  /external/clang/test/CodeGen/
Atomics.c 8 unsigned short us; variable
19 (void) __sync_fetch_and_add (&us, 1); // CHECK: atomicrmw add i16
28 (void) __sync_fetch_and_sub (&us, 1); // CHECK: atomicrmw sub i16
37 (void) __sync_fetch_and_or (&us, 1); // CHECK: atomicrmw or i16
46 (void) __sync_fetch_and_xor (&us, 1); // CHECK: atomicrmw xor i16
55 (void) __sync_fetch_and_and (&us, 1); // CHECK: atomicrmw and i16
68 us = __sync_fetch_and_add (&us, 11); // CHECK: atomicrmw add
77 us = __sync_fetch_and_sub (&us, 11); // CHECK: atomicrmw su
    [all...]
nvptx-inlineasm-ptx.c 8 unsigned short us; local
24 asm volatile ("mov.b16 %0, %1;" : "=h"(us) : "h"(us));
  /external/icu/icu4c/source/test/intltest/
itrbnfp.cpp 147 UnicodeString us; local
148 formatter->format((const Formattable)val, us, status);
150 us.insert(0, (UChar)'"');
151 us.append((UChar)'"');
152 logln(us);
160 UnicodeString us; local
161 formatter->format((const Formattable)(int32_t)val, us, status);
163 us.insert(0, (UChar)'"');
164 us.append((UChar)'"');
165 logln(us);
    [all...]
  /external/libcxx/test/utilities/time/time.duration/time.duration.literals/
literals.pass.cpp 26 static_assert ( std::is_same<decltype( 3us ), std::chrono::microseconds>::value, "" );
49 std::chrono::microseconds us = 867us; local
50 assert ( us == std::chrono::microseconds(867));
51 auto us2 = 867.0us;
52 assert ( us == us2 );
literals1.pass.cpp 38 microseconds us = 867us; local
39 assert ( us == microseconds(867));
40 auto us2 = 867.0us;
41 assert ( us == us2 );
literals2.pass.cpp 41 std::chrono::microseconds us = 867us; local
42 assert ( us == std::chrono::microseconds(867));
43 auto us2 = 867.0us;
44 assert ( us == us2 );
  /external/chromium_org/third_party/icu/source/io/
ustream.cpp 47 const UChar *us = str.getBuffer(); local
48 const UChar *uLimit = us + str.length();
53 ucnv_fromUnicode(converter, &s, sLimit, &us, uLimit, 0, FALSE, &errorCode);
87 UChar *us = uBuffer; local
106 us = uBuffer;
114 ucnv_toUnicode(converter, &us, uLimit, &s, sLimit, 0, !continueReading, &errorCode);
121 if (us != uBuffer) {
123 int32_t uBuffSize = us-uBuffer;
  /external/chromium_org/third_party/icu/source/test/perf/usetperf/
usetperf.cpp 45 UnicodeSet us; member in class:CmdOp
68 us.clear();
71 us.add(cp);
78 us.clear();
80 if (us.contains(cp)) {
88 UnicodeSetIterator uit(us);
  /external/clang/test/Sema/
bitfield-promote.c 19 unsigned short us : 4; member in struct:S
27 __typeof(s.us + s.us) x_us;
  /external/icu/icu4c/source/io/
ustream.cpp 47 const UChar *us = str.getBuffer(); local
48 const UChar *uLimit = us + str.length();
53 ucnv_fromUnicode(converter, &s, sLimit, &us, uLimit, 0, FALSE, &errorCode);
87 UChar *us = uBuffer; local
106 us = uBuffer;
114 ucnv_toUnicode(converter, &us, uLimit, &s, sLimit, 0, !continueReading, &errorCode);
121 if (us != uBuffer) {
123 int32_t uBuffSize = us-uBuffer;
  /external/icu/icu4c/source/test/perf/usetperf/
usetperf.cpp 45 UnicodeSet us; member in class:CmdOp
68 us.clear();
71 us.add(cp);
78 us.clear();
80 if (us.contains(cp)) {
88 UnicodeSetIterator uit(us);
  /external/chromium_org/third_party/icu/source/test/cintltst/
cstrtest.c 190 UChar us[120]; local
197 u_charsToUChars(invariantChars, us, length);
198 if(u_strcmp(us, invariantUChars)!=0) {
213 u_charsToUChars(variantChars, us, length);
214 if(u_strcmp(us, variantUChars)!=0) {
252 length=ucnv_toUChars(cnv, us, LENGTHOF(us), invariantChars, -1, &errorCode);
255 } else if(length!=LENGTHOF(invariantUChars)-1 || u_strcmp(us, invariantUChars)!=0) {
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_eval.c 209 GLfloat us = 1.0F - u, vs = 1.0F - v; local
231 dv[k] = us * (CN(0, 1, k) - CN(0, 0, k)) +
235 out[k] = us * (vs * CN(0, 0, k) + v * CN(0, 1, k)) +
243 DCN(0, 0) = us * CN(0, 0, k) + u * CN(1, 0, k);
251 DCN(0, j + 1) = us * CN(0, j + 1, k) + u * CN(1, j + 1, k);
284 DCN(i, 1) = us * DCN(i, 1) + u * DCN(i + 1, 1);
288 DCN(i, 0) = us * DCN(i, 0) + u * DCN(i + 1, 0);
295 DCN(i, 1) = us * DCN(i, 1) + u * DCN(i + 1, 1);
298 DCN(i, 0) = us * DCN(i, 0) + u * DCN(i + 1, 0);
305 dv[k] = us * DCN(0, 1) + u * DCN(1, 1)
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cstrtest.c 190 UChar us[120]; local
197 u_charsToUChars(invariantChars, us, length);
198 if(u_strcmp(us, invariantUChars)!=0) {
213 u_charsToUChars(variantChars, us, length);
214 if(u_strcmp(us, variantUChars)!=0) {
252 length=ucnv_toUChars(cnv, us, LENGTHOF(us), invariantChars, -1, &errorCode);
255 } else if(length!=LENGTHOF(invariantUChars)-1 || u_strcmp(us, invariantUChars)!=0) {
  /external/mesa3d/src/mesa/math/
m_eval.c 200 GLfloat us = 1.0F - u, vs = 1.0F - v; local
222 dv[k] = us * (CN(0, 1, k) - CN(0, 0, k)) +
226 out[k] = us * (vs * CN(0, 0, k) + v * CN(0, 1, k)) +
234 DCN(0, 0) = us * CN(0, 0, k) + u * CN(1, 0, k);
242 DCN(0, j + 1) = us * CN(0, j + 1, k) + u * CN(1, j + 1, k);
275 DCN(i, 1) = us * DCN(i, 1) + u * DCN(i + 1, 1);
279 DCN(i, 0) = us * DCN(i, 0) + u * DCN(i + 1, 0);
286 DCN(i, 1) = us * DCN(i, 1) + u * DCN(i + 1, 1);
289 DCN(i, 0) = us * DCN(i, 0) + u * DCN(i + 1, 0);
296 dv[k] = us * DCN(0, 1) + u * DCN(1, 1)
    [all...]
  /external/chromium_org/base/time/
time_posix.cc 394 int64 us = us_ - kTimeTToMicrosecondsOffset; local
395 result.tv_sec = us / Time::kMicrosecondsPerSecond;
396 result.tv_usec = us % Time::kMicrosecondsPerSecond;
  /external/chromium_org/third_party/boringssl/src/tool/
speed.cc 47 // us is the number of microseconds that elapsed in the time period.
48 unsigned us; member in struct:TimeResults
52 description.c_str(), us,
53 (static_cast<double>(num_calls) / us) * 1000000);
58 num_calls, description.c_str(), us,
59 (static_cast<double>(num_calls) / us) * 1000000,
60 static_cast<double>(bytes_per_call * num_calls) / us);
128 results->us = now - start;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_pack_color.h 53 ushort us; member in union:util_color
99 uc->us = ((r & 0xf8) << 8) | ((g & 0xfc) << 3) | (b >> 3);
104 uc->us = ((0x80) << 8) | ((r & 0xf8) << 7) | ((g & 0xf8) << 2) | (b >> 3);
109 uc->us = ((a & 0x80) << 8) | ((r & 0xf8) << 7) | ((g & 0xf8) << 2) | (b >> 3);
114 uc->us = ((a & 0xf0) << 8) | ((r & 0xf0) << 4) | ((g & 0xf0) << 0) | (b >> 4);
224 ushort p = uc->us;
233 ushort p = uc->us;
242 ushort p = uc->us;
251 ushort p = uc->us;
382 uc->us = ((r & 0xf8) << 8) | ((g & 0xfc) << 3) | (b >> 3)
    [all...]
u_sse.h 77 ushort us[8]; member in union:m128i
112 union { __m128i m; ushort us[8]; } u; member in union:__anon18410
125 u.us[0], u.us[1], u.us[2], u.us[3],
126 u.us[4], u.us[5], u.us[6], u.us[7])
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_pack_color.h 53 ushort us; member in union:util_color
99 uc->us = ((r & 0xf8) << 8) | ((g & 0xfc) << 3) | (b >> 3);
104 uc->us = ((0x80) << 8) | ((r & 0xf8) << 7) | ((g & 0xf8) << 2) | (b >> 3);
109 uc->us = ((a & 0x80) << 8) | ((r & 0xf8) << 7) | ((g & 0xf8) << 2) | (b >> 3);
114 uc->us = ((a & 0xf0) << 8) | ((r & 0xf0) << 4) | ((g & 0xf0) << 0) | (b >> 4);
224 ushort p = uc->us;
233 ushort p = uc->us;
242 ushort p = uc->us;
251 ushort p = uc->us;
382 uc->us = ((r & 0xf8) << 8) | ((g & 0xfc) << 3) | (b >> 3)
    [all...]
u_sse.h 77 ushort us[8]; member in union:m128i
112 union { __m128i m; ushort us[8]; } u; member in union:__anon6748
125 u.us[0], u.us[1], u.us[2], u.us[3],
126 u.us[4], u.us[5], u.us[6], u.us[7])
    [all...]

Completed in 707 milliseconds

1 2 3