Searched refs:uword (Results 1 – 11 of 11) sorted by relevance
21 uword sr = 0;28 sr |= (uword)*c++ << 2;30 sr |= (uword)*c++ << 4;33 sr |= (uword)*c++ << 2;36 sr |= (uword)*c++ << 2; /* 5 */39 sr |= (uword)*c++ << 4;43 sr |= (uword)*c++ << 1;49 sr |= (uword)*c++ << 2;53 sr |= (uword)*c++ << 1; /* 10 */60 sr |= (uword)*c++ << 2;[all …]
25 uword sr = 0;31 sr |= (uword)*c++ << 2;33 sr |= (uword)*c++ << 4;36 sr |= (uword)*c++ << 2;39 sr |= (uword)*c++ << 2; /* 5 */42 sr |= (uword)*c++ << 4;46 sr |= (uword)*c++ << 1;54 sr |= (uword)*c++ << 2;58 sr |= (uword)*c++ << 1; /* 10 */65 sr |= (uword)*c++ << 2;[all …]
112 uword sr;228 uword sr;
193 else return -(word)( -(uword)a >> n );
118 uword sr = 0;
56 typedef uintptr_t uword; typedef60 uword base; // aligned base address61 uword limit; // end of arena (1+last byte)62 uword avail; // points to next available byte in arena69 uword mask; // Mask (power-of-2 - 1)78 #define ARENA_ALIGN(n) (((uword)(n) + ARENA_ALIGN_MASK) & ~ARENA_ALIGN_MASK)85 uword _p = _a->avail; \86 uword _q = _p + _nb; \88 _p = (uword)ArenaAllocate(pool, _nb); \96 uword _p = _a->avail; \[all …]
100 (uword)ARENA_ALIGN(&pool->first + 1); in InitArenaPool()132 nb = (uword)ARENA_ALIGN(nb); /* force alignment */ in ArenaAllocate()183 a->limit = (uword)a + sz; in ArenaAllocate()184 a->base = a->avail = (uword)ARENA_ALIGN(a + 1); in ArenaAllocate()
30 typedef uint32_t uword; typedef89 uword total_length;94 uword prolog_length;121 uword total_length;123 uword debug_abbrev_offset;153 static void emit_uword(struct growable_buffer * b, uword data) in emit_uword()155 add_data(b, &data, sizeof(uword)); in emit_uword()
48 typedef unsigned int uword; typedef51 uword length;
15 typedef unsigned short uword; /* unsigned word */ typedef
16818 …* WebCore/platform/Arena.h: uword is used to cast from pointers here. unsigned long is 32-bit on …