Home | History | Annotate | Download | only in Tremolo

Lines Matching refs:q_val

75 	ret|=((ogg_uint16_t *)(b->q_val))[off]<<(b->q_bits*j);
378 if(b->q_val)_ogg_free(b->q_val);
510 s->q_val=alloca(sizeof(ogg_uint16_t)*quantvals);
511 if (!s->q_val) goto _eofout;
513 ((ogg_uint16_t *)s->q_val)[i]=(ogg_uint16_t)oggpack_read(opb,s->q_bits);
516 s->q_val=0; /* cleanup must not free alloca memory */
526 s->q_val=0; /* cleanup must not free alloca memory */
530 s->q_val=0; /* about to go out of scope; _make_decode_table
538 s->q_val=_ogg_malloc(quantvals);
539 if (!s->q_val) goto _eofout;
541 ((unsigned char *)s->q_val)[i]=(unsigned char)oggpack_read(opb,s->q_bits);
543 s->q_val=_ogg_malloc(quantvals*2);
544 if (!s->q_val) goto _eofout;
546 ((ogg_uint16_t *)s->q_val)[i]=(ogg_uint16_t)oggpack_read(opb,s->q_bits);
586 s->q_val=_ogg_malloc(s->q_pack*s->used_entries);
590 ((unsigned char *)(s->q_val))[i]=(unsigned char)oggpack_read(opb,s->q_bits);
593 ((ogg_uint16_t *)(s->q_val))[i]=(ogg_uint16_t)oggpack_read(opb,s->q_bits);
761 v[i]=((unsigned char *)(s->q_val))[entry&mask];
763 v[i]=((ogg_uint16_t *)(s->q_val))[entry&mask];
770 void *ptr=s->q_val+entry*s->q_pack;