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

1 2 3 4 5 6 7 8 91011>>

  /external/libvorbis/lib/
synthesis.c 26 int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){
27 vorbis_dsp_state *vd= vb ? vb->vd : 0;
31 oggpack_buffer *opb=vb ? &vb->opb : 0;
39 _vorbis_block_ripcord(vb);
54 vb->mode=mode;
59 vb->W=ci->mode_param[mode]->blockflag;
60 if(vb->W){
64 vb->lW=oggpack_read(opb,1)
    [all...]
analysis.c 30 int vorbis_analysis(vorbis_block *vb, ogg_packet *op){
32 vorbis_block_internal *vbi=vb->internal;
34 vb->glue_bits=0;
35 vb->time_bits=0;
36 vb->floor_bits=0;
37 vb->res_bits=0;
47 if((ret=_mapping_P[0]->forward(vb)))
51 if(vorbis_bitrate_managed(vb))
56 op->packet=oggpack_get_buffer(&vb->opb);
57 op->bytes=oggpack_bytes(&vb->opb)
    [all...]
bitrate.h 38 vorbis_block *vb; member in struct:bitrate_manager_state
55 extern int vorbis_bitrate_managed(vorbis_block *vb);
56 extern int vorbis_bitrate_addblock(vorbis_block *vb);
bitrate.c 64 int vorbis_bitrate_managed(vorbis_block *vb){
65 vorbis_dsp_state *vd=vb->vd;
74 int vorbis_bitrate_addblock(vorbis_block *vb){
75 vorbis_block_internal *vbi=vb->internal;
76 vorbis_dsp_state *vd=vb->vd;
85 long min_target_bits=(vb->W?bm->min_bitsper*bm->short_per_long:bm->min_bitsper);
86 long max_target_bits=(vb->W?bm->max_bitsper*bm->short_per_long:bm->max_bitsper);
87 int samples=ci->blocksizes[vb->W]>>1;
93 if(bm->vb)return(-1); /* one has been submitted without
95 bm->vb=vb
233 vorbis_block *vb=bm->vb; local
    [all...]
block.c 88 int vorbis_block_init(vorbis_dsp_state *v, vorbis_block *vb){
90 memset(vb,0,sizeof(*vb));
91 vb->vd=v;
92 vb->localalloc=0;
93 vb->localstore=NULL;
96 vb->internal=_ogg_calloc(1,sizeof(vorbis_block_internal));
101 vbi->packetblob[i]=&vb->opb;
113 void *_vorbis_block_alloc(vorbis_block *vb,long bytes){
115 if(bytes+vb->localtop>vb->localalloc)
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh18.cpp 4 class VB {
7 VB (int v) { n = v; }
8 VB (const VB& o) {
10 // printf("copying VB from %d to %d\n", &o, this);
14 class D : public virtual VB {
17 D(int i1, int i2) : VB(i2) { j = i1; }
18 VB& vb() { return *(VB*)this; function in class:D
19 const VB& vb() const { return *(const VB*)this; } function in class:D
26 VB& vb() { return *(VB*)this; } function in class:pD
27 const VB& vb() const { return *(const VB*)this; } function in class:pD
34 VB *vb = &d.vb(); local
    [all...]
  /ndk/tests/device/test-stlport_static-exception/jni/
eh18.cpp 4 class VB {
7 VB (int v) { n = v; }
8 VB (const VB& o) {
10 // printf("copying VB from %d to %d\n", &o, this);
14 class D : public virtual VB {
17 D(int i1, int i2) : VB(i2) { j = i1; }
18 VB& vb() { return *(VB*)this; function in class:D
19 const VB& vb() const { return *(const VB*)this; } function in class:D
26 VB& vb() { return *(VB*)this; } function in class:pD
27 const VB& vb() const { return *(const VB*)this; } function in class:pD
34 VB *vb = &d.vb(); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_wintypes.py 18 vb = wintypes.VARIANT_BOOL()
19 self.assertIs(vb.value, False)
20 vb.value = True
21 self.assertIs(vb.value, True)
22 vb.value = true_value
23 self.assertIs(vb.value, True)
32 vb = wintypes.VARIANT_BOOL()
33 vb.value = set_value
34 self.assertIs(vb.value, True)
36 vb = wintypes.VARIANT_BOOL(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_wintypes.py 18 vb = wintypes.VARIANT_BOOL()
19 self.assertIs(vb.value, False)
20 vb.value = True
21 self.assertIs(vb.value, True)
22 vb.value = true_value
23 self.assertIs(vb.value, True)
32 vb = wintypes.VARIANT_BOOL()
33 vb.value = set_value
34 self.assertIs(vb.value, True)
36 vb = wintypes.VARIANT_BOOL(
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state_vdecl.c 75 const struct pipe_vertex_buffer *vb = local
76 &svga->curr.vb[ve[i].vertex_buffer_index];
78 unsigned int offset = vb->buffer_offset + ve[i].src_offset;
81 if (!vb->buffer)
84 buffer = svga_buffer(vb->buffer);
87 if (vb->stride)
88 tmp_neg_bias = (tmp_neg_bias + vb->stride - 1) / vb->stride;
94 const struct pipe_vertex_buffer *vb = local
95 &svga->curr.vb[ve[i].vertex_buffer_index]
    [all...]
svga_pipe_draw.c 70 struct pipe_vertex_buffer *vb = local
71 &svga->curr.vb[ve[i].vertex_buffer_index];
73 if (vb->buffer && svga_buffer_is_user_buffer(vb->buffer)) {
74 struct svga_buffer *buffer = svga_buffer(vb->buffer);
83 struct pipe_vertex_buffer *vb = local
84 &svga->curr.vb[ve[i].vertex_buffer_index];
86 if (vb->buffer && svga_buffer_is_user_buffer(vb->buffer)) {
87 struct svga_buffer *buffer = svga_buffer(vb->buffer)
129 struct pipe_vertex_buffer *vb = local
192 struct pipe_vertex_buffer *vb = &svga->curr.vb[i]; local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_vdecl.c 75 const struct pipe_vertex_buffer *vb = local
76 &svga->curr.vb[ve[i].vertex_buffer_index];
78 unsigned int offset = vb->buffer_offset + ve[i].src_offset;
81 if (!vb->buffer)
84 buffer = svga_buffer(vb->buffer);
87 if (vb->stride)
88 tmp_neg_bias = (tmp_neg_bias + vb->stride - 1) / vb->stride;
94 const struct pipe_vertex_buffer *vb = local
95 &svga->curr.vb[ve[i].vertex_buffer_index]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
t_dd_triemit.h 10 #define COPY_DWORDS( j, vb, vertsize, v ) \
14 : "=%c" (j), "=D" (vb), "=S" (__tmp) \
16 "D" ((long)vb), \
20 #define COPY_DWORDS( j, vb, vertsize, v ) \
23 vb[j] = CPU_TO_LE32(((GLuint *)v)[j]); \
24 vb += vertsize; \
27 #define COPY_DWORDS( j, vb, vertsize, v ) \
30 vb[j] = ((GLuint *)v)[j]; \
31 vb += vertsize; \
45 GLuint *vb = (GLuint *)ALLOC_VERTS( 4, vertsize) local
69 GLuint *vb = (GLuint *)ALLOC_VERTS( 6, vertsize); local
96 GLuint *vb = (GLuint *)ALLOC_VERTS( 3, vertsize); local
118 GLuint *vb = (GLuint *)ALLOC_VERTS( 2, vertsize); local
131 GLuint *vb = (GLuint *)ALLOC_VERTS( 1, vertsize); local
144 GLuint *vb = (GLuint *)ALLOC_VERTS( (n-2) * 3, vertsize ); local
    [all...]
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_triemit.h 10 #define COPY_DWORDS( j, vb, vertsize, v ) \
14 : "=%c" (j), "=D" (vb), "=S" (__tmp) \
16 "D" ((long)vb), \
20 #define COPY_DWORDS( j, vb, vertsize, v ) \
23 vb[j] = CPU_TO_LE32(((GLuint *)v)[j]); \
24 vb += vertsize; \
27 #define COPY_DWORDS( j, vb, vertsize, v ) \
30 vb[j] = ((GLuint *)v)[j]; \
31 vb += vertsize; \
45 GLuint *vb = (GLuint *)ALLOC_VERTS( 4, vertsize) local
69 GLuint *vb = (GLuint *)ALLOC_VERTS( 6, vertsize); local
96 GLuint *vb = (GLuint *)ALLOC_VERTS( 3, vertsize); local
118 GLuint *vb = (GLuint *)ALLOC_VERTS( 2, vertsize); local
131 GLuint *vb = (GLuint *)ALLOC_VERTS( 1, vertsize); local
144 GLuint *vb = (GLuint *)ALLOC_VERTS( (n-2) * 3, vertsize ); local
    [all...]
  /external/clang/test/PCH/
cxx1y-variable-templates.cpp 38 template<typename T> extern T vb;
55 template<typename T> T vb = T(); member in namespace:spec
56 template<> constexpr float vb<float> = 1.5; member in namespace:spec
69 template<typename T> T vb = T(10); member in namespace:spec_join1
70 template<> extern float vb<float>;
88 template<typename T> T vb = T(100); member in namespace:join
104 template<> float vb<float> = 1.5; member in namespace:spec_join1
105 template int vb<int>; member in namespace:spec_join1
134 template<> constexpr float vb<float> = 2.5; member in namespace:join
135 template const int vb<const int> member in namespace:join
149 template<typename T> T* vb<T*> = new T(); member in namespace:spec
    [all...]
  /external/libcxx/test/containers/sequences/vector.bool/
vector_bool.pass.cpp 35 T vb(std::begin(ba), std::end(ba));
37 assert(h(vb) != 0);
46 T vb(std::begin(ba), std::end(ba));
48 assert(h(vb) != 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
vector_bool.pass.cpp 35 T vb(std::begin(ba), std::end(ba));
37 assert(h(vb) != 0);
46 T vb(std::begin(ba), std::end(ba));
48 assert(h(vb) != 0);
  /external/libcxx/test/numerics/numarray/template.valarray/valarray.assign/
mask_array_assign.pass.cpp 26 std::valarray<bool> vb(b, N1);
28 v2 = v1[vb];
  /external/libcxx/test/numerics/numarray/template.valarray/valarray.cons/
mask_array.pass.cpp 26 std::valarray<bool> vb(b, N1);
27 std::valarray<int> v2(v1[vb]);
  /external/libcxx/test/numerics/numarray/template.valarray/valarray.sub/
valarray_bool_const.pass.cpp 14 // valarray operator[](const valarray<bool>& vb) const;
26 std::valarray<bool> vb(b, N1);
27 std::valarray<int> v2(v1[vb]);
valarray_bool_non_const.pass.cpp 14 // mask_array<value_type> operator[](const valarray<bool>& vb);
26 std::valarray<bool> vb(b, N1);
28 v2 = v1[vb];
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.assign/
mask_array_assign.pass.cpp 26 std::valarray<bool> vb(b, N1);
28 v2 = v1[vb];
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.cons/
mask_array.pass.cpp 26 std::valarray<bool> vb(b, N1);
27 std::valarray<int> v2(v1[vb]);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.sub/
valarray_bool_const.pass.cpp 14 // valarray operator[](const valarray<bool>& vb) const;
26 std::valarray<bool> vb(b, N1);
27 std::valarray<int> v2(v1[vb]);
valarray_bool_non_const.pass.cpp 14 // mask_array<value_type> operator[](const valarray<bool>& vb);
26 std::valarray<bool> vb(b, N1);
28 v2 = v1[vb];

Completed in 385 milliseconds

1 2 3 4 5 6 7 8 91011>>