Searched defs:us (Results 1 - 25 of 45) sorted by relevance

12

/external/clang/test/SemaCXX/
H A DPR9461.cpp14 int us; member in struct:basic_string
26 :us(_S_construct)
/external/clang/test/CodeGen/
H A DAtomics.c8 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, 1
[all...]
/external/libffi/testsuite/libffi.call/
H A Dpromotion.c10 unsigned char uc, unsigned short us)
12 int r = (int) sc + (int) ss + (int) uc + (int) us;
26 unsigned short us; local
36 values[3] = &us;
42 us = 0;
50 for (us = 0; us <= 60000; us += 10000)
55 (unsigned char) uc + (unsigned short) us);
9 promotion(signed char sc, signed short ss, unsigned char uc, unsigned short us) argument
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring.c118 void delayMicroseconds(unsigned int us) argument
122 //delay_us(us);
128 // of the function call yields a delay of approximately 1 1/8 us.
129 if (--us == 0)
135 us <<= 2;
138 us -= 2;
144 // subtract two, since us is unsigned; we'd overflow.
145 if (--us == 0)
147 if (--us == 0)
153 us <<
[all...]
/external/clang/test/Sema/
H A Dbitfield-promote.c18 unsigned short us : 4; member in struct:S
26 __typeof(s.us + s.us) x_us;
/external/icu4c/test/intltest/
H A Ditrbnfp.cpp147 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...]
H A Dplurfmts.cpp92 UnicodeString us = UnicodeString(""); local
93 plFmt[0]->toPattern(us);
/external/chromium/base/
H A Dtime_posix.cc206 int64 us = us_ - kTimeTToMicrosecondsOffset; local
207 result.tv_sec = us / Time::kMicrosecondsPerSecond;
208 result.tv_usec = us % Time::kMicrosecondsPerSecond;
H A Dtime_win.cc64 void MicrosecondsToFileTime(int64 us, FILETIME* ft) { argument
65 DCHECK(us >= 0) << "Time is less than 0, negative values are not "
70 *ft = bit_cast<FILETIME, int64>(us * 10);
H A Dtime.h63 static TimeDelta FromMicroseconds(int64 us);
306 static Time FromInternalValue(int64 us) { argument
307 return Time(us);
389 explicit Time(int64 us) : us_(us) { argument
443 inline TimeDelta TimeDelta::FromMicroseconds(int64 us) { argument
444 return TimeDelta(us);
/external/icu4c/io/
H A Dustream.cpp51 const UChar *us = str.getBuffer(); local
52 const UChar *uLimit = us + str.length();
57 ucnv_fromUnicode(converter, &s, sLimit, &us, uLimit, 0, FALSE, &errorCode);
91 UChar *us = uBuffer; local
110 us = uBuffer;
118 ucnv_toUnicode(converter, &us, uLimit, &s, sLimit, 0, !continueReading, &errorCode);
125 if (us != uBuffer) {
127 int32_t uBuffSize = us-uBuffer;
/external/icu4c/test/cintltst/
H A Dcstrtest.c190 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) {
H A Dspooftest.c248 USet *us; local
254 us = uset_open((UChar32)0x41, (UChar32)0x5A); /* [A-Z] */
255 uspoof_setAllowedChars(sc, us, &status);
257 TEST_ASSERT_NE(us, uspoof_getAllowedChars(sc, &status));
258 TEST_ASSERT(uset_equals(us, uspoof_getAllowedChars(sc, &status)));
260 uset_close(us);
H A Dcnmdptst.c710 UNumberFormat *us = unum_open(UNUM_DECIMAL,NULL,0, "en_US", NULL,&status); local
801 unum_close(us);
/external/icu4c/test/perf/usetperf/
H A Dusetperf.cpp45 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/icu4c/common/
H A Duinvchar.c183 u_charsToUChars(const char *cs, UChar *us, int32_t length) { argument
196 *us++=u;
202 u_UCharsToChars(const UChar *us, char *cs, int32_t length) { argument
206 u=*us++;
/external/liblzf/
H A Dlzf.c179 ssize_t us, cs, len; local
185 while ((us = rread (from, &buf1[MAX_HDR_SIZE], blocksize)) > 0)
187 cs = lzf_compress (&buf1[MAX_HDR_SIZE], us, &buf2[MAX_HDR_SIZE], us > 4 ? us - 4 : us);
196 header[5] = us >> 8;
197 header[6] = us & 0xff;
206 header[3] = us >> 8;
207 header[4] = us
226 ssize_t rc, cs, us, bytes, over = 0; local
[all...]
/external/ppp/pppd/
H A Dcbcp.c97 static void cbcp_recvreq __P((cbcp_state *us, u_char *pckt, int len));
98 static void cbcp_resp __P((cbcp_state *us));
99 static void cbcp_up __P((cbcp_state *us));
100 static void cbcp_recvack __P((cbcp_state *us, u_char *pckt, int len));
101 static void cbcp_send __P((cbcp_state *us, int code, u_char *buf, int len));
123 cbcp_state *us; local
125 us = &cbcp[iface];
126 memset(us, 0, sizeof(cbcp_state));
127 us->us_unit = iface;
128 us
136 cbcp_state *us = &cbcp[iface]; local
163 cbcp_state *us = &cbcp[unit]; local
[all...]
/external/tcpdump/
H A Dprint-bootp.c371 u_int16_t us; local
450 us = EXTRACT_16BITS(bp);
452 cp = tok2str(xtag2str, "?xT%u", us);
525 while (len >= sizeof(us)) {
528 us = EXTRACT_16BITS(bp);
529 printf("%u", us);
530 bp += sizeof(us);
531 len -= sizeof(us);
H A Dprint-ospf6.c100 ospf6_print_seqage(register u_int32_t seq, register time_t us) argument
102 register time_t sec = us % 60;
103 register time_t mins = (us / 60) % 60;
104 register time_t hour = us / 3600;
/external/webkit/Source/JavaScriptCore/bytecode/
H A DSamplingTool.cpp96 static void sleepForMicroseconds(unsigned us) argument
98 unsigned ms = us / 1000;
99 if (us && !ms)
106 static void sleepForMicroseconds(unsigned us) argument
108 usleep(us);
/external/stlport/test/unit/
H A Dunordered_test.cpp70 usettype us; local
73 usettype us2(us);
75 us = us2;
80 ret = us.insert(i);
84 ret = us.insert(i);
93 lit = us.begin(us.bucket(i));
94 litEnd = us.end(us.bucket(i));
96 usettype::size_type bucket_pos = us
120 usettype us; local
159 umaptype us; local
228 umaptype us; local
[all...]
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp7-0x.cpp137 unsigned short us = 1; local
140 Agg<short> s2 = {us}; // expected-error {{ cannot be narrowed }} expected-note {{override}}
175 unsigned long long ll4 = { us }; // OK
H A Dp7-cxx11-nowarn.cpp138 unsigned short us = 1; local
141 Agg<short> s2 = {us}; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
/external/icu4c/i18n/
H A Dnfrs.cpp33 // note, doubles only get us up to one quadrillion or so, which
532 // the numerator of the fraction is anything else (this lets us
571 static void dumpUS(FILE* f, const UnicodeString& us) { argument
572 int len = us.length();
575 us.extract(0, len, buf);

Completed in 3564 milliseconds

12