Searched defs:vl (Results 1 - 25 of 36) sorted by relevance

12

/external/clang/test/CodeGen/
H A Darm64-be-hfa-vararg.c16 va_list vl; local
17 va_start(vl, a);
18 double result = va_arg(vl, struct { double a; }).a;
19 va_end(vl);
/external/compiler-rt/test/msan/
H A Dsignal_stress_test.cc15 va_list vl; local
16 va_start(vl, n);
18 void *p = va_arg(vl, void *);
22 va_end(vl);
/external/libexif/libexif/fuji/
H A Dmnote-fuji-entry.c193 ExifLong vl; local
277 vl = exif_get_long (entry->data, entry->order);
278 snprintf (val, maxlen, "%lu", (long unsigned) vl);
/external/libexif/libexif/pentax/
H A Dmnote-pentax-entry.c311 ExifLong vl; local
393 vl = exif_get_long (entry->data, entry->order);
394 snprintf (val, maxlen, "%li", (long int) vl);
442 vl = exif_get_long (data, entry->order);
443 snprintf (val+len, maxlen-len, "%li", (long int) vl);
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_buffer_malloc.c89 struct pb_validate *vl,
88 malloc_buffer_validate(struct pb_buffer *buf, struct pb_validate *vl, unsigned flags) argument
H A Dpb_validate.c64 pb_validate_add_buffer(struct pb_validate *vl, argument
80 if(vl->used && vl->entries[vl->used - 1].buf == buf) {
81 vl->entries[vl->used - 1].flags |= flags;
86 if(vl->used == vl->size) {
90 new_size = vl->size * 2;
94 new_entries = (struct pb_validate_entry *)REALLOC(vl
116 pb_validate_foreach(struct pb_validate *vl, enum pipe_error (*callback)(struct pb_buffer *buf, void *data), void *data) argument
132 pb_validate_validate(struct pb_validate *vl) argument
151 pb_validate_fence(struct pb_validate *vl, struct pipe_fence_handle *fence) argument
164 pb_validate_destroy(struct pb_validate *vl) argument
177 struct pb_validate *vl; local
[all...]
H A Dpb_bufmgr_mm.c132 struct pb_validate *vl,
137 return pb_validate(mm->buffer, vl, flags);
131 mm_buffer_validate(struct pb_buffer *buf, struct pb_validate *vl, unsigned flags) argument
H A Dpb_bufmgr_ondemand.c174 struct pb_validate *vl,
188 return pb_validate(buf->buffer, vl, flags);
173 pb_ondemand_buffer_validate(struct pb_buffer *_buf, struct pb_validate *vl, unsigned flags) argument
H A Dpb_buffer.h134 struct pb_validate *vl,
204 pb_validate(struct pb_buffer *buf, struct pb_validate *vl, unsigned flags) argument
210 return buf->vtbl->validate(buf, vl, flags);
H A Dpb_bufmgr_cache.c187 struct pb_validate *vl,
191 return pb_validate(buf->buffer, vl, flags);
186 pb_cache_buffer_validate(struct pb_buffer *_buf, struct pb_validate *vl, unsigned flags) argument
H A Dpb_bufmgr_debug.c303 struct pb_validate *vl,
318 return pb_validate(buf->buffer, vl, flags);
302 pb_debug_buffer_validate(struct pb_buffer *_buf, struct pb_validate *vl, unsigned flags) argument
H A Dpb_bufmgr_pool.c145 struct pb_validate *vl,
150 return pb_validate(pool->buffer, vl, flags);
144 pool_buffer_validate(struct pb_buffer *buf, struct pb_validate *vl, unsigned flags) argument
H A Dpb_bufmgr_slab.c255 struct pb_validate *vl,
259 return pb_validate(buf->slab->bo, vl, flags);
254 pb_slab_buffer_validate(struct pb_buffer *_buf, struct pb_validate *vl, unsigned flags) argument
H A Dpb_buffer_fenced.c145 struct pb_validate *vl; member in struct:fenced_buffer
473 !fenced_buf->vl) {
757 struct pb_validate *vl,
766 if(!vl) {
768 fenced_buf->vl = NULL;
779 if(fenced_buf->vl && fenced_buf->vl != vl) {
784 if(fenced_buf->vl == vl
756 fenced_buffer_validate(struct pb_buffer *buf, struct pb_validate *vl, unsigned flags) argument
[all...]
/external/v8/test/cctest/wasm/
H A Dtest-run-wasm-interpreter.cc142 va_list vl; local
143 va_start(vl, n);
152 WasmOpcode current = static_cast<WasmOpcode>(va_arg(vl, int));
157 current = static_cast<WasmOpcode>(va_arg(vl, int));
160 va_end(vl);
/external/libexif/libexif/canon/
H A Dmnote-canon-entry.c554 ExifLong vl; local
707 vl = exif_get_long (data, entry->order);
709 (unsigned long) vl/10000,
710 (unsigned long) vl%10000);
716 vl = exif_get_long (data, entry->order);
717 snprintf (val, maxlen, "%04X-%05d", (int)vl>>16,(int)vl&0xffff);
751 vl = exif_get_long (data, entry->order);
/external/libexif/libexif/olympus/
H A Dmnote-olympus-entry.c276 ExifLong vl; local
302 vl = exif_get_long (entry->data, entry->order);
303 if ((vl & 0xF0F0F0F0) == 0x30303030) {
306 snprintf (v, maxlen, "%04lx", (long unsigned int) vl);
344 vl = exif_get_long (entry->data, entry->order);
345 snprintf (v, maxlen, "%lu", (long unsigned int) vl );
352 vl = exif_get_long (entry->data, entry->order);
353 a = (vl>>24)&0xff; b = (vl>>16)&0xff; c = (vl>>
[all...]
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_buffer.c140 struct pb_validate *vl,
139 vmw_gmr_buffer_validate( struct pb_buffer *_buf, struct pb_validate *vl, unsigned flags ) argument
/external/clang/test/Sema/
H A Dext_vector_casts.c98 ulong2 vl = (unsigned long)l; local
112 vl = l + vl; // expected-warning {{implicit conversion changes signedness}}
113 vl = vl + t; // expected-warning {{implicit conversion loses integer precision}}
/external/opencv/cvaux/src/
H A Dcvfindhandregion.cpp72 float value, vmin, vmax, vl, bsize, vc; local
170 vl = vmax - vmin;
171 bsize = vl / nbins;
294 float value, vmin, vmax, vl, bsize, bsizej, vc, vcl, vcr; local
447 vl = vmax - vmin;
450 if( vl < eps )
457 bsize = vl / nbins;
/external/libvorbis/lib/
H A Dres0.c413 static long **_01class(vorbis_block *vb,vorbis_look_residue *vl, argument
416 vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl;
480 static long **_2class(vorbis_block *vb,vorbis_look_residue *vl,int **in, argument
483 vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl;
536 vorbis_block *vb,vorbis_look_residue *vl,
543 vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl;
656 static int _01inverse(vorbis_block *vb,vorbis_look_residue *vl, argument
662 vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl;
716 int res0_inverse(vorbis_block *vb,vorbis_look_residue *vl, argument
723 return(_01inverse(vb,vl,i
535 _01forward(oggpack_buffer *opb, vorbis_block *vb,vorbis_look_residue *vl, int **in,int ch, long **partword, int (*encode)(oggpack_buffer *,int *,int, codebook *,long *), int submap) argument
728 res1_forward(oggpack_buffer *opb,vorbis_block *vb,vorbis_look_residue *vl, int **in,int *nonzero,int ch, long **partword, int submap) argument
742 res1_class(vorbis_block *vb,vorbis_look_residue *vl, int **in,int *nonzero,int ch) argument
754 res1_inverse(vorbis_block *vb,vorbis_look_residue *vl, float **in,int *nonzero,int ch) argument
766 res2_class(vorbis_block *vb,vorbis_look_residue *vl, int **in,int *nonzero,int ch) argument
780 res2_forward(oggpack_buffer *opb, vorbis_block *vb,vorbis_look_residue *vl, int **in,int *nonzero,int ch, long **partword,int submap) argument
804 res2_inverse(vorbis_block *vb,vorbis_look_residue *vl, float **in,int *nonzero,int ch) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DRuleBasedCollator.java1685 RuleBasedCollator(CollationTailoring t, ULocale vl) { argument
1689 validLocale = vl;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DRuleBasedCollator.java1723 RuleBasedCollator(CollationTailoring t, ULocale vl) { argument
1727 validLocale = vl;
/external/libvpx/libvpx/vp8/common/
H A Dpostproc.c1111 unsigned char *yl, *ul, *vl; local
1116 vl = v_ptr + (x>>1);
1130 (yl+bx, ul+(bx>>1), vl+(bx>>1), Y, U, V, 0xc000, y_stride);
1137 vl += y_stride*1;
/external/mesa3d/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_bo.c515 struct pb_validate *vl,
514 radeon_bo_validate(struct pb_buffer *_buf, struct pb_validate *vl, unsigned flags) argument

Completed in 651 milliseconds

12