Searched defs:vc (Results 1 - 25 of 41) sorted by relevance

12

/external/chromium_org/chrome/common/extensions/
H A Dvalue_counter_unittest.cc14 extensions::ValueCounter vc; local
16 ASSERT_EQ(1, vc.Add(value));
17 ASSERT_EQ(2, vc.Add(value));
21 extensions::ValueCounter vc; local
24 ASSERT_EQ(1, vc.Add(value1));
25 ASSERT_EQ(1, vc.Add(value2));
29 extensions::ValueCounter vc; local
31 ASSERT_EQ(1, vc.Add(value));
32 ASSERT_EQ(2, vc.Add(value));
33 ASSERT_EQ(1, vc
38 extensions::ValueCounter vc; local
[all...]
/external/chromium_org/content/renderer/media/
H A Dvideo_capture_impl_manager.h64 VideoCaptureImpl* vc; member in struct:content::VideoCaptureImplManager::Device
68 void FreeDevice(VideoCaptureImpl* vc);
H A Dvideo_capture_impl_manager.cc29 VideoCaptureImpl* vc = local
31 devices_[id] = new Device(vc, handler);
32 vc->Init();
33 return vc;
37 return it->second->vc;
43 it->second->vc->SuspendCapture(suspend);
62 devices_[id]->vc->DeInit(base::Bind(&VideoCaptureImplManager::FreeDevice,
63 this, devices_[id]->vc));
68 void VideoCaptureImplManager::FreeDevice(VideoCaptureImpl* vc) { argument
69 delete vc;
[all...]
/external/valgrind/main/drd/
H A Ddrd_segment.h55 VectorClock vc; member in struct:segment
H A Ddrd_vc.h66 unsigned capacity; /**< number of elements allocated for array vc. */
67 unsigned size; /**< number of elements used of array vc. */
68 VCElem* vc; /**< vector clock elements. */ member in struct:__anon28395
73 void DRD_(vc_init)(VectorClock* const vc,
76 void DRD_(vc_cleanup)(VectorClock* const vc);
79 void DRD_(vc_increment)(VectorClock* const vc, DrdThreadId const tid);
89 void DRD_(vc_print)(const VectorClock* const vc);
90 char* DRD_(vc_aprint)(const VectorClock* const vc);
91 void DRD_(vc_check)(const VectorClock* const vc);
109 while (j < vc2->size && vc2->vc[
[all...]
H A Ddrd_segment.c89 DRD_(vc_copy)(&sg->vc, &creator_sg->vc);
91 DRD_(vc_init)(&sg->vc, 0, 0);
92 DRD_(vc_increment)(&sg->vc, created);
97 char* vc; local
99 vc = DRD_(vc_aprint)(&sg->vc);
100 VG_(message)(Vg_DebugMsg, "New segment for thread %d with vc %s\n",
101 created, vc);
102 VG_(free)(vc);
141 char* vc; local
182 char* vc; local
[all...]
H A Ddrd_vc.c36 void DRD_(vc_reserve)(VectorClock* const vc, const unsigned new_capacity);
42 * Initialize the memory 'vc' points at as a vector clock with size 'size'.
46 void DRD_(vc_init)(VectorClock* const vc, argument
50 tl_assert(vc);
51 vc->size = 0;
52 vc->capacity = 0;
53 vc->vc = 0;
54 DRD_(vc_reserve)(vc, size);
55 tl_assert(size == 0 || vc
64 vc_cleanup(VectorClock* const vc) argument
83 vc_increment(VectorClock* const vc, DrdThreadId const tid) argument
237 vc_print(const VectorClock* const vc) argument
252 vc_aprint(const VectorClock* const vc) argument
295 vc_check(const VectorClock* const vc) argument
311 vc_reserve(VectorClock* const vc, const unsigned new_capacity) argument
[all...]
H A Ddrd_load_store.c96 char* vc; local
98 vc = DRD_(vc_aprint)(DRD_(thread_get_vc)(DRD_(thread_get_running_tid)()));
101 " vc %s)", addr, size, stored_value_lo,
103 vc);
110 " / vc %s)", addr, size, sv, sv,
111 DRD_(thread_get_running_tid)(), vc);
113 DRD_(trace_msg_w_bt)("%s 0x%lx size %ld (thread %d / vc %s)",
118 addr, size, DRD_(thread_get_running_tid)(), vc);
120 VG_(free)(vc);
/external/libvorbis/examples/
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);
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);
/external/tremolo/Tremolo/
H A Divorbisfile.h81 vorbis_comment vc; member in struct:OggVorbis_File
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
340 vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,ogg_packet *op) argument
[all...]
H A Dvorbisfile.c270 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,
281 _fetch_headers(OggVorbis_File *vf, vorbis_info *vi, vorbis_comment *vc, ogg_uint32_t *serialno, ogg_page *og_ptr) argument
[all...]
/external/chromium_org/media/mp4/
H A Dmp4_stream_parser_unittest.cc67 const VideoDecoderConfig& vc,
70 << ", video=" << vc.IsValidConfig();
66 NewConfigF(const AudioDecoderConfig& ac, const VideoDecoderConfig& vc, const StreamParser::TextTrackConfigMap& tc) argument
/external/eigen/bench/
H A DbenchVecAdd.cpp66 VectorXf vc = Map<VectorXf>(c, size2); local
71 benchVec(va, vb, vc);
/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/chromium_org/media/mp2t/
H A Dmp2t_stream_parser_unittest.cc66 const VideoDecoderConfig& vc,
69 << ", video=" << vc.IsValidConfig();
65 OnNewConfig(const AudioDecoderConfig& ac, const VideoDecoderConfig& vc, const StreamParser::TextTrackConfigMap& tc) argument
/external/libvorbis/include/vorbis/
H A Dvorbisfile.h128 vorbis_comment *vc; member in struct:OggVorbis_File
/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...]
/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/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;
/external/kernel-headers/original/linux/
H A Dconsole_struct.h104 struct vc { struct
112 extern struct vc vc_cons [MAX_NR_CONSOLES];
/external/qemu/hw/
H A Dsmc91c111.c23 VLANClientState *vc; member in struct:__anon25802
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...]
/external/bison/
H A Dmaint.mk63 VC_LIST = $(srcdir)/$(_build-aux)/vc-list-files -C $(srcdir)
103 this-vc-tag = v$(VERSION)
104 this-vc-tag-regexp = v$(VERSION_REGEXP)
108 this-vc-tag = $(tag-package)-$(tag-this-version)
109 this-vc-tag-regexp = $(this-vc-tag)
168 local-checks-available += no-vc-detected
169 no-vc-detected:
1273 vc-diff-check:
1274 $(AM_V_GEN)(unset CDPATH; cd $(srcdir) && $(VC) diff) > vc
[all...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediasession_unittest.cc416 const ContentInfo* vc = offer->GetContentByName("video"); local
418 ASSERT_TRUE(vc == NULL);
440 const ContentInfo* vc = offer->GetContentByName("video"); local
442 ASSERT_TRUE(vc != NULL);
444 EXPECT_EQ(std::string(NS_JINGLE_RTP), vc->type);
448 static_cast<const VideoContentDescription*>(vc->description);
596 const ContentInfo* vc = offer->GetContentByName("video"); local
598 ASSERT_TRUE(vc != NULL);
602 static_cast<const VideoContentDescription*>(vc->description);
618 const ContentInfo* vc local
644 const ContentInfo* vc = answer->GetContentByName("video"); local
677 const ContentInfo* vc = answer->GetContentByName("data"); local
823 const ContentInfo* vc = answer->GetContentByName("video"); local
848 const ContentInfo* vc = offer->GetContentByName("video"); local
971 const ContentInfo* vc = answer->GetContentByName("video"); local
1005 ContentInfo* vc = offer->GetContentByName("video"); local
1046 const ContentInfo* vc = offer->GetContentByName("video"); local
1173 const ContentInfo* vc = offer->GetContentByName("video"); local
1215 const ContentInfo* vc = answer->GetContentByName("video"); local
1632 const ContentInfo* vc = copy->GetContentByName("video"); local
[all...]

Completed in 577 milliseconds

12