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

  /external/bluetooth/glib/gio/xdgmime/
xdgmimeint.h 46 typedef unsigned int xdg_uint32_t; typedef
60 #define SWAP_BE32_TO_LE32(val) (xdg_uint32_t)((((xdg_uint32_t)(val) & 0xFF000000U) >> 24) | \
61 (((xdg_uint32_t)(val) & 0x00FF0000U) >> 8) | \
62 (((xdg_uint32_t)(val) & 0x0000FF00U) << 8) | \
63 (((xdg_uint32_t)(val) & 0x000000FFU) << 24))
xdgmimecache.c 87 #define GET_UINT32(cache,offset) (ntohl(*(xdg_uint32_t*)((cache) + (offset))))
159 xdg_uint32_t offset,
163 xdg_uint32_t range_start = GET_UINT32 (cache->buffer, offset);
164 xdg_uint32_t range_length = GET_UINT32 (cache->buffer, offset + 4);
165 xdg_uint32_t data_length = GET_UINT32 (cache->buffer, offset + 12);
166 xdg_uint32_t data_offset = GET_UINT32 (cache->buffer, offset + 16);
167 xdg_uint32_t mask_offset = GET_UINT32 (cache->buffer, offset + 20);
211 xdg_uint32_t offset,
215 xdg_uint32_t n_children = GET_UINT32 (cache->buffer, offset + 24);
216 xdg_uint32_t child_offset = GET_UINT32 (cache->buffer, offset + 28)
    [all...]
xdgmimemagic.c 492 *((xdg_uint32_t *) matchlet->value + i) = SWAP_BE32_TO_LE32 (*((xdg_uint32_t *) (matchlet->value + i)));
498 *((xdg_uint32_t *) matchlet->mask + i) = SWAP_BE32_TO_LE32 (*((xdg_uint32_t *) (matchlet->mask + i)));

Completed in 72 milliseconds