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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/utilities/time/time.duration/time.duration.arithmetic/
op_mod=rep.pass.cpp 21 std::chrono::microseconds us(11);
22 us %= 3;
23 assert(us.count() == 2);
op_mod=duration.pass.cpp 21 std::chrono::microseconds us(11);
23 us %= us2;
24 assert(us.count() == 2);
25 us %= std::chrono::milliseconds(3);
26 assert(us.count() == 2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.arithmetic/
op_mod=rep.pass.cpp 21 std::chrono::microseconds us(11);
22 us %= 3;
23 assert(us.count() == 2);
op_modEQrep.pass.cpp 21 std::chrono::microseconds us(11);
22 us %= 3;
23 assert(us.count() == 2);
op_mod=duration.pass.cpp 21 std::chrono::microseconds us(11);
23 us %= us2;
24 assert(us.count() == 2);
25 us %= std::chrono::milliseconds(3);
26 assert(us.count() == 2);
op_modEQduration.pass.cpp 21 std::chrono::microseconds us(11);
23 us %= us2;
24 assert(us.count() == 2);
25 us %= std::chrono::milliseconds(3);
26 assert(us.count() == 2);
  /external/clang/test/CodeGen/
arm-be-result-return.c 8 extern union Us { short s; } us;
9 union Us callee_us() { return us; }
16 us = callee_us();
nvptx-inlineasm-ptx.c 8 unsigned short us; local
24 asm volatile ("mov.b16 %0, %1;" : "=h"(us) : "h"(us));
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...]
  /external/libcxx/test/utilities/time/time.duration/time.duration.cons/
convert_inexact.fail.cpp 23 std::chrono::microseconds us(1);
24 std::chrono::milliseconds ms = us;
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, "");
convert_inexact.pass.cpp 25 std::chrono::duration<double, std::micro> us(1);
26 std::chrono::duration<double, std::milli> ms = us;
31 constexpr std::chrono::duration<double, std::micro> us(1);
32 constexpr std::chrono::duration<double, std::milli> ms = us;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.cons/
convert_inexact.fail.cpp 23 std::chrono::microseconds us(1);
24 std::chrono::milliseconds ms = us;
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, "");
convert_inexact.pass.cpp 25 std::chrono::duration<double, std::micro> us(1);
26 std::chrono::duration<double, std::milli> ms = us;
31 constexpr std::chrono::duration<double, std::micro> us(1);
32 constexpr std::chrono::duration<double, std::milli> ms = us;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_surfaces.c 33 util_surfaces_do_get(struct util_surfaces *us, unsigned surface_struct_size,
42 if(!us->u.hash)
43 us->u.hash = cso_hash_create();
45 ps = cso_hash_iter_data(cso_hash_find(us->u.hash, (layer << 8) | level));
49 if(!us->u.array)
50 us->u.array = CALLOC(pt->last_level + 1, sizeof(struct pipe_surface *));
51 ps = us->u.array[level];
71 cso_hash_insert(us->u.hash, (layer << 8) | level, ps);
73 us->u.array[level] = ps;
80 util_surfaces_do_detach(struct util_surfaces *us, struct pipe_surface *ps
    [all...]
u_surfaces.h 47 util_surfaces_do_get(struct util_surfaces *us, unsigned surface_struct_size,
54 util_surfaces_get(struct util_surfaces *us, unsigned surface_struct_size,
59 if(likely((pt->target == PIPE_TEXTURE_2D || pt->target == PIPE_TEXTURE_RECT) && us->u.array))
61 struct pipe_surface *ps = us->u.array[level];
70 return util_surfaces_do_get(us, surface_struct_size, ctx, pt, level, layer, flags, res);
74 util_surfaces_peek(struct util_surfaces *us, struct pipe_resource *pt, unsigned level, unsigned layer)
76 if(!us->u.pv)
80 return cso_hash_iter_data(cso_hash_find(us->u.hash, (layer << 8) | level));
82 return us->u.array[level];
85 void util_surfaces_do_detach(struct util_surfaces *us, struct pipe_surface *ps)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_surfaces.c 33 util_surfaces_do_get(struct util_surfaces *us, unsigned surface_struct_size,
42 if(!us->u.hash)
43 us->u.hash = cso_hash_create();
45 ps = cso_hash_iter_data(cso_hash_find(us->u.hash, (layer << 8) | level));
49 if(!us->u.array)
50 us->u.array = CALLOC(pt->last_level + 1, sizeof(struct pipe_surface *));
51 ps = us->u.array[level];
71 cso_hash_insert(us->u.hash, (layer << 8) | level, ps);
73 us->u.array[level] = ps;
80 util_surfaces_do_detach(struct util_surfaces *us, struct pipe_surface *ps
    [all...]
u_surfaces.h 47 util_surfaces_do_get(struct util_surfaces *us, unsigned surface_struct_size,
54 util_surfaces_get(struct util_surfaces *us, unsigned surface_struct_size,
59 if(likely((pt->target == PIPE_TEXTURE_2D || pt->target == PIPE_TEXTURE_RECT) && us->u.array))
61 struct pipe_surface *ps = us->u.array[level];
70 return util_surfaces_do_get(us, surface_struct_size, ctx, pt, level, layer, flags, res);
74 util_surfaces_peek(struct util_surfaces *us, struct pipe_resource *pt, unsigned level, unsigned layer)
76 if(!us->u.pv)
80 return cso_hash_iter_data(cso_hash_find(us->u.hash, (layer << 8) | level));
82 return us->u.array[level];
85 void util_surfaces_do_detach(struct util_surfaces *us, struct pipe_surface *ps)
    [all...]
  /external/srec/config/en.us/
adb_pull_system_usr_srec_bothtags5.sh 5 adb pull $TESTDIR/config/en.us/out_SHIP_bothtags5.txt out_SHIP_bothtags5.txt
6 adb pull $TESTDIR/config/en.us/recog4_SHIP_bothtags5.res recog4_SHIP_bothtags5.res
8 adb pull $TESTDIR/config/en.us/linux_ship_a1__VCE_Pete_Gonzalez.raw linux_ship_a1__VCE_Pete_Gonzalez.raw
9 adb pull $TESTDIR/config/en.us/linux_ship_a2__VCE_Andrew_Evans.raw linux_ship_a2__VCE_Andrew_Evans.raw
10 adb pull $TESTDIR/config/en.us/linux_ship_a3__VCE_Peter_Wilson.raw linux_ship_a3__VCE_Peter_Wilson.raw
11 adb pull $TESTDIR/config/en.us/linux_ship_a4__VCE_Edgar_Young.raw linux_ship_a4__VCE_Edgar_Young.raw
12 adb pull $TESTDIR/config/en.us/linux_ship_a5__VCE_John_Martinez.raw linux_ship_a5__VCE_John_Martinez.raw
adb_pull_system_usr_srec_bothtags5_from_saved.sh 5 adb pull $TESTDIR/config/en.us/out_SHIP_bothtags5_from_saved.txt out_SHIP_bothtags5_from_saved.txt
6 adb pull $TESTDIR/config/en.us/recog4_SHIP_bothtags5_from_saved.res recog4_SHIP_bothtags5_from_saved.res
8 adb pull $TESTDIR/config/en.us/linux_ship_a1__VCE_Pete_Gonzalez_from_saved.raw linux_ship_a1__VCE_Pete_Gonzalez_from_saved.raw
9 adb pull $TESTDIR/config/en.us/linux_ship_a2__VCE_Andrew_Evans_from_saved.raw linux_ship_a2__VCE_Andrew_Evans_from_saved.raw
10 adb pull $TESTDIR/config/en.us/linux_ship_a3__VCE_Peter_Wilson_from_saved.raw linux_ship_a3__VCE_Peter_Wilson_from_saved.raw
11 adb pull $TESTDIR/config/en.us/linux_ship_a4__VCE_Edgar_Young_from_saved.raw linux_ship_a4__VCE_Edgar_Young_from_saved.raw
12 adb pull $TESTDIR/config/en.us/linux_ship_a5__VCE_John_Martinez_from_saved.raw linux_ship_a5__VCE_John_Martinez_from_saved.raw
14 adb pull $TESTDIR/config/en.us/bothtags5_saved.g2g bothtags5_saved.g2g
adb_pull_system_usr_srec_change_sample_rate2.sh 5 adb pull $TESTDIR/config/en.us/out_SHIP_change_sample_rate2.txt out_SHIP_change_sample_rate2.txt
6 adb pull $TESTDIR/config/en.us/recog4_SHIP_change_sample_rate2.res recog4_SHIP_change_sample_rate2.res
adb_pull_system_usr_srec_set_get_param.sh 5 adb pull $TESTDIR/config/en.us/out_SHIP_set_get_param.txt out_SHIP_set_get_param.txt
6 adb pull $TESTDIR/config/en.us/recog4_SHIP_set_get_param.res recog4_SHIP_set_get_param.res
  /external/srec/tests/
Android.mk 9 ../config/en.us/tcp/bothtags5.tcp \
10 ../config/en.us/tcp/bothtags5_from_saved.tcp \
11 ../config/en.us/tcp/change_sample_rate2.tcp \
12 ../config/en.us/tcp/recognize_1_live.tcp \
13 ../config/en.us/tcp/recognize_10_live.tcp \
14 ../config/en.us/tcp/set_get_param.tcp \
15 ../config/en.us/audio/v139/v139_024.nwv \
16 ../config/en.us/audio/v139/v139_254.nwv \
17 ../config/en.us/audio/v139/v139_127.nwv \
18 ../config/en.us/audio/v139/v139_107.nwv
    [all...]
  /external/ppp/pppd/
cbcp.c 97 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->us_type |= (1 << CB_CONF_NO)
136 cbcp_state *us = &cbcp[iface]; local
163 cbcp_state *us = &cbcp[unit]; local
    [all...]

Completed in 613 milliseconds

1 2 3 4 5 6 7 8 91011>>