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

1 2

  /external/tremolo/Tremolo/
ivorbiscodec.h 93 extern void vorbis_comment_init(vorbis_comment *vc);
94 extern void vorbis_comment_add(vorbis_comment *vc, char *comment);
95 extern void vorbis_comment_add_tag(vorbis_comment *vc,
97 extern char *vorbis_comment_query(vorbis_comment *vc, char *tag, int count);
98 extern int vorbis_comment_query_count(vorbis_comment *vc, char *tag);
99 extern void vorbis_comment_clear(vorbis_comment *vc);
treminfo.c 58 void vorbis_comment_init(vorbis_comment *vc){
59 memset(vc,0,sizeof(*vc));
74 char *vorbis_comment_query(vorbis_comment *vc, char *tag, int count){
83 for(i=0;i<vc->comments;i++){
84 if(!tagcompare(vc->user_comments[i], fulltag, taglen)){
87 return vc->user_comments[i] + taglen;
95 int vorbis_comment_query_count(vorbis_comment *vc, char *tag){
102 for(i=0;i<vc->comments;i++){
103 if(!tagcompare(vc->user_comments[i], fulltag, taglen)
    [all...]
vorbisfile.c 270 vorbis_comment_clear(&vf->vc);
283 vorbis_comment *vc,
306 vorbis_comment_init(vc);
318 if((ret=vorbis_dsp_headerin(vi,vc,&op))){
339 vorbis_comment_clear(vc);
355 return _fetch_headers(vf,&vf->vi,&vf->vc,&vf->current_serialno,NULL);
398 if(_fetch_headers(vf,&vf->vi,&vf->vc,NULL,NULL)<0){
465 vorbis_comment_clear(&vf->vc);
690 ret=_fetch_headers(vf,&vf->vi,&vf->vc,&vf->current_serialno,&og);
697 int ret=_fetch_headers(vf,&vf->vi,&vf->vc,&vf->current_serialno,&og)
    [all...]
codec_internal.h 222 extern int vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,
ivorbisfile.h 81 vorbis_comment vc; member in struct:OggVorbis_File
  /external/qemu/
net-android.c 309 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
311 snprintf(vc->info_str, sizeof(vc->info_str),
313 vc->model,
325 VLANClientState *vc; local
327 for (vc = vlan->first_client; vc; vc = vc->next)
328 if (vc != vc1 && strcmp(vc->model, model) == 0
346 VLANClientState *vc, **pvc; local
402 VLANClientState *vc; local
420 VLANClientState *vc; local
552 VLANClientState *vc; local
1110 VLANClientState *vc; member in struct:TAPState
1497 VLANClientState *vc; member in struct:VDEState
1564 VLANClientState *vc; member in struct:NetSocketState
2481 VLANClientState *vc; local
2525 VLANClientState *vc; local
2537 VLANClientState *vc = NULL; local
2570 VLANClientState *vc = vlan->first_client; local
    [all...]
net.c 304 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
306 snprintf(vc->info_str, sizeof(vc->info_str),
308 vc->model,
320 VLANClientState *vc; local
322 for (vc = vlan->first_client; vc; vc = vc->next)
323 if (vc != vc1 && strcmp(vc->model, model) == 0
341 VLANClientState *vc, **pvc; local
397 VLANClientState *vc; local
415 VLANClientState *vc; local
547 VLANClientState *vc; local
1025 VLANClientState *vc; member in struct:TAPState
1412 VLANClientState *vc; member in struct:VDEState
1479 VLANClientState *vc; member in struct:NetSocketState
2419 VLANClientState *vc; local
2463 VLANClientState *vc; local
2475 VLANClientState *vc = NULL; local
2508 VLANClientState *vc = vlan->first_client; local
    [all...]
net.h 63 void qemu_del_vlan_client(VLANClientState *vc);
65 int qemu_can_send_packet(VLANClientState *vc);
66 ssize_t qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov,
68 ssize_t qemu_sendv_packet_async(VLANClientState *vc, const struct iovec *iov,
70 void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size);
71 ssize_t qemu_send_packet_async(VLANClientState *vc, const uint8_t *buf,
73 void qemu_flush_queued_packets(VLANClientState *vc);
74 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6]);
tap-win32.c 637 VLANClientState *vc; member in struct:TAPState
641 static void tap_cleanup(VLANClientState *vc)
643 TAPState *s = vc->opaque;
653 static ssize_t tap_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
655 TAPState *s = vc->opaque;
669 qemu_send_packet(s->vc, buf, size);
687 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, tap_receive,
690 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
  /cts/tests/tests/view/src/android/view/cts/
ViewConfigurationTest.java 194 ViewConfiguration vc = ViewConfiguration.get(getInstrumentation().getTargetContext()); local
195 assertNotNull(vc);
196 vc.getScaledDoubleTapSlop();
197 vc.getScaledEdgeSlop();
198 vc.getScaledFadingEdgeLength();
199 vc.getScaledMaximumDrawingCacheSize();
200 vc.getScaledMinimumFlingVelocity();
201 vc.getScaledScrollBarSize();
202 vc.getScaledTouchSlop();
203 vc.getScaledWindowTouchSlop()
    [all...]
  /external/bluetooth/bluez/audio/
telephony-ofono.c 111 struct voice_call *vc = l->data; local
113 if (g_str_equal(vc->obj_path, path))
114 return vc;
125 struct voice_call *vc = l->data; local
127 if (vc->status == status)
128 return vc;
223 struct voice_call *vc; local
226 if ((vc = find_vc_with_status(CALL_STATUS_ACTIVE))) {
227 } else if ((vc = find_vc_with_status(CALL_STATUS_DIALING))) {
228 } else if ((vc = find_vc_with_status(CALL_STATUS_ALERTING)))
255 struct voice_call *vc = find_vc_with_status(CALL_STATUS_INCOMING); local
348 struct voice_call *vc = l->data; local
619 struct voice_call *vc; local
732 struct voice_call *vc = NULL, *vc_new = NULL; local
793 struct voice_call *vc = NULL; local
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/java/sql/
StressTest.java 42 Vector<Connection> vc = new Vector<Connection>(); field in class:StressTest
54 vc.clear();
97 // vc.clear();
125 maxConnections, vc.size());
153 assertEquals("Unable to create a connection", numTasks, vc.size());
191 for (int i = 0; i < vc.size(); ++i) {
194 Connection c = vc.elementAt(i);
238 assertEquals("Unable to create a connection", numConnections, vc.size());
283 vc.add(c);
294 for (; i < vc.size(); ++i)
    [all...]
  /external/kernel-headers/original/linux/
console_struct.h 49 struct console_font vc_font; /* Current VC font set */
104 struct vc { struct
112 extern struct vc vc_cons [MAX_NR_CONSOLES];
  /frameworks/base/opengl/libagl/
array.cpp 120 c->vc.init();
122 if (!c->vc.vBuffer) {
130 c->vc.uninit();
459 c->vc.misses++;
470 v = c->vc.vBuffer + 2;
482 index |= c->vc.sequence;
486 vertex_t* const v = c->vc.vCache +
497 vertex_t* v = c->vc.vCache +
520 vertex_t* v = c->vc.vBuffer + 2;
542 vertex_t* v = c->vc.vBuffer
    [all...]
copybit.cpp 474 c->arrays.compileElements(c, c->vc.vBuffer, 0, 4);
484 const vec4_t& v0 = c->vc.vBuffer[0].window;
485 const vec4_t& v1 = c->vc.vBuffer[1].window;
486 const vec4_t& v2 = c->vc.vBuffer[2].window;
487 const vec4_t& v3 = c->vc.vBuffer[3].window;
504 vertex_t* const v = &c->vc.vBuffer[i];
510 const vec4_t& t0 = c->vc.vBuffer[0].texture[0];
511 const vec4_t& t1 = c->vc.vBuffer[1].texture[0];
512 const vec4_t& t2 = c->vc.vBuffer[2].texture[0];
513 const vec4_t& t3 = c->vc.vBuffer[3].texture[0]
    [all...]
  /bionic/libc/kernel/common/linux/
console_struct.h 104 struct vc { struct
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
console_struct.h 104 struct vc { struct
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
console_struct.h 104 struct vc { struct
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
console_struct.h 104 struct vc { struct
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
console_struct.h 104 struct vc { struct
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
console_struct.h 104 struct vc { struct
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
console_struct.h 104 struct vc { struct
  /external/qemu/hw/
smc91c111.c 21 VLANClientState *vc; member in struct:__anon4764
210 qemu_send_packet(s->vc, p, len);
594 static int smc91c111_can_receive(VLANClientState *vc)
596 smc91c111_state *s = vc->opaque;
605 static ssize_t smc91c111_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
607 smc91c111_state *s = vc->opaque;
695 static void smc91c111_cleanup(VLANClientState *vc)
697 smc91c111_state *s = vc->opaque;
715 s->vc = qdev_get_vlan_client(&dev->qdev,
718 qemu_format_nic_info_str(s->vc, s->macaddr)
    [all...]
  /external/v8/test/cctest/
test-disasm-arm.cc 154 COMPARE(adc(r4, ip, Operand(ip, ASR, 1), LeaveCC, vc),
158 COMPARE(adc(r8, lr, Operand(ip, ASR, 31), SetCC, vc),
235 COMPARE(bic(r0, r9, Operand(r2), LeaveCC, vc),
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
RecognizerLogger.java 154 for (VoiceContact vc : contacts) logLine(vc.toString());

Completed in 1454 milliseconds

1 2