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

1 2 3

  /external/tremolo/Tremolo/
codebook.h 75 extern long vorbis_book_decode(codebook *book, oggpack_buffer *b);
76 extern long vorbis_book_decodevs_add(codebook *book, ogg_int32_t *a,
78 extern long vorbis_book_decodev_set(codebook *book, ogg_int32_t *a,
80 extern long vorbis_book_decodev_add(codebook *book, ogg_int32_t *a,
82 extern long vorbis_book_decodevv_add(codebook *book, ogg_int32_t **a,
codebook.c 371 /* static book is not cleared; we're likely called on the lookup and
621 ogg_uint32_t decode_packed_entry_number(codebook *book,
624 static inline ogg_uint32_t decode_packed_entry_number(codebook *book,
627 int read=book->dec_maxlength;
639 switch (book->dec_method)
643 /* book->dec_nodeb==1, book->dec_leafw==1 */
645 unsigned char *t=(unsigned char *)book->dec_table;
656 /* book->dec_nodeb==1, book->dec_leafw!=1 *
    [all...]
res012.c 86 unsigned char book=(unsigned char)oggpack_read(opb,8); local
87 if(book>=ci->books)goto errout;
88 info->stagebooks[j*8+k]=book;
dpen.s 66 @ r0 = codebook *book
70 LDMIA r0,{r4,r6,r7} @ r4 = read = book->max_length
71 @ r6 = book->dec_table
72 @ r7 = book->dec_method
397 @ r0 = codebook *book
406 MOV r9, r0 @ r9 = book
418 @ r9 = book
421 MOV r0, r9 @ r0 = book
429 LDR r0, [r9, # 5*4] @ r0 = book->dim
floor1.c 319 int book=info->klass[classv].class_subbook[cval&(csub-1)]; local
321 if(book!=0xff){
322 if((fit_value[j+k]=vorbis_book_decode(books+book,&vd->opb))==-1)
  /external/libvorbis/lib/
codebook.h 91 extern int _best(codebook *book, float *a, int step);
95 extern int vorbis_book_besterror(codebook *book,float *a,int step,int addmul);
96 extern long vorbis_book_codeword(codebook *book,int entry);
97 extern long vorbis_book_codelen(codebook *book,int entry);
104 extern int vorbis_book_encode(codebook *book, int a, oggpack_buffer *b);
106 extern long vorbis_book_decode(codebook *book, oggpack_buffer *b);
107 extern long vorbis_book_decodevs_add(codebook *book, float *a,
109 extern long vorbis_book_decodev_set(codebook *book, float *a,
111 extern long vorbis_book_decodev_add(codebook *book, float *a,
113 extern long vorbis_book_decodevv_add(codebook *book, float **a
    [all...]
codebook.c 261 int vorbis_book_encode(codebook *book, int a, oggpack_buffer *b){
262 if(a<0 || a>=book->c->entries)return(0);
263 oggpack_write(b,book->codelist[a],book->c->lengthlist[a]);
264 return(book->c->lengthlist[a]);
283 STIN long decode_packed_entry_number(codebook *book, oggpack_buffer *b){
284 int read=book->dec_maxlength;
286 long lok = oggpack_look(b,book->dec_firsttablen);
289 long entry = book->dec_firsttable[lok];
292 hi=book->used_entries-(entry&0x7fff)
    [all...]
res0.c 181 code with a partitioned book */
183 oggpack_write(opb,info->groupbook,8); /* group huffman book */
232 int book=oggpack_read(opb,8); local
233 if(book<0) goto errout;
234 info->booklist[j]=book;
328 static int local_book_besterror(codebook *book,int *a){
329 int dim=book->dim;
331 int minval=book->minval;
332 int del=book->delta;
333 int qv=book->quantvals
    [all...]
sharedbook.c 271 /* static book is not cleared; we're likely called on the lookup and
430 long vorbis_book_codeword(codebook *book,int entry){
431 if(book->c) /* only use with encode; decode optimizations are
433 return book->codelist[entry];
437 long vorbis_book_codelen(codebook *book,int entry){
438 if(book->c) /* only use with encode; decode optimizations are
440 return book->c->lengthlist[entry];
floor1.c 911 int book=info->class_subbook[class][bookas[k]]; local
912 if(book>=0){
914 if(out[j+k]<(books+book)->entries)
915 look->postbits+=vorbis_book_encode(books+book,
999 int book=info->class_subbook[class][cval&(csub-1)]; local
1001 if(book>=0){
1002 if((fit_value[j+k]=vorbis_book_decode(books+book,&vb->opb))==-1)
  /external/libvorbis/vq/
localcodebook.h 93 extern int _best(codebook *book, float *a, int step);
97 extern int vorbis_book_besterror(codebook *book,float *a,int step,int addmul);
98 extern long vorbis_book_codeword(codebook *book,int entry);
99 extern long vorbis_book_codelen(codebook *book,int entry);
106 extern int vorbis_book_encode(codebook *book, int a, oggpack_buffer *b);
108 extern long vorbis_book_decode(codebook *book, oggpack_buffer *b);
109 extern long vorbis_book_decodevs_add(codebook *book, float *a,
111 extern long vorbis_book_decodev_set(codebook *book, float *a,
113 extern long vorbis_book_decodev_add(codebook *book, float *a,
115 extern long vorbis_book_decodevv_add(codebook *book, float **a
    [all...]
metrics.c 126 int i,k,book; local
148 for(book=0;book<books;book++){
150 codebook *b=bs[book];
154 fprintf(stderr,"Book %d statistics:------------------\n",book);
158 sprintf(buffer,"%s-%d-mse.m",basename,book);
169 sqrt((histogram_errorsq[book]+i*dim)[k]/histogram[book][i]))
    [all...]
bookutil.c 25 int _best(codebook *book, float *a, int step){
27 int dim=book->dim;
29 int minval=book->minval;
30 int del=book->delta;
31 int qv=book->quantvals;
50 if(book->c->lengthlist[index]<=0){
51 const static_codebook *c=book->c;
55 int maxval = book->minval + book->delta*(book->quantvals-1)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-stylebook.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
GLPageBookView.java 32 * to provide page book view's whose main part is a {@link GLFunctionTraceViewer}.
44 protected IPage createDefaultPage(PageBook book) {
47 page.createControl(book);
  /cts/tests/tests/net/src/android/net/cts/
UrlQuerySanitizerTest.java 48 final String query = "book=thinking in java&price=108";
49 final String book = "book"; local
54 uqs.registerParameters(new String[]{book, price}, UrlQuerySanitizer.getSpaceLegal());
56 assertTrue(uqs.hasParameter(book));
59 assertEquals(bookName, uqs.getValue(book));
63 assertFalse(uqs.hasParameter(book));
66 uqs.parseEntry(book, bookName);
67 assertTrue(uqs.hasParameter(book));
68 assertEquals(bookName, uqs.getValue(book));
    [all...]
  /external/sil-fonts/
Android.mk 23 LOCAL_MODULE := Padauk-book.ttf
fonts.mk 20 Padauk-book.ttf \
  /external/chromium_org/v8/test/webkit/fast/js/kde/
Prototype.js 45 function Book(name, author){
46 this.base = Item; // set Item constructor as method of Book object
50 Book.prototype = new Item;
51 var b = new Book("a book", "Fred"); // create object instance
53 shouldBe("b.name", "'a book'");
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
scopes.rb 66 /* rule scopes, from the book, final beta, p.147 */
83 /* rule scopes, from the book, final beta, p.148 */
107 /* recursive rule scopes, from the book, final beta, p.150 */
  /frameworks/ex/carousel/test/src/com/android/carouseltest/
MusicDemoActivity.java 32 private static final int CD_GEOMETRY = R.raw.book;
  /external/libvorbis/doc/
07-floor1.tex 106 [subclass] books and a master book used to encode which alternate
205 14) [book] = array [floor1_subclass_books] element [class],([cval] bitwise AND [csub])
207 16) if ( [book] is not less than zero ) \{
210 [book] in scalar context
212 \} else [book] is less than zero \{
05-comment.tex 114 The artist generally considered responsible for the work. In popular music this is usually the performing band or singer. For classical music it would be the composer. For an audio book it would be the author of the original text.
117 The artist(s) who performed the work. In classical music this would be the conductor, orchestra, soloists. In an audio book it would be the actor who did the reading. In popular music this is typically the same as the ARTIST and is omitted.
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
dyn_bits.c 66 findBestBook(const Word16 *bc, Word16 *book)
75 *book = j;
170 sectioning Stage 1:merge all connected regions with the same code book and
  /external/aac/libAACenc/src/
dyn_bits.cpp 144 INT* const book,
158 *book = j;
278 sectioning Stage 1:merge all connected regions with the same code book and
443 /* 1.Stage :Merge all connected regions with the same code book */
476 /* the sections in the sectionData are now marked with the optimal code book */

Completed in 1017 milliseconds

1 2 3