Searched refs:vc (Results 1 - 25 of 50) sorted by relevance

12

/external/valgrind/main/drd/
H A Ddrd_vc.c37 void DRD_(vc_reserve)(VectorClock* const vc, const unsigned new_capacity);
43 * Initialize the memory 'vc' points at as a vector clock with size 'size'.
47 void DRD_(vc_init)(VectorClock* const vc, argument
51 tl_assert(vc);
52 vc->size = 0;
53 vc->capacity = 0;
54 vc->vc = 0;
55 DRD_(vc_reserve)(vc, size);
56 tl_assert(size == 0 || vc
65 vc_cleanup(VectorClock* const vc) argument
84 vc_increment(VectorClock* const vc, DrdThreadId const tid) argument
238 vc_print(const VectorClock* const vc) argument
253 vc_aprint(const VectorClock* const vc) argument
296 vc_check(const VectorClock* const vc) argument
312 vc_reserve(VectorClock* const vc, const unsigned new_capacity) argument
[all...]
H A Ddrd_vc.h67 unsigned capacity; /**< number of elements allocated for array vc. */
68 unsigned size; /**< number of elements used of array vc. */
69 VCElem* vc; /**< vector clock elements. */ member in struct:__anon14466
74 void DRD_(vc_init)(VectorClock* const vc,
77 void DRD_(vc_cleanup)(VectorClock* const vc);
80 void DRD_(vc_increment)(VectorClock* const vc, DrdThreadId const tid);
90 void DRD_(vc_print)(const VectorClock* const vc);
91 char* DRD_(vc_aprint)(const VectorClock* const vc);
92 void DRD_(vc_check)(const VectorClock* const vc);
110 while (j < vc2->size && vc2->vc[
[all...]
H A Ddrd_segment.c83 DRD_(vc_copy)(&sg->vc, &creator_sg->vc);
85 DRD_(vc_init)(&sg->vc, 0, 0);
86 DRD_(vc_increment)(&sg->vc, created);
91 char* vc; local
93 vc = DRD_(vc_aprint)(&sg->vc);
94 VG_(message)(Vg_DebugMsg, "New segment for thread %d with vc %s\n",
95 created, vc);
96 VG_(free)(vc);
130 char* vc; local
165 char* vc; local
[all...]
H A Ddrd_thread.c386 char* vc; local
388 vc = DRD_(vc_aprint)(DRD_(thread_get_vc)(drd_joiner));
390 ", new vc: %s", vc);
391 VG_(free)(vc);
797 return &DRD_(g_threadinfo)[tid].last->vc;
818 * @param vc pointer to a vectorclock, holds result upon return.
820 static void DRD_(thread_compute_minimum_vc)(VectorClock* vc) argument
833 DRD_(vc_assign)(vc, &latest_sg->vc);
846 thread_compute_maximum_vc(VectorClock* vc) argument
1120 const VectorClock* const vc = &sg->vc; local
1424 char* vc; local
[all...]
H A Ddrd_segment.h54 VectorClock vc; member in struct:segment
/external/tremolo/Tremolo/
H A Divorbiscodec.h93 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);
H A Dtreminfo.c58 void vorbis_comment_init(vorbis_comment *vc){ argument
59 memset(vc,0,sizeof(*vc));
74 char *vorbis_comment_query(vorbis_comment *vc, char *tag, int count){ argument
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){ argument
102 for(i=0;i<vc->comments;i++){
103 if(!tagcompare(vc
110 vorbis_comment_clear(vorbis_comment *vc) argument
216 _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb) argument
313 vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,ogg_packet *op) argument
[all...]
/external/libvorbis/lib/
H A Dinfo.c61 void vorbis_comment_init(vorbis_comment *vc){ argument
62 memset(vc,0,sizeof(*vc));
65 void vorbis_comment_add(vorbis_comment *vc,const char *comment){ argument
66 vc->user_comments=_ogg_realloc(vc->user_comments,
67 (vc->comments+2)*sizeof(*vc->user_comments));
68 vc->comment_lengths=_ogg_realloc(vc
77 vorbis_comment_add_tag(vorbis_comment *vc, const char *tag, const char *contents) argument
97 vorbis_comment_query(vorbis_comment *vc, const char *tag, int count) argument
118 vorbis_comment_query_count(vorbis_comment *vc, const char *tag) argument
133 vorbis_comment_clear(vorbis_comment *vc) argument
240 _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb) argument
379 vorbis_synthesis_headerin(vorbis_info *vi,vorbis_comment *vc,ogg_packet *op) argument
461 _vorbis_pack_comment(oggpack_buffer *opb,vorbis_comment *vc) argument
547 vorbis_commentheader_out(vorbis_comment *vc, ogg_packet *op) argument
567 vorbis_analysis_headerout(vorbis_dsp_state *v, vorbis_comment *vc, ogg_packet *op, ogg_packet *op_comm, ogg_packet *op_code) argument
[all...]
H A Dvorbisfile.c281 static int _fetch_headers(OggVorbis_File *vf,vorbis_info *vi,vorbis_comment *vc, argument
297 vorbis_comment_init(vc);
327 if((ret=vorbis_synthesis_headerin(vi,vc,&op))){
374 if((ret=vorbis_synthesis_headerin(vi,vc,&op)))
411 vorbis_comment_clear(vc);
509 vf->vc=_ogg_realloc(vf->vc,vf->links*sizeof(*vf->vc));
523 vorbis_comment vc; local
566 ret=_fetch_headers(vf,&vi,&vc,
[all...]
/external/qemu/
H A Dnet-android.c337 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6]) argument
339 snprintf(vc->info_str, sizeof(vc->info_str),
341 vc->model,
353 VLANClientState *vc; local
355 for (vc = vlan->first_client; vc; vc = vc->next)
356 if (vc !
374 VLANClientState *vc, **pvc; local
396 qemu_del_vlan_client(VLANClientState *vc) argument
430 VLANClientState *vc; local
448 VLANClientState *vc; local
475 qemu_flush_queued_packets(VLANClientState *vc) argument
544 qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size) argument
549 vc_sendv_compat(VLANClientState *vc, const struct iovec *iov, int iovcnt) argument
580 VLANClientState *vc; local
665 qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov, int iovcnt) argument
814 slirp_receive(VLANClientState *vc, const uint8_t *buf, size_t size) argument
833 net_slirp_cleanup(VLANClientState *vc) argument
1153 VLANClientState *vc; member in struct:TAPState
1162 tap_receive_iov(VLANClientState *vc, const struct iovec *iov, int iovcnt) argument
1175 tap_receive(VLANClientState *vc, const uint8_t *buf, size_t size) argument
1214 tap_send_completed(VLANClientState *vc) argument
1239 tap_cleanup(VLANClientState *vc) argument
1540 VLANClientState *vc; member in struct:VDEState
1556 vde_receive(VLANClientState *vc, const uint8_t *buf, size_t size) argument
1568 vde_cleanup(VLANClientState *vc) argument
1607 VLANClientState *vc; member in struct:NetSocketState
1624 net_socket_receive(VLANClientState *vc, const uint8_t *buf, size_t size) argument
1634 net_socket_receive_dgram(VLANClientState *vc, const uint8_t *buf, size_t size) argument
1773 net_socket_cleanup(VLANClientState *vc) argument
2052 dump_receive(VLANClientState *vc, const uint8_t *buf, size_t size) argument
2081 net_dump_cleanup(VLANClientState *vc) argument
2523 VLANClientState *vc; local
2567 VLANClientState *vc; local
2579 VLANClientState *vc = NULL; local
2612 VLANClientState *vc = vlan->first_client; local
[all...]
H A Dnet.c304 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6]) argument
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 !
341 VLANClientState *vc, **pvc; local
363 qemu_del_vlan_client(VLANClientState *vc) argument
397 VLANClientState *vc; local
415 VLANClientState *vc; local
442 qemu_flush_queued_packets(VLANClientState *vc) argument
511 qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size) argument
516 vc_sendv_compat(VLANClientState *vc, const struct iovec *iov, int iovcnt) argument
547 VLANClientState *vc; local
632 qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov, int iovcnt) argument
694 slirp_receive(VLANClientState *vc, const uint8_t *buf, size_t size) argument
706 net_slirp_cleanup(VLANClientState *vc) argument
1025 VLANClientState *vc; member in struct:TAPState
1034 tap_receive_iov(VLANClientState *vc, const struct iovec *iov, int iovcnt) argument
1047 tap_receive(VLANClientState *vc, const uint8_t *buf, size_t size) argument
1086 tap_send_completed(VLANClientState *vc) argument
1111 tap_cleanup(VLANClientState *vc) argument
1412 VLANClientState *vc; member in struct:VDEState
1428 vde_receive(VLANClientState *vc, const uint8_t *buf, size_t size) argument
1440 vde_cleanup(VLANClientState *vc) argument
1479 VLANClientState *vc; member in struct:NetSocketState
1496 net_socket_receive(VLANClientState *vc, const uint8_t *buf, size_t size) argument
1506 net_socket_receive_dgram(VLANClientState *vc, const uint8_t *buf, size_t size) argument
1655 net_socket_cleanup(VLANClientState *vc) argument
1948 dump_receive(VLANClientState *vc, const uint8_t *buf, size_t size) argument
1977 net_dump_cleanup(VLANClientState *vc) argument
2419 VLANClientState *vc; local
2463 VLANClientState *vc; local
2475 VLANClientState *vc = NULL; local
2508 VLANClientState *vc = vlan->first_client; local
[all...]
H A Dnet.h62 void qemu_del_vlan_client(VLANClientState *vc);
64 int qemu_can_send_packet(VLANClientState *vc);
65 ssize_t qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov,
67 ssize_t qemu_sendv_packet_async(VLANClientState *vc, const struct iovec *iov,
69 void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size);
70 ssize_t qemu_send_packet_async(VLANClientState *vc, const uint8_t *buf,
72 void qemu_flush_queued_packets(VLANClientState *vc);
73 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6]);
H A Dtap-win32.c631 VLANClientState *vc; member in struct:TAPState
635 static void tap_cleanup(VLANClientState *vc) argument
637 TAPState *s = vc->opaque;
647 static ssize_t tap_receive(VLANClientState *vc, const uint8_t *buf, size_t size) argument
649 TAPState *s = vc->opaque;
663 qemu_send_packet(s->vc, buf, size);
681 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, tap_receive,
684 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
/external/libvorbis/include/vorbis/
H A Dcodec.h168 extern void vorbis_comment_init(vorbis_comment *vc);
169 extern void vorbis_comment_add(vorbis_comment *vc, const char *comment);
170 extern void vorbis_comment_add_tag(vorbis_comment *vc,
172 extern char *vorbis_comment_query(vorbis_comment *vc, const char *tag, int count);
173 extern int vorbis_comment_query_count(vorbis_comment *vc, const char *tag);
174 extern void vorbis_comment_clear(vorbis_comment *vc);
187 extern int vorbis_commentheader_out(vorbis_comment *vc, ogg_packet *op);
189 vorbis_comment *vc,
204 extern int vorbis_synthesis_headerin(vorbis_info *vi,vorbis_comment *vc,
/external/valgrind/main/drd/tests/
H A Dannotate_trace_memory.stderr.exp4 store 0x........ size 4 (thread x / vc ...)
7 store 0x........ size 4 (thread x / vc ...)
15 load 0x........ size 4 (thread x / vc ...)
/external/libvorbis/examples/
H A Dencoder_example.c50 vorbis_comment vc; /* struct that stores all the user comments */ local
137 vorbis_comment_init(&vc);
138 vorbis_comment_add_tag(&vc,"ENCODER","encoder_example.c");
162 vorbis_analysis_headerout(&vd,&vc,&header,&header_comm,&header_code);
244 vorbis_comment_clear(&vc);
H A Ddecoder_example.c52 vorbis_comment vc; /* struct that stores all the bitstream user comments */ local
116 vorbis_comment_init(&vc);
129 if(vorbis_synthesis_headerin(&vi,&vc,&op)<0){
166 result=vorbis_synthesis_headerin(&vi,&vc,&op);
188 char **ptr=vc.user_comments;
194 fprintf(stderr,"Encoded by: %s\n\n",vc.vendor);
305 vorbis_comment_clear(&vc);
/external/skia/third_party/glu/libtess/
H A Drender.c377 CachedVertex *vc; local
398 vc = v0 + 1;
399 xc = vc->coords[0] - v0->coords[0];
400 yc = vc->coords[1] - v0->coords[1];
401 zc = vc->coords[2] - v0->coords[2];
402 while( ++vc < vn ) {
404 xc = vc->coords[0] - v0->coords[0];
405 yc = vc->coords[1] - v0->coords[1];
406 zc = vc->coords[2] - v0->coords[2];
408 /* Compute (vp - v0) cross (vc
448 CachedVertex *vc; local
[all...]
/external/libvorbis/test/
H A Dwrite_read.c39 vorbis_comment vc; local
60 vorbis_comment_init (&vc);
61 vorbis_comment_add_tag (&vc,"ENCODER","test/util.c");
72 vorbis_analysis_headerout (&vd,&vc,&header,&header_comm,&header_code);
124 vorbis_comment_clear (&vc);
141 vorbis_comment vc; local
179 vorbis_comment_init (&vc);
190 if (vorbis_synthesis_headerin (&vi,&vc,&op) < 0) {
213 vorbis_synthesis_headerin (&vi,&vc,&op);
288 vorbis_comment_clear (&vc);
[all...]
/external/kernel-headers/original/linux/
H A Dconsole_struct.h104 struct vc { struct
112 extern struct vc vc_cons [MAX_NR_CONSOLES];
/external/webkit/Source/WebCore/platform/graphics/win/
H A DQTMovieVisualContext.cpp169 QTMovieVisualContextPriv* vc = static_cast<QTMovieVisualContextPriv*>(refCon);
170 if (!vc->m_client)
173 vc->m_client->imageAvailableForTime(reinterpret_cast<const QTCVTimeStamp*>(timeStamp));
/external/opencv/cvaux/src/
H A Dcvfindhandregion.cpp72 float value, vmin, vmax, vl, bsize, vc; local
202 vc = hand_left + hand_length2;
217 vc = hand_right - hand_length2;
221 icvScaleVector_32f( &line[0], sub, 3, vc );
294 float value, vmin, vmax, vl, bsize, bsizej, vc, vcl, vcr; local
522 vc = vcl;
527 vc = vcr;
530 icvScaleVector_32f( &line[0], sub, 3, vc );
/external/qemu/hw/
H A Dsmc91c111.c23 VLANClientState *vc; member in struct:__anon11588
57 /* busdev, vc, macaddr and mmio_index are linked to the host state and
287 qemu_send_packet(s->vc, p, len);
671 static int smc91c111_can_receive(VLANClientState *vc) argument
673 smc91c111_state *s = vc->opaque;
682 static ssize_t smc91c111_receive(VLANClientState *vc, const uint8_t *buf, size_t size) argument
684 smc91c111_state *s = vc->opaque;
772 static void smc91c111_cleanup(VLANClientState *vc) argument
774 smc91c111_state *s = vc->opaque;
792 s->vc
[all...]
H A Dne2000.c145 VLANClientState *vc; member in struct:NE2000State
216 static int ne2000_can_receive(VLANClientState *vc) argument
218 NE2000State *s = vc->opaque;
227 static ssize_t ne2000_receive(VLANClientState *vc, const uint8_t *buf, size_t size_) argument
229 NE2000State *s = vc->opaque;
351 qemu_send_packet(s->vc, s->mem + index, s->tcnt);
725 static void isa_ne2000_cleanup(VLANClientState *vc) argument
727 NE2000State *s = vc->opaque;
762 s->vc = qemu_new_vlan_client(nd->vlan, nd->model, nd->name,
766 qemu_format_nic_info_str(s->vc,
799 ne2000_cleanup(VLANClientState *vc) argument
[all...]
/external/eigen/Eigen/src/Core/arch/AltiVec/
H A DPacketMath.h151 Packet4f vc = vec_ld(0, af); local
152 vc = vec_splat(vc, 0);
153 return vc;
159 Packet4i vc = vec_ld(0, ai); local
160 vc = vec_splat(vc, 0);
161 return vc;

Completed in 400 milliseconds

12