Searched refs:nbBytes (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/opus/src/doc/
H A Dtrivial_example.c57 int nbBytes; local
126 nbBytes = opus_encode(encoder, in, FRAME_SIZE, cbits, MAX_PACKET_SIZE);
127 if (nbBytes<0)
129 fprintf(stderr, "encode failed: %s\n", opus_strerror(nbBytes));
138 frame_size = opus_decode(decoder, cbits, nbBytes, out, MAX_FRAME_SIZE, 0);
/external/libopus/doc/
H A Dtrivial_example.c57 int nbBytes; local
126 nbBytes = opus_encode(encoder, in, FRAME_SIZE, cbits, MAX_PACKET_SIZE);
127 if (nbBytes<0)
129 fprintf(stderr, "encode failed: %s\n", opus_strerror(nbBytes));
138 frame_size = opus_decode(decoder, cbits, nbBytes, out, MAX_FRAME_SIZE, 0);
/external/srec/portable/include/
H A Dpmemory.h101 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes, tag, L(__FILE__), __LINE__))
106 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes))
165 * @param nbBytes The number of bytes to allocate.
176 PORTABLE_API void *pmalloc(size_t nbBytes, const LCHAR* tag, const LCHAR* file, int line);
178 PORTABLE_API void *pmalloc(size_t nbBytes);
/external/chromium_org/third_party/libxml/src/include/libxml/
H A Dxmlmemory.h147 xmlMemDisplayLast(FILE *fp, long nbBytes);
/external/libxml2/include/libxml/
H A Dxmlmemory.h147 xmlMemDisplayLast(FILE *fp, long nbBytes);
/external/chromium_org/third_party/libxml/src/
H A Dxmlmemory.c635 * @nbBytes: the amount of memory to dump
637 * the last nbBytes of memory allocated and not freed, useful for dumping
642 xmlMemDisplayLast(FILE *fp, long nbBytes) argument
651 if (nbBytes <= 0)
662 nbBytes, debugMemSize, debugMaxMemSize);
667 while ((p) && (nbBytes > 0)) {
693 nbBytes -= (unsigned long)p->mh_size;
/external/libxml2/
H A Dxmlmemory.c638 * @nbBytes: the amount of memory to dump
640 * the last nbBytes of memory allocated and not freed, useful for dumping
645 xmlMemDisplayLast(FILE *fp, long nbBytes) argument
654 if (nbBytes <= 0)
665 nbBytes, debugMemSize, debugMaxMemSize);
670 while ((p) && (nbBytes > 0)) {
696 nbBytes -= (unsigned long)p->mh_size;
/external/srec/portable/src/
H A Dpmemory.c568 void *pmalloc(size_t nbBytes, const LCHAR* tag, const LCHAR* file, int line) argument
570 void *pmalloc(size_t nbBytes)
612 actualSize = sizeof(MemoryData) + nbBytes;
619 * nbBytes, file, line, PortMallocGetMaxMemUsed());

Completed in 250 milliseconds