Home
last modified time | relevance | path

Searched refs:u32 (Results 1 – 25 of 792) sorted by relevance

12345678910>>...32

/external/wpa_supplicant_8/src/pae/
Dieee802_1x_kay_i.h41 u32 mn;
47 u32 mn;
76 u32 next_pn;
107 u32 next_pn; /* PN nextPN (read only) */
138 u32 next_pn; /* PN nextPN (read only) */
139 u32 lowest_pn; /* PN lowestPN (read only) */
155 u32 index;
223 u32 mn;
237 u32 retry_count;
244 u32 type:8;
[all …]
Dieee802_1x_kay.h30 u32 kn;
63 int (*set_replay_protect)(void *ctx, Boolean enabled, u32 window);
66 int (*get_receive_lowest_pn)(void *ctx, u32 channel, u8 an,
67 u32 *lowest_pn);
68 int (*get_transmit_next_pn)(void *ctx, u32 channel, u8 an,
69 u32 *next_pn);
70 int (*set_transmit_next_pn)(void *ctx, u32 channel, u8 an, u32 next_pn);
71 int (*get_available_receive_sc)(void *ctx, u32 *channel);
72 int (*create_receive_sc)(void *ctx, u32 channel,
76 int (*delete_receive_sc)(void *ctx, u32 channel);
[all …]
/external/f2fs-tools/fsck/
Dfsck.h18 u32 nr_inodes;
19 u32 *ino_list;
28 u32 valid_nat_entry_cnt;
29 u32 valid_node_cnt;
30 u32 valid_inode_cnt;
31 u32 multi_hard_link_files;
33 u32 sit_free_segs;
34 u32 free_segs;
45 u32 nat_area_bitmap_sz;
46 u32 sit_area_bitmap_sz;
[all …]
/external/blktrace/
Djhash.h58 static inline u32 jhash(const void *key, u32 length, u32 initval) in jhash()
60 u32 a,b,c; in jhash()
68 a += (k[0] + ((u32)k[1]<<8) + ((u32)k[2]<<16) + ((u32)k[3]<<24)); in jhash()
69 b += (k[4] + ((u32)k[5]<<8) + ((u32)k[6]<<16) + ((u32)k[7]<<24)); in jhash()
70 c += (k[8] + ((u32)k[9]<<8) + ((u32)k[10]<<16) + ((u32)k[11]<<24)); in jhash()
79 case 12: c += (u32)k[11]<<24; in jhash()
80 case 11: c += (u32)k[10]<<16; in jhash()
81 case 10: c += (u32)k[9]<<8; in jhash()
83 case 8 : b += (u32)k[7]<<24; in jhash()
84 case 7 : b += (u32)k[6]<<16; in jhash()
[all …]
/external/qemu/distrib/ext4_utils/src/
Dallocate.h20 #define EXT4_ALLOCATE_FAILED (u32)(~0)
28 u32 allocate_block();
29 struct block_allocation *allocate_blocks(u32 len);
32 struct ext4_inode *get_inode(u32 inode);
34 void reduce_allocation(struct block_allocation *alloc, u32 len);
35 u32 get_block(struct block_allocation *alloc, u32 block);
36 u32 get_oob_block(struct block_allocation *alloc, u32 block);
38 void get_region(struct block_allocation *alloc, u32 *block, u32 *len);
39 u32 get_free_blocks(u32 bg);
40 u32 get_free_inodes(u32 bg);
[all …]
Dcontents.h30 u32 *inode;
31 u32 mtime;
36 u32 make_directory(u32 dir_inode_num, u32 entries, struct dentry *dentries,
37 u32 dirs);
38 u32 make_file(const char *filename, u64 len);
39 u32 make_link(const char *link);
40 int inode_set_permissions(u32 inode_num, u16 mode, u16 uid, u16 gid, u32 mtime);
41 int inode_set_selinux(u32 inode_num, const char *secon);
42 int inode_set_capabilities(u32 inode_num, uint64_t capabilities);
Dindirect.c40 u32 region_block; in create_backing()
41 u32 region_len; in create_backing()
42 u32 len; in create_backing()
101 static void fill_indirect_block(u32 *ind_block, int len, struct block_allocation *alloc) in fill_indirect_block()
109 static void fill_dindirect_block(u32 *dind_block, int len, struct block_allocation *alloc) in fill_dindirect_block()
112 u32 ind_block; in fill_dindirect_block()
123 u32 *ind_block_data = calloc(info.block_size, 1); in fill_dindirect_block()
139 static void fill_tindirect_block(u32 *tind_block, int len, struct block_allocation *alloc) in fill_tindirect_block()
142 u32 dind_block; in fill_tindirect_block()
153 u32 *dind_block_data = calloc(info.block_size, 1); in fill_tindirect_block()
[all …]
/external/oprofile/libopagent/
Djitdump.h41 u32 magic;
43 u32 version;
44 u32 totalsize;
45 u32 bfd_arch;
46 u32 bfd_mach;
60 u32 id;
61 u32 total_size;
66 u32 id;
67 u32 total_size;
71 u32 code_size;
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_thread_registry.h36 explicit ThreadContextBase(u32 tid);
39 const u32 tid; // Thread ID. Main thread should have tid = 0.
41 u32 reuse_count; // Number of times this tid was reused.
49 u32 parent_tid;
59 u32 _parent_tid, void *arg);
73 typedef ThreadContextBase* (*ThreadContextFactory)(u32 tid);
77 static const u32 kUnknownTid;
79 ThreadRegistry(ThreadContextFactory factory, u32 max_threads,
80 u32 thread_quarantine_size, u32 max_reuse = 0);
89 ThreadContextBase *GetThreadLocked(u32 tid) { in GetThreadLocked()
[all …]
Dsanitizer_stackdepot.cc24 u32 hash() const { in hash()
26 const u32 m = 0x5bd1e995; in hash()
27 const u32 seed = 0x9747b28c; in hash()
28 const u32 r = 24; in hash()
29 u32 h = seed ^ (size * sizeof(uptr)); in hash()
31 u32 k = stack[i]; in hash()
48 u32 id;
53 static const u32 kTabSizeLog = 20;
56 static const u32 kUseCountBits = kTabSizeLog;
57 static const u32 kMaxUseCount = 1 << kUseCountBits;
[all …]
/external/compiler-rt/lib/msan/
Dmsan_chained_origin_depot.cc20 u32 here_id;
21 u32 prev_id;
22 u32 hash() const { in hash()
23 const u32 m = 0x5bd1e995; in hash()
24 const u32 seed = 0x9747b28c; in hash()
25 const u32 r = 24; in hash()
26 u32 h = seed; in hash()
27 u32 k = here_id; in hash()
51 u32 id;
52 u32 here_id;
[all …]
Dmsan_origin.h51 static const u32 kIdMask = ((u32)-1) >> (32 - kDepthShift);
52 static const u32 kDepthMask = ~kIdMask;
56 static const u32 kHeapRoot = (u32)-1;
57 static const u32 kStackRoot = (u32)-2;
59 explicit Origin(u32 raw_id) : raw_id_(raw_id) {} in Origin()
60 Origin(u32 id, u32 depth) : raw_id_((depth << kDepthShift) | id) { in Origin()
65 u32 id() const { return raw_id_ & kIdMask; } in id()
66 u32 raw_id() const { return raw_id_; } in raw_id()
69 bool isValid() const { return raw_id_ != 0 && raw_id_ != (u32)-1; } in isValid()
72 u32 raw_id_;
/external/llvm/test/MC/ARM/
Dneon-convert-encoding.s5 @ CHECK: vcvt.u32.f32 d16, d16 @ encoding: [0xa0,0x07,0xfb,0xf3]
6 vcvt.u32.f32 d16, d16
9 @ CHECK: vcvt.f32.u32 d16, d16 @ encoding: [0xa0,0x06,0xfb,0xf3]
10 vcvt.f32.u32 d16, d16
13 @ CHECK: vcvt.u32.f32 q8, q8 @ encoding: [0xe0,0x07,0xfb,0xf3]
14 vcvt.u32.f32 q8, q8
17 @ CHECK: vcvt.f32.u32 q8, q8 @ encoding: [0xe0,0x06,0xfb,0xf3]
18 vcvt.f32.u32 q8, q8
23 @ CHECK: vcvt.u32.f32 d16, d16, #1 @ encoding: [0x30,0x0f,0xff,0xf3]
24 vcvt.u32.f32 d16, d16, #1
[all …]
Dneont2-cmp-encoding.s7 @ CHECK: vcvt.u32.f32 d16, d16 @ encoding: [0xfb,0xff,0xa0,0x07]
8 vcvt.u32.f32 d16, d16
11 @ CHECK: vcvt.f32.u32 d16, d16 @ encoding: [0xfb,0xff,0xa0,0x06]
12 vcvt.f32.u32 d16, d16
15 @ CHECK: vcvt.u32.f32 q8, q8 @ encoding: [0xfb,0xff,0xe0,0x07]
16 vcvt.u32.f32 q8, q8
19 @ CHECK: vcvt.f32.u32 q8, q8 @ encoding: [0xfb,0xff,0xe0,0x06]
20 vcvt.f32.u32 q8, q8
23 @ CHECK: vcvt.u32.f32 d16, d16, #1 @ encoding: [0xff,0xff,0x30,0x0f]
24 vcvt.u32.f32 d16, d16, #1
[all …]
Dneont2-convert-encoding.s7 @ CHECK: vcvt.u32.f32 d16, d16 @ encoding: [0xfb,0xff,0xa0,0x07]
8 vcvt.u32.f32 d16, d16
11 @ CHECK: vcvt.f32.u32 d16, d16 @ encoding: [0xfb,0xff,0xa0,0x06]
12 vcvt.f32.u32 d16, d16
15 @ CHECK: vcvt.u32.f32 q8, q8 @ encoding: [0xfb,0xff,0xe0,0x07]
16 vcvt.u32.f32 q8, q8
19 @ CHECK: vcvt.f32.u32 q8, q8 @ encoding: [0xfb,0xff,0xe0,0x06]
20 vcvt.f32.u32 q8, q8
23 @ CHECK: vcvt.u32.f32 d16, d16, #1 @ encoding: [0xff,0xff,0x30,0x0f]
24 vcvt.u32.f32 d16, d16, #1
[all …]
/external/llvm/test/CodeGen/NVPTX/
Daddrspacecast.ll7 ; PTX32: cvta.global.u32
8 ; PTX32: ld.u32
11 ; PTX64: ld.u32
19 ; PTX32: cvta.shared.u32
20 ; PTX32: ld.u32
23 ; PTX64: ld.u32
31 ; PTX32: cvta.const.u32
32 ; PTX32: ld.u32
35 ; PTX64: ld.u32
43 ; PTX32: cvta.local.u32
[all …]
/external/wpa_supplicant_8/src/crypto/
Ddes-internal.c49 static const u32 bytebit[8] =
54 static const u32 bigbyte[24] =
88 static const u32 SP1[64] =
108 static const u32 SP2[64] =
128 static const u32 SP3[64] =
148 static const u32 SP4[64] =
168 static const u32 SP5[64] =
188 static const u32 SP6[64] =
208 static const u32 SP7[64] =
228 static const u32 SP8[64] =
[all …]
Daes_i.h17 extern const u32 Te0[256];
18 extern const u32 Te1[256];
19 extern const u32 Te2[256];
20 extern const u32 Te3[256];
21 extern const u32 Te4[256];
22 extern const u32 Td0[256];
23 extern const u32 Td1[256];
24 extern const u32 Td2[256];
25 extern const u32 Td3[256];
26 extern const u32 Td4[256];
[all …]
/external/linux-tools-perf/perf-3.12.0/arch/x86/include/asm/
Dkvm_host.h260 int (*page_fault)(struct kvm_vcpu *vcpu, gva_t gva, u32 err,
265 gpa_t (*gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t gva, u32 access,
267 gpa_t (*translate_gpa)(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access);
341 u32 regs_avail;
342 u32 regs_dirty;
351 u32 hflags;
403 u32 error_code;
449 u32 virtual_tsc_mult;
450 u32 virtual_tsc_khz;
458 u32 pat;
[all …]
/external/chromium_org/third_party/boringssl/src/crypto/poly1305/
Dpoly1305_arm_asm.S463 # asm 1: vmlal.u32 <r4=reg128#16,<x01=reg128#9%bot,<z34=reg128#6%top
464 # asm 2: vmlal.u32 <r4=q15,<x01=d16,<z34=d11
465 vmlal.u32 q15,d16,d11
478 # asm 1: vmlal.u32 <r4=reg128#16,<x01=reg128#9%top,<z34=reg128#6%bot
479 # asm 2: vmlal.u32 <r4=q15,<x01=d17,<z34=d10
480 vmlal.u32 q15,d17,d10
493 # asm 1: vmlal.u32 <r4=reg128#16,<x23=reg128#10%bot,<z12=reg128#3%top
494 # asm 2: vmlal.u32 <r4=q15,<x23=d18,<z12=d5
495 vmlal.u32 q15,d18,d5
503 # asm 1: vmlal.u32 <r4=reg128#16,<x23=reg128#10%top,<z12=reg128#3%bot
[all …]
/external/libnfc-nci/src/hal/include/
Dnfc_types.h54 … UINT32_TO_STREAM(p, u32) {*(p)++ = (UINT8)(u32); *(p)++ = (UINT8)((u32) >> 8); *(p)++ = (UINT8)(( argument
70 #define STREAM_TO_UINT24(u32, p) {u32 = (((UINT32)(*(p))) + ((((UINT32)(*((p) + 1)))) << 8) + ((((U… argument
71 #define STREAM_TO_UINT32(u32, p) {u32 = (((UINT32)(*(p))) + ((((UINT32)(*((p) + 1)))) << 8) + ((((U… argument
86u32) {*(UINT8 *)(p) = (UINT8)(u32); *((UINT8 *)(p)+1) = (UINT8)((u32) >> 8); *((UINT8 *)(p)+2) = … argument
96 …_TO_BE_STREAM(p, u32) {*(p)++ = (UINT8)((u32) >> 24); *(p)++ = (UINT8)((u32) >> 16); *(p)++ = (UI… argument
104 #define BE_STREAM_TO_UINT24(u32, p) {u32 = (((UINT32)(*((p) + 2))) + ((UINT32)(*((p) + 1)) << 8) + … argument
105 #define BE_STREAM_TO_UINT32(u32, p) {u32 = ((UINT32)(*((p) + 3)) + ((UINT32)(*((p) + 2)) << 8) + ((… argument
114u32) {*(UINT8 *)(p) = (UINT8)((u32) >> 24); *((UINT8 *)(p)+1) = (UINT8)((u32) >> 16); *((UINT8 *)… argument
/external/openssl/crypto/modes/
Dmodes_lcl.h25 typedef unsigned int u32; typedef
42 # define BSWAP4(x) ({ u32 ret=(x); \
46 # define BSWAP8(x) ({ u32 lo=(u64)(x)>>32,hi=(x); \
50 # define BSWAP4(x) ({ u32 ret=(x); \
54 # define BSWAP8(x) ({ u32 lo=(u64)(x)>>32,hi=(x); \
58 # define BSWAP4(x) ({ u32 ret; \
60 : "=r"(ret) : "r"((u32)(x))); \
67 # define BSWAP4(x) _byteswap_ulong((u32)(x))
69 __inline u32 _bswap4(u32 val) { in _bswap4()
79 #define GETU32(p) BSWAP4(*(const u32 *)(p))
[all …]
/external/oprofile/libop/
Dop_sample_file.h23 u32 version;
24 u32 cpu_type;
25 u32 ctr_event;
26 u32 ctr_um;
27 u32 ctr_count;
29 u32 is_kernel;
32 u32 cg_to_is_kernel;
34 u32 spu_profile;
39 u32 reserved1[1];
Dop_events.h38 u32 num; /**< number of possible unit masks */
40 u32 default_mask; /**< only the gui use it */
42 u32 value;
52 u32 counter_mask; /**< bitmask of allowed counter */
53 u32 val; /**< event number */
68 struct op_event * op_find_event(op_cpu cpu_type, u32 nr, u32 um);
69 struct op_event * op_find_event_any(op_cpu cpu_type, u32 nr);
79 char const * find_mapping_for_event(u32 val, op_cpu cpu_type);
103 int op_check_events(int ctr, u32 event, u32 um, op_cpu cpu_type);
/external/neven/FaceRecEm/common/src/b_FDSDK/
DDCR.h64 u32 reserved;
90 u32 widthA,
91 u32 heightA );
97 u32 widthA,
98 u32 heightA );
104 u32 widthA,
105 u32 heightA,
114 u32 widthA,
115 u32 heightA,
125 u32 btk_DCR_nodeCount( btk_HDCR hdcrA );
[all …]

12345678910>>...32