Searched defs:dst_size (Results 1 - 5 of 5) sorted by relevance

/system/media/audio_utils/include/audio_utils/
H A Dstring.h24 inline size_t audio_utils_strlcpy_zerofill(char *dst, const char *src, size_t dst_size) { argument
25 const size_t srclen = strlcpy(dst, src, dst_size);
27 if (srclen_with_zero < dst_size) {
28 const size_t num_zeroes = dst_size - srclen_with_zero;
/system/extras/boot_control_copy/
H A Dboot_control_copy.cpp139 uint64_t src_size, dst_size; local
174 dst_fd = boot_info_open_partition("boot", &dst_size, O_RDWR);
181 if (src_size != dst_size) {
185 src_size, dst_size);
/system/bt/stack/sdp/
H A Dsdp_api.cc864 uint16_t dst_size) {
868 if (len > dst_size - 1) {
869 len = dst_size - 1;
863 SDP_AttrStringCopy(char* dst, tSDP_DISC_ATTR* p_attr, uint16_t dst_size) argument
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.cpp481 int dst_size,
507 (parts.texel[i].component_size(component) < dst_size)) {
539 if (need_expander && (fragment.size() < dst_size)) {
542 expand(fragment, fragment, dst_size);
547 (mInfo[component].needed || fragment.size()<dst_size))
479 build_incoming_component( component_t& temp, int dst_size, const fragment_parts_t& parts, int component, Scratch& scratches, Scratch& global_regs) argument
/system/media/camera/src/
H A Dcamera_metadata.c267 size_t dst_size,
274 if (memory_needed > dst_size) return NULL;
341 camera_metadata_t* copy_camera_metadata(void *dst, size_t dst_size, argument
346 if (dst_size < memory_needed) return NULL;
349 place_camera_metadata(dst, dst_size, src->entry_count, src->data_count);
266 place_camera_metadata(void *dst, size_t dst_size, size_t entry_capacity, size_t data_capacity) argument

Completed in 129 milliseconds