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

  /external/bluetooth/glib/glib/
gunidecomp.c 127 * only calculate the result_len; however, a buffer with space for three
132 gsize *result_len)
141 *result_len = 1;
159 *result_len = 3;
162 *result_len = 2;
214 * @result_len: location to store the length of the return value.
219 * @result_len is set to the resulting length of the string.
223 gsize *result_len)
232 decompose_hangul (ch, NULL, result_len);
233 r = g_malloc (*result_len * sizeof (gunichar))
371 gsize result_len; local
402 gsize result_len; local
    [all...]
guniprop.c 938 gsize result_len; local
949 result_len = real_toupper (str, len, NULL, locale_type);
950 result = g_malloc (result_len + 1);
952 result[result_len] = '\0';
1126 gsize result_len; local
1137 result_len = real_tolower (str, len, NULL, locale_type);
1138 result = g_malloc (result_len + 1);
1140 result[result_len] = '\0';
    [all...]
  /external/dbus/dbus/
dbus-object-tree.c 1440 int result_len; local
    [all...]
  /external/v8/src/
builtins.cc 493 int result_len = final - k; local
494 if (result_len < 0) {
495 result_len = 0;
504 result = Heap::AllocateFixedArrayWithHoles(result_len);
517 for (int i = 0; i < result_len; i++) {
527 result_array->set_length(Smi::FromInt(result_len));
    [all...]

Completed in 84 milliseconds