OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uword
(Results
1 - 18
of
18
) sorted by null
/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;
/art/runtime/
globals.h
27
typedef uintptr_t
uword
;
typedef in namespace:art
memory_region.h
34
MemoryRegion(void* pointer,
uword
size) : pointer_(pointer), size_(size) {}
/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/chromium_org/third_party/mach_override/libudis86/
syn.c
162
case 16: v = op->lval.
uword
; break;
181
case 16: v = op->lval.
uword
; break;
types.h
133
uint16_t
uword
;
member in union:ud_lval
decode.c
407
case 16: op->lval.
uword
= inp_uint16(u); break;
430
op->lval.
uword
= inp_uint16(u);
/art/compiler/utils/arm/
constants_arm.h
438
static Instr* At(
uword
pc) { return reinterpret_cast<Instr*>(pc); }
assembler_arm.h
428
static uint32_t DecodeUint32FromTstInstructions(
uword
pc);
429
static bool IsInstructionForExceptionHandling(
uword
pc);
/external/libgsm/inc/
private.h
15
typedef unsigned short
uword
; /* unsigned word */
typedef
/art/compiler/utils/mips/
assembler_mips.h
179
static Address Absolute(
uword
addr) {
/art/compiler/utils/x86/
assembler_x86.cc
1261
xorps(f, Address::Absolute(reinterpret_cast<
uword
>(&float_negate_constant)));
1271
xorpd(d, Address::Absolute(reinterpret_cast<
uword
>(&double_negate_constant)));
1281
andpd(reg, Address::Absolute(reinterpret_cast<
uword
>(&double_abs_constant)));
[
all
...]
assembler_x86.h
195
static Address Absolute(
uword
addr) {
Completed in 130 milliseconds