HomeSort by relevance Sort by last modified time
    Searched full:n_bytes (Results 1 - 17 of 17) sorted by null

  /external/bluetooth/glib/glib/
gmem.c 62 gsize n_bytes)
65 return malloc (n_bytes);
67 return realloc (mem, n_bytes);
82 standard_malloc (gsize n_bytes)
84 return malloc (n_bytes);
89 gsize n_bytes)
91 return realloc (mem, n_bytes);
101 gsize n_bytes)
103 return calloc (n_blocks, n_bytes);
123 g_malloc (gsize n_bytes)
    [all...]
gmem.h 51 gpointer g_malloc (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
52 gpointer g_malloc0 (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
54 gsize n_bytes) G_GNUC_WARN_UNUSED_RESULT;
56 gpointer g_try_malloc (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
57 gpointer g_try_malloc0 (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
59 gsize n_bytes) G_GNUC_WARN_UNUSED_RESULT;
85 gpointer (*malloc) (gsize n_bytes);
87 gsize n_bytes);
92 gpointer (*try_malloc) (gsize n_bytes);
94 gsize n_bytes);
    [all...]
gutf8.c 1121 gint n_bytes; local
1126 n_bytes = 0;
1167 n_bytes += UTF8_LENGTH (wc);
1183 result = g_malloc (n_bytes + 1);
1188 while (out < result + n_bytes)
1262 gint n_bytes; local
1267 n_bytes = 0;
1308 n_bytes += sizeof (gunichar);
    [all...]
gtestutils.h 260 guint n_bytes,
gtestutils.c 131 g_test_log_send (guint n_bytes,
138 r = write (test_log_fd, buffer, n_bytes);
146 g_test_log_buffer_push (lbuffer, n_bytes, buffer);
    [all...]
gslice.c     [all...]
  /external/bluetooth/glib/docs/reference/glib/tmpl/
memory.sgml 130 Allocates @n_bytes bytes of memory.
131 If @n_bytes is 0 it returns %NULL.
134 @n_bytes: the number of bytes to allocate
140 Allocates @n_bytes bytes of memory, initialized to 0's.
141 If @n_bytes is 0 it returns %NULL.
144 @n_bytes: the number of bytes to allocate
151 @n_bytes bytes of memory. It returns the new address of the memory, which may
153 have zero-length. @n_bytes may be 0, in which case %NULL will be returned
158 @n_bytes: new size of the memory in bytes
164 Attempts to allocate @n_bytes, and returns %NULL on failure.
    [all...]
  /external/dbus/dbus/
dbus-sysdeps.c 714 int n_bytes)
721 n_bytes);
727 while (i < n_bytes)
742 * Fills n_bytes of the given buffer with random bytes.
745 * @param n_bytes the number of bytes in buffer to write to
749 int n_bytes)
755 _dbus_generate_pseudorandom_bytes_buffer (buffer, n_bytes);
759 if (!_dbus_generate_random_bytes (&str, n_bytes))
762 _dbus_generate_pseudorandom_bytes_buffer (buffer, n_bytes);
766 _dbus_string_copy_to_buffer (&str, buffer, n_bytes);
    [all...]
dbus-sysdeps.h 322 int n_bytes);
324 int n_bytes);
326 int n_bytes);
328 int n_bytes);
dbus-sysdeps-unix.c     [all...]
dbus-internals.c 439 * @param n_bytes number of bytes to copy
444 size_t n_bytes)
448 copy = dbus_malloc (n_bytes);
452 memcpy (copy, mem, n_bytes);
dbus-internals.h 198 size_t n_bytes);
dbus-string.h 100 int n_bytes,
dbus-string.c 545 * @param n_bytes number of bytes
552 int n_bytes,
558 _dbus_assert (n_bytes >= 0);
560 if (n_bytes == 0)
563 if (!open_gap (n_bytes, real, i))
566 memset (real->str + i, byte, n_bytes);
    [all...]
  /external/bluetooth/glib/
acglib.m4 73 dnl GLIB_BYTE_CONTENTS (INCLUDES, TYPE, ALIAS, N_BYTES, INITIALIZER)
  /external/bluetooth/glib/docs/reference/glib/
running.sgml 263 condition 1 n_bytes == 20
  /external/svox/pico/lib/
picosig.c 738 picoos_uint32 n_start, n_fram, n_bytes; local
    [all...]

Completed in 151 milliseconds