Home
last modified time | relevance | path

Searched refs:uword (Results 1 – 11 of 11) sorted by relevance

/external/libgsm/src/
Dgsm_decode.c21 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 …]
Dgsm_explode.c25 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 …]
Dgsm_encode.c112 uword sr;
228 uword sr;
Dadd.c193 else return -(word)( -(uword)a >> n );
Dgsm_implode.c118 uword sr = 0;
/external/webkit/Source/WebCore/platform/
DArena.h56 typedef uintptr_t uword; typedef
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 …]
DArena.cpp100 (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()
/external/oprofile/opjitconv/
Ddebug_line.c30 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) in emit_uword()
155 add_data(b, &data, sizeof(uword)); in emit_uword()
/external/clang/test/CodeGen/
D2009-01-21-InvalidIterator.c48 typedef unsigned int uword; typedef
51 uword length;
/external/libgsm/inc/
Dprivate.h15 typedef unsigned short uword; /* unsigned word */ typedef
/external/webkit/Source/WebCore/
DChangeLog-2010-05-2416818 …* WebCore/platform/Arena.h: uword is used to cast from pointers here. unsigned long is 32-bit on …