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

1 2 3 4

  /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 396 /* static book is not cleared; we're likely called on the lookup and
645 ogg_uint32_t decode_packed_entry_number(codebook *book,
648 static inline ogg_uint32_t decode_packed_entry_number(codebook *book,
651 int read=book->dec_maxlength;
663 switch (book->dec_method)
667 /* book->dec_nodeb==1, book->dec_leafw==1 */
669 unsigned char *t=(unsigned char *)book->dec_table;
680 /* book->dec_nodeb==1, book->dec_leafw!=1 *
    [all...]
  /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...]
  /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/protobuf/examples/
list_people.go 34 func listPeople(w io.Writer, book *pb.AddressBook) {
35 for _, p := range book.People {
40 // Main reads the entire address book from a file and prints all the
49 // Read the existing address book.
54 book := &pb.AddressBook{}
55 if err := proto.Unmarshal(in, book); err != nil {
56 log.Fatalln("Failed to parse address book:", err)
60 listPeople(os.Stdout, book)
add_person.go 91 // Main reads the entire address book from a file, adds one person based on
99 // Read the existing address book.
110 book := &pb.AddressBook{}
112 if err := proto.Unmarshal(in, book); err != nil {
113 log.Fatalln("Failed to parse address book:", err)
121 book.People = append(book.People, addr)
124 // Write the new address book back to disk.
125 out, err := proto.Marshal(book)
127 log.Fatalln("Failed to encode address book:", err
    [all...]
  /frameworks/support/room/compiler/src/test/data/daoWriter/input/
WriterDao.java 30 void insertUserAndBook(User user, Book book);
DeletionDao.java 47 void deleteUserAndBook(User user, Book book);
UpdateDao.java 41 void updateUserAndBook(User user, Book book);
  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/android/arch/persistence/room/integration/kotlintestapp/test/
RxJava2QueryTest.kt 33 .assertValue { book -> book == TestUtil.BOOK_1 }
45 .assertValue { book -> book == TestUtil.BOOK_1 }
64 .assertValue { book -> book == TestUtil.BOOK_1 }
LiveDataQueryTest.kt 19 import android.arch.persistence.room.integration.kotlintestapp.vo.Book
35 val book = LiveDataTestUtil.getValue(booksDao.getBookLiveData(TestUtil.BOOK_1.bookId))
37 assertThat(book, `is`<Book>(TestUtil.BOOK_1))
66 assertThat(actualPublisherWithBooks.books?.get(0), `is`<Book>(TestUtil.BOOK_1))
67 assertThat(actualPublisherWithBooks.books?.get(1), `is`<Book>(TestUtil.BOOK_2))
  /prebuilts/go/darwin-x86/test/
helloworld.go 7 // Test that we can do page 1 of the C book.
  /prebuilts/go/linux-x86/test/
helloworld.go 7 // Test that we can do page 1 of the C book.
  /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/protobuf/src/google/protobuf/util/internal/
protostream_objectsource_test.cc 72 using google::protobuf::testing::Book;
104 helper_.ResetTypeInfo(Book::descriptor());
284 Book empty;
286 DoTest(empty, Book::descriptor());
354 Book book; local
355 book.set_title("My Book");
356 book.set_allocated_author(author);
359 ->RenderString("title", "My Book")
425 Book* book = new Book(); local
460 Book book; local
478 Book book; local
488 Book book; local
500 Book* book = cyclic.mutable_m_book(); local
    [all...]
  /frameworks/support/room/compiler/src/test/data/daoWriter/output/
WriterDao.java 86 this.__insertionAdapterOfBook = new EntityInsertionAdapter<Book>(__db) {
89 return "INSERT OR ABORT INTO `Book`(`bookId`,`uid`) VALUES (?,?)";
93 public void bind(SupportSQLiteStatement stmt, Book value) {
135 public void insertUserAndBook(User user, Book book) {
139 __insertionAdapterOfBook.insert(book);
  /prebuilts/go/darwin-x86/src/math/cmplx/
exp.go 17 // Some software in this archive may be from the book _Methods and
24 // The two known misprints in the book are repaired here in the
log.go 17 // Some software in this archive may be from the book _Methods and
24 // The two known misprints in the book are repaired here in the
  /prebuilts/go/linux-x86/src/math/cmplx/
exp.go 17 // Some software in this archive may be from the book _Methods and
24 // The two known misprints in the book are repaired here in the
log.go 17 // Some software in this archive may be from the book _Methods and
24 // The two known misprints in the book are repaired here in the

Completed in 320 milliseconds

1 2 3 4