/external/chromium_org/media/base/ |
audio_fifo.cc | 64 const int source_size = source->frames(); local 65 CHECK_LE(source_size + frames(), max_frames_); 71 GetSizes(write_pos_, max_frames(), source_size, &append_size, &wrap_size); 89 Atomic32 new_frames_pushed = frames_pushed_ + source_size; 93 write_pos_ = UpdatePos(write_pos_, source_size, max_frames());
|
/external/chromium/sdch/open-vcdiff/src/ |
blockhash.h | 123 BlockHash(const char* source_data, size_t source_size, int starting_offset); 357 size_t source_size() { return source_size_; } function in class:open_vcdiff::BlockHash 368 // to calling AddAllBlocksThroughIndex(source_data + source_size).
|
/external/chromium_org/sdch/open-vcdiff/src/ |
blockhash.h | 123 BlockHash(const char* source_data, size_t source_size, int starting_offset); 357 size_t source_size() { return source_size_; } function in class:open_vcdiff::BlockHash 368 // to calling AddAllBlocksThroughIndex(source_data + source_size).
|
/external/open-vcdiff/src/ |
blockhash.h | 123 BlockHash(const char* source_data, size_t source_size, int starting_offset); 357 size_t source_size() { return source_size_; } function in class:open_vcdiff::BlockHash 368 // to calling AddAllBlocksThroughIndex(source_data + source_size).
|
/external/chromium_org/chrome/renderer/ |
mock_printer.cc | 46 uint32 source_size, 48 : source_size_(source_size), 51 source_data_.reset(new uint8[source_size]); 53 memcpy(source_data_.get(), source_data, source_size); 275 uint32 source_size = pages_[page]->source_size(); local 277 source_size);
|
mock_printer.h | 31 uint32 source_size, 37 uint32 source_size() const { return source_size_; } function in class:MockPrinterPage
|
/frameworks/av/media/libstagefright/ |
CameraSourceTimeLapse.cpp | 225 size_t source_size = source_data->size(); local 228 sp<MemoryHeapBase> newMemoryHeap = new MemoryHeapBase(source_size); 229 sp<MemoryBase> newMemory = new MemoryBase(newMemoryHeap, 0, source_size); 230 memcpy(newMemory->pointer(), source_pointer, source_size);
|
/external/chromium_org/cc/output/ |
gl_renderer.cc | 546 gfx::Size source_size = source_texture_resource->size(); local 549 DCHECK_LE(background_size.width(), source_size.width()); 550 DCHECK_LE(background_size.height(), source_size.height()); 555 DCHECK_EQ(source_size.width(), source_bitmap_with_filters.width()); 556 DCHECK_EQ(source_size.height(), source_bitmap_with_filters.height()); 582 backend_texture_description.fWidth = source_size.width(); 583 backend_texture_description.fHeight = source_size.height(); 597 source_size.width(), 598 source_size.height(), [all...] |