HomeSort by relevance Sort by last modified time
    Searched defs:valid_len (Results 1 - 3 of 3) sorted by null

  /external/bluetooth/glib/gio/
gmemoryoutputstream.c 51 gsize valid_len; /* The part of data that has been written to */ member in struct:_GMemoryOutputStreamPrivate
209 priv->valid_len = 0;
276 return ostream->priv->valid_len;
351 if (priv->len < priv->valid_len)
352 priv->valid_len = priv->len;
405 if (priv->pos > priv->valid_len)
406 priv->valid_len = priv->pos;
  /external/chromium/net/disk_cache/
entry_impl.cc 190 int valid_len = Size() - offset; local
191 int copy_len = std::min(valid_len, len);
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.h 381 Idx valid_len; member in struct:re_string_t
390 /* This is RAW_LEN - RAW_MBS_IDX + VALID_LEN - VALID_RAW_LEN. */
449 ((idx) == (pstr)->valid_len || (pstr)->wcs[idx] != WEOF)
451 ((pstr)->wcs[idx] != WEOF && ((pstr)->valid_len == (idx) + 1 \
815 for (byte_idx = 1; idx + byte_idx < pstr->valid_len; ++byte_idx)

Completed in 262 milliseconds