OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:word_t
(Results
1 - 5
of
5
) 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
...]
/external/sfntly/cpp/src/sfntly/port/
type.h
51
typedef uint16_t
word_t
;
typedef in namespace:sfntly
/system/core/include/backtrace/
Backtrace.h
31
typedef uint64_t
word_t
;
typedef
34
typedef uint32_t
word_t
;
typedef
114
virtual bool ReadWord(uintptr_t ptr,
word_t
* out_value) = 0;
159
virtual bool VerifyReadWordArgs(uintptr_t ptr,
word_t
* out_value);
/external/llvm/include/llvm/Bitcode/
BitstreamReader.h
173
/// follow the word size of the host machine for efficiency. We use
word_t
in
176
typedef size_t
word_t
;
typedef in class:llvm::BitstreamCursor
177
word_t
CurWord;
201
static const size_t MaxChunkSize = sizeof(
word_t
) * 8;
303
size_t ByteNo = size_t(BitNo/8) & ~(sizeof(
word_t
)-1);
304
unsigned WordBitNo = unsigned(BitNo & (sizeof(
word_t
)*8-1));
321
uint8_t Array[sizeof(
word_t
)] = {0};
335
support::endian::read<
word_t
, support::little, support::unaligned>(
341
word_t
Read(unsigned NumBits) {
347
static const unsigned Mask = sizeof(
word_t
) > 4 ? 0x3f : 0x1f
[
all
...]
/external/selinux/policycoreutils/mcstrans/src/
mcstrans.c
74
}
word_t
;
typedef in typeref:struct:word
83
word_t
*words;
91
word_t
**sword;
252
destroy_word(
word_t
**list,
word_t
*word) {
266
memset(word, 0, sizeof(
word_t
));
270
word_t
*
271
create_word(
word_t
**list, const char *text) {
272
word_t
*w = calloc(1, sizeof(
word_t
));
[
all
...]
Completed in 373 milliseconds