/external/tremolo/Tremolo/ |
D | treminfo.c | 179 int _vorbis_unpack_info(vorbis_info *vi,oggpack_buffer *opb){ in _vorbis_unpack_info() argument 183 vi->version=oggpack_read(opb,32); in _vorbis_unpack_info() 186 vi->channels=oggpack_read(opb,8); in _vorbis_unpack_info() 187 vi->rate=oggpack_read(opb,32); in _vorbis_unpack_info() 189 vi->bitrate_upper=oggpack_read(opb,32); in _vorbis_unpack_info() 190 vi->bitrate_nominal=oggpack_read(opb,32); in _vorbis_unpack_info() 191 vi->bitrate_lower=oggpack_read(opb,32); in _vorbis_unpack_info() 193 ci->blocksizes[0]=1<<oggpack_read(opb,4); in _vorbis_unpack_info() 194 ci->blocksizes[1]=1<<oggpack_read(opb,4); in _vorbis_unpack_info() 208 if(oggpack_read(opb,1)!=1)goto err_out; /* EOP check */ in _vorbis_unpack_info() [all …]
|
D | res012.c | 59 vorbis_info *vi,oggpack_buffer *opb){ in res_unpack() argument 64 info->type=oggpack_read(opb,16); in res_unpack() 66 info->begin=oggpack_read(opb,24); in res_unpack() 67 info->end=oggpack_read(opb,24); in res_unpack() 68 info->grouping=oggpack_read(opb,24)+1; // "partition size" in spec in res_unpack() 69 info->partitions=(char)(oggpack_read(opb,6)+1); // "classification" in spec in res_unpack() 70 info->groupbook=(unsigned char)oggpack_read(opb,8); // "classbook" in spec in res_unpack() 77 int cascade=oggpack_read(opb,3); in res_unpack() 78 if(oggpack_read(opb,1)) in res_unpack() 79 cascade|=(oggpack_read(opb,5)<<3); in res_unpack() [all …]
|
D | codebook.c | 62 codebook *b,oggpack_buffer *opb,int maptype){ in decpack() argument 81 ret|=oggpack_read(opb,b->q_bits)<<(b->q_bits*j); in decpack() 147 codebook *b, oggpack_buffer *opb,int maptype){ in _make_words() argument 192 r[chase*2+bit]= decpack(i,count++,quantvals,b,opb,maptype) | in _make_words() 237 oggpack_buffer *opb,int maptype){ in _make_decode_table() argument 254 s->dec_table,quantvals,s,opb,maptype))return 1; in _make_decode_table() 264 if(_make_words(lengthlist,s->entries,work,quantvals,s,opb,maptype)) goto error_out; in _make_decode_table() 412 int vorbis_book_unpack(oggpack_buffer *opb,codebook *s){ in vorbis_book_unpack() argument 421 if(oggpack_read(opb,24)!=0x564342)goto _eofout; in vorbis_book_unpack() 424 s->dim=oggpack_read(opb,16); in vorbis_book_unpack() [all …]
|
D | mapping0.c | 71 oggpack_buffer *opb){ in mapping_info_unpack() argument 76 if(oggpack_read(opb,1)) in mapping_info_unpack() 77 info->submaps=oggpack_read(opb,4)+1; in mapping_info_unpack() 81 if(oggpack_read(opb,1)){ in mapping_info_unpack() 82 info->coupling_steps=oggpack_read(opb,8)+1; in mapping_info_unpack() 87 int testM=info->coupling[i].mag=(unsigned char)(oggpack_read(opb,ilog(vi->channels))); in mapping_info_unpack() 88 int testA=info->coupling[i].ang=(unsigned char)(oggpack_read(opb,ilog(vi->channels))); in mapping_info_unpack() 99 if(oggpack_read(opb,2)>0)goto err_out; /* 2,3:reserved */ in mapping_info_unpack() 104 info->chmuxlist[i]=(unsigned char)(oggpack_read(opb,4)); in mapping_info_unpack() 111 int temp=oggpack_read(opb,8); in mapping_info_unpack() [all …]
|
D | floor1.c | 107 vorbis_info_floor *floor1_info_unpack (vorbis_info *vi,oggpack_buffer *opb){ in floor1_info_unpack() argument 113 info->partitions=oggpack_read(opb,5); /* only 0 to 31 legal */ in floor1_info_unpack() 117 info->partitionclass[j]=(char)oggpack_read(opb,4); /* only 0 to 15 legal */ in floor1_info_unpack() 125 info->klass[j].class_dim=(char)oggpack_read(opb,3)+1; /* 1 to 8 */ in floor1_info_unpack() 126 info->klass[j].class_subs=(char)oggpack_read(opb,2); /* 0,1,2,3 bits */ in floor1_info_unpack() 127 if(oggpack_eop(opb)<0) goto err_out; in floor1_info_unpack() 129 info->klass[j].class_book=(unsigned char)oggpack_read(opb,8); in floor1_info_unpack() 134 info->klass[j].class_subbook[k]=(unsigned char)(oggpack_read(opb,8)-1); in floor1_info_unpack() 141 info->mult=oggpack_read(opb,2)+1; /* only 1,2,3,4 legal now */ in floor1_info_unpack() 142 rangebits=oggpack_read(opb,4); in floor1_info_unpack() [all …]
|
D | floor0.c | 367 vorbis_info_floor *floor0_info_unpack (vorbis_info *vi,oggpack_buffer *opb){ in floor0_info_unpack() argument 372 info->order=oggpack_read(opb,8); in floor0_info_unpack() 373 info->rate=oggpack_read(opb,16); in floor0_info_unpack() 374 info->barkmap=oggpack_read(opb,16); in floor0_info_unpack() 375 info->ampbits=oggpack_read(opb,6); in floor0_info_unpack() 376 info->ampdB=oggpack_read(opb,8); in floor0_info_unpack() 377 info->numbooks=oggpack_read(opb,4)+1; in floor0_info_unpack() 384 info->books[j]=(char)oggpack_read(opb,8); in floor0_info_unpack() 388 if(oggpack_eop(opb))goto err_out; in floor0_info_unpack() 406 int ampraw=oggpack_read(&vd->opb,info->ampbits); in floor0_inverse1() [all …]
|
D | dsp.c | 173 oggpack_buffer opb; in vorbis_packet_blocksize() local 178 oggpack_readinit(&opb,op->packet); in vorbis_packet_blocksize() 181 if(oggpack_read(&opb,1)!=0){ in vorbis_packet_blocksize() 192 mode=oggpack_read(&opb,modebits); in vorbis_packet_blocksize() 213 oggpack_readinit(&vd->opb,op->packet); in vorbis_dsp_synthesis() 216 if(oggpack_read(&vd->opb,1)!=0){ in vorbis_dsp_synthesis() 222 mode=oggpack_read(&vd->opb,ilog(ci->modes)); in vorbis_dsp_synthesis() 233 oggpack_read(&vd->opb,1); in vorbis_dsp_synthesis() 234 temp=oggpack_read(&vd->opb,1); in vorbis_dsp_synthesis()
|
D | codec_internal.h | 60 oggpack_buffer opb; member 149 vorbis_info *vi,oggpack_buffer *opb);
|
/external/u-boot/doc/device-tree-bindings/serial/ |
D | xilinx_uartlite.txt | 4 - compatible : should be "xlnx,xps-uartlite-1.00.a", or "xlnx,opb-uartlite-1.00.b"
|
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/ |
D | 2008-02-04-LocalRegAllocBug.ll | 10 define i32 @vorbis_staticbook_pack(%struct.static_codebook* %c, %struct.oggpack_buffer* %opb) {
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/ |
D | 2008-02-04-LocalRegAllocBug.ll | 10 define i32 @vorbis_staticbook_pack(%struct.static_codebook* %c, %struct.oggpack_buffer* %opb) {
|
/external/llvm/test/CodeGen/ARM/ |
D | 2008-02-04-LocalRegAllocBug.ll | 10 define i32 @vorbis_staticbook_pack(%struct.static_codebook* %c, %struct.oggpack_buffer* %opb) {
|
/external/python/cpython3/Lib/ |
D | _pydecimal.py | 3363 def _fill_logical(self, context, opa, opb): argument 3369 dif = context.prec - len(opb) 3371 opb = '0'*dif + opb 3373 opb = opb[-context.prec:] 3374 return opa, opb 3387 (opa, opb) = self._fill_logical(context, self._int, other._int) 3390 result = "".join([str(int(a)&int(b)) for a,b in zip(opa,opb)]) 3411 (opa, opb) = self._fill_logical(context, self._int, other._int) 3414 result = "".join([str(int(a)|int(b)) for a,b in zip(opa,opb)]) 3428 (opa, opb) = self._fill_logical(context, self._int, other._int) [all …]
|
/external/python/cpython2/Lib/ |
D | decimal.py | 3261 def _fill_logical(self, context, opa, opb): argument 3267 dif = context.prec - len(opb) 3269 opb = '0'*dif + opb 3271 opb = opb[-context.prec:] 3272 return opa, opb 3285 (opa, opb) = self._fill_logical(context, self._int, other._int) 3288 result = "".join([str(int(a)&int(b)) for a,b in zip(opa,opb)]) 3309 (opa, opb) = self._fill_logical(context, self._int, other._int) 3312 result = "".join([str(int(a)|int(b)) for a,b in zip(opa,opb)]) 3326 (opa, opb) = self._fill_logical(context, self._int, other._int) [all …]
|
/external/eigen/blas/ |
D | level3_impl.h | 12 int EIGEN_BLAS_FUNC(gemm)(const char *opa, const char *opb, const int *m, const int *n, const int *… in EIGEN_BLAS_FUNC() 49 else if(OP(*opb)==INVALID) info = 2; in EIGEN_BLAS_FUNC() 54 else if(*ldb<std::max(1,(OP(*opb)==NOTR)?*k:*n)) info = 10; in EIGEN_BLAS_FUNC() 73 int code = OP(*opa) | (OP(*opb) << 2); in EIGEN_BLAS_FUNC()
|
/external/tcpdump/ |
D | print-forces.c | 316 int opb = 1 << (op - 1); in op_valid() local 320 if (opb & mask) in op_valid()
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | internal_raw_IPA-old.txt | 181618 soapbark sˈopbɑrk 181619 soapberry sˈopbˌɛri 181620 soapbox %14735 sˈopbɑks, sˈopbɔks
|
D | internal_raw_IPA.txt | 152051 soapbark sˈopbɑrk 152052 soapberry %29806 sˈopbˌɛri 152053 soapbox %29527 sˈopbɑks, sˈopbɔks
|