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

1 2

  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
realloc_unittest.cc 90 for (int src_size = 0; src_size >= 0; src_size = NextSize(src_size)) {
92 unsigned char* src = (unsigned char*) malloc(src_size);
93 Fill(src, src_size);
95 CHECK(Valid(dst, min(src_size, dst_size)));
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
realloc_unittest.cc 90 for (int src_size = 0; src_size >= 0; src_size = NextSize(src_size)) {
92 unsigned char* src = (unsigned char*) malloc(src_size);
93 Fill(src, src_size);
95 CHECK(Valid(dst, min(src_size, dst_size)));
  /external/opencv/cv/src/
_cvimgproc.h 53 CvSize src_size, const float* kx, const float* ky, float* buffer );
104 ( const uchar* src, int src_step, CvSize src_size,
107 ( const uchar* src, int src_step, CvSize src_size,
110 ( const float* src, int src_step, CvSize src_size,
114 ( const uchar* src, int src_step, CvSize src_size,
117 ( const uchar* src, int src_step, CvSize src_size,
120 ( const float* src, int src_step, CvSize src_size,
cvsamplers.cpp 89 CvSize src_size, CvSize win_size,
107 if( ip.x + win_size.width < src_size.width )
111 rect.width = src_size.width - ip.x - 1;
128 if( ip.y + win_size.height < src_size.height )
132 rect.height = src_size.height - ip.y - 1;
148 ( const srctype* src, int src_step, CvSize src_size, \
174 if( 0 <= ip.x && ip.x + win_size.width < src_size.width && \
175 0 <= ip.y && ip.y + win_size.height < src_size.height ) \
220 sizeof(*src), src_size, win_size,ip, &r); \
267 ( const srctype* src, int src_step, CvSize src_size, \
546 CvSize src_size, dst_size; local
816 CvSize src_size, dst_size; local
    [all...]
cvpyramids.cpp 496 icvPyrDownBorder_##flavor##_CnR( const arrtype *src, int src_step, CvSize src_size,
1041 CvSize src_size, src_size2, dst_size; local
    [all...]
  /external/chromium_org/content/common/gpu/client/
gl_helper_benchmark.cc 139 const gfx::Size src_size(input_sizes[insize],
144 input.allocN32Pixels(src_size.width(), src_size.height());
164 src_size.width(),
165 src_size.height(),
172 src_size.width(), src_size.height());
175 src_size,
208 src_size.width(),
209 src_size.height()
    [all...]
gl_helper_scaling.cc 59 void UseProgram(const gfx::Size& src_size,
107 // |src_size| is the size of the input texture in pixels.
149 spec_.src_size.width(),
150 spec_.src_size.height(),
195 shader_program_->UseProgram(spec_.src_size,
227 return spec_.src_size;
256 src_size(src_size_),
265 // on an imag of size |src_size|. If |quality| is SCALER_QUALITY_BEST,
276 gfx::Size src_size,
382 src_size,
    [all...]
gl_helper_scaling.h 61 gfx::Size src_size,
68 const gfx::Size& src_size,
76 const gfx::Size& src_size,
154 gfx::Size src_size; member in struct:content::GLHelperScaling::ScalerStage
165 const gfx::Size& src_size,
177 gfx::Size src_size,
gl_helper.cc 141 const gfx::Size& src_size,
180 const gfx::Size& src_size,
187 const gfx::Size& src_size,
245 const gfx::Size& src_size,
283 const gfx::Size& src_size,
318 // |src_size| is the size of |src_texture|.
320 const gfx::Size& src_size,
336 // is equal to src_size.width()/4 rounded upwards. Some channels in the last
337 // pixel ((-src_size.width()) % 4) to be exact) are padding and don't contain
342 const gfx::Size& src_size,
    [all...]
gl_helper.h 163 // |src_size| is the size of |src_texture|. The result is in |out_color_type|
171 const gfx::Size& src_size,
181 // |src_size| is the size of |src_mailbox|. The result is in |out_color_type|
191 const gfx::Size& src_size,
220 // Creates a scaled copy of the specified texture. |src_size| is the size of
225 const gfx::Size& src_size,
297 const gfx::Size& src_size,
312 const gfx::Size& src_size,
  /external/chromium_org/content/child/npapi/
webplugin_ime_win.cc 219 DWORD src_size = 0; local
223 src_size = instance->composition_text_.length() * sizeof(wchar_t);
228 src_size = instance->composition_attributes_.length();
233 src_size = instance->composition_clauses_.size() * sizeof(uint32);
244 src_size = instance->result_text_.length() * sizeof(wchar_t);
249 src_size = sizeof(instance->result_clauses_);
255 if (!src_data || !src_size)
258 if (dst_size >= src_size)
259 memcpy(dst_data, src_data, src_size);
261 return src_size;
    [all...]
  /external/opencv/cvaux/src/
cvlines.cpp 46 uchar * dst, int *dst_num, CvSize src_size, CvPoint start, CvPoint end )
52 if( !src || !dst || (src_size.width | src_size.height) < 0 ||
53 src_step < src_size.width * 3 ||
54 (unsigned) start.x >= (unsigned) src_size.width ||
55 (unsigned) start.y >= (unsigned) src_size.height ||
56 (unsigned) end.x >= (unsigned) src_size.width ||
57 (unsigned) end.y >= (unsigned) src_size.height )
201 CvSize src_size, /* image size in pixels */
214 cvInitMatHeader( &mat, src_size.height, src_size.width, CV_8UC3, src, src_step )
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_vlc.h 70 vl_vlc_init_table(struct vl_vlc_entry *dst, unsigned dst_size, const struct vl_vlc_compressed *src, unsigned src_size)
75 assert(src && src_size);
82 for(; src_size > 0; --src_size, ++src) {
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_vlc.h 70 vl_vlc_init_table(struct vl_vlc_entry *dst, unsigned dst_size, const struct vl_vlc_compressed *src, unsigned src_size)
75 assert(src && src_size);
82 for(; src_size > 0; --src_size, ++src) {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace.h 45 void CopyFrom(const uptr *src, uptr src_size) {
47 size = src_size;
  /external/chromium_org/base/allocator/
allocator_unittest.cc 426 for (int src_size = 0; src_size >= 0; src_size = NextSize(src_size)) {
428 unsigned char* src = reinterpret_cast<unsigned char*>(malloc(src_size));
429 Fill(src, src_size);
432 EXPECT_TRUE(Valid(dst, min(src_size, dst_size)));
476 for (int src_size = 0; src_size >= 0; src_size = NextSize(src_size))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_pack.py 316 src_size = src_channel.size
321 if src_type == FLOAT and src_size == 16:
323 src_size = 32
327 if src_type == UNSIGNED and src_norm and src_size == 8 and dst_channel.type == FLOAT and dst_channel.size == 32:
329 if src_type == FLOAT and src_size == 32 and dst_channel.type == UNSIGNED and dst_channel.norm and dst_channel.size == 8:
351 tmp_native_type = intermediate_native_type(src_size + dst_channel.size, src_channel.sign and dst_channel.sign)
361 if src_size <= 23:
365 src_size = 32
369 src_size = 64
372 if src_size <= 23 or dst_channel.size <= 32
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_pack.py 316 src_size = src_channel.size
321 if src_type == FLOAT and src_size == 16:
323 src_size = 32
327 if src_type == UNSIGNED and src_norm and src_size == 8 and dst_channel.type == FLOAT and dst_channel.size == 32:
329 if src_type == FLOAT and src_size == 32 and dst_channel.type == UNSIGNED and dst_channel.norm and dst_channel.size == 8:
351 tmp_native_type = intermediate_native_type(src_size + dst_channel.size, src_channel.sign and dst_channel.sign)
361 if src_size <= 23:
365 src_size = 32
369 src_size = 64
372 if src_size <= 23 or dst_channel.size <= 32
    [all...]
  /external/chromium_org/ui/gfx/android/
java_bitmap.cc 117 gfx::Size src_size = jbitmap.size(); local
120 skbitmap.allocPixels(SkImageInfo::MakeN32Premul(src_size.width(),
121 src_size.height()),
  /art/runtime/base/
bit_vector.cc 171 // Update src_size to how many cells we actually care about: where the bit is + 1.
172 uint32_t src_size = BitsToWords(highest_bit + 1); local
175 if (storage_size_ < src_size) {
185 for (uint32_t idx = 0; idx < src_size; idx++) {
245 uint32_t src_size = src->storage_size_; local
248 unsigned int min_size = (storage_size_ > src_size) ? src_size : storage_size_;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_blit.h 57 GLubyte *src_bits, GLuint src_size,
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_blit.h 57 GLubyte *src_bits, GLuint src_size,
  /bionic/libc/kernel/uapi/rdma/
rdma_user_cm.h 114 __u16 src_size; member in struct:rdma_ucm_resolve_addr
156 __u16 src_size; member in struct:rdma_ucm_query_addr_resp
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_pepper_interface_url_loader.cc 208 size_t src_size = body_.size(); local
213 size_t src_offset = static_cast<size_t>(offset % src_size);
216 size_t bytes_to_copy = std::min(bytes_left, src_size - src_offset);
223 for (size_t i = bytes_left / src_size; i > 0; --i) {
224 memcpy(dst, src, src_size);
225 dst += src_size;
226 bytes_left -= src_size;
229 // Copy the rest of the bytes, < src_size.
231 assert(bytes_left < src_size);
  /external/kernel-headers/original/uapi/rdma/
rdma_user_cm.h 125 __u16 src_size; member in struct:rdma_ucm_resolve_addr
164 __u16 src_size; member in struct:rdma_ucm_query_addr_resp

Completed in 1271 milliseconds

1 2