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

  /external/clang/test/CodeGenCXX/
copy-assign-volatile-synthesis.cpp 4 typedef unsigned long word_t; typedef
12 word_t vector : 8;
14 word_t delivery_mode : 3;
15 word_t dest_mode : 1;
17 word_t delivery_status : 1;
18 word_t polarity : 1;
19 word_t irr : 1;
20 word_t trigger_mode : 1;
22 word_t mask : 1;
23 word_t _pad0 : 15
    [all...]
  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionHeader.h 39 word_t sh_name;
40 word_t sh_type;
43 word_t sh_link;
44 word_t sh_info;
55 word_t getNameIndex() const {
61 word_t getType() const {
73 word_t getLink() const {
77 word_t getExtraInfo() const {
110 word_t sh_flags;
111 word_t sh_size
    [all...]
ELFHeader.h 45 word_t e_version;
49 word_t e_flags;
105 word_t getVersion() const {
121 word_t getFlags() const {
ELFReloc.h 113 word_t getSymTabIndex() const {
119 word_t getType() const {
ELFSymbol.h 46 word_t st_name;
73 word_t getNameIndex() const {
ELFTypes.h 188 typedef typename ELFPrimitiveTypes<BITWIDTH>::word word_t; \
206 typedef ELFPrimitiveTypes<BITWIDTH>::word word_t; \
  /system/core/include/backtrace/
Backtrace.h 31 typedef uint64_t word_t; typedef
34 typedef uint32_t word_t; typedef
85 virtual bool ReadWord(uintptr_t ptr, word_t* out_value) = 0;
116 virtual bool VerifyReadWordArgs(uintptr_t ptr, word_t* out_value);
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 173 /// CurWord/word_t - This is the current data we have pulled from the stream
176 /// efficiency. We use word_t in places that are aware of this to make it
178 typedef uint32_t word_t; typedef in class:llvm::BitstreamCursor
179 word_t CurWord;
325 uintptr_t ByteNo = uintptr_t(BitNo/8) & ~(sizeof(word_t)-1);
326 unsigned WordBitNo = unsigned(BitNo & (sizeof(word_t)*8-1));
336 if (sizeof(word_t) > 4)
366 uint8_t Array[sizeof(word_t)] = {0};
372 <word_t, support::little, support::unaligned> EndianValue;
377 NextChar += sizeof(word_t);
    [all...]
  /system/core/libbacktrace/
BacktraceImpl.cpp 84 bool Backtrace::VerifyReadWordArgs(uintptr_t ptr, word_t* out_value) {
85 if (ptr & (sizeof(word_t)-1)) {
87 *out_value = (word_t)-1;
145 bool BacktraceCurrent::ReadWord(uintptr_t ptr, word_t* out_value) {
152 *out_value = *reinterpret_cast<word_t*>(ptr);
156 *out_value = static_cast<word_t>(-1);
173 bool BacktracePtrace::ReadWord(uintptr_t ptr, word_t* out_value) {
186 if (*out_value == static_cast<word_t>(-1) && errno) {
BacktraceImpl.h 59 bool ReadWord(uintptr_t ptr, word_t* out_value);
67 bool ReadWord(uintptr_t ptr, word_t* out_value);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
type.h 51 typedef uint16_t word_t; typedef in namespace:sfntly
  /external/sfntly/cpp/src/sfntly/port/
type.h 51 typedef uint16_t word_t; typedef in namespace:sfntly
  /system/core/debuggerd/
tombstone.cpp 237 word_t stack_content;
279 *sp += sizeof(word_t);
300 word_t sp = backtrace->GetFrame(first)->sp - STACK_WORDS * sizeof(word_t);
317 size_t words = frame->stack_size / sizeof(word_t);
584 word_t data;
585 size_t len = sizeof(word_t);
589 address += sizeof(word_t);
591 while (len > 0 && (*p++ = (data >> (sizeof(word_t) - len) * 8) & 0xff) != 0)

Completed in 1197 milliseconds