Searched defs:us (Results 1 - 25 of 98) sorted by last modified time

1234

/external/zlib/src/contrib/minizip/
H A Dunzip.c588 unz64_s us; local
606 us.z_filefunc.zseek32_file = NULL;
607 us.z_filefunc.ztell32_file = NULL;
609 fill_fopen64_filefunc(&us.z_filefunc.zfile_func64);
611 us.z_filefunc = *pzlib_filefunc64_32_def;
612 us.is64bitOpenFunction = is64bitOpenFunction;
616 us.filestream = ZOPEN64(us.z_filefunc,
620 if (us.filestream==NULL)
623 central_pos = unz64local_SearchCentralDir64(&us
[all...]
/external/valgrind/main/none/tests/ppc32/
H A DtestVMX.c414 unsigned short us[2];
422 unsigned short us;
1711 unsigned short us[2];
1719 unsigned short us;
2262 unsigned short us[2]; member in union:__anon33163
2271 unsigned short us;
2896 if (USaux1.e[i] != INTunion1.us[1])
3440 unsigned short us[2]; member in union:__anon33164
3448 unsigned short us; member in union:__anon33165
3583 if (USaux1.e[i] != INTunion1.us[
[all...]
/external/tcpdump/
H A Dprint-bootp.c375 u_int16_t us; local
454 us = EXTRACT_16BITS(bp);
456 cp = tok2str(xtag2str, "?xT%u", us);
529 while (len >= sizeof(us)) {
532 us = EXTRACT_16BITS(bp);
533 printf("%u", us);
534 bp += sizeof(us);
535 len -= sizeof(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/sfntly/cpp/src/sfntly/data/
H A Dfont_output_stream.cc81 void FontOutputStream::WriteUShort(int32_t us) { argument
82 Write((byte_t)((us >> 8) & 0xff));
83 Write((byte_t)(us & 0xff));
H A Dwritable_font_data.cc105 int32_t WritableFontData::WriteUShort(int32_t index, int32_t us) { argument
106 WriteByte(index, (byte_t)((us >> 8) & 0xff));
107 WriteByte(index + 1, (byte_t)(us & 0xff));
111 int32_t WritableFontData::WriteUShortLE(int32_t index, int32_t us) { argument
112 WriteByte(index, (byte_t)(us & 0xff));
113 WriteByte(index + 1, (byte_t)((us >> 8) & 0xff));
/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/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmswtpnt.c147 cmsFloat64Number us,vs; local
160 us = (2*xs) / (-xs + 6*ys + 1.5);
171 dj = ((vs - vj) - tj * (us - uj)) / sqrt(1.0 + tj * tj);
313 // Give us the Coefs, then I build transformation matrix
/external/openssl/apps/
H A Dapps.c2508 static JPAKE_CTX *jpake_init(const char *us, const char *them, argument
2526 ctx = JPAKE_CTX_new(us, them, p, g, q, bnsecret);
/external/mesa3d/src/mesa/math/
H A Dm_eval.c200 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 * DC
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_pack_color.h53 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
[all...]
H A Du_sse.h77 ushort us[8]; member in union:m128i
112 union { __m128i m; ushort us[8]; } u; member in union:__anon27196
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[
[all...]
H A Du_surfaces.c33 util_surfaces_do_get(struct util_surfaces *us, unsigned surface_struct_size, argument
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, struc argument
92 util_surfaces_destroy(struct util_surfaces *us, struct pipe_resource *pt, void (*destroy_surface) (struct pipe_surface *)) argument
[all...]
H A Du_surfaces.h47 util_surfaces_do_get(struct util_surfaces *us, unsigned surface_struct_size,
54 util_surfaces_get(struct util_surfaces *us, unsigned surface_struct_size, argument
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) argument
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, struc
88 util_surfaces_detach(struct util_surfaces *us, struct pipe_surface *ps) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_structs.h626 uint16_t us[4]; member in struct:gen5_sampler_default_color
/external/mesa3d/src/mesa/main/
H A Ddlist.c515 GLushort us; member in union:gl_dlist_node
2801 n[2].us = pattern;
8059 CALL_LineStipple(ctx->Exec, (n[1].i, n[2].us));
10745 printf("LineStipple %d %x\n", n[1].i, (int) n[2].us);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zUpdate.cpp267 UString us = ui.Name.Mid(ExtensionPos); local
268 if (!us.IsEmpty())
270 us.MakeLower();
273 for (i = 0; i < us.Length(); i++)
275 wchar_t c = us[i];
280 if (i == us.Length())
/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/libnl/lib/
H A Dutils.c173 *unit = "us";
275 /* Retrieves the configured HZ and ticks/us value in the kernel.
316 uint32_t tick, us; local
319 fscanf(fd, "%08x %08x", &tick, &us);
320 ticks_per_usec = (double)tick/(double)us;
338 * @arg us micro seconds
341 uint32_t nl_us2ticks(uint32_t us) argument
343 return us * ticks_per_usec;
/external/libcxx/test/utilities/time/time.duration/time.duration.cons/
H A Dconvert_exact.pass.cpp26 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/libcxx/test/utilities/time/time.duration/time.duration.literals/
H A Dliterals.pass.cpp26 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 );
H A Dliterals1.pass.cpp38 microseconds us = 867us; local
39 assert ( us == microseconds(867));
40 auto us2 = 867.0us;
41 assert ( us == us2 );
H A Dliterals2.pass.cpp41 std::chrono::microseconds us = 867us; local
42 assert ( us == std::chrono::microseconds(867));
43 auto us2 = 867.0us;
44 assert ( us == us2 );
/external/icu/icu4c/source/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/icu/icu4c/source/i18n/
H A Dnfrs.cpp33 // note, doubles only get us up to one quadrillion or so, which
558 // the numerator of the fraction is anything else (this lets us
597 static void dumpUS(FILE* f, const UnicodeString& us) { argument
598 int len = us.length();
601 us.extract(0, len, buf);

Completed in 235 milliseconds

1234