Searched refs:vs (Results 1 - 25 of 39) sorted by relevance

12

/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...]
H A Dvnc-tls.h66 int vnc_tls_client_setup(VncState *vs, int x509Creds);
67 void vnc_tls_client_cleanup(VncState *vs);
69 int vnc_tls_validate_certificate(VncState *vs);
H A Dvnchextile.h10 static void CONCAT(send_hextile_tile_, NAME)(VncState *vs,
16 uint8_t *row = vs->server.ds->data + y * ds_get_linesize(vs->ds) + x * ds_get_bytes_per_pixel(vs->ds);
27 uint8_t data[(vs->clientds.pf.bytes_per_pixel + 2) * 16 * 16];
60 irow += ds_get_linesize(vs->ds) / sizeof(pixel_t);
108 irow += ds_get_linesize(vs->ds) / sizeof(pixel_t);
134 vnc_convert_pixel(vs, data + n_data, color);
135 n_data += vs->clientds.pf.bytes_per_pixel;
154 vnc_convert_pixel(vs, dat
[all...]
H A Dvnc.h61 typedef int VncReadEvent(VncState *vs, uint8_t *data, size_t len);
63 typedef void VncWritePixels(VncState *vs, void *data, int size);
65 typedef void VncSendHextileTile(VncState *vs,
280 long vnc_client_read_buf(VncState *vs, uint8_t *data, size_t datalen);
281 long vnc_client_write_buf(VncState *vs, const uint8_t *data, size_t datalen);
284 void vnc_write(VncState *vs, const void *data, size_t len);
285 void vnc_write_u32(VncState *vs, uint32_t value);
286 void vnc_write_s32(VncState *vs, int32_t value);
287 void vnc_write_u16(VncState *vs, uint16_t value);
288 void vnc_write_u8(VncState *vs, uint8_
[all...]
/external/bluetooth/bluez/test/
H A Dhstest.c164 uint16_t sco_handle, sco_mtu, vs; local
195 hci_read_voice_setting(dd, &vs, 1000);
196 vs = htobs(vs);
197 fprintf(stderr, "Voice setting: 0x%04x\n", vs);
199 if (vs != 0x0060) {
/external/opencore/android/author/
H A DPVMediaRecorder.cpp72 status_t PVMediaRecorder::setVideoSource(video_source vs) argument
74 LOGV("setVideoSource(%d)", vs);
85 ac->vs = vs;
H A Dauthordriver.h169 video_source vs; member in struct:android::set_video_source_command
/external/zlib/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/v8/benchmarks/
H A Dregexp.js145 var str7 = ';;jvaqbj.IjPurpxZbhfrCbfvgvbaNQ_VQ=shapgvba(r){vs(!r)ine r=jvaqbj.rirag;ine c=-1;vs(d1)c=d1.EbyybssCnary;ine bo=IjTrgBow("IjCnayNQ_VQ_"+c);vs(bo&&bo.fglyr.ivfvovyvgl=="ivfvoyr"){ine fns=IjFns?8:0;ine pheK=r.pyvragK+IjBOFpe("U")+fns,pheL=r.pyvragL+IjBOFpe("I")+fns;ine y=IjBOEC(NQ_VQ,bo,"Y"),g=IjBOEC(NQ_VQ,bo,"G");ine e=y+d1.Cnaryf[c].Jvqgu,o=g+d1.Cnaryf[c].Urvtug;vs((pheK<y)||(pheK>e)||(pheL<g)||(pheL>o)){vs(jvaqbj.IjBaEbyybssNQ_VQ)IjBaEbyybssNQ_VQ(c);ryfr IjPybfrNq(NQ_VQ,c,gehr,"");}ryfr erghea;}IjPnapryZbhfrYvfgrareNQ_VQ();};;jvaqbj.IjFrgEbyybssCnaryNQ_VQ=shapgvba(c){ine z="zbhfrzbir",q=qbphzrag,s=IjPurpxZbhfrCbfvgvbaNQ_VQ;c=IjTc(NQ_VQ,c);vs(d1&&d1.EbyybssCnary>-1)IjPnapryZbhfrYvfgrareNQ_VQ();vs(d1)d1.EbyybssCnary=c;gel{vs(q.nqqRiragYvfgrare)q.nqqRiragYvfgrare(z,s,snyfr);ryfr vs(q.nggnpuRirag)q.nggnpuRirag("ba"+z,s);}pngpu(r){}};;jvaqbj.IjPnapryZbhfrYvfgrareNQ_VQ=shapgvba(){ine z="zbhfrzbir",q=qbphzrag,s=IjPurpxZbhfrCbfvgvbaNQ_VQ;vs(d
[all...]
/external/webkit/SunSpider/tests/v8-v4/
H A Dv8-regexp.js141 var str7 = ';;jvaqbj.IjPurpxZbhfrCbfvgvbaNQ_VQ=shapgvba(r){vs(!r)ine r=jvaqbj.rirag;ine c=-1;vs(d1)c=d1.EbyybssCnary;ine bo=IjTrgBow("IjCnayNQ_VQ_"+c);vs(bo&&bo.fglyr.ivfvovyvgl=="ivfvoyr"){ine fns=IjFns?8:0;ine pheK=r.pyvragK+IjBOFpe("U")+fns,pheL=r.pyvragL+IjBOFpe("I")+fns;ine y=IjBOEC(NQ_VQ,bo,"Y"),g=IjBOEC(NQ_VQ,bo,"G");ine e=y+d1.Cnaryf[c].Jvqgu,o=g+d1.Cnaryf[c].Urvtug;vs((pheK<y)||(pheK>e)||(pheL<g)||(pheL>o)){vs(jvaqbj.IjBaEbyybssNQ_VQ)IjBaEbyybssNQ_VQ(c);ryfr IjPybfrNq(NQ_VQ,c,gehr,"");}ryfr erghea;}IjPnapryZbhfrYvfgrareNQ_VQ();};;jvaqbj.IjFrgEbyybssCnaryNQ_VQ=shapgvba(c){ine z="zbhfrzbir",q=qbphzrag,s=IjPurpxZbhfrCbfvgvbaNQ_VQ;c=IjTc(NQ_VQ,c);vs(d1&&d1.EbyybssCnary>-1)IjPnapryZbhfrYvfgrareNQ_VQ();vs(d1)d1.EbyybssCnary=c;gel{vs(q.nqqRiragYvfgrare)q.nqqRiragYvfgrare(z,s,snyfr);ryfr vs(q.nggnpuRirag)q.nggnpuRirag("ba"+z,s);}pngpu(r){}};;jvaqbj.IjPnapryZbhfrYvfgrareNQ_VQ=shapgvba(){ine z="zbhfrzbir",q=qbphzrag,s=IjPurpxZbhfrCbfvgvbaNQ_VQ;vs(d
[all...]
/external/e2fsprogs/lib/blkid/
H A Dprobe.c442 struct vfat_super_block *vs = (struct vfat_super_block *) buf; local
470 fat_length = blkid_le32(vs->vs_fat32_length);
487 root_dir_entries = vs->vs_dir_entries[0] +
488 (vs->vs_dir_entries[1] << 8);
504 buf_size = vs->vs_cluster_size * sector_size;
507 next = blkid_le32(vs->vs_root_cluster);
513 next_sect_off = (next - 2) * vs->vs_cluster_size;
540 vol_label = vs->vs_label;
541 vol_serno = vs->vs_serno;
569 struct vfat_super_block *vs; local
[all...]
/external/astl/tests/
H A DAndroid.mk29 # generate the right make target (host vs device). $(5) is used in the
30 # module's name to have different name for the host vs device
/external/openssl/crypto/x509/
H A Dx509_lu.c287 int X509_STORE_get_by_subject(X509_STORE_CTX *vs, int type, X509_NAME *name, argument
290 X509_STORE *ctx=vs->ctx;
301 for (i=vs->current_method; i<sk_X509_LOOKUP_num(ctx->get_cert_methods); i++)
307 vs->current_method=j;
316 vs->current_method=0;
H A Dx509_vfy.h413 int X509_STORE_get_by_subject(X509_STORE_CTX *vs,int type,X509_NAME *name,
/external/bluetooth/bluez/tools/
H A Dhciconfig.c731 uint16_t vs = htobs(strtoul(opt, NULL, 16)); local
732 if (hci_write_voice_setting(s, vs, 2000) < 0) {
738 uint16_t vs; local
740 if (hci_read_voice_setting(s, &vs, 1000) < 0) {
745 vs = htobs(vs);
746 ic = (vs & 0x0300) >> 8;
748 printf("\tVoice setting: 0x%04x%s\n", vs,
749 ((vs & 0x03fc) == 0x0060) ? " (Default Condition)" : "");
751 printf("\tInput Data Format: %s\n", idf[(vs
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_blit_A.c700 #define VEC_MULTIPLY_ALPHA(vs, vd, valpha, mergePermute, v1_16, v8_16) do { \
702 vector unsigned short vtemp1 = vec_mule(vs, valpha); \
704 vector unsigned short vtemp2 = vec_mulo(vs, valpha); \
1008 vector unsigned char vs = (vector unsigned char)vec_ld(0, srcp); local
1018 vs = vec_perm(vs, voverflow, valigner);
1021 vsel = (vector unsigned char)vec_and((vector unsigned int)vs, vrgbmask);
1025 vs = vec_perm(vs, valpha, vsrcPermute);
1031 VEC_MULTIPLY_ALPHA(vs, v
1113 vector unsigned char vs = (vector unsigned char)vec_ld(0, srcp); local
1214 vector unsigned char vs = (vector unsigned char)vec_ld(0, srcp); local
1309 vector unsigned char vs = (vector unsigned char)vec_ld(0, srcp); local
1396 vector unsigned char vs = (vector unsigned char)vec_ld(0, srcp); local
[all...]
/external/clearsilver/cs/
H A Dtest_joo.cs127 Testing ? and == '' - boolean vs. equality? um... boolean is a number,
148 Testing ? and != '' - boolean vs. in-equality? um...
/external/gtest/test/
H A DAndroid.mk54 # generate the right make target (host vs device). $(4) is used in the
55 # module's name and to have different module names for the host vs
/external/bluetooth/bluez/include/bluetooth/
H A Dhci_lib.h80 int hci_read_voice_setting(int dd, uint16_t *vs, int to);
81 int hci_write_voice_setting(int dd, uint16_t vs, int to);
/external/icu4c/test/perf/collationperf/
H A DCollPerf.pl147 my $title = "Collation: ICU " . $ICULatestVersion . " vs GLIBC";
162 <title>Collation: ICU4C vs. glibc</title>
169 print HTML "<h2>Collation: ICU4C ".$ICULatestVersion." vs. GLIBC</h2>\n";
216 <li>For more information on incremental vs. sort key comparison, the importance
/external/v8/test/cctest/
H A Dtest-disasm-arm.cc149 COMPARE(add(r7, r8, Operand(ip, ASR, 31), SetCC, vs),
233 COMPARE(bic(r0, lr, Operand(r1), LeaveCC, vs),
/external/libpng/
H A DCHANGES1948 logical vs bitwise NOT in pngrtran.c, bug introduced in 1.2.19rc2
1973 Again, fixed logical vs bitwise NOT in pngrtran.c, bug introduced
2272 Fixed string vs pointer-to-string error in png_check_keyword().
/external/guava/src/com/google/common/collect/
H A DCustomConcurrentHashMap.java1588 Collection<V> vs = values;
1589 return (vs != null) ? vs : (values = new Values());

Completed in 635 milliseconds

12