HomeSort by relevance Sort by last modified time
    Searched defs:vs (Results 1 - 25 of 29) sorted by null

1 2

  /system/core/toolbox/
setconsole.c 109 struct vt_stat vs; local
111 res = ioctl(fd, VT_GETSTATE, &vs);
113 fprintf(stderr, "ioctl(vcfd, VT_GETSTATE, &vs) failed, %d\n", res);
115 printf("%d\n", vs.v_active);
  /bootable/bootloader/legacy/arch_msm7k/
mddi.c 239 mddi_video_stream *vs = &(mlist[n].u.v); local
241 vs->length = sizeof(mddi_video_stream) - 2 + (pixels * 2);
242 vs->type = TYPE_VIDEO_STREAM;
243 vs->client_id = 0;
244 vs->format = 0x5565; // FORMAT_16BPP;
245 vs->pixattr = PIXATTR_BOTH_EYES | PIXATTR_TO_ALL;
247 vs->left = 0;
248 vs->right = fb_width - 1;
249 vs->top = y;
250 vs->bottom = y + 7
    [all...]
  /external/bluetooth/bluez/test/
hstest.c 164 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) {
  /frameworks/base/services/surfaceflinger/DisplayHardware/
DisplayHardwareBase.cpp 172 struct vt_stat vs; local
173 res = ioctl(fd, VT_GETSTATE, &vs);
249 this->prev_vt_num = vs.v_active;
  /cts/tests/tests/net/src/android/net/cts/
UrlQuerySanitizerTest.java 302 ValueSanitizer vs = new IllegalCharacterValueSanitizer(ALL_OK); local
303 uqs.registerParameter(NAME, vs);
309 uqs.registerParameters(register, vs);
315 uqs.setUnregisteredParameterValueSanitizer(vs);
316 assertEquals(vs, uqs.getUnregisteredParameterValueSanitizer());
318 vs = UrlQuerySanitizer.getAllIllegal();
319 assertEquals("Joe_User", vs.sanitize("Joe<User"));
320 vs = UrlQuerySanitizer.getAllButNulAndAngleBracketsLegal();
321 assertEquals("Joe User", vs.sanitize("Joe<>\0User"));
322 vs = UrlQuerySanitizer.getAllButNulLegal()
    [all...]
  /external/libvpx/vpx_scale/leapster/
vpxscale_lf.c 544 int vs = si->VScale; local
582 switch (vr * 10 / vs)
693 int vs = scale_vars->VScale; local
699 int sh = (scale_vars->expanded_frame_height * vr + vs - 1) / vs;
711 eh = (sh + 2) / 3 * 3 * vs / vr;
713 eh = (sh + 7) / 8 * 8 * vs / vr;
  /frameworks/base/media/libmedia/
IMediaRecorder.cpp 91 status_t setVideoSource(int vs)
93 LOGV("setVideoSource(%d)", vs);
96 data.writeInt32(vs);
330 int vs = data.readInt32(); local
331 reply->writeInt32(setVideoSource(vs));
  /libcore/luni/src/main/java/org/apache/xpath/
VariableStack.java 73 VariableStack vs = (VariableStack) super.clone(); local
76 vs._stackFrames = (XObject[]) _stackFrames.clone();
77 vs._links = (int[]) _links.clone();
79 return vs;
  /external/libvpx/vpx_scale/generic/
vpxscale.c 702 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;
    [all...]
  /frameworks/base/services/surfaceflinger/
LayerBase.cpp 406 const GLfloat vs = (texture.NPOTAdjust ? texture.hScale : 1.0f) / height; local
408 ct = mBufferCrop.top * vs;
410 cb = mBufferCrop.bottom * vs;
  /external/bluetooth/bluez/tools/
hciconfig.c 731 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 & 0xc0) >> 6])
    [all...]
  /external/e2fsprogs/lib/blkid/
probe.c 442 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/libvpx/vp8/decoder/x86/
onyxdxv.c 111 int vs; member in struct:t_ximage_codec
217 int hs, hr, vs, vr; local
253 Scale2Ratio(common->vert_scale, &vr, &vs);
461 newh = vs * tab->this_buffer.y_height / vr;
465 if (tab->hs != hs || tab->hr != hr || tab->vs != vs || tab->vr != vr)
472 neww, newh, SCALE_TO_FIT, hs, hr, vs, vr);
477 ch = vs * common->Height / vr;
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit_A.c 700 #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
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...]
SDL_blit_N.c 621 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 = voverflow
    [all...]
  /libcore/luni/src/main/java/java/util/
HashMap.java 711 Collection<V> vs = values; local
712 return (vs != null) ? vs : (values = new Values());
    [all...]
Hashtable.java 612 Collection<V> vs = values; local
613 return (vs != null) ? vs : (values = new Values());
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 1019 Collection<V> vs = values; local
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
TransformerImpl.java 1643 VariableStack vs = xctxt.getVarStack(); local
    [all...]
  /external/clearsilver/cs/
csparse.c 884 char *vs; local
886 vs = var_lookup (parse, name);
888 if (vs == NULL)
891 return atoi(vs);
    [all...]
  /external/guava/src/com/google/common/collect/
CustomConcurrentHashMap.java 1588 Collection<V> vs = values; local
    [all...]
  /external/libvpx/vp8/encoder/
firstpass.c 908 // Calculate a corrective factor based on a rolling ratio of bits spent vs target bits
2450 int hr, hs, vr, vs; local
    [all...]
  /external/qemu/
vnc-android.c 213 static inline uint32_t vnc_has_feature(VncState *vs, int feature) {
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)
273 struct VncSurface *s = &vs->guest;
298 VncState *vs = vd->clients; local
299 while (vs != NULL) {
300 vnc_update(vs, x, y, w, h)
389 VncState *vs = vd->clients; local
675 VncState *vs, *vn; local
712 VncState *vs = opaque; local
824 VncState *vs = opaque; local
849 VncState *vs = opaque; local
1049 VncState *vs = opaque; local
1133 VncState *vs = opaque; local
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...]
vnc.c 207 static inline uint32_t vnc_has_feature(VncState *vs, int feature) {
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)
267 struct VncSurface *s = &vs->guest;
292 VncState *vs = vd->clients; local
293 while (vs != NULL) {
294 vnc_update(vs, x, y, w, h)
383 VncState *vs = vd->clients; local
669 VncState *vs, *vn; local
706 VncState *vs = opaque; local
818 VncState *vs = opaque; local
843 VncState *vs = opaque; local
1043 VncState *vs = opaque; local
1127 VncState *vs = opaque; local
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/v8/src/arm/
assembler-arm.h 264 vs = 6 << 28, // V set overflow. enumerator in enum:v8::internal::Condition
    [all...]

Completed in 2077 milliseconds

1 2