Home
last modified time | relevance | path

Searched refs:opb (Results 1 – 23 of 23) sorted by relevance

/external/tremolo/Tremolo/
Dtreminfo.c179 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 …]
Dres012.c59 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 …]
Dcodebook.c62 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 …]
Dmapping0.c71 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 …]
Dfloor1.c107 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 …]
Dfloor0.c367 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()
407 ampraw=oggpack_read(&vd->opb,info->ampbits); in floor0_inverse1()
[all …]
Ddsp.c173 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()
Dcodec_internal.h60 oggpack_buffer opb; member
149 vorbis_info *vi,oggpack_buffer *opb);
/external/tensorflow/tensorflow/compiler/mlir/python/mlir_wrapper/
Dops.cc79 [](mlir::OpBuilder& opb, mlir::Location loc, in init_ops()
81 return opb in init_ops()
90 [](mlir::OpBuilder& opb, mlir::Location loc, mlir::Value x, in init_ops() argument
92 return opb.create<mlir::TF::AddV2Op>(loc, x, y).getOperation(); in init_ops()
97 [](mlir::OpBuilder& opb, mlir::Location loc, mlir::Value input, in init_ops() argument
100 return opb in init_ops()
101 .create<mlir::TF::AnyOp>(loc, opb.getI1Type(), input, in init_ops()
109 [](mlir::OpBuilder& opb, mlir::Location loc, in init_ops() argument
111 return opb.create<mlir::TF::ConstOp>(loc, value).getOperation(); in init_ops()
117 [](mlir::OpBuilder& opb, mlir::Location loc, mlir::Value x, in init_ops() argument
[all …]
Dbuilders.cc44 [](mlir::OpBuilder& opb, mlir::OperationState& state) { in init_builders() argument
45 return opb.createOperation(state); in init_builders()
/external/tensorflow/tensorflow/python/tf_program/
Dpywrap_tfd.py66 def create(cls, opb, loc, cond, outputs): argument
72 return opb.createOperation(state)
85 def create(cls, opb, loc, values): argument
88 [UnrankedTensorType.get(IntegerType.get(opb.getContext(), 1))])
90 return opb.createOperation(state)
103 def create(cls, opb, loc, values): argument
106 [UnrankedTensorType.get(IntegerType.get(opb.getContext(), 1))])
108 return opb.createOperation(state)
127 def create(cls, opb, loc, inputs, outputs): argument
133 return opb.createOperation(state)
Dmlir_gen.py175 opb = self.opbuilder
178 left = tfp.Tf_EqualOp.create(opb, opb.getUnknownLoc(), left,
181 left = tfp.Tf_LessOp.create(opb, opb.getUnknownLoc(), left,
184 left = tfp.Tf_LessEqualOp.create(opb, opb.getUnknownLoc(), left,
187 left = tfp.Tf_GreaterOp.create(opb, opb.getUnknownLoc(), left,
190 left = tfp.Tf_GreaterEqualOp.create(opb, opb.getUnknownLoc(), left,
193 left = tfp.Tf_NotEqualOp.create(opb, opb.getUnknownLoc(), left,
200 opb = self.opbuilder
204 opb, opb.getUnknownLoc(),
293 opb = self.opbuilder
[all …]
/external/tremolo/tests/oob_oggpack_look/
Dtest_floor0.cpp17 int _vorbis_unpack_books(vorbis_info *vi, oggpack_buffer *opb);
18 int _vorbis_unpack_info(vorbis_info *vi, oggpack_buffer *opb);
19 int _vorbis_unpack_comment(vorbis_comment *vc, oggpack_buffer *opb);
/external/tremolo/fuzzer/
Dvorbis_dec_fuzzer.cpp26 int _vorbis_unpack_books(vorbis_info *vi, oggpack_buffer *opb);
27 int _vorbis_unpack_info(vorbis_info *vi, oggpack_buffer *opb);
28 int _vorbis_unpack_comment(vorbis_comment *vc, oggpack_buffer *opb);
/external/tremolo/tests/
DVorbisDecoderTest.cpp41 int _vorbis_unpack_books(vorbis_info* vi, oggpack_buffer* opb);
42 int _vorbis_unpack_info(vorbis_info* vi, oggpack_buffer* opb);
43 int _vorbis_unpack_comment(vorbis_comment* vc, oggpack_buffer* opb);
/external/llvm-project/llvm/test/CodeGen/ARM/
D2008-02-04-LocalRegAllocBug.ll10 define i32 @vorbis_staticbook_pack(%struct.static_codebook* %c, %struct.oggpack_buffer* %opb) {
/external/llvm/test/CodeGen/ARM/
D2008-02-04-LocalRegAllocBug.ll10 define i32 @vorbis_staticbook_pack(%struct.static_codebook* %c, %struct.oggpack_buffer* %opb) {
/external/python/cpython3/Lib/
D_pydecimal.py3367 def _fill_logical(self, context, opa, opb): argument
3373 dif = context.prec - len(opb)
3375 opb = '0'*dif + opb
3377 opb = opb[-context.prec:]
3378 return opa, opb
3391 (opa, opb) = self._fill_logical(context, self._int, other._int)
3394 result = "".join([str(int(a)&int(b)) for a,b in zip(opa,opb)])
3415 (opa, opb) = self._fill_logical(context, self._int, other._int)
3418 result = "".join([str(int(a)|int(b)) for a,b in zip(opa,opb)])
3432 (opa, opb) = self._fill_logical(context, self._int, other._int)
[all …]
/external/python/cpython2/Lib/
Ddecimal.py3261 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/
Dlevel3_impl.h12 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/
Dprint-forces.c316 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/
Dinternal_raw_IPA-old.txt181618 soapbark sˈopbɑrk
181619 soapberry sˈopbˌɛri
181620 soapbox %14735 sˈopbɑks, sˈopbɔks
Dinternal_raw_IPA.txt152051 soapbark sˈopbɑrk
152052 soapberry %29806 sˈopbˌɛri
152053 soapbox %29527 sˈopbɑks, sˈopbɔks