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

1 2 3 4 5 6 7

  /external/valgrind/main/drd/
drd_vc.c 36 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,
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->vc != 0)
    [all...]
drd_vc.h 66 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:__anon29870
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[j].threadid < vc1->vc[i].threadid
    [all...]
drd_segment.c 89 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...]
drd_thread.c 389 char* vc; local
391 vc = DRD_(vc_aprint)(DRD_(thread_get_vc)(drd_joiner));
393 ", new vc: %s", vc);
394 VG_(free)(vc);
809 return &latest_sg->vc;
833 * @param vc pointer to a vectorclock, holds result upon return.
835 static void DRD_(thread_compute_minimum_vc)(VectorClock* vc)
847 DRD_(vc_assign)(vc, &latest_sg->vc);
1129 const VectorClock* const vc = &sg->vc; local
1417 char* vc; local
    [all...]
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_controller_event_handler.cc 14 const VideoCaptureControllerID& vc) const {
15 return this->device_id < vc.device_id;
19 const VideoCaptureControllerID& vc) const {
20 return this->device_id == vc.device_id;
video_capture_controller_event_handler.h 22 bool operator<(const VideoCaptureControllerID& vc) const;
23 bool operator==(const VideoCaptureControllerID& vc) const;
  /cts/tests/tests/view/src/android/view/cts/
ViewConfigurationTest.java 58 ViewConfiguration vc = ViewConfiguration.get(getInstrumentation().getTargetContext()); local
59 assertNotNull(vc);
60 vc.getScaledDoubleTapSlop();
61 vc.getScaledEdgeSlop();
62 vc.getScaledFadingEdgeLength();
63 vc.getScaledMaximumDrawingCacheSize();
64 vc.getScaledMinimumFlingVelocity();
65 vc.getScaledScrollBarSize();
66 vc.getScaledTouchSlop();
67 vc.getScaledWindowTouchSlop()
    [all...]
  /external/chromium_org/chrome/common/extensions/
value_counter_unittest.cc 14 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.Remove(value))
38 extensions::ValueCounter vc; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/
Android.mk 49 ./omxdl/arm_neon/vc/m4p10/src/omxVCM4P10_DeblockChroma_I.c \
50 ./omxdl/arm_neon/vc/m4p10/src/omxVCM4P10_DeblockLuma_I.c \
51 ./omxdl/arm_neon/vc/m4p10/src/omxVCM4P10_InterpolateChroma.c \
52 ./omxdl/arm_neon/vc/m4p10/src/armVCM4P10_CAVLCTables.c \
53 ./omxdl/arm_neon/vc/m4p10/src/omxVCM4P10_DecodeChromaDcCoeffsToPairCAVLC.c \
54 ./omxdl/arm_neon/vc/m4p10/src/omxVCM4P10_DecodeCoeffsToPairCAVLC.c \
59 ./omxdl/arm_neon/vc/m4p10/src_gcc/armVCM4P10_DeblockingChroma_unsafe_s.S \
60 ./omxdl/arm_neon/vc/m4p10/src_gcc/armVCM4P10_DeblockingLuma_unsafe_s.S \
61 ./omxdl/arm_neon/vc/m4p10/src_gcc/armVCM4P10_Interpolate_Chroma_s.S \
62 ./omxdl/arm_neon/vc/m4p10/src_gcc/armVCM4P10_InterpolateLuma_Align_unsafe_s.S
    [all...]
  /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...]
  /external/chromium_org/content/renderer/media/
video_capture_impl_manager.cc 15 : thread_("VC manager") {
29 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) {
    [all...]
video_capture_impl_manager.h 64 VideoCaptureImpl* vc; member in struct:content::VideoCaptureImplManager::Device
68 void FreeDevice(VideoCaptureImpl* vc);
  /external/libvorbis/lib/
info.c 61 void vorbis_comment_init(vorbis_comment *vc){
62 memset(vc,0,sizeof(*vc));
65 void vorbis_comment_add(vorbis_comment *vc,const char *comment){
66 vc->user_comments=_ogg_realloc(vc->user_comments,
67 (vc->comments+2)*sizeof(*vc->user_comments));
68 vc->comment_lengths=_ogg_realloc(vc->comment_lengths
    [all...]
  /external/qemu/
net-android.c 337 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
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 != vc1 && strcmp(vc->model, model) == 0
374 VLANClientState *vc, **pvc; local
430 VLANClientState *vc; local
448 VLANClientState *vc; local
580 VLANClientState *vc; local
1153 VLANClientState *vc; member in struct:TAPState
1540 VLANClientState *vc; member in struct:VDEState
1607 VLANClientState *vc; member in struct:NetSocketState
2523 VLANClientState *vc; local
2567 VLANClientState *vc; local
2579 VLANClientState *vc = NULL; local
2612 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 62 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]);
  /external/libvorbis/include/vorbis/
codec.h 168 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,
  /libcore/luni/src/test/java/tests/java/sql/
StressTest.java 36 Vector<Connection> vc = new Vector<Connection>(); field in class:StressTest
48 vc.clear();
91 // vc.clear();
113 maxConnections, vc.size());
134 assertEquals("Unable to create a connection", numTasks, vc.size());
166 for (int i = 0; i < vc.size(); ++i) {
169 Connection c = vc.elementAt(i);
207 assertEquals("Unable to create a connection", numConnections, vc.size());
252 vc.add(c);
263 for (; i < vc.size(); ++i)
    [all...]
  /external/libvorbis/examples/
encoder_example.c 50 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);
decoder_example.c 52 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/libvorbis/test/
write_read.c 39 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...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/
build_vc.pl 13 # This file builds the OpenMAX DL vc domain library omxVC.o.
37 @headerlist = qw(api vc/api vc/m4p2/api vc/m4p10/api);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/
build_vc.pl 13 # This file builds the OpenMAX DL vc domain library omxVC.o.
37 @headerlist = qw(api vc/api vc/m4p2/api vc/m4p10/api);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/
build_vc.pl 13 # This file builds the OpenMAX DL vc domain library omxVC.o.
37 @headerlist = qw(api vc/api vc/m4p2/api vc/m4p10/api);

Completed in 969 milliseconds

1 2 3 4 5 6 7