Searched defs:vs (Results 1 - 25 of 32) sorted by relevance

12

/external/libvpx/vpx_ports/
H A Dx86_cpuid.c40 unsigned int vs[3]; local
44 cpuid(0, reg_eax, vs[0], vs[2], vs[1]);
48 if (strncmp ((const char *)vs, cpuid_vendor_list[i].vendor_string, 12) == 0)
/external/clang/test/SemaCXX/
H A Dcxx0x-class.cpp3 int vs = 0; variable
14 static const int nci = vs; // expected-error {{in-class initializer for static data member is not a constant expression}}
H A Daltivec.cpp10 vector short vs; local
25 int res6[vec_step(vs) == 8 ? 1 : -1];
H A Dclass.cpp29 static int vs; member in class:C
42 static const int nci = vs; // expected-error {{in-class initializer for static data member is not a constant expression}}
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DInflater.cs22 private static extern int inflateInit_(ref ZStream sz, string vs, int size); argument
H A DDeflater.cs22 private static extern int deflateInit_(ref ZStream sz, int level, string vs, int size); argument
/external/clang/test/Modules/
H A Dmodule-private.cpp29 VisibleStruct vs; local
30 vs.field = 0; // expected-error{{no member named 'field' in 'VisibleStruct'}}
31 vs.setField(1); // expected-error{{no member named 'setField' in 'VisibleStruct'}}
/external/valgrind/main/coregrind/m_demangle/
H A Dsafe-ctype.c143 #define vs _sch_isvsp macro
158 #define V (const unsigned short) (vs|sp |cn) /* vertical space: \r \n */
/external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
H A DOGGLoader.java70 protected final VorbisStream vs; field in class:OGGLoader.JOggInputStream
72 public JOggInputStream(VorbisStream vs){ argument
73 this.vs = vs;
95 if ((cnt = vs.readPcm(buf, offset + bytesRead,length - bytesRead)) <= 0) {
120 vs.close();
130 public SeekableJOggInputStream(VorbisStream vs, LogicalOggStream los, float duration){ argument
131 super(vs);
142 System.out.println("new granule2 : "+(time*vs.getIdentificationHeader().getSampleRate()));
147 los.setTime((long)(time*vs
[all...]
/external/clang/test/CodeGen/
H A Dbuiltins-ppc-altivec.c8 vector short vs = { -1, 2, -3, 4, -5, 6, -7, 8 }; variable
51 vs = vec_abs(vs); // CHECK: sub <8 x i16> zeroinitializer
63 vs = vec_abss(vs); // CHECK: @llvm.ppc.altivec.vsubshs
76 res_vs = vec_add(vs, vs); // CHECK: add <8 x i16>
77 res_vs = vec_add(vbs, vs); // CHECK: add <8 x i16>
78 res_vs = vec_add(vs, vbs); // CHECK: add <8 x i16>
95 res_vs = vec_vadduhm(vs, v
[all...]
/external/valgrind/main/memcheck/tests/
H A Dunit_oset.c80 Word* vs[NN]; local
99 vs[i] = VG_(OSetGen_AllocNode)(oset, sizeof(Word));
100 *(vs[i]) = 2*i;
106 Word* tmp= vs[r1];
107 vs[r1] = vs[r2];
108 vs[r2] = tmp;
113 VG_(OSetGen_Insert)(oset, vs[i]);
121 assert( VG_(OSetGen_Contains)(oset, vs[i]) );
129 v = *(vs[
215 Word vs[NN]; local
369 Block* vs[NN]; local
[all...]
/external/libmtp/src/
H A Dplaylist-spl.c606 char vs[14]; // "VERSION 2.00\0" local
607 sprintf(vs,"VERSION %d.%02d",ver_major,ver_minor);
609 append_text_t(&c, vs);
/external/openssl/crypto/x509/
H A Dx509_lu.c289 int X509_STORE_get_by_subject(X509_STORE_CTX *vs, int type, X509_NAME *name, argument
292 X509_STORE *ctx=vs->ctx;
303 for (i=vs->current_method; i<sk_X509_LOOKUP_num(ctx->get_cert_methods); i++)
309 vs->current_method=j;
318 vs->current_method=0;
/external/libvpx/vpx_scale/generic/
H A Dvpxscale.c702 int vs = si->VScale; local
752 switch (vr * 30 / vs)
891 int vs = scale_vars->VScale; local
897 int sh = (scale_vars->expanded_frame_height * vr + vs - 1) / vs;
909 eh = (sh + 2) / 3 * 3 * vs / vr;
911 eh = (sh + 7) / 8 * 8 * vs / vr;
/external/llvm/include/llvm/ADT/
H A DHashing.h234 uint64_t vs = b + rotate(a, 31) + c; local
244 uint64_t r = shift_mix((vf + ws) * k2 + (wf + vs) * k0);
245 return shift_mix((seed ^ (r * k0)) + vs) * k2;
/external/libnfc-nxp/src/
H A DphFriNfc_LlcpTransport.c833 uint8_t vs,
884 psTransport->FrmrInfoBuffer[2] = (vs<<4)|vr ;
824 phFriNfc_LlcpTransport_SendFrameReject(phFriNfc_LlcpTransport_t *psTransport, uint8_t dsap, uint8_t rejectedPTYPE, uint8_t ssap, phFriNfc_Llcp_sPacketSequence_t* sLlcpSequence, uint8_t WFlag, uint8_t IFlag, uint8_t RFlag, uint8_t SFlag, uint8_t vs, uint8_t vsa, uint8_t vr, uint8_t vra) argument
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_blit_A.c701 #define VEC_MULTIPLY_ALPHA(vs, vd, valpha, mergePermute, v1_16, v8_16) do { \
703 vector unsigned short vtemp1 = vec_mule(vs, valpha); \
705 vector unsigned short vtemp2 = vec_mulo(vs, valpha); \
1009 vector unsigned char vs = (vector unsigned char)vec_ld(0, srcp); local
1019 vs = vec_perm(vs, voverflow, valigner);
1022 vsel = (vector unsigned char)vec_and((vector unsigned int)vs, vrgbmask);
1026 vs = vec_perm(vs, valpha, vsrcPermute);
1032 VEC_MULTIPLY_ALPHA(vs, v
1114 vector unsigned char vs = (vector unsigned char)vec_ld(0, srcp); local
1215 vector unsigned char vs = (vector unsigned char)vec_ld(0, srcp); local
1310 vector unsigned char vs = (vector unsigned char)vec_ld(0, srcp); local
1397 vector unsigned char vs = (vector unsigned char)vec_ld(0, srcp); local
[all...]
H A DSDL_blit_N.c621 vector unsigned int vs = vec_ld(0, srcp); local
629 vs = vec_perm(vs, voverflow, valigner);
631 vsel = (vector unsigned char)vec_and(vs, vrgbmask);
632 vsel = (vector unsigned char)vec_cmpeq(vs, vckey);
634 vs = vec_perm(vs, valpha, vpermute);
637 /* select the source and dest into vs */
638 vd = (vector unsigned int)vec_sel((vector unsigned char)vs, (vector unsigned char)vd, vsel);
644 vs
[all...]
/external/clang/test/CXX/expr/expr.const/
H A Dp2-0x.cpp311 constexpr volatile S vs; // expected-note {{here}} member in namespace:LValueToRValue
316 static_assert(vs.i, ""); // expected-error {{constant expression}} expected-note {{read of volatile-qualified type}}
317 static_assert(const_cast<int&>(vs.i), ""); // expected-error {{constant expression}} expected-note {{read of volatile object 'vs'}}
484 constexpr bool cmp() { return &a < &b; } // expected-error {{constexpr function never produces a constant expression}} expected-note {{comparison of address of fields 'a' and 'b' of 'A' with differing access specifiers (public vs private) has unspecified value}}
491 constexpr bool cmp() { return &a.a < &b.a; } // expected-error {{constexpr function never produces a constant expression}} expected-note {{comparison of address of fields 'a' and 'b' of 'B' with differing access specifiers (public vs protected) has unspecified value}}
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp1334 std::string vs = TypeString('0' + vi, TDTypeVec[i]); local
1335 OS << "typedef struct " << vs << " {\n"; local
1339 OS << vs << ";\n\n"; local
/external/e2fsprogs/lib/blkid/
H A Dprobe.c518 struct vfat_super_block *vs = (struct vfat_super_block *) buf; local
546 fat_length = blkid_le32(vs->vs_fat32_length);
563 root_dir_entries = vs->vs_dir_entries[0] +
564 (vs->vs_dir_entries[1] << 8);
580 buf_size = vs->vs_cluster_size * sector_size;
583 next = blkid_le32(vs->vs_root_cluster);
589 next_sect_off = (next - 2) * vs->vs_cluster_size;
616 vol_label = vs->vs_label;
617 vol_serno = vs->vs_serno;
/external/libvpx/vp8/encoder/
H A Dfirstpass.c863 // Calculate a corrective factor based on a rolling ratio of bits spent vs target bits
1018 // Calculate a corrective factor based on a rolling ratio of bits spent vs target bits
1029 // The idea here is to favour subsampling in the hardest sections vs the easyest.
2636 // The final one insures that the frame receives at least the allocation it would have received based on its own error score vs the error score remaining
2714 int hr, hs, vr, vs; local
2822 Scale2Ratio(cpi->common.vert_scale, &vr, &vs);
2825 new_height = ((vs - 1) + (cpi->oxcf.Height * vr)) / vs;
/external/qemu/
H A Dvnc-android.c213 static inline uint32_t vnc_has_feature(VncState *vs, int feature) { argument
214 return (vs->features & (1 << feature));
225 static void vnc_disconnect_start(VncState *vs);
226 static void vnc_disconnect_finish(VncState *vs);
228 static void vnc_colordepth(VncState *vs);
271 static void vnc_update(VncState *vs, int x, int y, int w, int h) argument
273 struct VncSurface *s = &vs->guest;
298 VncState *vs = vd->clients; local
299 while (vs != NULL) {
300 vnc_update(vs,
305 vnc_framebuffer_update(VncState *vs, int x, int y, int w, int h, int32_t encoding) argument
349 vnc_resize(VncState *vs) argument
389 VncState *vs = vd->clients; local
397 vnc_write_pixels_copy(VncState *vs, void *pixels, int size) argument
403 vnc_convert_pixel(VncState *vs, uint8_t *buf, uint32_t v) argument
446 vnc_write_pixels_generic(VncState *vs, void *pixels1, int size) argument
479 send_framebuffer_update_raw(VncState *vs, int x, int y, int w, int h) argument
527 send_framebuffer_update_hextile(VncState *vs, int x, int y, int w, int h) argument
548 vnc_zlib_init(VncState *vs) argument
555 vnc_zlib_start(VncState *vs) argument
564 vnc_zlib_stop(VncState *vs, int stream_id) argument
619 send_framebuffer_update_zlib(VncState *vs, int x, int y, int w, int h) argument
644 send_framebuffer_update(VncState *vs, int x, int y, int w, int h) argument
661 vnc_copy(VncState *vs, int src_x, int src_y, int dst_x, int dst_y, int w, int h) argument
675 VncState *vs, *vn; local
712 VncState *vs = opaque; local
824 VncState *vs = opaque; local
849 VncState *vs = opaque; local
859 audio_add(VncState *vs) argument
879 audio_del(VncState *vs) argument
887 vnc_disconnect_start(VncState *vs) argument
896 vnc_disconnect_finish(VncState *vs) argument
930 vnc_client_io_error(VncState *vs, int ret, int last_errno) argument
956 vnc_client_error(VncState *vs) argument
978 vnc_client_write_buf(VncState *vs, const uint8_t *data, size_t datalen) argument
1009 vnc_client_write_plain(VncState *vs) argument
1049 VncState *vs = opaque; local
1061 vnc_read_when(VncState *vs, VncReadEvent *func, size_t expecting) argument
1083 vnc_client_read_buf(VncState *vs, uint8_t *data, size_t datalen) argument
1112 vnc_client_read_plain(VncState *vs) argument
1133 VncState *vs = opaque; local
1167 vnc_write(VncState *vs, const void *data, size_t len) argument
1178 vnc_write_s32(VncState *vs, int32_t value) argument
1183 vnc_write_u32(VncState *vs, uint32_t value) argument
1195 vnc_write_u16(VncState *vs, uint16_t value) argument
1205 vnc_write_u8(VncState *vs, uint8_t value) argument
1210 vnc_flush(VncState *vs) argument
1238 client_cut_text(VncState *vs, size_t len, uint8_t *text) argument
1242 check_pointer_type_change(VncState *vs, int absolute) argument
1256 pointer_event(VncState *vs, int button_mask, int x, int y) argument
1293 reset_keys(VncState *vs) argument
1306 press_key(VncState *vs, int keysym) argument
1312 do_key_event(VncState *vs, int down, int keycode, int sym) argument
1465 key_event(VncState *vs, int down, uint32_t sym) argument
1476 ext_key_event(VncState *vs, int down, uint32_t sym, uint16_t keycode) argument
1486 framebuffer_update_request(VncState *vs, int incremental, int x_position, int y_position, int w, int h) argument
1512 send_ext_key_event_ack(VncState *vs) argument
1522 send_ext_audio_ack(VncState *vs) argument
1532 set_encodings(VncState *vs, int32_t *encodings, size_t n_encodings) argument
1591 set_pixel_conversion(VncState *vs) argument
1624 set_pixel_format(VncState *vs, int bits_per_pixel, int depth, int big_endian_flag, int true_color_flag, int red_max, int green_max, int blue_max, int red_shift, int green_shift, int blue_shift) argument
1659 pixel_format_message(VncState *vs) argument
1695 vnc_colordepth(VncState *vs) argument
1711 protocol_client_msg(VncState *vs, uint8_t *data, size_t len) argument
1847 protocol_client_init(VncState *vs, uint8_t *data, size_t len) argument
1871 start_client_init(VncState *vs) argument
1876 make_challenge(VncState *vs) argument
1886 protocol_client_auth_vnc(VncState *vs, uint8_t *data, size_t len) argument
1936 start_auth_vnc(VncState *vs) argument
1947 protocol_client_auth(VncState *vs, uint8_t *data, size_t len) argument
2005 protocol_version(VncState *vs, uint8_t *version, size_t len) argument
2066 VncState *vs = qemu_mallocz(sizeof(VncState)); local
2100 VncDisplay *vs = opaque; local
2113 VncDisplay *vs = qemu_mallocz(sizeof(*vs)); local
2143 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
2165 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
2181 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
2188 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
[all...]
H A Dvnc.c207 static inline uint32_t vnc_has_feature(VncState *vs, int feature) { argument
208 return (vs->features & (1 << feature));
219 static void vnc_disconnect_start(VncState *vs);
220 static void vnc_disconnect_finish(VncState *vs);
222 static void vnc_colordepth(VncState *vs);
265 static void vnc_update(VncState *vs, int x, int y, int w, int h) argument
267 struct VncSurface *s = &vs->guest;
292 VncState *vs = vd->clients; local
293 while (vs != NULL) {
294 vnc_update(vs,
299 vnc_framebuffer_update(VncState *vs, int x, int y, int w, int h, int32_t encoding) argument
343 vnc_resize(VncState *vs) argument
383 VncState *vs = vd->clients; local
391 vnc_write_pixels_copy(VncState *vs, void *pixels, int size) argument
397 vnc_convert_pixel(VncState *vs, uint8_t *buf, uint32_t v) argument
440 vnc_write_pixels_generic(VncState *vs, void *pixels1, int size) argument
473 send_framebuffer_update_raw(VncState *vs, int x, int y, int w, int h) argument
521 send_framebuffer_update_hextile(VncState *vs, int x, int y, int w, int h) argument
542 vnc_zlib_init(VncState *vs) argument
549 vnc_zlib_start(VncState *vs) argument
558 vnc_zlib_stop(VncState *vs, int stream_id) argument
613 send_framebuffer_update_zlib(VncState *vs, int x, int y, int w, int h) argument
638 send_framebuffer_update(VncState *vs, int x, int y, int w, int h) argument
655 vnc_copy(VncState *vs, int src_x, int src_y, int dst_x, int dst_y, int w, int h) argument
669 VncState *vs, *vn; local
706 VncState *vs = opaque; local
818 VncState *vs = opaque; local
843 VncState *vs = opaque; local
853 audio_add(VncState *vs) argument
873 audio_del(VncState *vs) argument
881 vnc_disconnect_start(VncState *vs) argument
890 vnc_disconnect_finish(VncState *vs) argument
924 vnc_client_io_error(VncState *vs, int ret, int last_errno) argument
950 vnc_client_error(VncState *vs) argument
972 vnc_client_write_buf(VncState *vs, const uint8_t *data, size_t datalen) argument
1003 vnc_client_write_plain(VncState *vs) argument
1043 VncState *vs = opaque; local
1055 vnc_read_when(VncState *vs, VncReadEvent *func, size_t expecting) argument
1077 vnc_client_read_buf(VncState *vs, uint8_t *data, size_t datalen) argument
1106 vnc_client_read_plain(VncState *vs) argument
1127 VncState *vs = opaque; local
1161 vnc_write(VncState *vs, const void *data, size_t len) argument
1172 vnc_write_s32(VncState *vs, int32_t value) argument
1177 vnc_write_u32(VncState *vs, uint32_t value) argument
1189 vnc_write_u16(VncState *vs, uint16_t value) argument
1199 vnc_write_u8(VncState *vs, uint8_t value) argument
1204 vnc_flush(VncState *vs) argument
1232 client_cut_text(VncState *vs, size_t len, uint8_t *text) argument
1236 check_pointer_type_change(VncState *vs, int absolute) argument
1250 pointer_event(VncState *vs, int button_mask, int x, int y) argument
1287 reset_keys(VncState *vs) argument
1300 press_key(VncState *vs, int keysym) argument
1306 do_key_event(VncState *vs, int down, int keycode, int sym) argument
1459 key_event(VncState *vs, int down, uint32_t sym) argument
1470 ext_key_event(VncState *vs, int down, uint32_t sym, uint16_t keycode) argument
1480 framebuffer_update_request(VncState *vs, int incremental, int x_position, int y_position, int w, int h) argument
1506 send_ext_key_event_ack(VncState *vs) argument
1516 send_ext_audio_ack(VncState *vs) argument
1526 set_encodings(VncState *vs, int32_t *encodings, size_t n_encodings) argument
1585 set_pixel_conversion(VncState *vs) argument
1618 set_pixel_format(VncState *vs, int bits_per_pixel, int depth, int big_endian_flag, int true_color_flag, int red_max, int green_max, int blue_max, int red_shift, int green_shift, int blue_shift) argument
1653 pixel_format_message(VncState *vs) argument
1689 vnc_colordepth(VncState *vs) argument
1705 protocol_client_msg(VncState *vs, uint8_t *data, size_t len) argument
1841 protocol_client_init(VncState *vs, uint8_t *data, size_t len) argument
1865 start_client_init(VncState *vs) argument
1870 make_challenge(VncState *vs) argument
1880 protocol_client_auth_vnc(VncState *vs, uint8_t *data, size_t len) argument
1930 start_auth_vnc(VncState *vs) argument
1941 protocol_client_auth(VncState *vs, uint8_t *data, size_t len) argument
1999 protocol_version(VncState *vs, uint8_t *version, size_t len) argument
2060 VncState *vs = qemu_mallocz(sizeof(VncState)); local
2094 VncDisplay *vs = opaque; local
2109 VncDisplay *vs = qemu_mallocz(sizeof(*vs)); local
2139 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
2161 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
2177 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
2184 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
[all...]
/external/llvm/include/llvm/Object/
H A DELF.h2394 const Elf_Versym *vs = getEntry<Elf_Versym>(dot_gnu_version_sec, entry_index); local
2395 size_t version_index = vs->vs_index & ELF::VERSYM_VERSION;
2424 IsDefault = !(vs->vs_index & ELF::VERSYM_HIDDEN);

Completed in 823 milliseconds

12