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

  /external/webkit/Source/WebCore/platform/
Arena.h 56 typedef uintptr_t uword; typedef in namespace:WebCore
60 uword base; // aligned base address
61 uword limit; // end of arena (1+last byte)
62 uword avail; // points to next available byte in arena
69 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...]
Arena.cpp 100 (uword)ARENA_ALIGN(&pool->first + 1);
132 nb = (uword)ARENA_ALIGN(nb); /* force alignment */
183 a->limit = (uword)a + sz;
184 a->base = a->avail = (uword)ARENA_ALIGN(a + 1);
  /external/libgsm/src/
gsm_decode.c 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...]
gsm_explode.c 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...]
gsm_encode.c 112 uword sr;
228 uword sr;
add.c 193 else return -(word)( -(uword)a >> n );
gsm_implode.c 118 uword sr = 0;
  /external/clang/test/CodeGen/
2009-01-21-InvalidIterator.c 48 typedef unsigned int uword; typedef
51 uword length;
  /external/oprofile/opjitconv/
debug_line.c 30 typedef uint32_t uword; typedef
89 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)
155 add_data(b, &data, sizeof(uword));
  /external/libgsm/inc/
private.h 15 typedef unsigned short uword; /* unsigned word */ typedef

Completed in 665 milliseconds