HomeSort by relevance Sort by last modified time
    Searched refs:dst_size (Results 1 - 14 of 14) sorted by null

  /external/chromium/base/allocator/
allocator_unittests.cc 418 for (int dst_size = 0; dst_size >= 0; dst_size = NextSize(dst_size)) {
422 reinterpret_cast<unsigned char*>(realloc(src, dst_size));
423 EXPECT_EQ(true, Valid(dst, min(src_size, dst_size)));
424 Fill(dst, dst_size);
425 EXPECT_EQ(true, Valid(dst, dst_size));
468 for (int dst_size = 0; dst_size >= 0; dst_size = NextSize(dst_size))
    [all...]
  /external/chromium/base/gfx/
rect.cc 21 void AdjustAlongAxis(int dst_origin, int dst_size, int* origin, int* size) {
24 *size = std::min(dst_size, *size);
26 *size = std::min(dst_size, *size);
27 *origin = std::min(dst_origin + dst_size, *origin + *size) - *size;
  /external/qemu/
thunk.c 193 int array_length, i, dst_size, src_size; local
198 dst_size = thunk_type_size(type_ptr, to_host);
204 d += dst_size;
  /external/stlport/src/c_locale_win32/
c_wlocale_win32.c 222 wchar_t* dst, size_t dst_size,
229 _STLP_WCSNCPY(dst, dst_size, src, src_size);
233 if (dst_size > INT_MAX) {
234 dst_size = INT_MAX;
236 result = LCMapStringW(lcol->lc.id, LCMAP_SORTKEY, src, (int)src_size, dst, (int)dst_size);
c_locale_win32.c     [all...]
  /ndk/sources/android/stlport/src/c_locale_win32/
c_wlocale_win32.c 222 wchar_t* dst, size_t dst_size,
229 _STLP_WCSNCPY(dst, dst_size, src, src_size);
233 if (dst_size > INT_MAX) {
234 dst_size = INT_MAX;
236 result = LCMapStringW(lcol->lc.id, LCMAP_SORTKEY, src, (int)src_size, dst, (int)dst_size);
c_locale_win32.c     [all...]
  /external/chromium/base/
string_util.cc     [all...]
string_util.h 86 // Copies |src| to |dst|, where |dst_size| is the total allocated size of |dst|.
87 // Copies at most |dst_size|-1 characters, and always NULL terminates |dst|, as
88 // long as |dst_size| is not 0. Returns the length of |src| in characters.
89 // If the return value is >= dst_size, then the output was truncated.
91 size_t strlcpy(char* dst, const char* src, size_t dst_size);
92 size_t wcslcpy(wchar_t* dst, const wchar_t* src, size_t dst_size);
  /hardware/broadcom/wlan/bcm4329/src/wl/sys/
wl_iw.h 266 extern int wl_iw_parse_data_tlv(char** list_str, void *dst, int dst_size, \
wl_cfg80211.c 196 static int32 wl_cp_ie(struct wl_priv *wl, uint8 *dst, uint16 dst_size);
    [all...]
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.cpp 480 int dst_size,
506 (parts.texel[i].component_size(component) < dst_size)) {
538 if (need_expander && (fragment.size() < dst_size)) {
541 expand(fragment, fragment, dst_size);
546 (mInfo[component].needed || fragment.size()<dst_size))
    [all...]
GGLAssembler.h 410 int dst_size,
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_common.c     [all...]

Completed in 240 milliseconds